-
What are the benefits of setting a token standard like ERC20? The benefits of having standards like ERC20 allows exchanges and wallets to be interoperable and increase efficiency. These standards also makes deployment of tokens extremely beneficial.
-
What functions are in the ERC20 Token Standard Interface and what do they do?
totalSupply(): the total number of tokens in circulation
balanceOf(address account): gives an address of the account the balance of the ERC Tokens
transfer() will transfer a specified number of tokens from one address to another
approve() gives another address approval to transfer a certain amount of funds from the given address. This is usually how smart contracts are give permission to take the necessary funds needed to perform requested operations .