August 2019
Intermediate to advanced
486 pages
13h 52m
English
In this chapter, we explored the surya tool, which is helpful in generating many types of reports such as inheritance graphs, function flow graphs, inheritance dependencies, and function traces. Following this, we learned about the installation and usage of Solidity linters, such as solium and solhint, and how you can improve the code quality and find security issues. We learned about the installation and usage of code coverage tool to generate the coverage report.
Using all of these tools is recommended to improve the quality of your code. Once you generate reports with these tools, sometimes, you tend to find the bugs while looking at the reports itself. Hence, it is a good practice to generate these reports and improve the code ...