Forrest logo
back to context overview

ganache-cli

List of commands for ganache-cli:

  • ganache-cli:tldr:122e0 ganache-cli: Run Ganache and log all requests to `stdout`.
    $ ganache-cli --verbose
    try on your machine
    explain this command
  • ganache-cli:tldr:2a458 ganache-cli: Run Ganache and lock available accounts by default.
    $ ganache-cli --secure
    try on your machine
    explain this command
  • ganache-cli:tldr:3fabc ganache-cli: Run Ganache.
    $ ganache-cli
    try on your machine
    explain this command
  • ganache-cli:tldr:be910 ganache-cli: Run Ganache with accounts with a default balance.
    $ ganache-cli --defaultBalanceEther=${default_balance}
    try on your machine
    explain this command
  • ganache-cli:tldr:bf2fe ganache-cli: Run Ganache server and unlock specific accounts.
    $ ganache-cli --secure --unlock "${account_private_key1}" --unlock "${account_private_key2}"
    try on your machine
    explain this command
  • ganache-cli:tldr:d7c37 ganache-cli: Run Ganache with a specific account and balance.
    $ ganache-cli --account="${account_private_key},${account_balance}"
    try on your machine
    explain this command
  • ganache-cli:tldr:eacfe ganache-cli: Run Ganache with a specific number of accounts.
    $ ganache-cli --accounts=${number_of_accounts}
    try on your machine
    explain this command
back to context overview