| Documentation | https://docs.nethermind.io | |
| Gitter | https://gitter.im/nethermindeth/nethermind | |
| Discord | ||
| Medium | https://medium.com/nethermind-eth | |
| https://twitter.com/nethermindeth | ||
| Releases | https://github.com/NethermindEth/nethermind/releases | |
| Website | https://nethermind.io/ | |
| Docker | https://hub.docker.com/r/nethermind/nethermind | |
| Codecov.io | https://codecov.io/gh/NethermindEth/nethermind | |
| Fund | with Gitcoin | https://gitcoin.co/grants/142/nethermind |
| Github Actions | https://github.com/NethermindEth/nethermind/actions |
It syncs fully on:
MainnetGoerliRinkebyRopstenxDaiPoacoreSokolEnergywebVoltaKovan(only fast sync and may fail if pWASM transactions appear)
PPA (Tested on Ubuntu Series: Focal, Bionic, Xenial and Trusty)
sudo add-apt-repository ppa:nethermindeth/nethermindsudo apt install nethermind- To execute the launcher
nethermind - To execute the runner
nethermind --config mainnet_pruned
Homebrew
brew tap nethermindeth/nethermindbrew install nethermind- To execute the launcher
nethermind-launcher - To execute the runner
nethermind --config mainnet_pruned
.NET 6.0 SDK
- Install .NET
- You may need to install this.
- Install .NET
- Install dependencies
sudo apt-get install libsnappy-dev libc6-dev libc6 # Link libraries (only for Ubuntu 21.10) sudo ln -s /usr/lib/x86_64-linux-gnu/libdl.so.2 /usr/lib/x86_64-linux-gnu/libdl.soTested on Ubuntu 21.04, 20.04 and 18.04 LTS and 21.10
- Install .NET
- Install dependencies
sudo apt-get install libsnappy-dev libc6-dev libc6Tested on Debian 10 (9 not working)
- Install .NET
- 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 && \ sudo ln -s `find /usr/lib64/ -type f -name "libsnappy.so.1*"` /usr/lib64/libsnappy.soTested on CentOS 8
- Install .NET
- 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 && \ sudo ln -s `find /usr/lib64/ -type f -name "libsnappy.so.1*"` /usr/lib64/libsnappy.so # also required for Fedora 35 sudo ln -s `find /usr/lib64/ -type f -name "libdl.so.2*"` /usr/lib64/libdl.soTested on Fedora 32
- Install .NET
- Install dependencies
brew install rocksdb gmp snappy lz4 zstdgit clone https://github.com/NethermindEth/nethermind --recursive cd nethermind/src/Nethermind dotnet build Nethermind.sln -c Release cd Nethermind.Runner dotnet run -c Release --no-build -- --config mainnet_prunedOfficial Nethermind docker images are available on Docker Hub.
In case of any docker image need to be updated in the repository, you can update the digest of this images with the next commands
docker inspect --format='{{index .RepoDigests 0}}' <image_name>The output must show the image digest, and then you can copy that output in the FROM tag inside the Dockerfile
If you want to run the Nethermind or Ethereum Foundation tests, then:
dotnet build Nethermind.sln -c Debug dotnet test Nethermind.sln dotnet build EthereumTests.sln -c Debug dotnet test EthereumTests.slnAt Nethermind we are building an open source multiplatform Ethereum client implementation in .NET Core (running seamlessly on Linux, Windows and MacOS). Simultaneously our team works on Nethermind Data Marketplace and on-chain data extraction tools and client customizations.
Nethermind client can be used in your projects, when setting up private Ethereum networks or dApps. The latest prod version of Nethermind can be found at downloads.nethermind.io.
