What changed?
[SYNC] Fixes in Nethermind synchronizations (#4492, #4528, #4576, #4541, #4549, #4640)
[JSON RPC] Better integration with CL clients thanks to faster eth_getBlockByNumber and eth_getBlockByHash (#4645)
[Health checks] You won't forget running CL clients anymore. Nethermind will print a warning in case of no requests from CL clients. The feature has been integrated with our HealthChecks plugin, so you will get Unhealthy status in case of no requests. You can configure how long you want to wait for CL requests by setting --HealthChecks.MaxIntervalClRequestTime
(default value 5 minutes). (#4286)
[ENGINE API] Return 403 http code when authorization fails (#4516)
[ENGINE API] Bring engine_getPayloadBodiesByHashV1 up to spec. Link to spec: ethereum/execution-apis#218 (#4606)
Running Nethermind:
Nethermind Launcher is a self-contained app - you do not need to install .NET separately to run it.
PPA
(Tested on Ubuntu Series: Focal
, Bionic
, Xenial
and Trusty
)
sudo add-apt-repository ppa:nethermindeth/nethermind
sudo apt install nethermind
- To execute the launcher
nethermind
- To execute the runner
nethermind --config mainnet
Homebrew
brew tap nethermindeth/nethermind
brew install nethermind
- To execute the launcher
nethermind-launcher
- To execute the runner
nethermind --config mainnet
Docker
docker pull nethermind/nethermind
docker run -it nethermind/nethermind
Linux
sudo apt-get update && sudo apt-get install libsnappy-dev libc6-dev libc6 unzip
wget https://github.com/NethermindEth/nethermind/releases/download/1.14.3/nethermind-linux-amd64-1.14.3-7074612-20221003.zip
unzip nethermind-linux-amd64-1.14.3-7074612-20221003.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Linux Arm64
sudo apt-get update && sudo apt-get install libsnappy-dev libc6-dev libc6 librocksdb5.17 unzip
wget https://github.com/NethermindEth/nethermind/releases/download/1.14.3/nethermind-linux-arm64-1.14.3-7074612-20221003.zip
unzip nethermind-linux-arm64-1.14.3-7074612-20221003.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.3-7074612-20221003.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.3-7074612-20221003.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration