Releases: paradigmxyz/reth
Reth v1.11.3
Latest Release
Important
This release replaces v1.11.x, and users must upgrade to v1.11.3
- fix(trie): panic in sparse trie proof workers
Update Steps
Nodes can be restarted using the new binary with no required update steps. Errors during payload validation may continue to be seen, but will not stall the node.
To fully fix errors such as those described in issue 22973, shut down the node and run:
reth db --datadir <datadir> repair-trieThis command will take up to 2 hours to complete for ethereum mainnet. Once complete, start reth node as normal.
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | High |
| Non-Payload Builders | High |
All Changes
- chore: release 1.11.3
- fix(trie): Reset proof v2 calculator on error (#22781)
- cherry-pick: fix don't produce both updates and removals for trie nodes (#22507)
- cherry-pick: install rayon panic handler (37f5b3a)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.11.3-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.11.3-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.11.3-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.11.3-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
Reth v1.11.2
Latest Release
Important
This release replaces v1.11.1, and users must upgrade to v1.11.2
- fix(engine): reset execution cache hash on clear (#22895)
Backwards Compatibility
Important
In case you need to downgrade after running v1.11.x, please downgrade to the latest v1.10.x release. If you need to downgrade further below v1.10.0, please downgrade to v1.9.4.
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | High |
| Non-Payload Builders | High |
All Changes
- chore: upgrade to 1.11.2
- fix(engine): reset execution cache hash on clear (#22895)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.11.2-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.11.2-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.11.2-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.11.2-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
Reth v1.11.1
Latest Release
Important
This release replaces v1.11.0, and users must upgrade to v1.11.1
Backwards Compatibility
Important
In case you need to downgrade after running v1.11.x, please downgrade to the latest v1.10.x release. If you need to downgrade further below v1.10.0, please downgrade to v1.9.4.
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | High |
| Non-Payload Builders | High |
All Changes
- fix lockfile
- chore: release 1.11.1
- fix: properly reveal trie nodes (#22415)
- fix: overlay preparation on tokio (#22492)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.11.1-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.11.1-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.11.1-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.11.1-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
Reth v1.11.0
Reth v1.11.0 delivers massive state root performance gains, benchmarks show a ~25% reduction in mean newPayload latency (42.9ms → 32.4ms), ~27% improvement at P90 (72.4ms → 53.1ms), and +33% throughput (700M → 1G gas/s), through the new sparse trie as cache. Up-to-date performance metrics can be seen on the ethpandaops Labs dashboard. v1.11.0 also introduces an experimental hot/cold storage architecture, introduced via --storage.v2.
The headline feature of this release is sparse trie as cache (#21583): the sparse trie is now preserved across payload validations (#21534), eliminating redundant trie reconstruction on every newPayload, and allowing reuse of trie nodes in memory. Combined with parallel proof workers pool optimizations (#22051), integration with prewarming (#21901), parallel state hashing (#21836), and many allocation/scheduling optimizations, state root computation is dramatically faster.
The new --storage.v2 CLI flag (#21868) introduces an experimental hot/cold storage architecture that routes history indices and transaction hash lookups to RocksDB, and writes changesets to static files. This architecture also drops usage of reth's plain state tables (#21115). Below is the measured disk usage at block 24396823:
| Node Type | Pre v1.11 | v1.11 (v2) | Savings |
|---|---|---|---|
| Full | 1.46 TB | 1.02 TB | -30% |
| Minimal | 449 GB | 224 GB | -50% |
| Archive | 2.99 TB | 2.31 TB | -23% |
Note:
--storage.v2requires a fresh sync from scratch — it cannot be enabled on an existing node database. Public snapshots are available at snapshots.reth.rs to accelerate initial sync.
Backwards Compatibility
Important
In case you need to downgrade after running 1.11.x, please downgrade to v1.10.2
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | High |
| Non-Payload Builders | Medium |
Breaking Changes
SDK
- Removed
reth-statelesscrate (#22115) - Removed
resscrates from workspace (#22057) - Removed
TypesAnd1-5staging types fromProviderFactoryBuilder(#22049) - Removed
SerialSparseTrie— always useParallelSparseTrie(#21808, #21435) - Use hashed state as canonical state representation (#21115)
- Merged
SparseTrieExtintoSparseTrietrait (#22035) - Removed op-reth from repository — it now lives in its own repo (#21532)
- Breaking dependency bumps: revm 34, alloy 1.6.3, alloy-evm 0.27.2 (#21584, #21337)
- Added
Blockassociated type toTransactionValidatortrait (#21359)
CLI
- Renamed
--engine.enable-sparse-trie-as-cacheto--engine.legacy-trie(#21851) - Removed
--edgefeature flag in favor of--storage.v2(#21868) - Removed Windows build and release support (#21902)
jemalloc,asm-keccak, andmin-debug-logsare now default features (#22034)
Features
Performance — Sparse Trie & State Root
- Sparse trie as cache: Preserve sparse trie across payload validations, eliminating redundant trie reconstruction (#21583, #21534)
- Dedicated rayon pool for proof workers, preventing contention with other parallel work (#22051)
- Send proofs directly from prewarming to multiproof task, cutting out intermediate buffering (#21901)
- Parallel state hashing for
HashedPostStateupdates (#21836) - Cache fetched proof targets in
SparseTrieCacheTaskto avoid redundant DB lookups (#21612) - Reuse proof nodes buffer in
reveal_nodes(#21648) - Reuse account RLP buffer in
SparseTrieCacheTask(#21644) - Avoid clearing already-cached sparse trie on repeated validations (#21702)
- Dispatch V2 storage proofs in lexicographical order for cache locality (#21684)
- Process state/prewarm updates directly without intermediate collection (#21768)
- Better scheduling for storage roots computation (#21987)
- Parallelize
merge_ancestors_into_overlayand COW extend operations (#21379, #21375) - Treat hashes as bytes in
BranchNodeCompactto avoid conversion overhead (#22089) - Use
TrieMaskiterator for efficient bit iteration (#21676) - Fix allocation hot paths with capacity hints and buffer reuse (#21466)
- Use
EntryAPI to avoid empty Vec allocations (#21645) - Add
memory_sizeheuristic forParallelSparseTrie(#21745)
Performance — Engine & Prewarming
- Fixed-cache for execution cache with O(1) lookups (#21128)
- Skip transaction prewarming for small blocks via transaction count threshold (#22094)
- Add
PrewarmMode::Skippedto avoid spawning idle workers on small blocks (#22066) - Sequential signature recovery for small blocks (#22077)
- Disable balance check for prewarming transactions (#21941)
- Use shared channel for prewarm workers (#21429)
- Optimistically prepare canonical overlay (#21475)
- Skip DB lookup for new blocks in
insert_block_or_payload(#21650) - Single-pass fold for
EvmStatemetrics collection (#21852) - Use biased select and prioritize engine events (#21556)
- Spawn proof workers in a separate thread to avoid tokio contention (#21780)
Performance — Persistence & DB
- Combine
save_blocksand prune into single MDBX commit (#21927) - Batch finalized/safe block commits with
SaveBlocks(#21663) - Use separate pool for
save_blocks(#21764) - Flatten
HashedPostStatebefore persisting (#21422) - Stack-allocate
ShardedKeyandStorageShardedKeyencoding (#21200) - Use
Cow::Borrowedinwalk_dupto avoid allocation (#21220) - Use
alloy_primitiveshasher for DashMaps (#21726) - Replace
RwLock<HashMap/HashSet>withDashMap/DashSet(#21692) - Switch to unstable sort where ordering guarantees aren't needed (#21803)
- Build Docker images for
target-cpu=x86-64-v3by default (#21761) - Reduce tracing span noise in prewarm and proof workers (#22101, #22044)
- Parallelize
into_sortedwith rayon (#21193) - RocksDB: increase write buffer size to 128 MB ([#21696](https://github.com/paradigmxyz/ret...
Reth v1.10.2
Maintenance Release
- Resolves a vergen dependency issue for sdk users
- Addresses some perf regressions introduced in 1.10.1, 1.10.1 users should upgrade
Backwards Compatibility
Important
In case you need to downgrade after running 1.10.x, please downgrade to 1.9.4
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | Medium as in 1.10.0 |
| Non-Payload Builders | Medium as in 1.10.0 |
All Changes
- chore(deps): bump vergen and vergen-git2 to 9.1.0 (#21141)
- fix: handle incomplete receipts gracefully in receipt root task (#21285)
- fix: clear
overlay_cacheinwith_extended_hashed_state_overlay(#21233) - fix(engine): clear execution cache when block validation fails (#21282)
- chore(release): prep v1.10.2 release (#21287)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.10.2-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.10.2-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.10.2-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.10.2-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.10.2-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
OP-Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | op-reth-v1.10.2-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.10.2-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.10.2-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.10.2-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.10.2-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/op-reth | - |
Full Changelog: v1.10.1...v1.10.2
Reth v1.10.1
Maintenance Release
- Reverting the reth-chain crate changes and adds the useful LazyTrieData/SortedTrieData types directly to reth-trie-common (#21155)
- Prevent ExExManager deadlock when buffer clears after being full (#21135)
Backwards Compatibility
Important
In case you need to downgrade after running 1.10.x, please downgrade to 1.9.4
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | Medium as in 1.10.0 |
| Non-Payload Builders | Medium as in 1.10.0 |
All Changes
- chore: bump version to 1.10.1 (#21188)
- chore: rename extend_ref methods on sorted data structures (#21043)
- fix(flashblocks): Add flashblock ws connection retry period (#20510)
- chore(bench): add --disable-tx-gossip to benchmark node args (#21171)
- refactor(stages): reuse history index cache buffers in
collect_history_indices(#21017) - feat(download): resumable snapshot downloads with auto-retry (#21161)
- ci: update to tempoxyz (#21176)
- chore: apply spelling and typo fixes (#21182)
- docs: document minimal storage mode in pruning FAQ (#21025)
- chore(deps): weekly
cargo update(#21167) - feat(execution-types): add receipts_iter helper (#21162)
- revert: undo Chain crate, add LazyTrieData to trie-common (#21155)
- feat(engine): add new_payload_interval metric (start-to-start) (#21159)
- feat(engine): add time_between_new_payloads metric (#21158)
- fix(storage-api): gate reth-chain dependency behind std feature
- perf(storage): batch trie updates across blocks in save_blocks (#21142)
- refactor: use ExecutionOutcome::single instead of tuple From (#21152)
- chore(chain-state): reorganize deferred_trie.rs impl blocks (#21151)
- feat(primitives-traits): add try_recover_signers for parallel batch recovery (#21103)
- perf: make Chain use DeferredTrieData (#21137)
- fix(engine): request head block download when not buffered after backfill (#21150)
- fix(
docs/cli): updatehelp.rsto use nightly toolchain (#21149) - fix: properly record span fields (#21148)
- fix: release mutex before dropping ancestors in wait_cloned (#21146)
- feat(db): implement extra dup methods (#20964)
- feat(consensus): incremental receipt root computation in background task (#21131)
- perf: start saving cache sooner (#21130)
- chore(deps): bump vergen and vergen-git2 to 9.1.0 (#21141)
- fix(exex): prevent ExExManager deadlock when buffer clears after being full (#21135)
- perf(engine): defer trie overlay computation with LazyOverlay (#21133)
- feat(storage): add EitherReader for routing history queries to MDBX or RocksDB (#21063)
- perf: Optimize multiproof sequencer
add_proof(#21129) - refactor: use
BlockExecutionOutcomeinExecutedBlock(#21123) - chore(deps): update alloy-evm and alloy-op-evm to 0.26.3 (#21126)
- perf(cli): use available_parallelism as default for re-execute (#21010)
- chore(provider): pre alloc tx hashes (#21114)
- feat: stagging revm v34.0.0 (#20627)
- feat(trie): in-memory trie changesets (#20997)
- perf(trie): fix extend_sorted_vec O(n log n) → O(n+m) merge (#21098)
- refactor(chain-state): extract blocks_to_chain helper (#21110)
- fix(reth-bench): use requests hash (#21111)
- perf: reserve in extend_sorted_vec (#21109)
- feat: add
rocksdbtosave_blocks(#21003) - feat(reth-bench): add generate-big-block command (#21082)
- perf(trie): add k-way merge batch optimization for merge_overlay_trie_input (#21080)
- feat: parallelize
save_blocks(#20993) - feat: add get/set db settings for
rocksdb(#21095) - feat(rpc): add flag to skip invalid transactions in testing_buildBlockV1 (#21094)
- test(storage): add parametrized MDBX/RocksDB history lookup equivalence tests (#20871)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.10.1-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.10.1-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.10.1-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.10.1-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.10.1-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
OP-Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | op-reth-v1.10.1-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.10.1-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.10.1-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.10.1-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.10.1-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/op-reth | - |
Reth v1.10.0
This release brings performance improvements (overlay caching for state providers (#19752), transaction pool optimizations (#20405, #20398)), new RPC endpoints (engine_getBlobsV3, debug_getBadBlock, reth_subscribePersistedBlock, testing_buildBlockV1). With these changes we saw a ~25% improvement on average on newPayload.
Further, the release comes with CLI enhancements (--netrestrict, --max-peers, --minimal, --p2p-secret-key-hex), and extended OP Stack flashblock support.
This is a major version bump due to SDK breaking changes including the removal of the Consensus::Error associated type and revamped tx policy traits.
Action Required: The merkle changeset defaults were fixed, but this means if you had manually set a non-default value, it may now conflict or behave unexpectedly. Users that are running a non default (1064) merkle changeset pruning distance should remove it from their reth.toml (#20108)
Backwards Compatibility
Important
In case you need to downgrade after running 1.10.x, please downgrade to 1.9.4
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | Medium |
| Non-Payload Builders | Medium |
Breaking Changes
SDK
- Removed associated error type for
Consensustrait (#20843) - Revamped tx policy traits (#19878)
- Extended tx policy API (#20861)
- Changed
BestTransactions::mark_invalidto accept error by reference (#19981) - Replaced
CliHeaderwithHeaderMut(#20001) - Changed
append_block_bodyto take a ref (#20504) EthExecutionContextrequires extradata (#20314)- Renamed
tx_resp_builder(#20037)
Pruning Behavior
- Fixed merkle changeset defaults (#20108): Action Required - Users running a non-default (1064) merkle changeset pruning distance should remove it from their
reth.toml
Features
Performance
RPC
- Support
txIndexindebug_traceCall(#18477) - Add support for
debug_getBadBlock(#20144) - Add
testing_buildBlockV1(#20094) - Add
engine_getBlobsV3(#20415) - Add
reth_subscribePersistedBlockendpoint (#20877) - Support more
eth_simulateV1error codes (#20054)
CLI
- Add
--p2p-secret-key-hexargument (#19670) - Add
--netrestrictargument (#19686) - Add
--max-peerssupport (#20139)
P2P
- Don't replace peer status on discovered nodes (#20018)
Pruning & Storage
- Support custom static file batch sizes (#19562)
SDK
- New
convert_to_blockPayloadValidatorfunction (#19953) - Better RPC bounds (#19980)
- Deferred Trie API (#19894)
- Insert executed block hook (#19822)
OP Stack
- Changed flashblock log target to "flashblock" (#19656)
- Support batch requests for historical RPC (#19679)
- Flashblock sidecar process (#19667)
- Support flashblocks on
eth_getTransactionByHash(#19954) - Support flashblocks on
eth_getBlockTransactionCount(#20291)
Bug Fixes
P2P
- Encode receipts for eth/69 correctly (#20074)
RPC
- Fixed
admin_nodeInfoignoring external IP settings (#19784) - Fixed refund bundle calculation (#19991)
- Fixed
trace_filterrange off by one (#20199) - Returns invalid params if
toBlockexceeds current head (#20202) - Validate
eth_getLogsblock range (#20218) - Fixed panic in
eth_feeHistory(#20969) - Diff tracer fix for unchanged accounts (revm-inspectors#387)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.10.0-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.10.0-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.10.0-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.10.0-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.10.0-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
OP-Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | op-reth-v1.10.0-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.10.0-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.10.0-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.10.0-x86_64-apple-darwin.tar.gz | PGP Signature | |
| <img src="https://www.svgrepo.com/download/511330/apple-1... |
Reth v1.9.4
Backwards Compatibility
Important
In case you need to downgrade after running 1.10.x, please downgrade to 1.9.4
All Changes
- fix: set minimum pruning distance to 64 blocks for trie changesets (#20108)
- fix: set merkle changesets distance minimum to 128 (#20200)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.9.4-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.9.4-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.9.4-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.9.4-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.9.4-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
OP-Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | op-reth-v1.9.4-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.9.4-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.9.4-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.9.4-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.9.4-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/op-reth | - |
Full Changelog: v1.9.3...v1.9.4
Reth v1.9.3
This is on opstack patch release on top of v1.9.2 that contains fix for rollup boost that includes the new jovian fields in the payload id (#19726)
Also updates the superchan registry with updated timestamps for jovian and isthmus (e.g. worldchain isthmus: ethereum-optimism/superchain-registry#1149)
This release is recommended for opstack sepolia where jovian activates Wed 19 Nov 2025 16:00:01 UTC
For fusaka support info see also v1.9.0
Update Priority
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | low |
| Non-Payload Builders | low |
See Update Priorities for more information about this table.
All Changes
- chore: bump version v1.9.3 (#19831)
- chore(op-reth/scr): update superchain-registry (#19806)
- fix: add minbasefee for jovian attributes (#19726)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.9.3-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.9.3-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.9.3-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.9.3-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.9.3-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
OP-Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | op-reth-v1.9.3-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.9.3-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.9.3-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.9.3-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.9.3-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/op-reth | - |
Full Changelog: v1.9.2...v1.9.3
Reth v1.9.2
This patch release on top of v1.9.1 that contains an opstack fix for RPC calls pre canyon (#19587)
And re-enables support for --prune.receiptslogfilter that was dropped in v1.9
For fusaka support info see also v1.9.0
This table provides priorities for which classes of users should update particular components.
| User Class | Priority |
|---|---|
| Payload Builders | low |
| Non-Payload Builders | low |
See Update Priorities for more information about this table.
All Changes
- ci: use macos-14 runner (#19658)
- revert: "refactor(prune): remove receipts log filter segment (#19184)" (#19646)
- chore: bump op-revm v12.0.2 patch (#19629)
- chore: bump version to 1.9.2 (#19647)
Binaries
See pre-built binaries documentation.
The binaries are signed with the PGP key: 50FB 7CC5 5B2E 8AFA 59FE 03B7 AA5E D56A 7FBF 253E
Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | reth-v1.9.2-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | reth-v1.9.2-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.9.2-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | reth-v1.9.2-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | reth-v1.9.2-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/reth | - |
OP-Reth
| System | Architecture | Binary | PGP Signature |
|---|---|---|---|
| x86_64 | op-reth-v1.9.2-x86_64-unknown-linux-gnu.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.9.2-aarch64-unknown-linux-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.9.2-x86_64-pc-windows-gnu.tar.gz | PGP Signature | |
| x86_64 | op-reth-v1.9.2-x86_64-apple-darwin.tar.gz | PGP Signature | |
| aarch64 | op-reth-v1.9.2-aarch64-apple-darwin.tar.gz | PGP Signature | |
| Docker | paradigmxyz/op-reth | - |
Full Changelog: v1.9.1...v1.9.2
