Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: Charlie Prime on March 17, 2018, 10:01:13 AM



Title: How to get all tokens balance in Ethereum blockchanin
Post by: Charlie Prime on March 17, 2018, 10:01:13 AM
Hello. Such question: How can i get balances of all accessible tokens of the address of a wallet throw API or program code. So, as it shows on the etherscan. Tried tokenbalance.com, then we need the addresses of tokens, the balance of which must be shown. But balances of all assets are needed to me.


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: nc50lc on March 17, 2018, 10:30:10 AM
Enter your Ethereum address in MEW, it will open as View-only. (View Wallet Info->View w/ Address Only->Paste you Address)
There in the page, your token balances are displayed just below the ETH balance (Show All Tokens).
If the specific token you're looking for is not listed, there's an option to manually add it (Add custom token just research to find out how)

And this thread doesn't belong here in the Bitcoin Development & Technical Discussion board.
For more help from the right community, move this to the Altcoin Discussion board.
moved.


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: Charlie Prime on March 17, 2018, 10:39:54 AM
Enter your Ethereum address in MEW, it will open as View-only. (View Wallet Info->View w/ Address Only->Paste you Address)
There in the page, your token balances are displayed just below the ETH balance (Show All Tokens).
If the specific token you're looking for is not listed, there's an option to manually add it (Add custom token just research to find out how)

And this thread doesn't belong here in the Bitcoin Development & Technical Discussion board.
For more help from the right community, move this to the Altcoin Discussion board.

I need to do this in my program code. Via API or some other instruments. I know what is MEW and how to use it =) But my question is not about mew =)


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: starmyc on March 17, 2018, 11:21:30 AM
Hello. Such question: How can i get balances of all accessible tokens of the address of a wallet throw API or program code. So, as it shows on the etherscan. Tried tokenbalance.com, then we need the addresses of tokens, the balance of which must be shown. But balances of all assets are needed to me.

The thing is, that to know where your tokens are, you need contracts addresses. That's why tokenbalance.com ask for one. You'll need to search for all contracts addresses for token you want to watch, then you'll be able to use tokenbalance api or software.

I'm not aware of a full complete token list with addresses... But with a little research, I'm sure you'll find some useful information or build it by yourself!


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: Charlie Prime on March 17, 2018, 11:54:07 AM
Looks like i can extract list of token address by parsing all trnx to this wallet address. But maybe anyone knows more simple way?


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: Xynerise on March 17, 2018, 12:14:00 PM
Hello. Such question: How can i get balances of all accessible tokens of the address of a wallet throw API or program code. So, as it shows on the etherscan. Tried tokenbalance.com, then we need the addresses of tokens, the balance of which must be shown. But balances of all assets are needed to me.
Use https://deltabalances.github.io
It shows all the tokens present on an address, both the ones officially listed and the ones that aren't.
It also shows their prices in dollars.


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: Charlie Prime on March 18, 2018, 10:39:02 AM
Hello. Such question: How can i get balances of all accessible tokens of the address of a wallet throw API or program code. So, as it shows on the etherscan. Tried tokenbalance.com, then we need the addresses of tokens, the balance of which must be shown. But balances of all assets are needed to me.
Use https://deltabalances.github.io
It shows all the tokens present on an address, both the ones officially listed and the ones that aren't.
It also shows their prices in dollars.


Thank you for link! This is almost what I need. I even saw some not-known bullshit tokens that I did not see on the etherscan. At the same time, there is a feeling that only the balances of the tokens that allready traded on etherdelta are displayed. This is not critical for me. Thank you again very much


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: bigcash2011 on March 18, 2018, 10:51:20 AM
If i have understood your question correctly, it is very easy to check and track Eth and tokens balance if you are using myetherwallet, just put the wallet address in etherscan and track all the tokens and eth easily.


Title: Re: How to get all tokens balance in Ethereum blockchanin
Post by: Charlie Prime on March 18, 2018, 11:21:58 AM
If i have understood your question correctly, it is very easy to check and track Eth and tokens balance if you are using myetherwallet, just put the wallet address in etherscan and track all the tokens and eth easily.

No, question is how to do this from my program. I can also parse etherscan, but this is not cool in my opinion. Now the issue has been resolved thanks to Xynerise.