Update Nethermind client

One-page interactive complete guide to update Nethermind client.

Disclaimer

This guide is for informational purposes only. The author nor website owner does not guarantee accuracy of the information in this guide and is not responsible for any damages or losses incurred by following the guide.

Nethermind client can be used for staking on various supported chains. Client installation is always only one, used by services with an individual configuration (different service name, data path and ports in use).

Updating Nethermind client

Nethermind documentation: https://docs.nethermind.io/

Check current version of Nethermind running on the server

$ /usr/local/bin/nethermind/./nethermind-cli
$ node.switch("127.0.0.1:8545")
$ web3.clientVersion
  1. Find the latest stable version of Nethermind on Github

  2. Download Nethermind version 1.29.1-dfea5240 to your node

    cd ~/downloads && curl -LO https://github.com/NethermindEth/nethermind/releases/download/1.29.1/nethermind-1.29.1-dfea5240-linux-x64.zip
  3. Unzip the downloaded file

    unzip nethermind-1.29.1-dfea5240-linux-x64 -d nethermind
  4. Stop running clients

    $ journalctl -fu nethermind
    $ sudo systemctl stop nethermind && systemctl status nethermind
  5. Remove the old client

    sudo rm -r /usr/local/bin/nethermind
  6. Copy the client to /usr/local/bin/

    sudo cp -a nethermind /usr/local/bin/nethermind
  7. Start the client again

    $ sudo systemctl start nethermind && systemctl status nethermind
    $ journalctl -fu nethermind
  8. Remove downloaded files

    cd ~/downloads && rm nethermind-1.29.1-dfea5240-linux-x64.zip && rm -r nethermind