Tokens can be transferred between multiple accounts. This allows you to trade tokens in exchange for services. To achieve this functionality, ERC20 provides a standard function definition. You will learn to implement basic transfer function with this recipe.
Transferring tokens between accounts
Getting ready
You need to have a development environment that supports solidity programming and an Ethereum network to deploy and test your code.
How to do it...
- ERC20 defines a transfer function to transfer tokens between accounts. Create the function to implement the feature...