Nethermind is a high-performance, highly configurable full Ethereum protocol execution client built on .NET that runs on Linux, Windows, and macOS, and supports Clique, Aura, and Ethash. Nethermind offers very fast sync speeds and support for external plugins. Enjoy reliable access to rich on-chain data thanks to high-performance JSON-RPC based on the Kestrel web server. Healthy node monitoring is secured with Grafana analytics and Seq logging.
Nethermind documentation is available at docs.nethermind.io.
Mainnet
Goerli
Sepolia
Gnosis (xDai)
Energy Web
Volta
Release builds are available on the Releases page and at downloads.nethermind.io.
sudo add-apt-repository ppa:nethermindeth/nethermind
If command not found:sudo apt install software-properties-common
sudo apt install nethermind
- To run the launcher:
nethermind
- To run the runner:
nethermind -c mainnet
winget install nethermind
- To run the launcher:
nethermind.launcher.exe
- To run the runner:
nethermind.runner.exe -c mainnet
brew tap nethermindeth/nethermind
brew install nethermind
- To run the launcher:
nethermind-launcher
- To run the runner:
nethermind -c mainnet
The official Docker images of Nethermind are available on Docker Hub.
In case of any Docker image need to be updated in the repository, you can update the digest of these images as follows:
docker inspect --format='{{index .RepoDigests 0}}' <image_name>
The output should show the image digest, and then you can copy that to the FROM
tag in the Dockerfile.
-
Install dependencies:
brew install gmp snappy lz4 zstd
-
Install dependencies:
sudo apt-get install libsnappy-dev libc6-dev libc6
An extra dependency for aarch64 (arm64):
sudo apt-get install libgflags-dev
-
Install dependencies:
sudo apt-get install libsnappy-dev libc6-dev libc6
-
Install dependencies:
sudo yum install -y glibc-devel bzip2-devel libzstd # Link libraries sudo ln -s `find /usr/lib64/ -type f -name "libbz2.so.1*"` /usr/lib64/libbz2.so.1.0
-
Install dependencies:
sudo yum install -y glibc-devel snappy libzstd # Link libraries sudo ln -s `find /usr/lib64/ -type f -name "libbz2.so.1*"` /usr/lib64/libbz2.so.1.0
git clone https://github.com/nethermindeth/nethermind --recursive
cd nethermind/src/Nethermind/Nethermind.Runner
dotnet run -c release -- -c mainnet
Run the Nethermind and/or Ethereum Foundation tests as follows:
dotnet test Nethermind.sln -c debug
dotnet test EthereumTests.sln -c debug
BEFORE you start work on a feature or fix, please read and follow our contribution guide to help avoid any wasted or duplicate effort.
Nethermind is an open-source software licensed under the LGPL-3.0.
If you believe you have found a security vulnerability in our code, please report it to us as described in our security policy.