diff --git a/README.md b/README.md index cb4f9235..a9d6dc5f 100644 --- a/README.md +++ b/README.md @@ -466,11 +466,11 @@ INFURA_API_KEY - Key to access an Ethereum node via Infura service (for connecti In case ganache is not installed: ``` -$ yarn global add ganache-cli +$ yarn global add ganache ``` Then launch ganache: ``` -$ ganache-cli -p 7545 +$ ganache -p 7545 ``` In a different console, deploy the contract by running the migration script: @@ -496,7 +496,7 @@ There are 2 options to get MNEMONIC: - Either generate 12 random words on https://iancoleman.io/bip39/ (BIP39 Mnemonic). - Or get the MNEMONIC generated by ganache with the following command: ``` -$ ganache-cli +$ ganache ``` The second option is recommended for development purposes since the wallets associated to the MNEMONIC will be pre-loaded with ETH for tests on ganache.