CLI
Guide for Nethermind.Cli project which is useful for managing your node
After launching
./Nethermind.Launcher
you have two options - Ethereum Node
and CLI
.If you launch the Node in one process and then launch the CLI in another process you will see available commands inside the CLI.
You have to ensure that the
JsonRpc.Enabled
is set to true
either by enabling it when Launcher asks about it or by manually editing the relevant config file or by passing --JsonRpc.Enabled true
parameter after the Launcher commandCLI will display available options (functions and properties) when started.

Nethermind.Cli view
CLI will allow you to query the most basic info about the node quickly.
- 1.You can execute javascript arithmetics
- 2.You can issue JSON RPC requests to the node
- 3.You can combine the former two
- 4.You can create and call functions
- 5.You can retrieve node objects
- 6.And work with node object properties
- 7.You can also load javascript files from disk by calling
load("filepath.js")
- 8.You can navigate to previous commands by using arrow keys
- 9.You can auto-complete basic command with tab
%20(3)%20(3)%20(3)%20(2)%20(2).png)
Nethermind.Cli operations
Below you will find the available list of CLI operations and you can find more information about each call in JSON RPC section.
Last modified 1yr ago