1

如何获取特定以太坊钱包地址中的 ERC20、ERC721 和 ERC827 代币列表?此外,我希望能够从主网上获取名称、符号、徽标和余额。

4

2 回答 2

1

ERC-721 includes an optional interface (optional means the contract implementor can choose if they want to implement it) to enumerate tokens owned by a specific account.

Su Squares implements this feature, but few other contracts do it.

You can use tools like Etherscan, Enjinx Blockchain Explorer or write your own interface to a Ethereum JSON RPC host to collect the data.

于 2019-01-21T04:11:41.860 回答
0

我认为您不能对每个地址进行总数据潜水。我认为你必须反其道而行之,即查看合约是否包含某个代币。对于像EOS这样的主要代币,使用 MEW 应该很容易。

但是,如果您正在寻找一些晦涩的令牌,例如下面的令牌,您可能必须手动将它们添加到 MEW 以检查:

于 2018-05-31T08:05:38.997 回答