Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定智能合约地址,我想通过 API(?)获取所有 ETH 钱包地址的列表。我们在 etherscan.io 上的 erc20 持有者列表下看到的类似功能。任何文档/资源将不胜感激。谢谢
如果你想获取交易发送到特定智能合约的所有账户的地址,那么唯一通用的方法是使用eth_getBlockByNumber方法(或其等效方法)扫描所有块并“手动”选择所有具有所需的交易收件人地址。
同时,您也很可能需要清除来自其他智能合约的交易。为了确定一个地址是属于账户还是属于智能合约,你可以使用eth_getCode方法——如果它返回一个空值,那么这是一个账户。