Releases: NethermindEth/nethermind
v1.15.0
What changed?
In this version there are plenty of new changes You may find interesting like:
- TraceStorePlugin
- ETH/67
- Shanghai hardfork preparation
- Improvements & fixes in JSON-RPC, sync, metrics, networking, recovering from corruption, and more!
JsonRpc
- Add Sync stages endpoint Adds JsonRPC Debug endpoint
debug_getSyncStage
that reports sync stage. - Fix eth_sendRawTransaction. returns insufficient funds when executed twice. Resolves #4829
- Fix eth_call/eth_estimateGas/eth_createAccessList to use PREVRANDAO value from specified block.
Synchronization & Networking
- eip-4938: eth/67 Add support for
eth/67
. - Optimized Eth/66 implementation Use requestId instead of waiting for response from the peer. Resolves #4714
- Snap Healing Support healing of state trie during sync with snap protocol. Preparation to decommision of
GetNodeData
message and pre-eth/67
protocol versions on mainnet. Resolves #4324 - Fix rare issue causeing State Sync corruption. Resolves #4776
- Fix rare issues causing peers to deadlock.
- Fix Headers sync hang with negative progress.
- Fix rare issue with all peers disconnecting.
- Fix GetBlockHeaders reversed search Fix gapless reverse blockheader search. Resolves #5017
- Avoid excessive logs during Headers sync.
- Added
Network.DiscoveryDns
configuration option: Use tree is available through a DNS name. Keep it empty for the default of{chainName}.ethdisco.net
. Resolves #4321
Shanghai hardfork preparation
- Timestamp Based Fork Activation Allows for post-merge forks to use timestamp from CL client for fork activation. Resolves #4605
- EIP-3860: Limit and meter initcode Limit the maximum size of initcode to 49152 and apply extra gas cost of 2 for every 32-byte chunk of initcode. Resolves #4588
- Add engine_getPayloadV2 Add block value to engine_getPayloadV2 result. This change allows CL clients to compare locally produced block value with builder block value, allowing for CL client to compare locally created blocks with MEV-Boost ones. Spec: ethereum/execution-apis#314
Gnosis chain
- Gnosis bootnodes Update Gnosis bootnodes to be able to sync properly on new nodes.
Plugins
- TraceStore plugin Allows to save parity like traces (
trace
JSON RPC module) to database during block processing and later serving them without having the state data. Makes serving relevent trace methods orders of magnitudes faster. Takes disk space. Affected methods:trace_filter
,trace_block
,trace_transaction
,trace_get
,trace_replayTransaction
,trace_replayBlockTransactions
. Resolves #4205 and #4143. Related PRs: #4971 Add TraceStoreConfig.DeserializationParallelization- Configuration:
TraceStore.Enabled
- Defines whether the TraceStore plugin is enabled, iftrue
traces will come from DB if possible. DefaultValuefalse
.TraceStore.BlocksToKeep
- Defines how many blocks counting from head are kept in the TraceStore, if0
all traces of processed blocks will be kept. DefaultValue10000
. Default value was chosen to have neglegible disk usage. Keep in mind that keeping full trace history on disk will take a lot of space.TraceStore.TraceTypes
- Defines what kind of traces are saved and kept in TraceStore. Available options are:Trace
,Rewards
,VmTrace
,StateDiff
and combinations of them or justAll
. DefaultValueTrace, Rewards
. Default value will suffice to fully supporttrace_filter
,trace_block
,trace_transaction
,trace_get
methods and partial calls totrace_replayTransaction
,trace_replayBlockTransactions
methods. Non-default values that will includeVmTrace
orStateDiff
will increase resource usage by a lot!TraceStore.DeserializationParallelization
- Maximum parallelization when deserializing requests fortrace_filter
.0
defaults to logical cores, set to something low if you experience too big resource usage. DefaultValue '0'. Recommended to set to1
or2
on low-core public JSON RPC endpoints.
- Configuration:
Metrics
- Gas Usage Metrics Added metrics for gas usage: GasUsed, GasLimit
- Version Metrics Added better version metric. Resolves #4860
- EIP-2159 metrics Added 4 new metrics that follow eip-2159 (ethereum_blockchain_height ethereum_best_known_block_number ethereum_peer_count ethereum_peer_limit). Resolves #4842
- Fixed Building Gauge Names.
- Fixed main metrics being wrongly updated through JSON RPC call. Resolves #4943
CLI
- Fix eth.syncing command.. Resolves #4537
TxPool
Other fixes
- Fix enode parsing when it contains
DiscoveryPort
. Resolves #4876 - Block Config and Mining Config separation Added separate Block creation configuration settings. Deprecated Mining configuration with added descriptions. Resolves #4836
- Fix edge case in debug_trace when memory tracing is enabled.
- DB repair on corruption Nethermind will now attempt to fix RocksDb file corruption. Requires restart.
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.15.0/nethermind-linux-amd64-1.15.0-2b70876-20221228.zip
unzip nethermind-linux-amd64-1.15.0-2b70876-20221228.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.15.0/nethermind-linux-arm64-1.15.0-2b70876-20221228.zip
unzip nethermind-linux-arm64-1.15.0-2b70876-20221228.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.15.0-2b70876-20221228.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.15.0-2b70876-20221228.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.7
Gnosis chain issue hotfix.
What changed?
Fixed issue with high resource usage due to unnecessary block propagation on Gnosis chain after network issues.
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.7/nethermind-linux-amd64-1.14.7-4fe81c6-20221130.zip
unzip nethermind-linux-amd64-1.14.7-4fe81c6-20221130.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.7/nethermind-linux-arm64-1.14.7-4fe81c6-20221130.zip
unzip nethermind-linux-arm64-1.14.7-4fe81c6-20221130.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.7-4fe81c6-20221130.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.7-4fe81c6-20221130.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.6
What changed?
This version is created mostly for Gnosis chain purpose + increase Pivots for supported chains to speed up syncing procedure.
Gnosis
- Gnosis TTD value (#4901)
- Gnosis and Chiado block propagation time set in config + config minor fixes (#4880)
JSON RPC
- Fix for eth_call missing RANDAO value from requested block (#4873)
General
- Update Pivots for all supported chains to decrease the time of syncing procedure (#4923)
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.6/nethermind-linux-amd64-1.14.6-6aea772-20221121.zip
unzip nethermind-linux-amd64-1.14.6-6aea772-20221121.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.6/nethermind-linux-arm64-1.14.6-6aea772-20221121.zip
unzip nethermind-linux-arm64-1.14.6-6aea772-20221121.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.6-6aea772-20221121.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.6-6aea772-20221121.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.5
What changed?
This version is a rollback of one minor change related to Sepolia chain which resulted in unexpected regression on other chains. The issue was unnecessarily activating the SnapSync procedure on already synced nodes, that had previously configured using FastSync. This wasn't harmful for the node but was consuming resources which could have resulted in missed attestations during the processing time.
We recommend to skip version 1.14.4, and instead upgrade to 1.14.5.
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.5/nethermind-linux-amd64-1.14.5-380bf9c-20221029.zip
unzip nethermind-linux-amd64-1.14.5-380bf9c-20221029.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.5/nethermind-linux-arm64-1.14.5-380bf9c-20221029.zip
unzip nethermind-linux-arm64-1.14.5-380bf9c-20221029.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.5-380bf9c-20221029.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.5-380bf9c-20221029.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.4
What changed?
Most of the improvements in this release were raised by our Community via GitHub Issues and Discord channel suggestions.
We are continuing to improve our Execution layer Client by fixing improvements raised by the community, improving stabilization, reducing the data size and UX of our Client.
Known issues
A few Nethermind users reported that Snap Sync unexpectedly activates on their already synced nodes.
If this happens we recommend that you downgrade to 1.14.3. We suspect it's only affecting nodes that initially synced with fast sync before switching to snap sync.
What happens if you don’t downgrade? Your node would eventually work correctly, but it may be overwhelmed by snap requests while processing, which could result in missed attestations. A fix is being prepared and will be deployed tomorrow in version 1.14.5.
Release Overview
- More profitable blocks post-merge
- Fixes & improvements in synchronization and networking
- Fixes & improvements in JSON-RPC:
eth_getFilterLogs
,parity_PendingTransactions
,eth_subscribe
,eth_getBlockByNumber
,eth_getBlockByHash
- Optimization of disk reads and CPU usage
- First part of Shanghai EIPs
Block Construction
- Continuous block improvements until slot finishes, refreshing added transactions, allows making more profitable blocks (#4488)
- Added
ExtraData
configuration for post-merge blocks The default ExtraData isNethermind
, but you can set it viaMining.ExtraData
config
JsonRPC
- eth_getFilterLogs returns different output for the same parameters
- Corrected behaviour of eth_getFilterLogs to return the right logs for subsequent calls with the same filter (created by eth_newFilter) (#4771)
- Add optional argument Address in parity_pendingTransactions - Implementation, Tests, Spacing Fixes
- parity_pendingTransactions call now accepts an argument
address
to filter the pending transactions originating foraddress
(#4413)
- parity_pendingTransactions call now accepts an argument
- Fix logIndex in logs subscription - fix log index in logs subscription, adjust tests
- The second part of
eth_getBlockByNumber
andeth_getBlockByHash
optimization -- The previous release optimized requests only if the second parameter
returnFullTransactionObjects
was set tofalse
. Now it is optimized for both boolean values.
- The previous release optimized requests only if the second parameter
Sync
- Reduce old receipts response time
- Old receipts sync time improvement on slow IO
- Fix forward sync may stuck on slow peer
- Fixed forward sync sometimes stuck on a slow peer
- Disable snap capability after healing instead of StateRanges
Networking
- Multiple peering improvements
- Fix node speed does not update
- Fix peer dropping randomly
- Fix stuck when restarting with a new pivot
- Fix Syncing to a Chain with Invalid Terminal Block
- Fix peer manager keep reconnecting too quickly - adding connection delay if client disconnects (#2191, #4747)
- Drop support for old
Eth
protocols -eth/62
,eth/63
,eth/64
,eth/65
- Remove pre eth66 network protocols - This is a breaking change (#4717)
- UPnP port forwarding support
- UPnP support - Add a plugin that allows automatic port forwarding on supporting router. Enabled by
--Network.EnableUPnP=true
config value.
- UPnP support - Add a plugin that allows automatic port forwarding on supporting router. Enabled by
TxPool
- Optimize deployed code filter for the state to be accessed less
- Optimization reduces disk reads and CPU usage of the node
EVM
Added two Shanghai upgrade related EIPs:
HealthChecks
- Disable HealthChecks UI if HealthChecks is not enabled
- If HealthChecksUI and HealthChecks are not both enabled user will see a warning and UI would not be added
Metrics
- Fixed unable to use metrics on pull mode without specifying gateway url
- Added Engine API metrics
- Added a new TxPool metric - PendingTransactionsWithExpensiveFiltering
Log
- Fixed
Could not reach PushGatewayUrl
error appearing in logs a lot - Fixed peer header printed to logs without any peers
- Added time unit (microseconds) to JSON RPC report
- Fixed incorrect logs for old receipts and old bodies. The ancient barriers were ignored.
Config
- Revised product version and client id
- Changed the default setting of
Merge.Enabled
totrue
- Added
none.cfg
to allow CLI configuration without mainnet defaults- Add an empty config file to allow configuring everything via command line flags without carrying mainnet defaults
- Added new
Chiado
chainspec and config
ENR
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.4/nethermind-linux-amd64-1.14.4-d7f8306-20221026.zip
unzip nethermind-linux-amd64-1.14.4-d7f8306-20221026.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.4/nethermind-linux-arm64-1.14.4-d7f8306-20221026.zip
unzip nethermind-linux-arm64-1.14.4-d7f8306-20221026.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.4-d7f8306-20221026.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.4-d7f8306-20221026.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.3
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
v1.14.2
What changed?
You need to update only if you're a validator and you've noticed following error in your logs: {"jsonrpc":"2.0","error":{"code":-32001,"message":"Receipt not available for 'From' block '15537393'."},"id":67}
Please note the block number 15537393 in the error message.
Only a small subset of nodes have been affected.
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.2/nethermind-linux-amd64-1.14.2-08354f9-20220915.zip
unzip nethermind-linux-amd64-1.14.2-08354f9-20220915.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.2/nethermind-linux-arm64-1.14.2-08354f9-20220915.zip
unzip nethermind-linux-arm64-1.14.2-08354f9-20220915.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.2-08354f9-20220915.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.2-08354f9-20220915.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.1
Recommended version for Mainnet The Merge transition
What changed?
[MERGE] Workaround for Nimbus to not produce empty blocks (#4474) - will be removed when Nimbus releases their fix.
[MERGE] Edge case scenario fixes (#4417, #4463, #4476, #4511)
[MERGE/LOG] UX improvements including exit early on configuration issues (#4529, #4530)
[FIX] Fix shutdowns during sync (#4380, #4477)
[CONFIG] Use built-in chainspec when there isn't a custom path specified explicitly (#4450) - this guarantees that for standard config hardfork chainspec will be picked up
[JSON RPC] Change eth_syncing to report true when downloading ancient bodies and receipts (#4441, #4507)
[JSON RPC] Allow eth_getProof accept trimmed index values (#4457)
[LOG] Handle ENR search failures, emit user-friendly warning instead of errors in logs (#4478)
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.1/nethermind-linux-amd64-1.14.1-1a32d45-20220907.zip
unzip nethermind-linux-amd64-1.14.1-1a32d45-20220907.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.1/nethermind-linux-arm64-1.14.1-1a32d45-20220907.zip
unzip nethermind-linux-arm64-1.14.1-1a32d45-20220907.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.1-1a32d45-20220907.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.1-1a32d45-20220907.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.14.0
For the Merge, use v1.14.1
What changed?
[MERGE] Updated chainspec for mainnet Merge! (#4427)
[DB] Migrated RocksDb to version v6.29. This upgrade is not reversible. DB migration is one way. (#4351, #4445)
[MERGE] Merge edge cases improvements and fixes (#4337, #4373, #4370, #4390, #4409, #4415, #4418)
[JSON RPC / MERGE] Add explicit EngineHost
, EnginePort
and EngineEnabledModules
parameters (#4358, #4392, #4401)
[JSON RPC] Fix eth_getTransactionCount
for pending
block (#4340)
[JSON RPC] Fix and optimize trace_callMany
to persist state between transactions (#4436)
[JSON RPC] Set gas cap to max if zero (#4366)
[JSON RPC] Add explicit blockHash
field support to eth_getLogs
(it was supported before by From
and To
fields) (#4387)
[JSON RPC / TXPOOL] Set default for MiningConfig.MinGasPrice to zero (#4329)
[JSON RPC / TXPOOL] Include local transactions that would be priced out in JSON RPC responses (#4383)
[P2P / TXPOOL] Broadcast full transactions before processing (#4365)
[P2P] Respond to GetNodeData message with unpersisted data from memory cache (#4379)
[P2P] Disable WitnessProtocol from default configs to be able to connect to Besu (issue on Besu cannot parse Hello message) (#4447)
[STATE] Fixes to potential Trie corruptions on restarts (#4341, #4381)
[MEM] Fix excessive GC pressure replacing MemoryCache with LruCache (#4313)
[MEM] Memory improvements (#4353, #4271)
[SYNC] Fix edge case when sync hangs (#4362)
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.0/nethermind-linux-amd64-1.14.0-60f920b-20220822.zip
unzip nethermind-linux-amd64-1.14.0-60f920b-20220822.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.0/nethermind-linux-arm64-1.14.0-60f920b-20220822.zip
unzip nethermind-linux-arm64-1.14.0-60f920b-20220822.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.14.0-60f920b-20220822.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.14.0-60f920b-20220822.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration
v1.13.6
What changed?
[RocksDb] We detected regression in sync performance, because of the RocksDb update. This release rolled back the RocksDb version change introduced in 1.13.5. If you're using version 1.13.5 your DB will be still using RocksDb from version 1.13.5.
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.13.6/nethermind-linux-amd64-1.13.6-be7b4ab-20220801.zip
unzip nethermind-linux-amd64-1.13.6-be7b4ab-20220801.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.13.6/nethermind-linux-arm64-1.13.6-be7b4ab-20220801.zip
unzip nethermind-linux-arm64-1.13.6-be7b4ab-20220801.zip -d nethermind
cd nethermind
./Nethermind.Launcher
- select desired configuration
Windows
- download windows package
nethermind-windows-amd64-1.13.6-be7b4ab-20220801.zip
- unzip the file
- run
Nethermind.Launcher.exe
- select desired configuration
macOS
brew install rocksdb
- download darwin package
nethermind-darwin-amd64-1.13.6-be7b4ab-20220801.zip
- unzip the file
- run
Nethermind.Launcher
- select desired configuration