Forrest logo
back to the ganache-cli tool

ganache-cli:tldr:122e0

ganache-cli: Run Ganache and log all requests to `stdout`.
$ ganache-cli --verbose
try on your machine

The command "ganache-cli --verbose" is used to run the Ganache command-line interface (CLI) in verbose mode.

Ganache is a personal Ethereum blockchain that is often used for local development and testing of Ethereum-based applications. It provides a local network environment with pre-funded accounts, making it easy for developers to simulate the behavior of an actual Ethereum network.

By running the "ganache-cli" command with the "--verbose" option, additional details and information will be displayed in the console. This includes more detailed output about the transactions being processed, events being emitted, and any errors or warnings that may occur. This can be useful for debugging purposes or to gain more visibility into the underlying operations and behavior of your Ethereum applications.

The verbose mode provides developers with more information and insights to identify and analyze issues that may arise during development and testing. However, it may make the console output more cluttered, so it's not necessary for regular usage unless you specifically require more detailed information about the blockchain operations.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the ganache-cli tool