github NethermindEth/nethermind 1.31.0-rc
v1.31.0-rc

pre-releaseone day ago

210 commits, 1137 file changed

Major highlights

Holesky Pectra hard fork

The Holesky Pectra hard fork is scheduled on Monday, February 24, 2025, 9:55:12 PM UTC (epoch 115968)

Sepolia Pectra hard fork

The Sepolia Pectra hard fork is scheduled on Wednesday, March 5, 2025 7:29:36 AM (epoch 222464)

World chain support

Added support for World chain and its testnet. To start with these networks, run Nethermind process using --config flag which accepts now two new values:

  1. worldchain-mainnet
  2. worldchain-sepolia

Note: World chain also requires op-node to function properly.

For more details please check PR: #8044

Added support for Era1 format import/export

As part of our work to reduce disk requirements for running a node (EIP-4444) we added Era1 import/export functionality, that allows the import and export of historical data via:

  • CLI flags:
    • -Era.ImportDirectory "path" --Era.From 0 --Era.To 0 --Era.TrustedAccumulatorFile "somefile"
      • FromTo and TrustedAccumulatorFile is optional. Will import everything when range is set to 0. Will trust the era directory if TrustedAccumulatorFile is not specified.
    • -Era.ExportDirectory "path" --Era.From 0 --Era.To 0
      • FromTo is optional. Will export everything when set to 0.
      • accumulators.txt and checksums.txt will be created.
  • RPC endpoints:
    • admin_importHistory and admin_exportHistory

    • Example:

      curl localhost:8545 \
      -X POST \
      -H "Content-Type: application/json" \
      --data '{
      	"jsonrpc": "2.0",
      	"id": 0,
      	"method": "admin_importHistory",
      	"params": ["/data/era-import", 0,0, "/data/era-import/accumulators.txt"]
      }'

For more details please check the above PR: #6547

Features

Performance

Bug fixes and stability

Various bug fixes and stability improvements that improve Nethermind sta

Other changes

New Contributors

Full Changelog: 1.30.3...1.31.0-rc

Don't miss a new nethermind release

NewReleases is sending notifications on new releases.