1. What are the benefits of setting a token standard like ERC20?
The benefits of setting a token standard like ERC20 allow all crypto wallets to be able to read and understand that it is an incoming ERC20 token as the standard reads the same as any other ERC20
2. What functions are in the ERC20 Token Standard Interface and what do they do?
totalSupply() represents the amount of tokens in circulation
balanceOf() provides the number of tokens held by a given address (public)
transfer() transfers a number of tokens directly from the message sender to another address.
transferFrom() a token holder gives another address approval to transfer up to a certain number of tokens
approve() The token holder then uses this function to provide that information