Skip to content

v1.11.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Aug 13:15
· 2059 commits to master since this release

What changed?

[xDAI MEV] The alpha version of MEV on xDAI. More details: https://twitter.com/nethermindeth/status/1428020735046520839
[IPC JSON RPC] UNIX domain socket communication channel added on top of the existing JSON RPC modules.
[JSON_RPC] Added support for eth_gasPrice in Nethermind
[JSON_RPC] Added support for trace_filter in Nethermind. Side notes about tracing: another method - trace_call was supported in the previous versions. It was missed in the documentation.
[JSON_RPC] Added effectiveGasPrice field to proof_getTransactionReceipt and parity_getBlockReceipts
[JSON_RPC] Fixed log indexes in receipts for parity_getBlockReceipts
[JSON_RPC] Fixed eth_estimateGas for nested transactions. More details: #3305
[JSON_RPC] Export WitnessCollector via RPC module. More details: #3239
[CONFIG/DISCOVERY] Fixed setting discovery config. More details: #3185
[CONFIG/BUGFIX] Improved logging when incorrect configuration config has been found. More details: #3251
[CHAINSPEC/LONDON] Allowed extra parameters for 1559 configuration in chainspec. The parameter list: eip1559BaseFeeMaxChangeDenominator, eip1559ElasticityMultiplier, eip1559BaseFeeInitialValue. If they're not set the default value would not change.
[LAUNCHER] Fixed bug in Nethermind.Launcher. On Linux Arm64, users could not run Nethermind.Launcher.
[HEALTH_CHECKS] Added additional default information in the webhook payload (more descriptive warning, node name, hostname, IP). More details: https://docs.nethermind.io/nethermind/ethereum-client/monitoring-node-health
[HEALTH_CHECKS] Cosmetic changes in the health checks message. More details: #3270
[xDAI/CONFIG] Increased the default xDAI TxPool size from 1024 transactions to 2048.
[BUGFIX] Fixed block parameters for filters. More details: #3267
[SYNC] Updated pivots for parallel sync

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)

  1. sudo add-apt-repository ppa:nethermindeth/nethermind
  2. sudo apt install nethermind
  3. To execute the launcher
    nethermind
  4. To execute the runner
    nethermind --config mainnet

Homebrew

  1. brew tap nethermindeth/nethermind
  2. brew install nethermind
  3. To execute the launcher
    nethermind-launcher
  4. To execute the runner
    nethermind --config mainnet

Docker

  1. docker pull nethermind/nethermind
  2. docker run -it nethermind/nethermind

Linux

  1. sudo apt-get update && sudo apt-get install libsnappy-dev libc6-dev libc6 unzip
  2. wget https://github.com/NethermindEth/nethermind/releases/download/1.11.0/nethermind-linux-amd64-1.11.0-11f503b-20210820.zip
  3. unzip nethermind-linux-amd64-1.11.0-11f503b-20210820.zip -d nethermind
  4. cd nethermind
  5. ./Nethermind.Launcher
  6. select desired configuration

Linux Arm64

  1. sudo apt-get update && sudo apt-get install libsnappy-dev libc6-dev libc6 librocksdb5.17 unzip
  2. wget https://github.com/NethermindEth/nethermind/releases/download/1.11.0/nethermind-linux-arm64-1.11.0-eb0ea65-20210819.zip
  3. unzip nethermind-linux-arm64-1.11.0-11f503b-20210820.zip -d nethermind
  4. cd nethermind
  5. ./Nethermind.Launcher
  6. select desired configuration

Windows

  1. download windows package nethermind-windows-amd64-1.11.0-11f503b-20210820.zip
  2. unzip the file
  3. run Nethermind.Launcher.exe
  4. select desired configuration

macOS

  1. brew install rocksdb
  2. download darwin package nethermind-darwin-amd64-1.11.0-11f503b-20210820.zip
  3. unzip the file
  4. run Nethermind.Launcher
  5. select desired configuration