In this chapter, we learned how to create your own ERC20 token from scratch. To do this we started with the specification of the token to list down the features of the token. Then, we moved on to choosing the appropriate contract library files that would help to reduce the development cycle of the contracts. We then developed the contracts in Solidity. After the development of the contracts, we created migration scripts and test cases for the project. We also deployed and tested the project on the local instance of the Ganache blockchain and on the Rinkeby testnet.Â
We followed every step required to build the project from scratch. To further enhance the development process, you should also use linters, such as Eslint and Solhint, to maintain the project's quality and remove unwanted issues from your project.
In the next chapter, we will learn about the...