[Ethereum] How to check Balance & send ERC721 Tokens

balanceserc-721transactions

I have SPH ERC721 Tokens.

How can I check balance like ERC20 and send ERC721 tokens token to Exchange or in other wallet ?

Best Answer

The easy way

Find the token address, it is

enter image description here

enter image description here

It is:

0x7B00aE36C7485B678Fe945c2DD9349Eb5Baf7b6B

And paste that into MyEtherWallet.

enter image description here

If you want to actually access the full capabilities of this contract you need the ABI. ZeppelinOS messes that up pretty good because it adds mutability "features". See "THE HARD WAY" answer here. And you can paste that ABI in.

To save a lot of time you can assume that the SPACE ERC-721 token is similar to Su Squares, another ERC-721 token. So select Su Squares from the drop down box and then paste in the address 0x7B00aE36C7485B678Fe945c2DD9349Eb5Baf7b6B and you are good to go.

You can now access your balance, token ownership and transfer tokens. You can ignore the personalize and some other functions that are specific to Su Squares, they won't work, they will just throw if you try.

Related Topic