These blockchain instances are installed locally on your machine and used for testing purposes:
- The Ganache GUI: This is the GUI version of the Ganache tool, as we learned in this chapter. You should use this blockchain when you need to quickly look at the different accounts, transactions, blocks, contracts, and events being generated during the execution of the migration or test cases. You can also look at the gas costs consumed by each transaction in detail. You can also fine-tune the mining of the blocks using the advanced settings.
- The Ganache CLI: This is the CLI version of Ganache. This should be used when you need to automate your contract-testing environment. This is also useful in preparing your continuous ...