Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace ganache-cli with ganache in README #146

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.

Expand Down