yongkangc
91c4c80da7
perf(engine): release cache lock before waiting for state root validation
...
Move valid_block_rx.recv() out from under the execution cache write lock
in save_cache(). The original code held the lock across the blocking recv,
which stalled concurrent readers (get_cache_for) for ~100ms+ during state
root validation.
The usage guard (Arc<()> strong_count) still prevents concurrent access
to the shared ExecutionCache while the lock is released: is_available()
returns false as long as the SavedCache is alive, so get_cache_for()
returns None. split() is called inside update_with_guard to release the
guard and publish the new cache atomically under the write lock.
2026-02-20 07:21:52 +00:00
YK
d1a92afb57
feat(engine): add sub-phase timing histograms for sparse trie event loop ( #22368 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-20 06:56:04 +00:00
Dan Cline
0517c12c90
docs: remove stale db settings subcommands ( #22396 )
...
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com >
2026-02-20 05:34:01 +00:00
YK
237eb1675c
perf(trie): cache pending sparse trie target count ( #22355 )
2026-02-20 04:38:13 +00:00
Arsenii Kulikov
b6bcd7e6bd
fix: catch panics of named tasks ( #22386 )
2026-02-19 22:32:02 +00:00
Alexey Shekhirin
48122300d7
fix(bench): validate cached binaries match expected commit SHA ( #22392 )
...
Co-authored-by: Alexey Shekhirin <shekhirin@shekhirin-tempo.tail388b2e.ts.net >
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com >
2026-02-19 21:35:11 +00:00
Alexey Shekhirin
13f214f160
ci(bench): use schelk promote instead of recover when updating snapshot ( #22391 )
...
Co-authored-by: Alexey Shekhirin <shekhirin@shekhirin-tempo.tail388b2e.ts.net >
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com >
2026-02-19 21:29:38 +00:00
Georgios Konstantopoulos
f17592670d
fix(bench): checkout feature source to correct ref instead of symlinking ( #22390 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 20:42:21 +00:00
Alexey Shekhirin
c225132b81
ci(bench): drop root privileges for reth-bench ( #22380 )
2026-02-19 14:46:52 +00:00
radik878
dcc5d9ec30
fix(events): handle PipelineEvent::Unwound to clean up current_stage ( #22340 )
2026-02-19 13:48:57 +00:00
Alexey Shekhirin
6cd56b645b
ci(bench): support running benchmarks on closed/merged PRs ( #22378 )
2026-02-19 13:16:03 +00:00
Emma Jamieson-Hoare
794dbff26e
ci(hive): remove EIP-6110 deposit tests from expected failures (now passing) ( #22377 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 12:56:36 +00:00
Emma Jamieson-Hoare
fcfbed0bbc
ci(hive): ignore flaky reorg and sync timeout tests ( #22376 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 12:55:20 +00:00
Alexey Shekhirin
70bcd475fe
ci(bench): ABBA run order ( #22335 )
2026-02-19 12:40:44 +00:00
Emma Jamieson-Hoare
cd6e895a97
fix(rpc): return -32602 for PayloadAttributes structure validation errors ( #22374 )
...
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-02-19 12:32:31 +00:00
Emma Jamieson-Hoare
6552a3a9ab
ci(hive): fix eels runner OOM crashes ( #22373 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 12:04:22 +00:00
Derek Cofausper
6a91089542
ci(bench): fix cleanup to use sudo pkill and lazy unmount ( #22372 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-02-19 11:23:03 +00:00
YK
a9a1e504b4
refactor(trie): simplify encode_account_leaf_value ( #22366 )
2026-02-19 10:36:44 +00:00
YK
e280f25885
feat(trie): expose storage_wait_time as dedicated Prometheus metric ( #22359 )
2026-02-19 10:36:26 +00:00
Arsenii Kulikov
37c4f908fa
perf: store blinded node hashes on SparseNode::Branch ( #22290 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-02-19 09:34:42 +00:00
Georgios Konstantopoulos
a157be3f3b
perf(tasks): add LazyHandle<T>, use for hash post state ( #22347 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 08:48:24 +00:00
Georgios Konstantopoulos
e0eb306b2b
chore(engine): rename finish span to BlockExecutor::finish ( #22356 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 07:29:18 +00:00
Micke
7f4f3f1eb9
fix(prune): correct deleted entries count when skip_filter is used ( #22312 )
2026-02-19 06:19:02 +00:00
Georgios Konstantopoulos
8970f82aaf
perf(engine): prefetch first txs sequentially to avoid rayon scheduling stall ( #22305 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-19 05:53:52 +00:00
Georgios Konstantopoulos
8529da976f
fix(cli): store extradata as Bytes, decode hex in parser ( #22344 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 04:38:16 +00:00
stevencartavia
8fa539225b
refactor: remove duplicate apply_pre_execution_changes from Trace trait ( #22333 )
2026-02-19 04:32:42 +00:00
Doohyun Cho
93d546a36d
perf(trie): preserve allocations in sparse trie wipe() ( #21089 )
2026-02-19 04:02:20 +00:00
zhygis
5c83eb0b06
feat(log): disable file logging by default for non-node commands ( #21521 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-02-19 03:16:47 +00:00
Georgios Konstantopoulos
cd32e3cc05
feat(reth-bench): add prometheus metrics scraper ( #22244 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-19 03:13:40 +00:00
MergeBot
26470cadfc
perf(trie): remove redundant HashMap lookup in sparse trie account state query ( #22328 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 03:09:04 +00:00
Brian Picciano
506ab806e4
fix: propagate trie update diff result to trigger debug recorder writes ( #22331 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 02:52:43 +00:00
Forostovec
c2e846093e
fix(net): use continue instead of return in buffer_hashes loop ( #22337 )
2026-02-19 02:46:33 +00:00
dependabot[bot]
5df22b12d8
chore(deps): bump actions/upload-artifact from 4 to 6 ( #22338 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-19 02:33:00 +00:00
dependabot[bot]
ff9700bb3b
chore(deps): bump actions/github-script from 7 to 8 ( #22339 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-19 02:32:57 +00:00
Georgios Konstantopoulos
85d35fa6c0
feat(tasks): add WorkerMap for named single-thread workers ( #22262 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-19 02:27:02 +00:00
Georgios Konstantopoulos
47544d9a7e
fix(txpool): ensure transactions are added to pending subpool in nonce order ( #22308 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-18 20:31:04 +00:00
Alexey Shekhirin
ef33961aff
ci(bench): download snapshot in parallel with builds ( #22332 )
2026-02-18 17:40:17 +00:00
Georgios Konstantopoulos
0e01a694a7
fix(storage): clarify storage settings mismatch warning ( #22330 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 16:35:28 +00:00
Alexey Shekhirin
ee19320ee8
ci(bench): use ABBA run order to reduce variance ( #22321 )
2026-02-18 15:33:31 +00:00
Alexey Shekhirin
9251997c1f
ci(bench): build baseline and feature binaries in parallel ( #22323 )
2026-02-18 14:30:58 +00:00
Brian Picciano
302993b45a
feat(trie-debug): record SetRoot op in ParallelSparseTrie::set_root ( #22324 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 14:03:42 +00:00
Brian Picciano
8d97ab63c6
perf: use stack-allocated [u8; 65] for StoredNibblesSubKey encoding ( #22314 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-18 13:35:20 +00:00
Matthias Seitz
251f83ab0b
refactor: replace TryFrom*Response traits with unified RpcResponseConverter ( #22320 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 13:32:47 +00:00
Alexey Shekhirin
e6e0dde903
ci(bench): queue reth-bench jobs and report queue position in PR comment ( #22318 )
2026-02-18 12:53:12 +00:00
Georgios Konstantopoulos
b1b51261af
feat(ci): granular status updates for reth-bench workflow ( #22297 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 12:05:59 +00:00
Georgios Konstantopoulos
2ae5ef475e
feat(ci): add workflow_dispatch trigger for reth-bench ( #22298 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 11:22:22 +00:00
drhgencer
8861e2724f
fix(txpool): notify subscribers when set_block_info promotes transaction ( #22243 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 09:08:16 +00:00
Georgios Konstantopoulos
734ec4ffe6
feat(engine): add tracing spans to execute_block setup ( #22304 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 06:23:24 +00:00
Georgios Konstantopoulos
cbcdf8dac0
chore(tracing): use underscores instead of spaces in span names ( #22307 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 06:21:04 +00:00
Georgios Konstantopoulos
826e387c87
refactor(rpc): use ..Default::default() for SimCallResult initialization ( #22309 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 05:42:22 +00:00
Forostovec
1c40188993
fix: correct message ID in NodeData version error ( #22291 )
2026-02-18 05:02:33 +00:00
Matthias Seitz
49a2df0d7a
chore: bump alloy deps 1.7.1 -> 1.7.3 ( #22296 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 06:02:04 +01:00
DaniPopes
a1d1b6def6
fix: prevent ANSI escape codes leaking into Tracy zone text ( #22306 )
2026-02-18 03:49:34 +00:00
Georgios Konstantopoulos
56bbb3ce2c
feat(cli): add reth db prune-checkpoints command ( #22288 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 01:25:53 +00:00
Georgios Konstantopoulos
5b1010322c
docs: clarify StateWriteConfig is about database (MDBX) writes vs static files ( #22299 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-18 01:13:31 +00:00
Georgios Konstantopoulos
a195b777eb
perf(storage): skip plain state conversion in write_state for storage v2 ( #22294 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-18 00:48:06 +00:00
Georgios Konstantopoulos
5045e6ef8b
feat(bench): add wait time breakdown tables to CI report ( #22293 )
2026-02-17 23:44:03 +00:00
Alexey Shekhirin
b49cadb346
ci(bench): rename main/branch to baseline/feature, add ref args ( #22284 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 23:00:01 +00:00
Georgios Konstantopoulos
aeb2c6e731
chore(primitives): remove legacy transaction roundtrip tests ( #22292 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 21:15:14 +00:00
stevencartavia
477fed7a11
refactor(primitives): use alloy's EthereumReceipt type ( #22254 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 20:30:52 +00:00
MergeBot
59993b974a
fix(rpc): resolve AtBlockHash to single block in eth_getFilterChanges ( #22283 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 20:15:33 +00:00
Georgios Konstantopoulos
9ecef47aff
fix(provider): skip sender pruning during reorg when sender_recovery is full ( #22271 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 19:15:03 +00:00
DaniPopes
0ba685386d
refactor: dedup runtime initializations ( #22263 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-02-17 17:35:31 +00:00
Georgios Konstantopoulos
6ff4f947c8
fix(trie): propagate parent span to proof workers ( #22279 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 16:48:19 +00:00
Alexey Shekhirin
719bbc2543
ci: reth-bench ( #22134 )
2026-02-17 16:47:47 +00:00
Emma Jamieson-Hoare
a9a6044bc5
chore: fix the rust version for docker ( #22278 )
2026-02-17 15:19:03 +00:00
Brian Picciano
6f9a3242ef
chore: remove legacy proof code paths and simplify to V2-only ( #22270 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 14:42:13 +00:00
Matthias Seitz
e89bf483bc
feat(rpc): add query methods to ActiveFilters ( #22275 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 14:37:04 +00:00
Georgios Konstantopoulos
61038449c8
fix(rpc): update eth_simulateV1 revert error code to 3 ( #22272 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 14:36:34 +00:00
Georgios Konstantopoulos
48b2cd970f
docs: fix default jwt.hex path in cli args ( #22269 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 14:35:32 +00:00
Brian Picciano
fb90051010
fix(trie): subtrie root node too small to have hash ( #22114 )
...
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 13:30:47 +00:00
Georgios Konstantopoulos
a0a622a155
ci: use normal Docker builds for fork PRs instead of Depot ( #22268 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 13:27:38 +00:00
Brian Picciano
8db352dfd2
feat(trie): add trie-debug feature for recording sparse trie mutations ( #22234 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 11:59:11 +00:00
Brian Picciano
117b212e2e
feat(trie): Combine extension and branch nodes in output from proof v2 ( #22021 )
...
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
2026-02-17 11:12:48 +00:00
Brian Picciano
df9e3669aa
chore: Update nix flake ( #22237 )
2026-02-17 11:06:11 +00:00
Georgios Konstantopoulos
0464cddfb0
ci: fall back to GitHub-hosted runners for forks ( #22266 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 10:34:43 +00:00
Tomass
e21a174737
refactor(net): use VecDeque::pop_front_if from Rust 1.93 ( #22260 )
2026-02-17 08:46:56 +00:00
DaniPopes
e972d9d8c7
chore: rm transact_batch span ( #22258 )
2026-02-17 04:45:05 +00:00
Georgios Konstantopoulos
7f00ebfafe
chore: elide lifetimes in iter_sub_trie_targets ( #22256 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 02:11:09 +00:00
Matthias Seitz
883e9ae8cc
feat(node-core): add with_dev_block_time helper to NodeConfig ( #22251 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-17 02:40:46 +01:00
DaniPopes
a1e4132c2d
chore: reduce size of common spans ( #22253 )
2026-02-17 01:29:32 +00:00
DaniPopes
4ecb0d5680
perf: use mutex in for_each_ordered ( #22252 )
2026-02-17 01:19:56 +00:00
Georgios Konstantopoulos
5b8808e5fd
feat(engine): add trigger-based MiningMode variant ( #22250 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-17 00:28:25 +00:00
Georgios Konstantopoulos
2eec519bf9
feat(tasks): add WorkerPool with per-thread Worker state ( #22154 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 23:46:51 +00:00
Georgios Konstantopoulos
02513ecf3b
perf(engine): overlap block conversion with execution in payload validation ( #21957 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-16 23:46:45 +00:00
Alexey Shekhirin
10c6bdb5ff
fix(engine): wait for persistence to complete in reth_newPayload ( #22239 )
2026-02-16 14:08:36 +00:00
Matthias Seitz
20ae9ac405
docs: add type ordering style guide to CLAUDE.md ( #22236 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 13:38:53 +01:00
Alexey Shekhirin
881500e592
feat(rpc, reth-bench): reth_newPayload methods for reth-bench ( #22133 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-02-16 11:11:13 +00:00
pepes
8db125daff
fix(engine-primitives): delegate block_to_payload to T ( #22180 )
2026-02-16 10:09:58 +00:00
James Niken
bf2071f773
fix(primitives-traits): handle KECCAK_EMPTY in From<TrieAccount> ( #22200 )
2026-02-16 10:02:56 +00:00
Alvarez
ee5ec069cd
refactor(tracing): use Option::transpose() for file_guard ( #22181 )
2026-02-16 11:08:59 +01:00
YK
8722277d6e
perf: adaptive multiproof chunk size based on block gas usage ( #22233 )
2026-02-16 09:49:56 +00:00
Georgios Konstantopoulos
57148eac9f
refactor(tasks): remove TaskSpawner trait in favor of concrete Runtime ( #22052 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 08:51:10 +00:00
YK
74abad29ad
perf: reduce update_leaves key cloning ( #22228 )
2026-02-16 08:34:21 +00:00
drhgencer
997af404a5
fix(rpc): trim spaces in CORS domain parsing ( #22192 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-16 06:51:34 +00:00
bobtajson
314a92e93c
refactor(cli): deduplicate download finalization logic ( #22164 )
2026-02-16 06:41:47 +00:00
Georgios Konstantopoulos
f0c4be108b
fix(engine): send correct transaction index in prewarm task ( #22223 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 06:21:02 +00:00
Georgios Konstantopoulos
9265e8e46c
chore: remove reserved_cpu_cores from rayon thread pools ( #22221 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 06:13:24 +00:00
Georgios Konstantopoulos
7594e1513a
perf: replace some std::time::Instant with quanta::Instant ( #22211 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-16 05:15:06 +00:00
Georgios Konstantopoulos
7f5acc2723
fix(net): use test backoff durations in Testnet PeerConfig ( #22222 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 04:45:47 +00:00
DaniPopes
60d0430c2b
chore(trie): add level=debug to sparse trie state spans ( #22220 )
2026-02-16 04:31:26 +00:00
Georgios Konstantopoulos
d49f828998
test: speed up slow integration tests ( #22216 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 03:53:15 +00:00
Georgios Konstantopoulos
2f78bcd7b5
fix(test): activate prague for sparse trie reuse e2e test ( #22215 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 03:50:20 +00:00
Georgios Konstantopoulos
f60febfa62
chore(ci): reduce default test timeout to 60s ( #22212 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 03:43:58 +00:00
Georgios Konstantopoulos
317f858bd4
feat(engine): add gas-bucketed sub-phase metrics for new_payload ( #22210 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-02-16 03:35:59 +00:00
Georgios Konstantopoulos
11acd97982
chore: use --locked for all cargo install invocations ( #22214 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 03:35:17 +00:00
Georgios Konstantopoulos
f5cf90227b
fix(net): fix flaky test_trusted_peer_only test ( #22213 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 03:30:37 +00:00
DaniPopes
0dd47af250
perf: add dedicated prewarming rayon pool ( #22108 )
2026-02-16 03:05:36 +00:00
Georgios Konstantopoulos
0142769191
fix(engine): fix flaky test_prefetch_proofs_batching test ( #22209 )
2026-02-16 02:35:42 +00:00
DaniPopes
e1dc93e24f
chore: add some more spans to validation setup ( #22208 )
2026-02-16 02:35:24 +00:00
Georgios Konstantopoulos
33ac869a85
perf(engine): replace channel+BTreeMap reorder with lock-free for_each_ordered ( #22144 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-16 02:06:10 +00:00
Georgios Konstantopoulos
ec982f8686
perf: bound more channels with known upper limits ( #22206 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 02:05:43 +00:00
Georgios Konstantopoulos
47cef33a0d
fix: record bare tracing instrument fields ( #22207 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 01:41:05 +00:00
Georgios Konstantopoulos
9529de4cf2
perf(engine): bound channels in spawn_tx_iterator by transaction count ( #22205 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 01:07:26 +00:00
Georgios Konstantopoulos
5a9dd02301
chore: bump MSRV to 1.93 ( #22204 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-16 00:31:05 +00:00
Georgios Konstantopoulos
d71a0c0c7b
feat(txpool): add PoolTransaction::consensus_ref ( #22182 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-15 12:23:37 +00:00
0xMars42
2be3788481
fix(exex): drain notification channel during backfill to prevent stall ( #22168 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-15 10:48:11 +00:00
github-actions[bot]
adbec3218d
chore(deps): weekly cargo update ( #22197 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
2026-02-15 08:53:11 +00:00
Georgios Konstantopoulos
2e5560b444
feat(rpc): add eth_getStorageValues batch storage slot retrieval ( #22186 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-14 15:57:56 +00:00
Georgios Konstantopoulos
1f3fd5da2e
refactor(engine): remove reth-engine-service crate ( #22187 )
...
Co-authored-by: mattsse <mattsse@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-14 15:40:16 +00:00
Georgios Konstantopoulos
3ab7cb98aa
fix(storage): add back Arc auto_impl for storage-api traits ( #22178 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-14 11:16:31 +00:00
Georgios Konstantopoulos
d3088e171c
feat(execution-types): add account_state helper to BlockExecutionOutput ( #22177 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-14 11:08:05 +00:00
Matthias Seitz
2c443a3dcb
fix: remove unused RangeBounds import in storage-api ( #22176 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-14 12:03:20 +01:00
andrewshab
4b444069a5
perf(cli): remove clone in trie repair ( #22152 )
2026-02-14 09:14:35 +00:00
drhgencer
25d371817a
fix(pruning): trim spaces in receipts log filter parsing ( #22172 )
2026-02-14 09:13:40 +00:00
Karl Yu
4b0fa8a330
feat: implement variants for BAL devp2p variants ( #22024 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-14 08:22:26 +00:00
James Niken
df22d38224
fix(era): encode TotalDifficulty as SSZ uint256 (little-endian) ( #22160 )
2026-02-14 07:57:57 +00:00
Georgios Konstantopoulos
e4ec836a46
perf(engine): reduce proof worker count for small blocks ( #22074 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Ubuntu <ubuntu@dev-yk.tail388b2e.ts.net >
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-02-13 21:33:25 +00:00
0xsensei
d3c42fc718
perf(reth-engine-tree): sparse trie bulk move new storage update ( #22116 )
2026-02-13 15:55:13 +00:00
Arsenii Kulikov
8171cee927
fix: change add_transactions_with_origins to take Vec ( #22161 )
2026-02-13 12:34:24 +00:00
Dan Cline
61cfcd8195
chore: fix riscv build for rocksdb ( #22153 )
2026-02-13 00:09:14 +00:00
YK
b646f4559c
perf: skip dispatch pipeline when all proof targets already fetched ( #22147 )
...
Co-authored-by: Ubuntu <ubuntu@dev-yk.tail388b2e.ts.net >
2026-02-12 22:35:33 +00:00
Georgios Konstantopoulos
564ffa5868
fix(ci): pass docker tags as separate set entries in bake action ( #22151 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 22:10:35 +00:00
Dan Cline
12891dd171
chore: allow invalid storage metadata ( #22150 )
2026-02-12 22:02:26 +00:00
Emma Jamieson-Hoare
c1015022f5
chore: release reth v1.11.0 ( #22148 )
2026-02-12 21:39:30 +00:00
Dan Cline
e3fe6326bc
chore(storage): rm storage settings, use only one ( #22042 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-12 21:17:05 +00:00
Dan Cline
e3d520b24f
feat(network): add inbound / outbound scopes for disconnect reasons ( #22070 )
2026-02-12 20:54:03 +00:00
Dan Cline
9f29939ea1
feat: bundle mdbx_copy as reth db copy subcommand ( #22061 )
...
Co-authored-by: Emma Jamieson-Hoare <emmajam@users.noreply.github.com >
2026-02-12 20:39:56 +00:00
Matthias Seitz
10881d1c73
chore: fix book ( #22142 )
2026-02-12 21:44:53 +01:00
John Letey
408593467b
feat(download): optional chain-aware snapshot url ( #22119 )
2026-02-12 21:42:19 +01:00
Emma Jamieson-Hoare
8caf8cdf11
docs: improve reth.rs/overview page ( #22131 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 20:10:34 +00:00
Georgios Konstantopoulos
1e8030ef28
fix(engine): return error on updates channel disconnect in sparse trie task ( #22139 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 20:00:36 +00:00
YK
f72c503d6f
feat(metrics): use 5M first gas bucket for finer-grained newPayload metrics ( #22136 )
...
Co-authored-by: Ubuntu <ubuntu@dev-yk.tail388b2e.ts.net >
2026-02-12 19:03:21 +00:00
Emma Jamieson-Hoare
42890e6e7f
fix: improve nightly Docker build failure Slack notification ( #22130 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 18:58:55 +00:00
Dan Cline
e30e441ada
fix: stage drop prunes account/storage changeset static files ( #22062 )
2026-02-12 18:34:46 +00:00
Georgios Konstantopoulos
121160d248
refactor(db): use hashed state as canonical state representation ( #21115 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-12 18:02:02 +00:00
Georgios Konstantopoulos
7ff78ca082
perf(engine): use transaction count threshold for prewarm skip ( #22094 )
...
Co-authored-by: yk <yongkang@tempo.xyz >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Ubuntu <ubuntu@dev-yk.tail388b2e.ts.net >
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-02-12 17:07:52 +00:00
Georgios Konstantopoulos
d7f56d509c
chore: add DaniPopes as codeowner for tasks crate ( #22128 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 12:08:02 -05:00
Georgios Konstantopoulos
3300e404cf
feat(engine): add --engine.disable-sparse-trie-cache-pruning flag ( #21967 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: mattsse <19890894+mattsse@users.noreply.github.com >
Co-authored-by: alexey <17802178+shekhirin@users.noreply.github.com >
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-02-12 16:36:31 +00:00
Georgios Konstantopoulos
77cb99fc78
chore(node): update misleading consensus engine log message ( #22124 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Emma Jamieson-Hoare <emmajam@users.noreply.github.com >
2026-02-12 16:14:03 +00:00
Georgios Konstantopoulos
66169c7e7c
feat(reth-bench): add progress field to per-block benchmark logs ( #22016 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 16:03:32 +00:00
Georgios Konstantopoulos
4f5fafc8f3
fix(net): correct EthMessageID::max for eth70 and later versions ( #22076 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 15:53:11 +00:00
Georgios Konstantopoulos
0b8e6c6ed3
feat(net): enforce EIP-868 fork ID for discovered peers ( #22013 )
...
Co-authored-by: Emma <emma@tempo.xyz >
Co-authored-by: Matthias Seitz <mattsse@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmail.com >
Co-authored-by: Emma Jamieson-Hoare <emmajam@users.noreply.github.com >
2026-02-12 15:29:37 +00:00
Georgios Konstantopoulos
4a62d38af2
perf(engine): use sequential sig recovery for blocks with small blocks ( #22077 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Ubuntu <ubuntu@dev-yk.tail388b2e.ts.net >
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-02-12 15:06:21 +00:00
Georgios Konstantopoulos
dc4f249f09
chore: zero-pad thread indices in thread names ( #22113 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 12:45:49 +00:00
Brian Picciano
c915841a45
chore(stateless): Remove reth-stateless crate ( #22115 )
2026-02-12 11:20:49 +00:00
Georgios Konstantopoulos
217a337d8c
chore(engine): remove biased select in engine service loop ( #21961 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-12 05:45:45 +00:00
Georgios Konstantopoulos
74d57008b6
chore(engine): downgrade failed response delivery logs to warn ( #22055 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 05:44:09 +00:00
Georgios Konstantopoulos
f8767bc678
fix(engine): add await_state_root span to timeout path ( #22111 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 05:14:39 +00:00
Georgios Konstantopoulos
81c83bba68
refactor(engine): remove unnecessary turbofish on CachedStateProvider, add new_prewarm ( #22107 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 02:48:57 +00:00
Georgios Konstantopoulos
cd8ec58703
refactor(engine): move CachedStateProvider prewarm to const generic ( #22106 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 01:30:24 +00:00
DaniPopes
931b17c3fd
chore: bump alloy-core deps ( #22104 )
2026-02-12 01:15:56 +00:00
Emma Jamieson-Hoare
807d328cf0
fix: move alloy-primitives to regular dependency in bin/reth ( #22105 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 01:15:12 +00:00
Georgios Konstantopoulos
8a6bbd29fe
fix(tracing): return error instead of panicking on log directory creation failure ( #22100 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 00:40:39 +00:00
Georgios Konstantopoulos
8bedaaee71
feat(docker): include debug symbols in maxperf images ( #22003 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-12 00:34:41 +00:00
Emma Jamieson-Hoare
09cd105671
fix(primitives): move feature-referenced deps from dev-dependencies to optional dependencies ( #22103 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 23:50:56 +00:00
Georgios Konstantopoulos
a0b60b7e64
feat(evm): impl ExecutableTxTuple for Either via EitherTxIterator ( #22102 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 23:48:17 +00:00
DaniPopes
90e15d096d
perf: reduce tracing span noise in prewarm and proof workers ( #22101 )
2026-02-11 23:32:50 +00:00
Emma Jamieson-Hoare
a161ca294f
feat(net): add reason label to backed_off_peers metric ( #22009 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 23:00:20 +00:00
Emma Jamieson-Hoare
3a5c41e3da
test: add WebSocket subscription integration tests for eth_subscribe ( #22065 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 22:56:47 +00:00
Georgios Konstantopoulos
968d3c9534
revert: skip transaction prewarming for small blocks ( #22059 ) ( #22097 )
2026-02-11 14:38:08 -08:00
DaniPopes
fc6666f6a7
perf: treat hashes as bytes in BranchNodeCompact ( #22089 )
2026-02-11 22:11:49 +00:00
DaniPopes
ff3a854326
perf: use dedicated trie rayon pool for proof workers ( #22051 )
2026-02-11 22:10:17 +00:00
DaniPopes
04543ed16b
chore: add span and log to runtime build ( #22064 )
2026-02-11 22:06:14 +00:00
Emma Jamieson-Hoare
ae3f0d4d1a
test: expand CLI integration tests ( #22086 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 21:43:28 +00:00
Georgios Konstantopoulos
5bccdc4a5d
feat(engine): add state root task timeout with sequential fallback ( #22004 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 20:45:45 +00:00
Georgios Konstantopoulos
0b7cd60668
perf(engine): skip transaction prewarming for small blocks ( #22059 )
...
Co-authored-by: yk <yongkang@tempo.xyz >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 20:37:04 +00:00
YK
aa983b49af
perf(engine): add PrewarmMode::Skipped to avoid spawning idle workers ( #22066 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Ubuntu <ubuntu@dev-yk.tail388b2e.ts.net >
2026-02-11 19:48:48 +00:00
Georgios Konstantopoulos
2aff617767
feat(cli): split account-history and storage-history stage drops ( #22083 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 19:21:55 +00:00
Georgios Konstantopoulos
2c5d00ffb5
feat(engine): add gas bucket label to newPayload metrics ( #22067 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 19:00:07 +00:00
Georgios Konstantopoulos
e2a3527414
test: add CLI integration tests for reth binary ( #22069 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 17:56:16 +00:00
Georgios Konstantopoulos
e4cb3d3aed
chore(cli): log received signals at info level ( #22071 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 17:55:37 +00:00
DaniPopes
079b7b9d57
fix: don't drop node ( #22063 )
2026-02-11 16:43:55 +00:00
Georgios Konstantopoulos
8a25d7d3cf
chore: remove ress crates from workspace ( #22057 )
...
Co-authored-by: mattsse <matt@paradigm.xyz >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-11 13:39:56 +00:00
Minhyuk Kim
a5ced84098
feat(node/builder): add build_with_ordering_and_spawn_maintenance_task to TxPoolBuilder ( #21979 )
2026-02-11 12:58:29 +00:00
Emma Jamieson-Hoare
59760a2fe3
feat(net): add direction labels to closed_sessions and pending_session_failures metrics ( #22014 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 04:59:06 +00:00
Matthias Seitz
b9d21f293e
refactor: remove TypesAnd1-5 staging types from ProviderFactoryBuilder ( #22049 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 04:57:05 +00:00
Georgios Konstantopoulos
dec1cad318
refactor(trie): merge SparseTrieExt into SparseTrie trait ( #22035 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 04:39:56 +00:00
Georgios Konstantopoulos
165b94c3fa
chore(docker): pass RUSTC_WRAPPER to cargo build in Dockerfile.depot ( #22048 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 04:37:43 +00:00
Georgios Konstantopoulos
69e4c06ae7
chore(log): simplify default profiler tracing filter ( #22050 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 04:33:20 +00:00
Georgios Konstantopoulos
1406a984a7
ci: pass --no-fail-fast to all cargo nextest runs ( #22046 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 04:21:38 +00:00
Andrey Kolishchak
93d6b9782c
fix(node): ethstats conn/last_ping deadlock ( #21463 )
2026-02-11 03:48:54 +00:00
DaniPopes
68e4ff1f7d
feat: global runtime ( #21934 )
2026-02-11 03:45:09 +00:00
Georgios Konstantopoulos
33467ea6dd
fix(reth-bench): increase WS keepalive interval to match persistence timeout ( #22039 )
2026-02-11 02:45:54 +00:00
Georgios Konstantopoulos
3bf9280b3c
refactor(storage): add with_*_opt builder methods to StorageSettings ( #21998 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 02:19:33 +00:00
Georgios Konstantopoulos
5c93986e6d
feat(reth-bench): accept bare integers as milliseconds for --wait-time ( #22038 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-11 01:57:42 +00:00
Georgios Konstantopoulos
779e0eb8bb
perf: downgrade on_hashed_state_update and on_prewarm_targets spans to trace ( #22044 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 22:45:05 +00:00
Emma Jamieson-Hoare
5c4163c177
feat(exex): make backfill thresholds configurable ( #22037 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-02-10 21:30:18 +00:00
Emma Jamieson-Hoare
c5d1f70dd3
fix(txpool): correct swapped args in blob_tx_priority calls ( #22030 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 21:17:34 +00:00
YK
a8ec78fc87
perf(engine): implement BAL handler for SparseTrieCacheTask ( #21990 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 20:50:16 +00:00
Georgios Konstantopoulos
1ecbb0b9d6
chore: move jemalloc, asm-keccak, min-debug-logs to default features ( #22034 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 20:46:59 +00:00
Georgios Konstantopoulos
a40647e651
fix(docker): fix sccache stats in Dockerfile.depot ( #22033 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 19:50:30 +00:00
Georgios Konstantopoulos
b25b8c00ee
feat(engine): add getPayloadBodiesV2 endpoints for EIP-7928 BAL support ( #21774 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 15:10:05 +00:00
John Chase
b20a99e1c9
ci: skip scheduled workflows on forks ( #22022 )
2026-02-10 14:36:20 +00:00
DaniPopes
9ec0e3cd51
chore: rm random log file ( #22023 )
2026-02-10 15:43:56 +01:00
Georgios Konstantopoulos
09837bbdb4
chore: remove base.reth.rs public endpoint references ( #22019 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 14:18:46 +00:00
Matthias Seitz
198e457a12
feat(rpc): add subscribeFinalizedChainNotifications endpoint ( #22011 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-10 15:07:31 +01:00
DaniPopes
c727c61101
feat(trie): remove SerialSparseTrie ( #21808 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-02-10 13:50:54 +00:00
Georgios Konstantopoulos
366857559b
fix(rocksdb): set max_open_files to prevent fd exhaustion ( #22005 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 22:32:48 +00:00
Matthias Seitz
ccd15e8a25
refactor(txpool): rename and document validation methods ( #22008 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 22:17:19 +00:00
Georgios Konstantopoulos
67f89fa4b2
feat(engine): prefetch withdrawal addresses in pre-warming ( #21966 )
...
Co-authored-by: mattsse <matt@paradigm.xyz >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-09 22:14:41 +00:00
Georgios Konstantopoulos
a87510069d
refactor(pool): add IntoIter: Send bounds to avoid unnecessary Vec collect ( #22001 )
...
Co-authored-by: klkvr <klkvr@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmail.com >
Co-authored-by: Emma Jamieson-Hoare <emmajam@users.noreply.github.com >
2026-02-09 21:45:56 +00:00
Emma Jamieson-Hoare
b3fe168548
fix(rpc): enforce blockHash constraint in append_matching_block_logs ( #22007 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 21:45:53 +00:00
Emma Jamieson-Hoare
8d7583b6fb
chore: move Kurtosis failures to the hive slack channel ( #21983 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 21:39:04 +00:00
Georgios Konstantopoulos
32466fe223
feat(rpc): propagate TransactionOrigin through send_transaction and batcher ( #21969 )
...
Co-authored-by: klkvr <klkvr@users.noreply.github.com >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-09 20:34:23 +00:00
Alexey Shekhirin
f2061991c5
feat(engine): reorg depth commitment metric ( #21992 )
2026-02-09 20:25:54 +00:00
Dan Cline
a549b4d66d
feat(storage): add use_hashed_state storage setting ( #21997 )
2026-02-09 20:15:13 +00:00
Arsenii Kulikov
cdcea2bd33
perf: better scheduling for storage roots computation ( #21987 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-09 18:10:45 +00:00
Matthias Seitz
3898cc5c3d
chore(deps): bump alloy 1.6.2 -> 1.6.3 ( #21986 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 19:00:13 +01:00
Dan Cline
c558c1d10f
fix(stages): skip sender unwind when fully pruned ( #21988 )
2026-02-09 17:36:20 +00:00
Georgios Konstantopoulos
5f7ecc6187
chore(net): remove OP stack bootnodes ( #21984 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-09 15:00:58 +00:00
DaniPopes
15b6e7f6fc
ci: use depot for hive and kurtosis image builds, run daily ( #21976 )
...
Co-authored-by: Jennifer <jenpaff0@gmail.com >
2026-02-09 14:55:12 +00:00
Georgios Konstantopoulos
503b9b87a6
feat(tracing): add jsonrpsee targets to profiling filter ( #21981 )
2026-02-09 13:42:37 +00:00
Matthias Seitz
600eab20a5
feat(cli): rename enable-sparse-trie-as-cache to legacy-trie ( #21851 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 13:02:14 +00:00
Matthias Seitz
a7eef9c6dc
chore(deps): bump alloy from 1.6.1 to 1.6.2 ( #21974 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-09 13:52:39 +01:00
Brian Picciano
6aebf8c064
chore(trie): Spans and traces for sparse trie ( #21973 )
2026-02-09 11:53:40 +00:00
Brian Picciano
655a463c18
fix(trie): Do not reveal disconnected leaves ( #21924 )
2026-02-09 11:39:40 +00:00
github-actions[bot]
a8b9c9a9dc
chore(deps): weekly cargo update ( #21955 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-08 10:38:24 +00:00
Georgios Konstantopoulos
7679625fd3
chore(ci): improve wasm and riscv check output ( #21956 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-08 02:51:54 +00:00
Georgios Konstantopoulos
7ac0d542b6
refactor(engine): wrap ExecutionCache internals in single Arc ( #21950 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-07 19:13:16 +00:00
Huber
e4b2b1edf3
feat(txpool): add missing no_eip7702/set_eip7702 builder methods ( #21926 )
2026-02-07 19:12:23 +00:00
Matthias Seitz
95ed377135
perf(prewarm): disable balance check for prewarming transactions ( #21941 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-07 18:40:41 +00:00
DaniPopes
db01c10a1d
chore: add libmdbx to default tracing filter ( #21944 )
2026-02-07 16:32:15 +00:00
Haardik
b9d7744389
feat: add a public prune_transactions method to the TransactionPool ( #21765 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-07 14:14:08 +00:00
Georgios Konstantopoulos
e72e85632b
perf(persistence): combine save_blocks and prune into single MDBX commit ( #21927 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-07 04:33:31 +00:00
Dan Cline
8033b77ad3
chore(persistence): delete ambiguous TODO ( #21923 )
2026-02-07 00:19:46 +00:00
DaniPopes
1fe5623f78
chore: bump persistence timeout ( #21919 )
2026-02-06 22:24:26 +00:00
DaniPopes
887421cef2
chore: log mdbx tx manager msg ( #21916 )
2026-02-06 21:28:14 +00:00
Dan Cline
352430cd84
fix: skip sender recovery stage when senders fully pruned ( #21918 )
2026-02-06 21:22:40 +00:00
DaniPopes
1177bc94c9
chore: revert back to trace for update_hashes ( #21915 )
2026-02-06 19:47:13 +00:00
Arsenii Kulikov
9aee291093
fix: add more safety checks to reveals of upper subtrie nodes ( #21905 )
2026-02-06 19:06:30 +00:00
Georgios Konstantopoulos
28f5a28a9a
perf: remove per-tx state iteration and loaded metrics from MeteredStateHook ( #21884 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-06 18:10:57 +00:00
Arsenii Kulikov
dea070dad2
chore: always compare updates ( #21863 )
2026-02-06 17:15:10 +00:00
Brian Picciano
9c34ac2c94
feat(trie): Add root_node method to v2 ProofCalculator ( #21906 )
2026-02-06 16:59:08 +00:00
Dan Cline
08c61535db
chore: introduce v2 storage flag and remove edge flag ( #21868 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-02-06 16:23:04 +00:00
Alexey Shekhirin
1383c151c9
perf(engine): send proofs directly from prewarming to multiproof task ( #21901 )
2026-02-06 16:17:15 +00:00
DaniPopes
6b8e40c061
perf: use separate pool for save_blocks ( #21764 )
2026-02-06 15:36:15 +00:00
Georgios Konstantopoulos
755ea5762b
chore: remove windows build and release support ( #21902 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-06 15:04:19 +00:00
DaniPopes
6f7486a61e
chore: simplify subtrie hashes parallel loop ( #21871 )
2026-02-06 14:31:03 +00:00
Emma Jamieson-Hoare
25003be018
docs: add site-level meta description for SEO ( #21903 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-06 14:30:16 +00:00
Georgios Konstantopoulos
6953971c2f
feat(static-file): incremental changeset offset storage ( #21596 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-06 13:31:31 +00:00
Georgios Konstantopoulos
3bfd002477
docs: add Signature Verification to sidebar under Running a Node ( #21900 )
2026-02-06 13:14:11 +00:00
andrewshab
8629c55152
fix(net): correct backed_off_peers metric calculation ( #21885 )
2026-02-06 13:08:22 +00:00
Georgios Konstantopoulos
a16ee22a56
test(e2e): add eth_simulateV1 test for maxFeePerBlobGas without blob data ( #21899 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-06 13:02:32 +00:00
Arsenii Kulikov
913e88306b
fix: only exit when both channels are drained ( #21877 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-06 11:26:26 +00:00
theo
372802d06d
chore: remove op-reth from repository ( #21532 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-06 11:18:12 +00:00
Matthias Seitz
c6c6fd5e95
chore: fix cargo deny advisories ( #21894 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-06 12:01:52 +01:00
Snezhkko
3050fe7eb1
fix: correct account cache size metrics ( #21864 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-06 02:41:22 +00:00
Georgios Konstantopoulos
dbac7e1e4a
feat(eth-wire): introduce ProtocolMessage::decode_status for handshake ( #21797 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-06 02:20:04 +00:00
DaniPopes
cb999b2a2d
chore: improve persistence spans ( #21875 )
2026-02-06 01:17:00 +00:00
Georgios Konstantopoulos
df8f411f50
chore(reth-bench): use "reth-bench" log target ( #21870 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-06 01:07:38 +00:00
DaniPopes
cd816ce211
chore: add warning if 'tracy' not enabled ( #21867 )
2026-02-05 22:14:20 +00:00
Héctor Masip Ardevol
28406938c4
chore: block recovery cleanup ( #21436 )
2026-02-05 22:28:50 +01:00
Xzavier
ce4be7dd87
fix: support EIP-1559 params configuration for Optimism dev mode ( #21855 )
2026-02-05 21:10:32 +00:00
drhgencer
7c7bc2228d
fix(ci): use commit SHA instead of branch ref in changelog workflow ( #21866 )
2026-02-05 21:01:03 +00:00
YK
03abe64a06
fix(prune): correct checkpoint when RocksDB tx lookup deletes nothing ( #21842 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-05 20:56:09 +00:00
Arsenii Kulikov
a6a074210c
perf: hash state updates in parallel ( #21836 )
2026-02-05 20:32:07 +00:00
DaniPopes
67e29aa60d
chore(engine): remove MIN_WORKER_COUNT ( #21829 )
2026-02-05 19:06:50 +00:00
Emma Jamieson-Hoare
f113caa26a
chore: enable changelog check on PRs ( #21750 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-02-05 17:59:28 +00:00
Emma Jamieson-Hoare
902b76092b
chore: integrate dependabot to get dep updates ( #21856 )
2026-02-05 15:29:19 +00:00
YK
5cfb891b59
perf(engine): single-pass fold for EvmState metrics collection ( #21852 )
2026-02-05 13:00:08 +00:00
Brian Picciano
a92aca2549
perf(trie): Don't filter proofs in v2 if sparse trie as cache is enabled ( #21811 )
2026-02-05 11:14:55 +00:00
YK
c9cc118def
perf(rocksdb): increase write buffer size to 128 MB ( #21696 )
2026-02-05 08:07:44 +00:00
YK
99873887e2
fix(provider): off-by-one error in static file range calculation ( #21841 )
2026-02-05 07:09:59 +00:00
YK
dfc54cf89f
fix(prune): reth prune requires being run twice to actually prune ( #21785 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-05 03:08:49 +00:00
Matthias Seitz
05ec479398
perf(net): remove unnecessary collect in transaction propagation ( #21831 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-05 02:39:25 +01:00
Arsenii Kulikov
a5978c593e
perf(trie): process new updates from state/prewarm update directly ( #21768 )
2026-02-04 23:39:44 +00:00
drhgencer
261ca8b4e3
fix(rpc): use consistent sidecar check in fill_transaction for EIP-7594 support ( #21763 )
2026-02-04 23:16:43 +00:00
Arsenii Kulikov
608b840001
chore: fix spans ( #21830 )
2026-02-04 23:10:49 +00:00
Matthias Seitz
97588a07a4
perf(engine): use par_bridge_buffered instead of par_bridge for storage trie updates ( #21827 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 22:07:14 +00:00
DaniPopes
9a026ec1cf
perf: use num_threads for prewarm concurrency ( #21826 )
2026-02-04 20:09:04 +00:00
Matthias Seitz
e06b0452e1
refactor(bench): use into_payload_and_sidecar for V4/V5 envelopes ( #21823 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 20:04:22 +00:00
Georgios Konstantopoulos
dc3caffe2a
chore: use cargo nextest run in CLAUDE.md example ( #21825 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 19:25:40 +00:00
Matthias Seitz
79a905f346
refactor(trie): drop sparse trie task fields early via destructuring ( #21824 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 19:24:52 +00:00
Elaela Solis
386b774ed5
refactor: use spawn_os_thread for better tokio integration ( #21788 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-04 19:00:37 +00:00
Georgios Konstantopoulos
20d94027eb
feat(trie): add storage_root field to storage trie span ( #21502 )
2026-02-04 18:53:38 +00:00
Emma Jamieson-Hoare
755879cf5c
ci(docker): notify Slack on nightly build failure ( #21819 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 18:16:49 +00:00
Georgios Konstantopoulos
063d9ef3f8
fix(storage): add skip(provider) to check_consistency instrument ( #21818 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 17:31:26 +00:00
Emma Jamieson-Hoare
d4cb981209
fix: update the hive slack webhook url ( #21816 )
2026-02-04 17:12:54 +00:00
Georgios Konstantopoulos
12d0b74a16
perf(trie): reuse proof nodes buffer in reveal_nodes ( #21648 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-02-04 16:35:03 +00:00
James Prestwich
543c77a374
refactor: spanning and misc improvements to consistency check code ( #20961 )
2026-02-04 16:26:52 +00:00
cui
c0f23aabf1
perf: switch to unstable sort ( #21803 )
2026-02-04 16:14:57 +00:00
zerosnacks
74d4b1f2ca
chore(deps): bump revm inspectors, handle case where revm-inspectors js-tracer is enabled but reth's js-tracer is not ( #21810 )
2026-02-04 16:07:45 +00:00
DaniPopes
6680a18bc3
chore: improve some spans ( #21781 )
2026-02-04 15:27:53 +00:00
DaniPopes
665b2bd844
chore: better default filter for profiling ( #21779 )
2026-02-04 15:27:03 +00:00
Georgios Konstantopoulos
a97ee61f83
revert: undo last two changes to docker-bake.hcl ( #21804 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-02-04 15:26:33 +00:00
DaniPopes
022ea78823
chore: don't format fields in tracy spans ( #21773 )
2026-02-04 15:26:15 +00:00
DaniPopes
a3f7431d28
chore: name tokio rt threads ( #21777 )
2026-02-04 15:23:22 +00:00
DaniPopes
1fc3d2c4ae
ci: verify docker output ( #21807 )
2026-02-04 14:58:29 +00:00
Alexey Shekhirin
1340d732ef
feat(engine): add wait duration metrics for execution and sparse trie caches ( #21800 )
2026-02-04 12:54:55 +00:00
Georgios Konstantopoulos
f53f90d714
refactor: use alloy_primitives::map for all HashMap/HashSet types ( #21686 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 12:08:39 +00:00
ligt
98313a0bea
fix(engine): ensure block in memory before setting canonical head ( #21693 )
2026-02-04 11:45:40 +00:00
Alexey Shekhirin
819d6b6e02
ci: set RUSTFLAGS in Dockerfile instead of bake ( #21790 )
2026-02-04 11:40:32 +00:00
Georgios Konstantopoulos
4ae60f3302
feat(reth-bench): support combined wait-time and wait-for-persistence modes ( #21771 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-04 11:29:08 +00:00
Brian Picciano
32c08b7ddb
fix(trie): Guard against infinite loop in proof_v2 ( #21789 )
2026-02-04 10:57:36 +00:00
Dan Cline
89be91de0e
perf(pruner): do not create an iterator_cf for every address ( #21767 )
...
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-02-04 06:48:22 +00:00
Dan Cline
3af5a4a4e2
fix(pruner): implement pruning for rocksdb TransactionHashNumbers ( #21782 )
2026-02-04 04:11:37 +00:00
Dan Cline
95f6bbe922
chore(pruner): always flush and compact after reth prune command ( #21783 )
2026-02-04 03:07:55 +00:00
DaniPopes
abab83facd
perf: spawn proof workers in a separate thread ( #21780 )
2026-02-04 01:20:43 +00:00
DaniPopes
9359e21f94
ci: enable debug assertions for statetests ( #21775 )
2026-02-04 00:53:28 +00:00
Huber
32d5ddfe40
fix(test): clean up test temp directories on drop ( #21772 )
2026-02-03 22:44:12 +00:00
Dan Cline
d7e740f96c
chore(cli): expose static file metrics in cli ( #21770 )
2026-02-03 22:21:10 +00:00
DaniPopes
87bae74094
chore: decode MDBX error code ( #21766 )
2026-02-03 20:16:32 +00:00
DaniPopes
648f19fb56
perf: build for target-cpu=x86-64-v3 in docker by default ( #21761 )
2026-02-03 19:47:59 +00:00
DaniPopes
e6fc5ff54b
perf(trie): use TrieMask iterator for efficient bit iteration ( #21676 )
2026-02-03 19:23:41 +00:00
YK
bc729671d9
perf(rocksdb): batch tx reads in TransactionLookupStage unwind ( #21723 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 18:28:04 +00:00
joshieDo
eee27df27c
fix: ensure transaction lookup can prune ( #19553 )
2026-02-03 18:11:13 +00:00
Dan Cline
6d02565c5e
chore(prune): increase reth prune DELETE_LIMIT to 20M ( #21762 )
2026-02-03 17:47:50 +00:00
Dan Cline
e706d76aa9
chore(cli): support ctrl-C in reth prune ( #21759 )
2026-02-03 17:47:01 +00:00
DaniPopes
b9b7d092f6
perf: bump nybbles ( #21725 )
2026-02-03 17:15:30 +00:00
DaniPopes
d0fb5f31c2
chore: centralize thread::spawn to share tokio handles ( #21754 )
2026-02-03 16:58:46 +00:00
DaniPopes
9621b78586
chore: shorten thread names ( #21751 )
2026-02-03 16:40:35 +00:00
DaniPopes
3722071a7c
chore(deps): bump bytes 1.11.1 ( #21755 )
2026-02-03 16:31:22 +00:00
DaniPopes
6273530501
perf: use alloy_primitives hasher for dashmaps ( #21726 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 15:05:44 +00:00
Alexey Shekhirin
ce29101277
chore(static-files): proper segment writer scoped thread names ( #21747 )
2026-02-03 14:44:03 +00:00
John Chase
b1b95f9825
fix(discv5): add missing rand feature for test compilation ( #21749 )
2026-02-03 14:37:39 +00:00
YK
7f970e136a
refactor(stages): use with_rocksdb_batch_auto_commit in tx_lookup ( #21722 )
2026-02-03 14:35:07 +00:00
YK
6b7cc00289
refactor(rocksdb): deduplicate first()/last() implementations ( #21738 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 14:33:44 +00:00
YK
786140a99d
perf(static-file): simplify stage checkpoint lookup to avoid allocs ( #21730 )
2026-02-03 14:32:43 +00:00
YK
ffcb486388
refactor(rocksdb): deduplicate iterator next() implementations ( #21737 )
2026-02-03 14:31:05 +00:00
YK
59d68f92c4
perf(static-file): hoist cursor creation outside block loop ( #21731 )
2026-02-03 14:29:07 +00:00
Matthias Seitz
0e0271a612
chore(deps): bump alloy 1.5.2 -> 1.6.1 ( #21746 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-02-03 14:16:50 +00:00
Minhyuk Kim
df12fee965
feat(txpool): add is_transaction_ready to TransactionPool trait ( #21742 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 14:13:52 +00:00
DaniPopes
11a4f65624
chore: misc tree cleanups ( #21691 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 13:34:19 +00:00
Matthias Seitz
a782e1a18a
chore: disable changelog workflow on PRs ( #21748 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 14:12:43 +01:00
DaniPopes
2dc76f9abe
chore: match statement order in ExecutionCache::new ( #21712 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-02-03 12:47:15 +00:00
Nicolas SSS
65100971e5
fix(evm): remove unused reth-ethereum-forks ( #21695 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 12:33:44 +00:00
Georgios Konstantopoulos
8e21afa9cc
feat(trie): add memory_size heuristic for ParallelSparseTrie ( #21745 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-02-03 12:29:57 +00:00
DaniPopes
46a9b9ad3d
perf: replace RwLock<HashMap/HashSet> with DashMap/DashSet ( #21692 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-03 13:31:05 +01:00
Georgios Konstantopoulos
3f77af4f98
feat: add AI-assisted changelog generation ( #21743 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Emma Jamieson-Hoare <emmajam@users.noreply.github.com >
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmail.com >
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-02-03 12:19:49 +00:00
Arsenii Kulikov
79cabbf89c
perf: optimize SparseTrieCacheTask ( #21704 )
2026-02-03 11:39:10 +00:00
drhgencer
e04afe6e0e
fix(rpc): validate toBlock in trace_filter ( #21718 )
2026-02-03 11:02:57 +00:00
Arsenii Kulikov
ee224fe20f
fix: update sparse trie masks ( #21716 )
2026-02-03 12:01:58 +01:00
DaniPopes
972f23745e
chore: remove clone from in memory cursor ( #21719 )
2026-02-03 04:04:33 +00:00
Dan Cline
49f60822f7
chore: move TransactionLookup as first option ( #21721 )
2026-02-03 02:30:13 +00:00
Georgios Konstantopoulos
47ebc79c85
feat(rpc): add EIP-7928 eth_getBalanceWithProof and eth_getAccountWithProof ( #21720 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-03 01:12:04 +00:00
Arsenii Kulikov
53f922927a
feat: reintroduce --engine.state-root-task-compare-updates ( #21717 )
2026-02-02 23:48:54 +00:00
Dan Cline
f1f3980d29
fix(cli): actually enable reth-prune rocksdb feature in cli ( #21715 )
2026-02-02 23:39:04 +00:00
Dan Cline
6946f26d77
fix(cli): delete all static files when PruneModes::Full is configured ( #21647 )
2026-02-02 17:30:21 +00:00
Arsenii Kulikov
f663d1d110
fix: properly drain pending account updates ( #21709 )
2026-02-02 17:29:43 +00:00
Huber
f4943abf73
chore(ci): add consts to typos allowlist ( #21708 )
2026-02-02 17:02:16 +00:00
Matthias Seitz
102a6944ba
perf(trie): avoid clearing already-cached sparse trie ( #21702 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-02 13:03:07 +00:00
Alexey Shekhirin
1592e51d34
feat(engine): add CLI args for sparse trie pruning configuration ( #21703 )
2026-02-02 12:52:31 +00:00
Arsenii Kulikov
4280ccf470
fix: short-circuit in reveal_account_v2_proof_nodes on empty nodes ( #21701 )
2026-02-02 12:18:45 +00:00
Alexey Shekhirin
05ab98107c
fix(reth-bench): gracefully stop when transaction source exhausted ( #21700 )
2026-02-02 11:10:58 +00:00
Brian Picciano
49128ed28f
fix(trie): Return full_key from update_leaves unless it is not a child of the missing path ( #21699 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-02-02 11:07:56 +00:00
Huber
f74e594292
perf(trie): dispatch V2 storage proofs in lexicographical order ( #21684 )
2026-02-02 09:31:47 +00:00
Georgios Konstantopoulos
e7d4a05e36
perf(trie): fix allocation hot paths with capacity hints and buffer reuse ( #21466 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-02-02 06:58:45 +00:00
Georgios Konstantopoulos
9382a4c713
fix(prune): use batched pruning loop with edge feature to prevent OOM ( #21649 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-02 02:38:00 +00:00
DaniPopes
28409558f9
perf: add ParallelBridgeBuffered trait to replace par_bridge ( #21674 )
2026-02-02 00:58:43 +00:00
DaniPopes
5ef32726db
refactor: add with_* compressor utility methods ( #21680 )
2026-02-01 20:43:25 +00:00
Snezhkko
60c3bef1e8
fix(zstd): use transaction dictionary for tx compressor ( #21382 )
2026-02-01 20:12:51 +00:00
iPLAY888
af96eeae56
refactor(provider): deduplicate segment-to-stage mapping in static file manager ( #21670 )
2026-02-01 20:09:32 +00:00
Georgios Konstantopoulos
5528aae8f6
fix(engine): wait for persistence service thread before RocksDB drop ( #21640 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-01 19:55:45 +00:00
Georgios Konstantopoulos
83364aa2d6
fix(prune): migrate invalid receipts prune config to Distance(64) ( #21677 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-01 19:44:14 +00:00
DaniPopes
749a742bcf
chore(deps): update metrics-derive 0.1.1 ( #21673 )
2026-02-01 19:38:38 +00:00
ethfanWilliam
2970624413
chore: avoid eager evaluation in base_fee_params_at_timestamp ( #21536 )
2026-02-01 19:04:42 +00:00
Matthias Seitz
7e18aa4be8
fix(rpc): change debug_set_head number parameter to U64 ( #21678 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-01 18:59:22 +00:00
YK
9f8c22e2c3
feat(prune): prune rocksdb account and storage history indices ( #21331 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-02-01 18:42:17 +00:00
Georgios Konstantopoulos
3d699ac9c6
perf(trie): reuse account RLP buffer in SparseTrieCacheTask ( #21644 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-01 15:20:11 +00:00
かりんとう
9be31d504d
fix(trie): silence unused param warnings in sparse-parallel no_std build ( #21657 )
2026-02-01 13:05:39 +00:00
github-actions[bot]
34cc65cfe6
chore(deps): weekly cargo update ( #21660 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
2026-02-01 13:03:13 +00:00
Matthias Seitz
6e161f0fc9
perf: batch finalized/safe block commits with SaveBlocks ( #21663 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-01 13:02:59 +00:00
iPLAY888
63a3e18404
fix: remove unnecessary alloc ( #21665 )
2026-02-01 13:01:11 +00:00
Matthias Seitz
7d10e791b2
refactor(engine): improve payload processor tx iterator ( #21658 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-01 12:44:10 +00:00
Georgios Konstantopoulos
a9b2c1d454
feat(rpc): make blob sidecar upcasting opt-in ( #21624 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-02-01 12:25:46 +00:00
CPerezz
9127563914
fix: cleanup entire temp directory when using testing_node ( #18399 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-31 16:46:11 +00:00
Georgios Konstantopoulos
a500fb22ba
fix(metrics): rename save_blocks_block_count to save_blocks_batch_size ( #21654 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-31 12:59:09 +00:00
Matthias Seitz
e869cd4670
perf(engine): skip DB lookup for new blocks in insert_block_or_payload ( #21650 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-31 03:35:20 +00:00
DaniPopes
de69654b73
chore(deps): breaking bumps ( #21584 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-31 00:44:09 +00:00
DaniPopes
8d28c4c8f2
chore(trie): add set_* methods alongside with_* builders ( #21639 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 22:42:57 +00:00
Georgios Konstantopoulos
bfe778ab51
perf(trie): use Entry API to avoid empty Vec allocation in extend ( #21645 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 22:29:21 +00:00
DaniPopes
e523a76fb8
chore(trie): clear RevealableSparseTrie in place ( #21638 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 22:27:43 +00:00
DaniPopes
cd12ae58f2
docs(CLAUDE.md): tweaks ( #21646 )
2026-01-30 22:26:34 +00:00
Georgios Konstantopoulos
370a548f34
refactor(db): derive Clone for DatabaseEnv ( #21641 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 21:54:50 +00:00
pepes
781128eece
chore(db-api): simplify DatabaseMetrics impl for Arc ( #21635 )
2026-01-30 18:43:19 +00:00
Julian Meyer
435d915422
chore: make engine tree crate items public ( #21487 )
2026-01-30 18:40:30 +00:00
Georgios Konstantopoulos
3ec065295e
refactor(trie): replace SmallVec with Vec in sparse trie buffers ( #21637 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-01-30 18:34:15 +00:00
Matthias Seitz
e1bc6d0f08
feat(engine): preserve sparse trie across payload validations ( #21534 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Brian Picciano <me@mediocregopher.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-01-30 18:34:13 +00:00
Georgios Konstantopoulos
29072639d6
perf(trie): remove shrink_to_fit calls from SparseSubtrieBuffers::clear ( #21630 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-01-30 18:02:43 +00:00
Brian Picciano
f90b5c8a7f
fix(trie): cleanup modified branch masks in update_leaf on reveal failure ( #21629 )
2026-01-30 16:06:28 +00:00
Chase Wright
d4fa6806b7
fix(ethstats): WSS Handling ( #21595 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 15:15:41 +00:00
Matthias Seitz
63742ab4ae
fix(debug-client): fix off-by-one in block hash buffer lookup ( #21628 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 15:15:26 +00:00
Matthias Seitz
08122bc1ea
perf: use biased select and prioritize engine events ( #21556 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 14:31:27 +00:00
Georgios Konstantopoulos
83afaf1aa7
feat(grafana): add gauge panels for save_blocks _last metrics ( #21604 )
...
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com >
2026-01-30 14:08:32 +00:00
Alexey Shekhirin
d72300c685
fix(net): include disconnect reason in P2PStreamError display ( #21626 )
2026-01-30 14:04:58 +00:00
Matthias Seitz
faf64c712e
feat(cli): add reth db state command for historical contract storage ( #21570 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 14:03:19 +00:00
theo
b3d532ce9d
chore(op-reth): move op-dependent examples into crates/optimism/examples/ ( #21495 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-30 14:02:12 +00:00
Georgios Konstantopoulos
9d064be77e
feat(rpc): add EIP-7934 block size validation to testing_buildBlockV1 ( #21623 )
...
Co-authored-by: Alexey <alexey@tempo.xyz >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 13:57:51 +00:00
Matus Kysel
e3c256340e
feat(txpool): add EIP-7594 blob sidecar toggle ( #21622 )
2026-01-30 12:27:06 +00:00
ligt
d0df549ddb
chore(engine-tree): simplify impl trait bound ( #21621 )
2026-01-30 11:55:23 +00:00
Arsenii Kulikov
7ccb43ea13
perf: cache fetched proof targets in SparseTrieCacheTask ( #21612 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 11:44:36 +00:00
Arsenii Kulikov
20f48b1e50
fix(proof_v2): make sure that all storage proofs are delivered ( #21611 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-01-30 11:21:17 +00:00
Dan Cline
0470c65e6c
feat(cli): add --metrics param to reth prune ( #21613 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 03:24:25 +00:00
Georgios Konstantopoulos
9de1f0905e
feat(prune): add static file pruning support for sender recovery ( #21598 )
2026-01-30 01:09:38 +00:00
joshieDo
327a1a6681
test(stages): add pipeline forward sync and unwind test ( #21602 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-30 00:49:28 +00:00
Dan Cline
b8f27b73ad
chore: fix unused parallel trie const without std ( #21610 )
2026-01-29 23:05:32 +00:00
かりんとう
7ec5ff6483
refactor(reth-bench): dedupe derive_ws_rpc_url helper ( #21585 )
2026-01-29 22:50:22 +00:00
Georgios Konstantopoulos
f98af4ad9f
feat(rpc): default --testing.skip-invalid-transactions to true ( #21603 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-29 22:03:19 +00:00
joshieDo
d8e912f66b
fix(provider): prune account changesets from static files in remove_state_above ( #21605 )
2026-01-29 21:57:28 +00:00
Georgios Konstantopoulos
0572c4e0ca
feat(metrics): add _last gauge metrics for save_blocks timings ( #21597 )
2026-01-29 21:34:27 +00:00
joshieDo
67a7a1c2d1
chore: revert "test(stages): add pipeline forward sync and unwind test" ( #21601 )
2026-01-29 22:36:47 +01:00
joshieDo
2b1833576b
test(stages): add pipeline forward sync and unwind test ( #21553 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-29 21:13:07 +00:00
Dan Cline
5592c362d4
feat(grafana): add reth-persistence dashboard ( #21594 )
2026-01-29 21:05:07 +00:00
Georgios Konstantopoulos
6beec25f43
fix(grafana): order MerkleChangeSets checkpoint after MerkleExecute ( #21581 )
2026-01-29 20:40:26 +00:00
Arsenii Kulikov
19bf580f93
feat: sparse trie as cache ( #21583 )
...
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-01-29 19:11:48 +00:00
joshieDo
796ba6d5dc
chore(trie): remove unused direct MDBX changeset readers ( #21580 )
2026-01-29 17:50:19 +00:00
Georgios Konstantopoulos
5307dfc22b
chore: update RPC URLs from ithaca.xyz to reth.rs ( #21574 )
...
Co-authored-by: Tim Beiko <tim@ethereum.org >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-29 17:06:13 +00:00
Brian Picciano
f380ed1581
fix(engine): Try to always compute storage root in V2 proofs when account proof is present, fallback if not ( #21579 )
2026-01-29 16:58:59 +00:00
DaniPopes
f7313c755c
chore(deps): bump codspeed ( #21578 )
2026-01-29 16:50:09 +00:00
Georgios Konstantopoulos
3bc2191590
chore: remove cargo-chef from Dockerfile.depot ( #21577 )
2026-01-29 16:28:44 +00:00
Brian Picciano
320f2a6015
fix(trie): PST: Fix update_leaf atomicity, remove update_leaves revealed tracking, fix callback calling ( #21573 )
2026-01-29 16:18:42 +00:00
Georgios Konstantopoulos
70bfdafd26
fix(provider): check executed block before returning historical state ( #21571 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-29 13:54:50 +00:00
YK
e9fe0283a9
fix(provider): use storage-aware methods in unwind_trie_state_from ( #21561 )
2026-01-29 11:54:12 +00:00
Alexey Shekhirin
92b8857625
fix(reth-bench): stop fetcher when reaching chain tip ( #21568 )
2026-01-29 11:34:15 +00:00
YK
2d71243cf6
feat(trie): add update_leaves method to SparseTrieExt ( #21525 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-01-29 11:25:08 +00:00
かりんとう
732bf712aa
refactor(reth-bench): dedupe read_input and load_jwt_secret helpers ( #21555 )
2026-01-29 10:17:51 +00:00
Dan Cline
0901c2ca8b
fix(reth-bench): retry testing_buildBlockV1 when payload gas < target ( #21547 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-01-29 10:08:54 +00:00
Matthias Seitz
2352158b3d
fix(reth-bench): return error instead of panic on invalid payload ( #21557 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-29 00:35:19 +00:00
Georgios Konstantopoulos
1a98605ce6
chore(net): downgrade fork id mismatch log to trace ( #21554 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-28 22:41:42 +00:00
DaniPopes
8d37f76d23
chore: move scripts from .github/assets to .github/scripts ( #21539 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-28 22:14:37 +00:00
Dan Cline
2d9cf4c989
chore: fix unused warns in sparse trie ( #21546 )
2026-01-28 21:48:59 +00:00
DaniPopes
f5ca71d2fb
chore(deps): cargo update ( #21538 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-28 19:49:15 +00:00
Alexey Shekhirin
8d58c98034
feat(reth-bench): add reporting and wait options to replay-payloads ( #21537 )
2026-01-28 19:13:19 +00:00
Matthias Seitz
50e0591540
perf(tree): optimistically prepare canonical overlay ( #21475 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-28 18:16:04 +00:00
joshieDo
013dfdf8c8
fix(prune): add minimum 64 block retention for receipts and bodies ( #21520 )
2026-01-28 18:10:07 +00:00
joshieDo
effa0ab4c7
fix(provider): read changesets from static files during unwind ( #21528 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-28 15:52:08 +00:00
SS
543a85e9f3
fix: simplify UTF-8 decoding in StreamCodec by using Result::ok ( #21524 )
2026-01-28 15:12:55 +00:00
theo
88eb0beeb2
chore(op-reth): remove op-reth dependencies from core reth library crates ( #21492 )
2026-01-28 14:53:17 +00:00
YK
747c0169a7
feat(trie): add prune method to SparseTrieInterface ( #21427 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-01-28 13:55:21 +00:00
Georgios Konstantopoulos
497985ca86
fix(prune): improve pruner log readability ( #21522 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-28 13:41:55 +00:00
bobtajson
48a999a81b
refactor: using iterator over references ( #21506 )
2026-01-28 12:46:19 +00:00
ligt
d53858b3e2
chore(engine): simplify EngineApiTreeHandler type inference ( #21503 )
2026-01-28 12:43:30 +00:00
David Klank
6aa91b0020
perf(trie-db): preallocate vectors in changeset computation ( #21465 )
2026-01-28 12:39:08 +00:00
katikatidimon
e0a0a0d5fb
refactor: remove redundant clone() in CursorSubNode::new ( #21493 )
2026-01-28 12:33:10 +00:00
joshieDo
231292b58e
fix(provider): cap static file changeset iteration to highest available block ( #21510 )
2026-01-28 11:03:49 +00:00
Brian Picciano
42765890b5
feat(trie): Enable proofs v2 by default ( #21434 )
2026-01-28 10:54:50 +00:00
Matus Kysel
8417ddc0e8
fix(engine): guard receipt streaming against duplicate indices ( #21512 )
2026-01-28 10:48:11 +00:00
かりんとう
1ca62d0696
fix(rpc): populate block fields in mev_simBundle logs ( #21491 )
2026-01-27 22:59:58 +00:00
katikatidimon
928bf37297
perf: avoid cloning prefix sets in TrieWitness::compute ( #21352 )
2026-01-27 22:26:31 +00:00
Matthias Seitz
aa5b12af44
refactor(db): make Tx::inner field private with accessor ( #21490 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-27 22:06:41 +00:00
katikatidimon
f12acf17e6
chore(txpool): remove redundant locals clone in config ( #21477 )
2026-01-27 21:37:44 +00:00
joshieDo
2e05cec84b
fix: ensure edge enables history in rocksdb ( #21478 )
2026-01-27 18:43:25 +00:00
Matthias Seitz
9eaa5a6303
chore: remove Sync bound from cursor associated types ( #21486 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-27 18:31:40 +00:00
Georgios Konstantopoulos
ba8c8354e5
fix(reth-bench): retry up to 5 times on failed transaction fetches in big blocks generate ( #21483 )
2026-01-27 16:10:53 +00:00
Arsenii Kulikov
af3601c65d
feat: more metrics ( #21481 )
2026-01-27 15:17:49 +00:00
Brian Picciano
bff11ab663
refactor(trie): reuse shared StorageProofCalculator for V2 sync storage roots and add deferred encoder metrics ( #21424 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-27 14:54:56 +00:00
joshieDo
08cd1cbda6
fix(static-files): apply minimal blocks per file to all segments ( #21479 )
...
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-01-27 14:01:32 +00:00
Georgios Konstantopoulos
e4e05e9ef9
refactor: align RocksDbArgs defaults with StorageSettings::base() ( #21472 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-01-27 13:13:25 +00:00
joshieDo
c8245594bc
fix(db): write genesis history to correct storage backend ( #21471 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-27 11:59:06 +00:00
Dan Cline
ed40ce8c4c
chore: simplify account_changesets_range ( #21457 )
2026-01-27 11:44:11 +00:00
YK
1e734936d8
fix(provider): skip storage changeset writes when routed to static files ( #21468 )
2026-01-27 10:34:44 +00:00
YK
11d9f38077
test(e2e): comprehensive RocksDB storage E2E tests ( #21423 )
2026-01-27 07:08:57 +00:00
Matthias Seitz
226ce14ca1
perf(trie): use is_zero() check to avoid copy in is_storage_empty ( #21459 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-27 00:42:26 +00:00
Dan Cline
a6e1dea2d7
chore: add logging for internal fcu errors ( #21456 )
2026-01-26 23:24:48 +00:00
Georgios Konstantopoulos
71ed68e944
perf(db): flatten HashedPostState before persisting ( #21422 )
2026-01-26 22:49:01 +00:00
DaniPopes
adecbd7814
chore: log docker sccache stats ( #21455 )
2026-01-26 22:30:20 +00:00
Matthias Seitz
26a37f3c00
chore: use Default::default() for TransactionInfo for forward compatibility ( #21454 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 22:15:41 +00:00
DaniPopes
0bfa7fa5fa
ci: typorino ( #21453 )
2026-01-26 21:39:35 +00:00
Georgios Konstantopoulos
18bec10a0b
perf(docker): use shared cache mounts for parallel builds ( #21451 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 21:00:45 +00:00
DaniPopes
1e33821e19
ci: use depot cache in Dockerfile.depot ( #21450 )
2026-01-26 20:37:33 +00:00
ethfanWilliam
da92733be8
fix: use unwrap_or_else for lazy evaluation of BlobParams::cancun ( #21442 )
2026-01-26 20:19:28 +00:00
DaniPopes
c41c8e6cae
chore: reduce number of nightly builds ( #21446 )
2026-01-26 20:06:09 +00:00
DaniPopes
1ccc174e7b
chore: remove unused docker from makefile ( #21445 )
2026-01-26 19:53:55 +00:00
ethfanWilliam
f1459fcf91
fix(stages): retain RocksDB TempDir in TestStageDB to prevent premature deletion ( #21444 )
2026-01-26 19:43:11 +00:00
Dan Cline
94235d64a8
fix(pruner): prune account and storage changeset static files ( #21346 )
2026-01-26 19:28:18 +00:00
Dan Cline
7fe60017cf
chore(metrics): add a gas_last metric similar to new_payload_last ( #21437 )
2026-01-26 17:54:20 +00:00
Brian Picciano
f9ec2fafa0
refactor(trie): always use ParallelSparseTrie, deprecate config flags ( #21435 )
2026-01-26 17:02:06 +00:00
Arsenii Kulikov
768a687189
perf: use shared channel for prewarm workers ( #21429 )
2026-01-26 15:49:44 +00:00
Rez
b87cde5479
feat: configurable EVM execution limits ( #21088 )
...
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
2026-01-26 15:27:09 +00:00
figtracer
ab685579f0
feat(rpc): add transaction hash caching to EthStateCache ( #21180 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 14:37:53 +00:00
Matthias Seitz
c7faafd183
fix(rpc): add block timestamp validation in eth_simulateV1 ( #21397 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 14:12:28 +00:00
Matthias Seitz
935a2cc056
fix(rpc): use correct error codes for eth_simulateV1 reverts and halts ( #21412 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 14:06:38 +00:00
Matthias Seitz
507cf58db0
fix(rpc): add block number validation in eth_simulateV1 ( #21396 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 13:47:20 +00:00
Matthias Seitz
6cfd369d17
fix(rpc): populate block_hash in eth_simulateV1 logs ( #21413 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:41:19 +00:00
Matthias Seitz
934f462d01
feat(cli): make stopping on invalid block the default for reth import ( #21403 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:41:06 +00:00
Matthias Seitz
d4f28b02ff
feat(rpc): implement movePrecompileToAddress for eth_simulateV1 ( #21414 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:40:12 +00:00
Matthias Seitz
963bfeeeed
fix(rpc): set prevrandao to zero for eth_simulateV1 simulated blocks ( #21399 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:39:37 +00:00
Matthias Seitz
adbe6d9da0
fix(rpc): cap simulate_v1 default gas limit to RPC gas cap ( #21402 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:39:15 +00:00
Matthias Seitz
6d19c0ed8e
fix(engine): only warn for critical capability mismatches ( #21398 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:36:49 +00:00
Andrey Kolishchak
4baf2baec4
fix(net): FetchFullBlockRangeFuture can get stuck forever after partial body fetch + error ( #21411 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-26 12:34:07 +00:00
emmmm
0b5f79e8c9
docs(rpc): add reth_subscribePersistedBlock method ( #21420 )
2026-01-26 10:48:35 +00:00
Georgios Konstantopoulos
afe164baca
test: add E2E test for RocksDB provider functionality ( #21419 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-01-26 10:24:10 +00:00
Hwangjae Lee
31fdbe914c
docs(tracing): fix incorrect example description in lib.rs ( #21417 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-26 10:19:36 +00:00
Ahsen Kamal
6870747246
feat(payload): add fn for system transaction check ( #21407 )
...
Signed-off-by: Ahsen Kamal <itsahsenkamal@gmail.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-25 14:47:22 +00:00
Fallengirl
0ad8c772e1
fix(era-utils): export correct era1 CompressedBody payload ( #21409 )
2026-01-25 14:36:24 +00:00
github-actions[bot]
5440d0d89a
chore(deps): weekly cargo update ( #21406 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
2026-01-25 10:39:48 +00:00
Matthias Seitz
0eea4d76e9
chore: remove unused imports in storage-api ( #21400 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-24 15:49:21 +00:00
YK
8a1702cd74
fix(rocksdb): filter history writes to only changed accounts/storage ( #21339 )
...
Co-authored-by: Tempo AI <ai@tempo.xyz >
2026-01-24 13:07:16 +00:00
cui
7feb56d5f6
feat: prealloc vec ( #21391 )
2026-01-24 11:30:34 +00:00
cui
0aa922c4e8
feat: change from stable sort to unstable sort ( #21387 )
2026-01-24 11:21:47 +00:00
Matthias Seitz
ccff9a08f0
chore: fix clippy unnecessary_sort_by lint ( #21385 )
2026-01-24 03:13:49 +00:00
Matthias Seitz
eb788cc7cf
fix(docker): pass vergen git vars as build args ( #21384 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-24 03:21:43 +01:00
Dan Cline
fb05a0654f
fix(engine): use LazyTrieData::deferred for chain notification ( #21383 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-23 22:32:21 +00:00
ethfanWilliam
d5a36dcc00
perf(trie): parallelize merge_ancestors_into_overlay extend ops ( #21379 )
2026-01-23 22:26:07 +00:00
iPLAY888
ffbef9e3cd
chore: removed needless collect ( #21381 )
2026-01-23 21:59:19 +00:00
Dan Cline
820c112e8e
feat(engine): add metric for forkchoiceUpdated response -> newPayload ( #21380 )
2026-01-23 21:57:15 +00:00
Alexey Shekhirin
9285f7eafc
ci: use depot for docker ( #20380 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-01-23 21:14:55 +00:00
joshieDo
9a4c6d8a11
feat(rocksdb): static file based healing for TransactionHashNumbers ( #21343 )
2026-01-23 20:11:47 +00:00
Dan Cline
963c26550a
fix(trie): only clone required keys in on_prefetch_proofs ( #21378 )
2026-01-23 21:13:01 +01:00
joshieDo
3648483512
feat(rocksdb): add WAL size tracking metric and Grafana dashboard ( #21295 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-23 19:59:10 +00:00
joshieDo
ab418642b4
fix(stages): commit RocksDB batches before flush and configure immediate WAL cleanup ( #21374 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
2026-01-23 19:28:52 +00:00
joshieDo
decb56fae1
feat(rocksdb): changeset-based crash recovery healing for history indices ( #21341 )
2026-01-23 19:28:10 +00:00
Matthias Seitz
ee1ec8f9f0
perf(trie): parallelize COW extend operations with rayon ( #21375 )
2026-01-23 19:31:04 +01:00
Georgios Konstantopoulos
d7bf87da52
feat(engine): add metric for state root task fallback success ( #21371 )
2026-01-23 18:21:44 +00:00
Georgios Konstantopoulos
dd0c6d279f
revert: perf(trie): parallelize merge_ancestors_into_overlay ( #21202 ) ( #21370 )
2026-01-23 19:09:19 +01:00
Alexey Shekhirin
c137ed836f
perf(engine): fixed-cache for execution cache ( #21128 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: Tempo AI <ai@tempo.xyz >
2026-01-23 17:57:42 +00:00
Dan Cline
a543752f7d
chore(reth-bench): make from-block a required flag ( #21372 )
2026-01-23 17:52:33 +00:00
joshieDo
b814893221
feat(stages): flush RocksDB at end of history and tx_lookup stages ( #21367 )
2026-01-23 17:02:53 +00:00
Georgios Konstantopoulos
fcef82261d
fix(libmdbx): handle errors gracefully in TransactionInner::drop ( #21368 )
2026-01-23 16:37:15 +00:00
iPLAY888
d3846d98a9
refactor: refactor get_idle_peer_for to use Iterator::find ( #21321 )
2026-01-23 15:56:09 +00:00
Alexey Shekhirin
1f536cce65
test(e2e): selfdestruct pre- and post-Dencun ( #21363 )
2026-01-23 15:41:08 +00:00
Matthias Seitz
0ddaf1b26c
feat(engine): add BAL metrics type for EIP-7928 ( #21356 )
2026-01-23 15:17:33 +00:00
Gigi
830cd5e355
chore: update snmalloc upstream repository link ( #21360 )
2026-01-23 14:57:46 +00:00
Georgios Konstantopoulos
f77d7d5983
feat(reth-bench): support human-readable gas format in generate-big-block ( #21361 )
2026-01-23 14:24:34 +00:00
Georgios Konstantopoulos
a2237c534e
feat(p2p): add reth p2p enode command ( #21357 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-23 13:23:44 +00:00
Arsenii Kulikov
1bd8fab887
feat(txpool): add Block associated type to TransactionValidator trait ( #21359 )
2026-01-23 13:16:05 +00:00
Matthias Seitz
22a68756c7
fix(tree): evict changeset cache even when finalized block is unset ( #21354 )
2026-01-23 11:26:57 +00:00
Hwangjae Lee
d99c0ffd62
chore(etc): update ethereum-metrics-exporter GitHub URL ( #21348 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-23 10:59:53 +00:00
Georgios Konstantopoulos
ad476e2b5c
chore: add yongkangc as codeowner for crates/storage/provider ( #21349 )
2026-01-23 07:18:18 +00:00
Matthias Seitz
6df249c1f1
feat(engine): stub Amsterdam engine API endpoints (newPayloadV5, getPayloadV6, BALs) ( #21344 )
...
Co-authored-by: Ishika Choudhury <117741714+Rimeeeeee@users.noreply.github.com >
Co-authored-by: Soubhik Singha Mahapatra <160333583+Soubhik-10@users.noreply.github.com >
2026-01-22 20:48:11 +00:00
Arsenii Kulikov
5a076df09a
feat: allow setting custom debug block provider ( #21345 )
...
Co-authored-by: Karl <yh975593284@gmail.com >
2026-01-22 20:40:26 +00:00
YK
f07629eac0
perf: avoid creating RocksDB transactions for legacy MDBX-only nodes ( #21325 )
2026-01-22 20:30:52 +00:00
Dan Cline
f643e93c35
feat(reth-bench): send-invalid-payload command ( #21335 )
2026-01-22 19:42:19 +00:00
Matthias Seitz
653362a436
ci: align check-alloy workflow with main clippy job ( #21329 )
2026-01-22 20:48:53 +01:00
Seola Oh
a02508600c
chore(txpool): explicitly deref RwLockReadGuard in PartialEq impl ( #21336 )
2026-01-22 19:35:00 +00:00
Georgios Konstantopoulos
937a7f226d
fix(rpc): use Default for SimulateError to prepare for alloy breaking change ( #21319 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-22 19:14:58 +00:00
joshieDo
a0df561117
fix(rocksdb): periodic batch commits in stages to prevent OOM ( #21334 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-22 19:04:56 +00:00
Arsenii Kulikov
be5a4ac7a6
feat: bump alloy and alloy-evm ( #21337 )
2026-01-22 18:43:24 +00:00
Georgios Konstantopoulos
0c854b6f14
fix(net): limit pending pool imports for broadcast transactions ( #21254 )
...
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
2026-01-22 18:32:07 +00:00
Georgios Konstantopoulos
28a31cd579
fix: use unwrap_or_else for lazy evaluation of StorageSettings::legacy ( #21332 )
2026-01-22 17:02:15 +00:00
Brian Picciano
da12451c9c
chore(trie): Cleanup unused trie changesets code ( #21323 )
2026-01-22 16:57:46 +00:00
Georgios Konstantopoulos
247ce3c4e9
feat(storage): warn storage settings diff at startup ( #21320 )
...
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-01-22 16:40:10 +00:00
iPLAY888
bf43ebaa29
fix(cli): handle invalid hex in db list --search ( #21315 )
2026-01-22 16:18:36 +00:00
Matthias Seitz
a01ecce73f
test: add e2e tests for invalid payload handling via Engine API ( #21288 )
2026-01-22 15:55:36 +00:00
Arsenii Kulikov
3e55c6ca6e
fix: always check upper subtrie for keys ( #21276 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-01-22 15:47:50 +00:00
Brian Picciano
2ac7d719f3
feat(trie): add V2 account proof computation and refactor proof types (reapply) ( #21316 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-22 15:46:01 +00:00
andrewshab
965705ff88
fix: remove collect ( #21318 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-22 15:24:51 +00:00
Dan Cline
ebe2ca1366
feat: add StaticFileSegment::StorageChangeSets ( #20896 )
2026-01-22 15:03:47 +00:00
Matthias Seitz
cc242f83fd
feat(rpc): respect history expiry in eth_getLogs per EIP-4444 ( #21304 )
2026-01-22 14:55:50 +00:00
joshieDo
12cf3d685b
fix(provider): add CommitOrder for RocksDB/MDBX unwind atomicity ( #21311 )
2026-01-22 14:54:47 +00:00
Matthias Seitz
ad5b533ad1
chore: rm patches ( #21317 )
2026-01-22 15:48:53 +01:00
joshieDo
118f15f345
feat(rocksdb): disable bloom filter for default column family ( #21312 )
2026-01-22 13:47:34 +00:00
joshieDo
97481f69e5
perf(rocksdb): disable compression and bloom filters for TransactionHashNumbers CF ( #21310 )
2026-01-22 13:31:16 +00:00
Georgios Konstantopoulos
f692ac7d1e
perf(prune): use bulk table clear for PruneMode::Full ( #21302 )
2026-01-22 13:01:17 +00:00
andrewshab
4b1c341ced
fix: remove redundant clone ( #21300 )
2026-01-22 12:43:19 +00:00
Georgios Konstantopoulos
865f8f8951
perf(prune): sort tx hashes for efficient TransactionLookup pruning ( #21297 )
2026-01-22 12:10:07 +00:00
joshieDo
492fc20fd1
fix(cli): clear rocksdb tables in drop-stage command ( #21299 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-22 12:09:36 +00:00
Sergei Shulepov
ad9886abb8
fix(mdbx): mark reserve as unsafe ( #21263 )
2026-01-22 12:03:12 +00:00
Matthias Seitz
5c3e45cd6b
fix: handle incomplete receipts gracefully in receipt root task ( #21285 )
2026-01-22 10:52:56 +00:00
Emma Jamieson-Hoare
68fdba32d2
chore(release): prep v1.10.2 release ( #21287 )
...
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmai.com >
2026-01-22 10:50:10 +00:00
Matthias Seitz
8f6a0a2992
ci: add on-demand workflow to check alloy breaking changes ( #21267 )
2026-01-22 10:47:38 +00:00
Matthias Seitz
ec9c7f8d3e
perf(db): use ArrayVec for StoredNibbles key encoding ( #21279 )
2026-01-22 02:05:50 +00:00
Matthias Seitz
dbdaf068f0
fix(engine): clear execution cache when block validation fails ( #21282 )
2026-01-22 01:01:22 +00:00
Matthias Seitz
055bf63ee9
refactor: use Default::default() for Header in tests ( #21277 )
2026-01-21 22:50:10 +00:00
Georgios Konstantopoulos
2305c3ebeb
feat(rpc): respect history expiry in block() and map to PrunedHistoryUnavailable ( #21270 )
2026-01-21 22:22:05 +00:00
joshieDo
eb55c3c3da
feat(grafana): add RocksDB metrics dashboard ( #21243 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-21 22:09:42 +00:00
Alexey Shekhirin
72e1467ba3
fix(prune): avoid panic in tx lookup ( #21275 )
2026-01-21 21:21:53 +00:00
Alexey Shekhirin
74edce0089
revert: feat(trie): add V2 account proof computation and refactor proof types ( #21214 ) ( #21274 )
2026-01-21 21:07:13 +00:00
Georgios Konstantopoulos
8c645d5762
feat(reth-bench): accept short notation for --target-gas-limit ( #21273 )
2026-01-21 21:04:10 +00:00
Georgios Konstantopoulos
b7d2ee2566
feat(engine): add metric for execution cache unavailability due to concurrent use ( #21265 )
...
Co-authored-by: Tempo AI <ai@tempo.xyz >
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-01-21 20:17:45 +00:00
Matthias Seitz
7609deddda
perf(trie): parallelize merge_ancestors_into_overlay ( #21202 )
2026-01-21 20:08:03 +00:00
Matthias Seitz
ec50fd40b3
chore(chainspec): use ..Default::default() in create_chain_config ( #21266 )
2026-01-21 19:19:24 +00:00
YK
624ddc5779
feat(stages): add RocksDB support for IndexStorageHistoryStage ( #21175 )
2026-01-21 17:05:19 +00:00
Georgios Konstantopoulos
dd72cfe23e
refactor: remove static_files.to_settings() and add edge feature to RocksDB flags ( #21225 )
2026-01-21 16:52:24 +00:00
joshieDo
ff8ac97e33
fix(stages): clear ETL collectors on HeaderStage error paths ( #21258 )
2026-01-21 16:27:30 +00:00
Alexey Shekhirin
0974485863
feat(reth-bench): add --target-gas-limit option to gas-limit-ramp ( #21262 )
2026-01-21 16:19:22 +00:00
かりんとう
274394e777
fix: fix payload file filter prefix in replay-payloads ( #21255 )
2026-01-21 16:11:03 +00:00
Emma Jamieson-Hoare
1954c91a60
chore: update CODEOWNERS ( #21223 )
...
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmai.com >
Co-authored-by: YK <chiayongkang@hotmail.com >
Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com >
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com >
2026-01-21 14:40:54 +00:00
Sergei Shulepov
9cf82c8403
fix: supply a real ptr to mdbx_dbi_flags_ex ( #21230 )
2026-01-21 14:23:26 +00:00
Brian Picciano
f85fcba872
feat(trie): add V2 account proof computation and refactor proof types ( #21214 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-21 14:18:44 +00:00
joshieDo
ebaa4bda3a
feat(rocksdb): add missing observability ( #21253 )
2026-01-21 14:14:34 +00:00
joshieDo
04d4c9a02f
fix(rocksdb): flush all column families on drop and show SST/memtable sizes ( #21251 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-21 12:44:08 +00:00
Arsenii Kulikov
3065a328f9
fix: clear overlay_cache in with_extended_hashed_state_overlay ( #21233 )
2026-01-21 12:08:24 +00:00
Sergei Shulepov
43a84f1231
refactor(engine): move execution logic from metrics to payload_validator ( #21226 )
2026-01-21 11:17:30 +00:00
Matthias Seitz
5a5c21cc1b
feat(txpool): add IntoIterator for AllPoolTransactions ( #21241 )
2026-01-21 10:01:32 +00:00
Matthias Seitz
8a8a9126d6
feat(execution-types): add receipts_iter and logs_iter helpers to Chain ( #21240 )
2026-01-21 09:59:15 +00:00
Emilia Hane
6f73c2447d
feat(trie): Add serde-bincode-compat feature to reth-trie ( #21235 )
2026-01-21 09:42:52 +00:00
Sergei Shulepov
2cae438642
fix: sigsegv handler ( #21231 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-01-21 09:42:36 +00:00
Georgios Konstantopoulos
37b5db0d47
feat(cli): add RocksDB table stats to reth db stats command ( #21221 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-21 08:45:17 +00:00
joshieDo
238433e146
fix(rocksdb): flush memtables before dropping ( #21234 )
2026-01-21 02:19:36 +00:00
Georgios Konstantopoulos
660964a0f5
feat(node): log storage settings after genesis init ( #21229 )
2026-01-21 00:58:23 +00:00
Matthias Seitz
22b465dd64
chore(trie): remove unnecessary clone in into_sorted_ref ( #21232 )
2026-01-20 22:57:08 +00:00
Georgios Konstantopoulos
3ff575b877
feat(engine): add --engine.disable-cache-metrics flag ( #21228 )
...
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com >
2026-01-20 22:03:12 +00:00
かりんとう
d12752dc8a
feat(engine): add time_between_forkchoice_updated metric ( #21227 )
2026-01-20 21:06:11 +00:00
Georgios Konstantopoulos
869b5d0851
feat(edge): enable transaction_hash_numbers_in_rocksdb for edge builds ( #21224 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-20 20:02:02 +00:00
Georgios Konstantopoulos
78de3d8f61
perf(db): use Cow::Borrowed in walk_dup to avoid allocation ( #21220 )
2026-01-20 19:31:50 +00:00
YK
bc79cc44c9
feat(cli): add --rocksdb.* flags for RocksDB table routing ( #21191 )
2026-01-20 19:29:05 +00:00
Georgios Konstantopoulos
ff8f434dcd
feat(cli): add reth db checksum rocksdb command ( #21217 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-20 19:10:34 +00:00
Arsenii Kulikov
9662dc5271
fix: properly save history indices in pipeline ( #21222 )
2026-01-20 18:20:28 +00:00
Alexey Shekhirin
3ba37082dc
fix(reth-bench): replay-payloads prefix ( #21219 )
2026-01-20 18:36:35 +01:00
Ahsen Kamal
7934294988
perf(trie): dispatch storage proofs in lexicographical order ( #21213 )
...
Signed-off-by: Ahsen Kamal <itsahsenkamal@gmail.com >
2026-01-20 17:09:20 +00:00
Georgios Konstantopoulos
7371bd3f29
chore(db-api): remove sharded_key_encode benchmark ( #21215 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-20 17:01:12 +00:00
Georgios Konstantopoulos
80980b8e4d
feat(pruning): add DefaultPruningValues for overridable pruning defaults ( #21207 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-01-20 16:58:29 +00:00
Matthias Seitz
2e2cd67663
perf(chain-state): parallelize into_sorted with rayon ( #21193 )
2026-01-20 16:42:16 +00:00
Georgios Konstantopoulos
4f009728e2
feat(cli): add reth db checksum mdbx/static-file command ( #21211 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-20 16:11:51 +00:00
Georgios Konstantopoulos
39d5ae73e8
feat(storage): add read-only mode for RocksDB provider ( #21210 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-20 16:09:51 +00:00
Georgios Konstantopoulos
5ef200eaad
perf(db): stack-allocate ShardedKey and StorageShardedKey encoding ( #21200 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-20 15:58:43 +00:00
ethfanWilliam
d002dacc13
chore: remove deprecated and unused ExecuteOutput struct ( #20887 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-20 15:06:26 +00:00
Alexey Shekhirin
bb39cba504
ci: partition bench codspeed job ( #20332 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-20 14:29:48 +00:00
YK
bd144a4c42
feat(stages): add RocksDB support for IndexAccountHistoryStage ( #21165 )
...
Co-authored-by: Georgios Konstantopoulos <me@gakonst.com >
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-20 14:23:29 +00:00
tonis
a0845bab18
feat: Check CL/Reth capability compatibility ( #20348 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-20 14:19:31 +00:00
Brian Picciano
346cc0da71
feat(trie): add AsyncAccountValueEncoder for V2 proof computation ( #21197 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-20 13:50:29 +00:00
Matthias Seitz
ea3d4663ae
perf(trie): use HashMap reserve heuristic in MultiProof::extend ( #21199 )
2026-01-20 13:34:41 +00:00
Hwangjae Lee
3667d3b5aa
perf(trie): defer child RLP conversion in proof_v2 for async encoder support ( #20873 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-01-20 13:33:08 +00:00
Brian Picciano
7cfb19c98e
feat(trie): Add V2 reveal method and target types ( #21196 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-20 13:25:54 +00:00
joshieDo
5a38871489
fix: set StaticFileArgs defaults for edge ( #21208 )
2026-01-20 12:39:36 +00:00
Brian Picciano
c825c8c187
chore(trie): Move hybrid check for trie input merges into common code ( #21198 )
2026-01-20 12:38:46 +00:00
Matthias Seitz
8f37cd08fc
feat(engine-api): add EIP-7928 BAL stub methods ( #21204 )
2026-01-20 11:33:27 +00:00
Matthias Seitz
c9dad4765d
chore: bump version to 1.10.1 ( #21188 )
2026-01-19 14:04:08 +00:00
Dan Cline
1d55abeef3
chore: rename extend_ref methods on sorted data structures ( #21043 )
2026-01-19 13:04:57 +00:00
Niven
f7460e219c
fix(flashblocks): Add flashblock ws connection retry period ( #20510 )
2026-01-19 12:01:33 +00:00
Georgios Konstantopoulos
0c66315f20
chore(bench): add --disable-tx-gossip to benchmark node args ( #21171 )
2026-01-19 11:45:56 +00:00
MozirDmitriy
6a2010e595
refactor(stages): reuse history index cache buffers in collect_history_indices ( #21017 )
2026-01-19 11:39:52 +00:00
Georgios Konstantopoulos
c2435ff6f8
feat(download): resumable snapshot downloads with auto-retry ( #21161 )
2026-01-19 10:26:24 +00:00
DaniPopes
52ec8e9491
ci: update to tempoxyz ( #21176 )
2026-01-19 10:21:37 +00:00
Georgios Konstantopoulos
a901d80ee6
chore: apply spelling and typo fixes ( #21182 )
2026-01-19 10:21:25 +00:00
MoNyAvA
915164078f
docs: document minimal storage mode in pruning FAQ ( #21025 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-19 10:27:45 +01:00
github-actions[bot]
be3234d848
chore(deps): weekly cargo update ( #21167 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
2026-01-18 14:57:20 +00:00
Matthias Seitz
f624372334
feat(execution-types): add receipts_iter helper ( #21162 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-17 19:20:28 +01:00
Matthias Seitz
40bc9d3860
revert: undo Chain crate, add LazyTrieData to trie-common ( #21155 )
2026-01-17 15:57:09 +00:00
Georgios Konstantopoulos
1ea574417f
feat(engine): add new_payload_interval metric (start-to-start) ( #21159 )
2026-01-17 12:15:45 +00:00
Georgios Konstantopoulos
27e055f790
feat(engine): add time_between_new_payloads metric ( #21158 )
2026-01-17 10:20:22 +00:00
Georgios Konstantopoulos
d5dc0b27eb
fix(storage-api): gate reth-chain dependency behind std feature
...
The reth-chain crate is inherently std-only (uses BTreeMap, Arc, etc.)
and was breaking the riscv32imac no_std builds by pulling in serde_core
which doesn't support no_std properly.
This makes reth-chain optional and only enables it when std feature is
active, gating the block_writer module that uses Chain behind std.
2026-01-17 08:32:10 +00:00
Georgios Konstantopoulos
c11c13000f
perf(storage): batch trie updates across blocks in save_blocks ( #21142 )
...
Co-authored-by: Amp <amp@ampcode.com >
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-01-17 07:15:40 +00:00
Matthias Seitz
6bf43ab24a
refactor: use ExecutionOutcome::single instead of tuple From ( #21152 )
2026-01-17 01:51:26 +00:00
Matthias Seitz
574bde0d6f
chore(chain-state): reorganize deferred_trie.rs impl blocks ( #21151 )
2026-01-17 01:39:29 +00:00
Matthias Seitz
79b8ffb828
feat(primitives-traits): add try_recover_signers for parallel batch recovery ( #21103 )
2026-01-17 01:24:53 +00:00
Dan Cline
c617d25c36
perf: make Chain use DeferredTrieData ( #21137 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-17 01:05:35 +00:00
Georgios Konstantopoulos
b96a30821f
fix(engine): request head block download when not buffered after backfill ( #21150 )
2026-01-17 00:33:27 +00:00
Mablr
012fbf5110
fix(docs/cli): update help.rs to use nightly toolchain ( #21149 )
2026-01-16 23:35:26 +00:00
Arsenii Kulikov
d7a5d1f872
fix: properly record span fields ( #21148 )
2026-01-16 23:25:54 +00:00
Matthias Seitz
3a39251f79
fix: release mutex before dropping ancestors in wait_cloned ( #21146 )
2026-01-16 22:32:23 +00:00
Julian Meyer
f6dbf2d82d
feat(db): implement extra dup methods ( #20964 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-16 21:31:52 +00:00
Brian Picciano
13707faf1a
feat(consensus): incremental receipt root computation in background task ( #21131 )
2026-01-16 19:53:59 +00:00
Arsenii Kulikov
6e6415690c
perf: start saving cache sooner ( #21130 )
2026-01-16 18:55:18 +00:00
Matthias Seitz
b81e373d78
chore(deps): bump vergen and vergen-git2 to 9.1.0 ( #21141 )
2026-01-16 20:00:43 +01:00
Arun Dhyani
a164654145
fix(exex): prevent ExExManager deadlock when buffer clears after being full ( #21135 )
2026-01-16 18:42:23 +00:00
Matthias Seitz
905bb95f8b
perf(engine): defer trie overlay computation with LazyOverlay ( #21133 )
2026-01-16 18:25:04 +00:00
YK
13c32625bc
feat(storage): add EitherReader for routing history queries to MDBX or RocksDB ( #21063 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-16 17:44:43 +00:00
YK
1be9fab5bf
perf: Optimize multiproof sequencer add_proof ( #21129 )
2026-01-16 17:33:48 +00:00
Arsenii Kulikov
80eb0d0fb6
refactor: use BlockExecutionOutcome in ExecutedBlock ( #21123 )
2026-01-16 17:07:19 +00:00
Matthias Seitz
5e178f6ac6
chore(deps): update alloy-evm and alloy-op-evm to 0.26.3 ( #21126 )
2026-01-16 17:24:45 +01:00
Matthias Seitz
b4b64096c8
perf(cli): use available_parallelism as default for re-execute ( #21010 )
2026-01-16 16:08:30 +00:00
figtracer
e313de818b
chore(provider): pre alloc tx hashes ( #21114 )
2026-01-16 15:40:47 +00:00
rakita
86c414081a
feat: stagging revm v34.0.0 ( #20627 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-16 14:56:27 +00:00
Brian Picciano
a74cb9cbc3
feat(trie): in-memory trie changesets ( #20997 )
2026-01-16 01:06:31 +00:00
YK
e25411c32b
perf(trie): fix extend_sorted_vec O(n log n) → O(n+m) merge ( #21098 )
2026-01-16 00:17:22 +00:00
Matthias Seitz
ec3323bba0
refactor(chain-state): extract blocks_to_chain helper ( #21110 )
2026-01-15 23:27:11 +00:00
Dan Cline
26cd132631
fix(reth-bench): use requests hash ( #21111 )
2026-01-15 19:19:16 +00:00
DaniPopes
079f59c2be
perf: reserve in extend_sorted_vec ( #21109 )
2026-01-15 19:10:20 +00:00
joshieDo
e9b079ad62
feat: add rocksdb to save_blocks ( #21003 )
...
Co-authored-by: Sergei Shulepov <s.pepyakin@gmail.com >
Co-authored-by: Sergei Shulepov <pep@tempo.xyz >
Co-authored-by: yongkangc <chiayongkang@hotmail.com >
2026-01-15 18:33:19 +00:00
Dan Cline
b1f107b171
feat(reth-bench): add generate-big-block command ( #21082 )
2026-01-15 15:30:04 +00:00
YK
7d0e7e72de
perf(trie): add k-way merge batch optimization for merge_overlay_trie_input ( #21080 )
2026-01-15 15:22:15 +00:00
joshieDo
f012b3391e
feat: parallelize save_blocks ( #20993 )
...
Co-authored-by: Sergei Shulepov <s.pepyakin@gmail.com >
Co-authored-by: Sergei Shulepov <pep@tempo.xyz >
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-01-15 14:58:06 +00:00
joshieDo
d225fc1d7f
feat: add get/set db settings for rocksdb ( #21095 )
2026-01-15 14:48:05 +00:00
Dan Cline
d469b7f1d0
feat(rpc): add flag to skip invalid transactions in testing_buildBlockV1 ( #21094 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-15 12:05:30 +00:00
YK
9bcd3712c8
test(storage): add parametrized MDBX/RocksDB history lookup equivalence tests ( #20871 )
2026-01-15 11:16:40 +00:00
Emma Jamieson-Hoare
b25f32a977
chore(release): set version v1.10.0 ( #21091 )
...
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmai.com >
2026-01-15 10:50:35 +00:00
Emma Jamieson-Hoare
905de96944
chore: release 1.9.4 ( #21048 )
...
Co-authored-by: Emma Jamieson-Hoare <ejamieson19@gmai.com >
2026-01-15 09:41:54 +00:00
Sergei Shulepov
27fbd9a7de
fix(db): change commit return type from Result<bool> to Result<()> ( #21077 )
...
Co-authored-by: Sergei Shulepov <pep@tempo.xyz >
2026-01-14 23:56:27 +00:00
DaniPopes
26a99ac5a3
perf: small improvement to extend_sorted_vec ( #21032 )
2026-01-14 23:46:58 +00:00
James Prestwich
1265a89c21
refactor: make use of dbi consistent across mdbx interface ( #21079 )
2026-01-14 23:42:42 +00:00
Matthias Seitz
b9ff5941eb
feat(primitives): add SealedBlock::decode_sealed for efficient RLP decoding ( #21030 )
2026-01-14 22:49:55 +00:00
Sergei Shulepov
a75a0a5db7
feat(cli): support file:// URLs in reth download ( #21026 )
...
Co-authored-by: Sergei Shulepov <pep@tempo.xyz >
2026-01-14 22:30:42 +00:00
Matthias Seitz
0a4bac77d0
feat(primitives): add From<Sealed<B>> for SealedBlock<B> ( #21078 )
2026-01-14 22:19:09 +00:00
Kamil Szczygieł
1fbd5a95f8
feat: Support for sending logs through OTLP ( #21039 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-14 21:29:00 +00:00
Arsenii Kulikov
1bc07fad8e
perf: use binary search in ForwardInMemoryCursor ( #21049 )
2026-01-14 19:31:11 +00:00
Arsenii Kulikov
8cb506c4d3
perf: don't clone entire keys set ( #21042 )
2026-01-14 19:26:23 +00:00
ethfanWilliam
15f16a5a2e
fix: propagate keccak-cache-global feature to reth-optimism-cli ( #21051 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-14 19:22:22 +00:00
Brian Picciano
5cf1d2a0b0
fix(trie): Update branch masks when revealing blinded nodes ( #20937 )
2026-01-14 19:12:15 +00:00
Matthias Seitz
59fb25d892
feat(bench-compare): add --skip-wait-syncing flag ( #21035 )
2026-01-14 16:24:19 +01:00
Alexey Shekhirin
665a0a8553
feat(cli): parse URL path and display ETA in reth download ( #21014 )
2026-01-14 10:01:01 +00:00
DaniPopes
54735ce0f4
perf: use fixed-map for StaticFileSegment maps ( #21001 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-14 00:52:54 +00:00
joshieDo
a73e73adef
feat(storage): split static file commit into sync_all and finalize ( #20984 )
2026-01-13 16:27:55 +00:00
github-actions[bot]
4f3bd3eac1
chore(deps): weekly cargo update ( #20924 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: Amp <amp@ampcode.com >
2026-01-13 14:42:54 +00:00
YK
ae41823be6
fix: propagate edge feature to reth-node-core for version output ( #20998 )
2026-01-13 14:35:24 +00:00
Matthias Seitz
1fa71f893c
test: add testing_buildBlockV1 RPC method and Osaka test ( #20990 )
2026-01-13 15:18:52 +01:00
ANtutov
c6b17848dd
fix(trie): remove redundant storage trie root calculation in witness ( #20965 )
2026-01-13 13:12:39 +00:00
Alexey Shekhirin
a5dd7d0106
feat(node): --minimal flag ( #20960 )
2026-01-13 12:54:26 +00:00
Emilia Hane
61354e6c21
chore(test): use reth_optimism_chainspec::BASE_SEPOLIA in tests ( #20988 )
2026-01-13 12:07:47 +00:00
DaniPopes
2444533a04
perf: use in-memory length for static files metrics ( #20987 )
2026-01-13 11:37:00 +00:00
kurahin
8fa01eb62e
fix: use global default for rpc_proof_permits CLI flag ( #20967 )
2026-01-12 23:03:51 +00:00
DaniPopes
c5e00e4aeb
perf(db): throttle metrics reporting ( #20974 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-12 22:44:24 +00:00
joshieDo
98a35cc870
fix: propagate FEATURES to sub-makes ( #20975 )
2026-01-12 20:03:34 +00:00
YK
46d670eca5
fix(stages): use static files for unwind in SenderRecovery stage ( #20972 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2026-01-12 19:22:49 +00:00
DaniPopes
25906b7b3e
fix(libmdbx): use correct size for freelist u32 values ( #20970 )
2026-01-12 18:52:03 +00:00
Matthias Seitz
1b3d815cb8
fix(rpc): validate eth_feeHistory newest_block against chain head ( #20969 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-12 18:48:46 +00:00
DaniPopes
23f3f8e820
feat: add tracing-tracy ( #20958 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-12 18:37:37 +00:00
DaniPopes
2663942b50
chore(deps): bump metrics ( #20968 )
2026-01-12 18:13:38 +00:00
YK
369c629b9b
perf(trie): reuse overlay in deferred trie overlay computation ( #20774 )
2026-01-12 15:04:26 +00:00
GarmashAlex
6fec4603cf
refactor(trie): avoid building prefix set for v2 storage proofs ( #20898 )
2026-01-12 12:49:24 +00:00
DaniPopes
515fd597f3
perf(net): use alloy_primitives::Keccak256 ( #20957 )
2026-01-12 11:21:27 +00:00
Crypto Nomad
126a7c9570
perf(engine): save one clock read in sparse trie metrics ( #20947 )
2026-01-12 07:40:30 +00:00
Matthias Seitz
8aeee5018e
perf(trie): save one clock read in elapsed time calculation ( #20916 )
2026-01-12 03:57:54 +00:00
Matthias Seitz
210309ca76
docs: fix typos and incorrect documentation ( #20943 )
2026-01-12 00:48:01 +01:00
Matthias Seitz
551918b0d8
refactor(engine): defer sparse trie setup to spawned task ( #20942 )
2026-01-11 23:30:14 +00:00
iPLAY888
89677e1bd9
docs(rpc): fix incorrect transport in with_ipc comment ( #20939 )
2026-01-11 23:04:32 +00:00
pepes
0e2b3afa3f
chore: correct deprecation message for SealedBlockFor ( #20929 )
2026-01-11 15:08:25 +00:00
David Klank
5d551eab29
perf(payload): remove unnecessary parent_header clone ( #20930 )
2026-01-11 15:07:51 +00:00
David Klank
12c4c04f7d
fix(optimism): add missing Holocene hardfork to DEV_HARDFORKS ( #20931 )
2026-01-11 15:03:35 +00:00
Matthias Seitz
392f8e6e13
refactor(engine): simplify is_done signature in MultiProofTask ( #20906 )
2026-01-11 09:46:20 +00:00
Crypto Nomad
1a94d1f091
docs: fix re-export source comments ( #20913 )
2026-01-10 15:36:03 +00:00
viktorking7
97ae89c7f0
docs: fix dead link ( #20914 )
2026-01-10 15:18:56 +00:00
Matthias Seitz
a4921119e4
perf(trie): defer consuming remaining storage proof receivers ( #20915 )
2026-01-10 15:17:20 +00:00
VolodymyrBg
0f3d3695f5
docs: document account_change_sets static files config ( #20903 )
2026-01-10 09:02:42 +00:00
phrwlk
54355dfc78
docs: fix Performant card link on landing page ( #20904 )
2026-01-10 08:54:58 +00:00
FT
44a6035fa3
fix: correct typos in error messages and logs ( #20894 )
2026-01-10 08:54:31 +00:00
Matthias Seitz
746baed2b1
feat(cli): add CliRunnerConfig for configurable graceful shutdown timeout ( #20899 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-09 21:52:03 +00:00
Dan Cline
e86c5fba53
fix(stages): advance sender static file in sender recovery ( #20897 )
2026-01-09 20:23:17 +00:00
joshieDo
485fa3448d
fix: call cancel_all_background_work on RocksDBProviderInner drop ( #20895 )
2026-01-09 19:53:31 +00:00
DaniPopes
0db3813941
fix(rbc): fail early if node exits while waiting for startup ( #20892 )
2026-01-09 17:58:04 +00:00
FT
52c2ae3362
docs: fix typos in documentation files ( #20890 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-09 18:41:37 +01:00
YK
b1d75f2771
feat(bench-compare): add --wait-for-persistence flag support ( #20891 )
2026-01-09 16:47:46 +00:00
Matthias Seitz
ef80ee1687
chore: remove env clone ( #20889 )
2026-01-09 16:42:50 +00:00
radik878
8dacfb3d9c
refactor(ecies): avoid duplicate keccak digest in MAC::update_body ( #20854 )
2026-01-09 15:35:51 +00:00
joshieDo
425a021e3b
feat: add edge feature flag to reth ( #20841 )
2026-01-09 15:33:21 +00:00
Hwangjae Lee
08c0d30ea7
docs(reth): fix outdated comments and document missing features ( #20849 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-09 15:32:17 +00:00
かりんとう
84e970e4c9
perf: remove redundant contains_key ( #20820 )
2026-01-09 15:22:06 +00:00
Fibonacci747
020f20db42
chore: correct StorageHistory prune map size constant name ( #20828 )
2026-01-09 15:20:02 +00:00
ANtutov
f53929e0c8
docs: clarify bodies downloader set_download_range semantics ( #20821 )
2026-01-09 15:18:37 +00:00
ethfanWilliam
4a8fbe15e3
chore: remove unused implementation ( #20885 )
2026-01-09 15:08:06 +00:00
yyhrnk
a59e9832e6
docs: document optional block param for trace_rawTransaction ( #20812 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-09 15:04:29 +00:00
YK
07beb76cf7
feat(reth-bench-compare): add persistence-based flow optimization for reth-bench ( #20869 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-01-09 14:58:21 +00:00
FT
3ddf0bd729
docs: correct typo in hive.yml workflow comment ( #20884 )
2026-01-09 14:50:05 +00:00
iPLAY888
c3d92ddfc2
docs(engine): update outdated EthBuiltPayload comment ( #20883 )
2026-01-09 14:45:11 +00:00
kurahin
c0628dfbff
refactor(config): delegate PruneConfig::has_receipts_pruning ( #20809 )
2026-01-09 14:44:43 +00:00
Sabnock
a2aa1f18df
feat(rpc): add debug_getBlockAccessList endpoint for EIP-7928 ( #20824 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-09 13:29:37 +00:00
Arun Dhyani
d489f80f6b
feat: Add TrieUpdatesSorted and HashedPostStateSorted in all ExEx notifications ( #20333 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2026-01-09 13:06:41 +00:00
Emilia Hane
bf272c9432
chore(consensus): Add trait object error variant to ConsensusError ( #20875 )
...
Co-authored-by: leeli <Leeliren@proton.me >
2026-01-09 13:01:22 +00:00
FT
ebb54d0dcc
docs: typo in comment ( #20879 )
2026-01-09 13:00:22 +00:00
Matthias Seitz
1d7367c389
perf(engine): simplify get_prefetch_proof_targets ( #20864 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-09 12:53:28 +00:00
refcell
824ae12d75
feat(exex): Make WAL Block Threshold Configurable ( #20867 )
2026-01-09 12:45:53 +00:00
Alexey Shekhirin
2db281e51d
feat(reth-bench-compare): nP latency mean change percent ( #20881 )
2026-01-09 11:58:08 +00:00
Brian Picciano
8367ba473e
feat(metrics): Add metrics for save_block steps and computed trie input sizes ( #20878 )
2026-01-09 11:40:35 +00:00
fig
f2abad5f5c
perf(engine): destructure leaf to avoid clone() ( #20863 )
2026-01-09 11:19:49 +00:00
Matthias Seitz
4673d77c03
perf(trie): optimize ChunkedHashedPostState sorting ( #20866 )
2026-01-09 11:18:28 +00:00
Matthias Seitz
33bcd60348
feat(rpc): add persisted block subscription ( #20877 )
...
Co-authored-by: cakevm <cakevm@proton.me >
2026-01-09 10:37:46 +00:00
Matthias Seitz
8a9b5d90f4
feat(chain-state): add persisted block tracking ( #20876 )
...
Co-authored-by: cakevm <cakevm@proton.me >
2026-01-09 09:56:20 +00:00
joshieDo
c26cfa3dcb
fix: pre-calculate transitions on append_blocks_with_state ( #20850 )
2026-01-09 09:26:46 +00:00
joshieDo
13e59651f1
fix: initialize transaction-senders sf during genesis ( #20846 )
2026-01-09 09:26:26 +00:00
Hwangjae Lee
0f4995d1ea
chore(trie): fix typo in comment ( #20870 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-09 09:19:14 +00:00
Matthias Seitz
cff7e8be53
perf(engine): avoid unnecessary B256 copy in get_proof_targets ( #20845 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-09 04:57:23 +00:00
YK
5433d7a4ac
feat(storage): add RocksDB history lookup methods and owned batch type [2/3] ( #20543 )
2026-01-09 04:52:15 +00:00
fig
1866db4d50
chore(engine): remove unnecessary debug-level clone() ( #20862 )
2026-01-08 22:21:29 +00:00
Danno Ferrin
c9b92550b6
feat(network): add customizable announcement filtering policy to APIs ( #20861 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-08 22:08:41 +00:00
Sebastian Stammler
8e81ebfc1f
feat(optimism): Also require non-zero elasticity in payload attributes ( #20858 )
2026-01-08 21:32:46 +00:00
joshieDo
1363205b5d
feat: allow TransactionHashNumbers to be written to rocksdb during live sync ( #20853 )
2026-01-08 20:02:49 +00:00
DaniPopes
ed201cae0e
chore(rbc): improve compilation log message ( #20855 )
2026-01-08 19:30:04 +00:00
Matthias Seitz
a5b10f11ce
perf(engine): handle EmptyProof inline during prefetch batching ( #20848 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-08 19:12:14 +00:00
Brian Picciano
a06644944f
feat(trie): Keep cached storage roots on proof workers ( #20838 )
2026-01-08 17:04:42 +00:00
Matthias Seitz
8eecad3d1d
chore(engine): remove state update batching in multiproof ( #20842 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-08 16:04:12 +00:00
Emilia Hane
412f39e223
chore(consensus): Remove associated type Consensus::Error ( #20843 )
...
Co-authored-by: Josh_dfG <126518346+JoshdfG@users.noreply.github.com >
2026-01-08 15:54:31 +00:00
Matthias Seitz
13106233e4
perf(engine): use crossbeam select for persistence events ( #20813 )
2026-01-08 15:47:50 +00:00
joshieDo
e63fef0e79
ci: rocksdb job to unit.yml ( #20839 )
2026-01-08 13:20:43 +00:00
Dan Cline
eed34254f5
feat: add StaticFileSegment::AccountChangeSets ( #18882 )
...
Co-authored-by: Alexey Shekhirin <github@shekhirin.com >
2026-01-08 12:05:05 +00:00
Emilia Hane
b38d37a1e1
feat(sdk): Add custom TrieType ( #20804 )
...
Co-authored-by: jagroot <4516586+itschaindev@users.noreply.github.com >
2026-01-08 11:53:27 +00:00
Maxim Evtush
7efaf4ca97
docs: mention optional EraStage in DefaultStages documentation ( #20836 )
2026-01-08 11:51:10 +00:00
Emilia Hane
ef708792a9
chore(storage): Add trait object error variant to DatabaseError ( #20096 )
2026-01-08 11:40:09 +00:00
Alexey Shekhirin
bcd74d021b
feat(metrics): configurable jeprof pprof dumps directory ( #20834 )
2026-01-08 11:21:42 +00:00
bigbear
0f0a181fe2
fix(trie): account for all flag in PrefixSet::is_empty() ( #20801 )
2026-01-08 11:20:55 +00:00
Matthias Seitz
9678d6c76d
chore: tighten iat timeout ( #20835 )
2026-01-08 11:09:03 +00:00
Brian Picciano
7ceca70353
feat(trie): Add flag to enable proof v2 for storage proof workers ( #20617 )
...
Co-authored-by: YK <chiayongkang@hotmail.com >
2026-01-08 10:53:24 +00:00
Matthias Seitz
4412a501eb
perf(chain-state): avoid clones in deferred trie computation ( #20816 )
2026-01-08 09:25:32 +00:00
YK
3ca5cf49b6
refactor(storage): extract shared find_changeset_block_from_index algorithm [1/3] ( #20542 )
2026-01-08 02:56:38 +00:00
Matthias Seitz
1d4603769f
perf(trie): use sorted_unstable for proof target chunking ( #20827 )
2026-01-08 01:05:14 +00:00
Lorsmirq Benton
9bba8c7a98
docs(net): complete incomplete doc comment ( #20793 )
2026-01-07 21:16:00 +00:00
Alexey Shekhirin
6f0ef914b9
feat(metrics): jemalloc heap dump endpoint ( #20811 )
2026-01-07 19:36:08 +00:00
Alexey Shekhirin
d756e8310a
chore(engine): more logs when cache is not available ( #20817 )
...
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com >
2026-01-07 19:35:27 +00:00
DaniPopes
74a7ba581c
feat(rbc): don't wait in between FCUs when warming up ( #20818 )
2026-01-07 19:20:33 +00:00
Matthias Seitz
a8980bf7c1
chore: ignore RUSTSEC-2026-0002 ( #20819 )
2026-01-07 18:47:09 +00:00
Matthias Seitz
050d9f440f
chore: ignore RUSTSEC-2025-0141 bincode advisory ( #20815 )
2026-01-07 19:10:30 +01:00
Brian Picciano
df33a8200f
feat(reth-bench-compare): Do unwind first ( #20808 )
2026-01-07 16:49:07 +00:00
Matthias Seitz
d3dab613fc
revert: "perf(engine): parellelize multiproof_targets_from_state (#206… ( #20807 )
2026-01-07 15:49:10 +00:00
Matthias Seitz
1b31739adf
revert: "perf(engine): paralellize evm_state_to_hashed_post_state() (#… ( #20806 )
2026-01-07 15:47:15 +00:00
DaniPopes
6280abedd0
chore(reth-bench-compare): skip last unwind ( #20805 )
2026-01-07 15:44:36 +00:00
Mohan Somnath
4c064a4d20
docs: fix article and grammar errors in comments ( #20794 )
2026-01-07 15:00:13 +00:00
phrwlk
8d19a36492
docs: clarify pending pending_block build_block docs ( #20800 )
2026-01-07 14:09:54 +00:00
cui
78f2685ee9
perf: remove unnecessary code ( #20719 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-07 12:12:17 +00:00
YK
fee7e997ff
refactor(trie): replace TrieMasks with Option<BranchNodeMasks> ( #20707 )
2026-01-07 11:27:23 +00:00
Snezhkko
5fa1b99bb6
docs: clarify TreeRootEntry::content unsigned format ( #20790 )
2026-01-06 22:10:05 +00:00
Alexey Shekhirin
d52b337127
fix(engine): do not create another cache for multiproof task ( #20755 )
2026-01-06 20:52:06 +00:00
Richard Janis Goldschmidt
342a795ebe
chore: relax = requirement on cc dependency ( #20788 )
2026-01-06 18:09:40 +00:00
Matthias Seitz
485eb2e8d5
perf(trie): add clone_into_sorted for TrieUpdates and StorageTrieUpdates ( #20784 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-06 15:11:27 +00:00
fig
63842264f3
perf(engine): parellelize multiproof_targets_from_state ( #20669 )
2026-01-06 14:03:09 +00:00
ethfanWilliam
e1d984035f
perf: handle RPC errors instead of panicking ( #20768 )
2026-01-06 13:22:56 +00:00
Satoshi Nakamoto
d5fd0c04fc
docs: fix doc comment errors ( #20776 )
2026-01-06 13:22:36 +00:00
かりんとう
8c5ff4b2fd
perf: preallocate capacity for filter chunk results ( #20783 )
2026-01-06 13:21:30 +00:00
andrewshab
0ad5574115
chore(chain-state): remove needless collect in test assertions ( #20778 )
2026-01-06 13:19:55 +00:00
bigbear
485f5b36ce
fix(transaction-pool): finalized block number should never decrease ( #20781 )
2026-01-06 13:16:22 +00:00
yyhrnk
d488a7d130
docs: align net JSON-RPC docs with implementation ( #20782 )
2026-01-06 13:11:56 +00:00
かりんとう
7bc3c95f05
perf: use parallel signature recovery in debug_trace_raw_block ( #20780 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-06 13:06:06 +00:00
Hwangjae Lee
a64ac7c1c7
fix(consensus): prevent infinite reconnection loop in RpcBlockProvider when channel is closed ( #20772 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-06 11:37:15 +00:00
Micke
9773e6233d
perf(engine): prevent duplicate block insertion in BlockBuffer ( #20487 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-06 10:51:55 +00:00
Ekaterina Endofer
1fd7a88e2e
fix(era): correct error messages in CompressedBody and CompressedReceipts ( #20695 )
2026-01-06 10:16:51 +00:00
dependabot[bot]
dea27a55a8
chore(deps): bump taiki-e/cache-cargo-install-action from 2 to 3 ( #20760 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-06 10:02:29 +00:00
ethfanWilliam
5f8d7ddd21
chore: make error handling consistent ( #20769 )
2026-01-06 09:54:32 +00:00
YK
44452359b9
fix(net): delay BlockRangeUpdate to avoid immediate sending after connection ( #20765 )
2026-01-06 09:48:30 +00:00
Hwangjae Lee
c1ef67df70
docs(payload): fix typos and incorrect references in comments ( #20771 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-06 09:42:37 +00:00
Hwangjae Lee
0c6688d056
chore(consensus): fix typo in RpcBlockProvider log message ( #20773 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-06 09:38:58 +00:00
YK
0b71c21986
ci(hive): revert to self-hosted Reth runner group ( #20764 )
2026-01-06 09:38:35 +00:00
VolodymyrBg
4d1c2c4939
refactor(ethereum): cache RLP lengths in ethereum payload builder ( #20758 )
2026-01-05 20:00:26 +00:00
NaCl-Ezpz
39b2dc8f4f
chore: era decompression bounds ( #20423 )
...
Co-authored-by: NaCl <nacl@gaysex.local >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-05 19:50:41 +00:00
Karl Yu
e9e940919a
feat: make metrics layer configurable ( #20703 )
2026-01-05 19:30:42 +00:00
ethfanWilliam
b6f95866cc
feat(primitives-traits): add set_timestamp to test utils ( #20756 )
2026-01-05 19:20:09 +00:00
DaniPopes
fa05d19f1b
fix(bench-compare): add backward compat for old CSV format ( #20754 )
2026-01-05 17:58:20 +00:00
bobtajson
981d1da41a
chore(chain-state): remove needless collect in test assertions ( #20736 )
2026-01-05 17:22:58 +00:00
andrewshab
5ded234131
docs: update NetworkInner struct definition in network.md ( #20752 )
2026-01-05 17:09:23 +00:00
Hwangjae Lee
cfeaedd389
docs(net): fix typos in comments ( #20751 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-05 17:07:33 +00:00
Mablr
7779d484a3
feat(optimism): Flashblock Receipts Stream ( #20061 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2026-01-05 16:58:05 +00:00
cui
790a73cd2a
chore: update todo ( #20693 )
2026-01-05 15:13:07 +00:00
cui
39e2c5167a
feat: remove todo ( #20692 )
2026-01-05 15:03:46 +00:00
Satoshi Nakamoto
0f1bec0ad1
docs(network): sync struct definitions with sour ( #20747 )
2026-01-05 15:02:01 +00:00
cui
17c1365368
perf: prealloc vector ( #20713 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 13:57:24 +00:00
cui
a7841919d9
perf: prealloc vector ( #20716 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 13:56:28 +00:00
cui
0dbbb3ff37
perf: prealloc B256Map ( #20720 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 13:54:10 +00:00
cui
96ff33120e
perf: prealloc vec ( #20721 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 13:53:17 +00:00
cui
f920ffd5f9
refactor: simplify code ( #20722 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 13:52:48 +00:00
GarmashAlex
da1d7e542f
refactor(rpc): remove unused BlockTransactionsResponseSender ( #20696 )
2026-01-05 13:52:01 +00:00
Satoshi Nakamoto
186208fef9
docs: fix doc comment errors ( #20746 )
2026-01-05 13:07:30 +00:00
cui
5265079654
perf: avoid one vec alloc ( #20717 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 12:40:03 +00:00
cui
9ca5cffaee
chore: update alloy ( #20709 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 12:05:59 +00:00
Satoshi Nakamoto
b51ce5c155
docs(network): sync request handler structs with source ( #20726 )
2026-01-05 11:56:07 +00:00
andrewshab
8e9e595799
docs: update db.md BodyStage unwind implementation ( #20727 )
2026-01-05 11:54:57 +00:00
Satoshi Nakamoto
b77898c00d
docs: fix doc comment errors ( #20728 )
2026-01-05 11:53:35 +00:00
cui
58b0125784
refactor: optimize check whether all blobs ready ( #20711 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 11:53:06 +00:00
cui
e8cc91ebc2
fix: inclusive range off-by-one ( #20729 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 11:39:38 +00:00
cui
59486a64d4
fix: to block should not sub one ( #20730 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2026-01-05 11:35:22 +00:00
Hwangjae Lee
b1263d4651
docs(evm): fix typos and remove stale TODO ( #20742 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2026-01-05 11:25:42 +00:00
kurahin
a79432ffc6
docs: fix discv5 multiaddr peer id conversion comment ( #20743 )
2026-01-05 11:22:32 +00:00
Karl Yu
480029a678
feat: optimize send_raw_transaction_sync receipts fetching ( #20689 )
2026-01-05 11:22:04 +00:00
DaniPopes
66f3453b3c
feat(reth-bench-compare): add per-build features and rustflags args ( #20744 )
2026-01-05 11:11:23 +00:00
github-actions[bot]
3d4efdb271
chore(deps): weekly cargo update ( #20735 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
2026-01-04 11:31:03 +00:00
Doohyun Cho
5ac9184ba6
perf(era-utils): replace Box<dyn Fn> with function pointer ( #20701 )
2026-01-03 10:46:42 +00:00
Rej Ect
0e6efdb91c
chore: bump license year to 2026 ( #20704 )
2026-01-03 10:45:34 +00:00
zhygis
986e07f21a
feat(cli): make Cli extensible with custom subcommands ( #20710 )
...
Co-authored-by: Amp <amp@ampcode.com >
2026-01-03 10:41:56 +00:00
Sophia Raye
5307da4794
docs(eth-wire): sync code examples with source ( #20724 )
2026-01-03 11:45:07 +01:00
Karl Yu
0c69e294c3
chore: optimize evm_env if header is available ( #20691 )
2025-12-31 13:45:35 +00:00
かりんとう
dc931f5669
chore: use chain_id() method instead of direct field access in prometheus setup ( #20687 )
2025-12-31 08:53:44 +00:00
Hwangjae Lee
9cfe5c7363
fix(ipc): trim leading whitespace in StreamCodec decode ( #20615 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2025-12-31 08:51:56 +00:00
fig
454b060d5a
chore(tree): use with_capacity at collect_blocks_for_canonical_unwind() ( #20682 )
2025-12-30 12:32:02 +00:00
Matthias Seitz
0808bd67c2
chore: shrink outgoing broadcast messages ( #20672 )
2025-12-30 11:30:37 +00:00
iPLAY888
3b4bc77532
docs(network): update FetchClient struct to use NetworkPrimitives generic ( #20680 )
2025-12-30 11:23:12 +00:00
Sophia Raye
4eaa5c7d46
docs(eth-wire): add missing eth/70 message types ( #20676 )
2025-12-30 10:25:43 +00:00
iPLAY888
34c6b8d81c
docs(network): update Swarm struct to use NetworkPrimitives generic ( #20677 )
2025-12-30 10:12:00 +00:00
Matthias Seitz
f79fdf3564
perf: pre-alloc removed vec ( #20679 )
2025-12-30 10:09:39 +00:00
Karl Yu
16f75bb0c3
feat: avoid mutex locking ( #20678 )
2025-12-30 09:28:40 +00:00
Hwangjae Lee
5053322711
docs(storage): fix typos in storage crates ( #20673 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
Co-authored-by: YK <chiayongkang@hotmail.com >
2025-12-30 06:18:35 +00:00
YK
d72105b47c
fix(storage): rocksdb consistency check on startup ( #20596 )
...
Co-authored-by: Federico Gimenez <fgimenez@users.noreply.github.com >
2025-12-30 06:17:32 +00:00
YK
0f585f892e
perf(trie): flatten sparse trie branch node masks to reduce overhead ( #20664 )
2025-12-30 03:38:24 +00:00
iPLAY888
f7c77e72a7
docs(network): update NetworkConfig struct to match current API ( #20665 )
2025-12-29 22:00:40 +00:00
fig
fc248e3323
chore(stages): use with_capacity() at populate_range() ( #20671 )
2025-12-29 21:34:54 +00:00
Karl Yu
d564d9ba36
feat: add append_pooled_transaction_elements ( #20654 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-29 21:00:40 +00:00
Hwangjae Lee
b7883953c4
chore(rpc): shrink active filters HashMap after clearing stale entries ( #20660 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-29 20:45:52 +00:00
lisenokdonbassenok
b40b7dc210
docs: document http/ws api none option ( #20666 )
2025-12-29 20:43:27 +00:00
Matthias Seitz
65b5a149be
chore: use with capacity ( #20670 )
2025-12-29 20:35:46 +00:00
Matthias Seitz
05ed753e58
chore: shrink range result vec to fit ( #20639 )
2025-12-29 10:22:11 +00:00
fig
624bfa1f49
perf(engine): paralellize evm_state_to_hashed_post_state() ( #20635 )
2025-12-29 10:06:08 +00:00
Desant pivo
d9c6f745c6
fix(chain-state): correct balance deduction in test block builder ( #20308 )
2025-12-29 09:59:19 +00:00
YK
240dc8602b
perf(trie): flatten branch node mask to reduce overhead ( #20659 )
2025-12-29 07:35:46 +00:00
Matthias Seitz
489da4a38b
perf: allocate signer vec exact size ( #20638 )
2025-12-29 02:18:27 +00:00
Matthias Seitz
05b3a8668c
perf(trie): add FromIterator for HashedPostState and simplify from_bundle_state ( #20653 )
2025-12-28 11:29:07 +00:00
Hwangjae Lee
cb1de1ac19
docs(rpc): fix typos and complete incomplete doc comments ( #20642 )
...
Signed-off-by: Hwangjae Lee <meetrick@gmail.com >
2025-12-28 10:26:03 +00:00
github-actions[bot]
751a985ea7
chore(deps): weekly cargo update ( #20650 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-28 09:37:00 +00:00
YK
a92cbb5e8b
feat(storage): add AccountsHistory RocksDB consistency check ( #20594 )
2025-12-28 01:59:02 +00:00
DaniPopes
e595b58c28
feat: switch samply feature for CLI flags ( #20586 )
2025-12-27 15:16:49 +00:00
oooLowNeoNooo
a852084b43
fix(chainspec): use lazy error formatting in chain spec macro ( #20643 )
2025-12-26 11:18:57 +00:00
David Klank
5260532992
fix(rpc): use EthereumHardforks trait for Paris activation check ( #20641 )
2025-12-26 11:17:11 +00:00
bigbear
ca6853edd6
chore(primitives-traits): correct set_timestamp parameter name and type ( #20637 )
2025-12-25 12:07:03 +00:00
Matthias Seitz
8ae7a1c8d1
chore: ignore RUSTSEC-2025-0137 ( #20633 )
2025-12-24 23:32:49 +01:00
forkfury
150fd62bab
docs: remove outdated gas metrics TODO ( #20631 )
2025-12-24 18:53:50 +01:00
fig
5fce0fea5e
chore: remove stale insert_block_inner todo ( #20632 )
2025-12-24 18:35:37 +01:00
Doohyun Cho
0b90a613e0
perf(witness): avoid unnecessary HashMap clone when converting to BTreeMap ( #20590 )
2025-12-24 13:29:50 +00:00
James Niken
4fb453bb39
refactor: deduplicate dev_mining_mode logic ( #20625 )
2025-12-24 12:54:59 +00:00
ligt
97f6db61aa
perf(persistence): optimize append_history_index with upsert ( #19825 )
...
Co-authored-by: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com >
2025-12-24 12:40:23 +00:00
Vitalyr
8e975f940c
docs: remove deprecated --disable-deposit-contract-sync lighthouse flag ( #20591 )
2025-12-24 12:33:05 +00:00
Gigi
3ec1ca58e0
docs(exex): correct comparison order in backfill docs ( #20592 )
2025-12-24 12:30:31 +00:00
stevencartavia
ad37490e7d
feat: integrate newPayload into ethstats ( #20584 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-24 07:56:26 +00:00
Matthias Seitz
334d9f2a76
chore: defense against new variant ( #20600 )
2025-12-23 16:34:24 +00:00
Matthias Seitz
6627c19071
chore: add metric for batch size ( #20610 )
2025-12-23 16:10:38 +00:00
Brian Picciano
0b6361afa5
feat(engine): Prefetch storage and accounts when BAL is provided ( #20468 )
2025-12-23 16:04:05 +00:00
joshieDo
cf457689a6
docs: add additional context to PruneSenderRecoveryStage ( #20606 )
2025-12-23 15:30:23 +00:00
Matthias Seitz
6c49e5a89d
chore: release lock early ( #20605 )
2025-12-23 15:09:45 +00:00
Brian Picciano
b79c58d835
feat(trie): Proof Rewrite: Support partial proofs ( #20336 )
...
Co-authored-by: YK <chiayongkang@hotmail.com >
2025-12-23 12:42:07 +00:00
Sophia Raye
9f2aea0494
docs: add missing debug methods to pruning tables ( #20601 )
2025-12-23 12:34:58 +00:00
strmfos
ff2081dcf0
fix(exex): update lowest_committed_block_height in WAL cache on insert ( #20548 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-23 10:58:03 +00:00
Lorsmirq Benton
66db0839a0
chore: prevent false-positive log in trie repair ( #20589 )
...
Co-authored-by: YK <chiayongkang@hotmail.com >
2025-12-23 08:22:59 +00:00
AJStonewee
f8b927c6cd
refactor(stages): use LazyLock for zero address hash ( #20576 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-23 08:20:45 +00:00
DaniPopes
8374646e49
chore: fix formatting in launch_node ( #20582 )
2025-12-23 08:18:40 +00:00
DaniPopes
353c2a7f70
fix(cli): remove unnecessary bound from Cli::configure ( #20583 )
2025-12-23 03:52:04 +00:00
Matthias Seitz
21934d9946
fix: fuse shutdown ( #20580 )
2025-12-23 01:09:45 +00:00
cui
538de9e456
feat: update fork id in discv5[WIP] ( #19139 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-23 00:30:36 +00:00
forkfury
b9d14d4a54
chore: delete redundant todo comment ( #20571 )
2025-12-23 00:14:05 +00:00
Matthew Vauxhall
529aa83777
chore: remove block_to_payload_v3 ( #20540 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-23 00:10:38 +00:00
DaniPopes
da10201b88
chore: minor reth-bench cleanup ( #20577 )
2025-12-22 23:56:36 +00:00
Arsenii Kulikov
eec76a3faf
perf: spawn prewarm workers in parallel ( #20575 )
2025-12-22 20:41:52 +00:00
Arsenii Kulikov
5e4a219182
perf: spawn prewarming before multiproof ( #20572 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2025-12-22 17:56:14 +00:00
AJStonewee
ccb897f9a0
refactor(stages): cache hashed address in storage hashing loop ( #20318 )
...
Co-authored-by: Brian Picciano <me@mediocregopher.com >
2025-12-22 16:05:46 +00:00
radik878
f9d872e9cb
fix(net): correct config builder doc comments ( #20299 )
2025-12-22 16:00:47 +00:00
Matthias Seitz
642bbea2a8
perf: make BlockState::parent_state_chain return iterator ( #20496 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-22 15:58:46 +00:00
fuder.eth
1c4233d1b4
chore: prevent false-positive log when peer not found in transaction propagation ( #20523 )
2025-12-22 15:55:41 +00:00
Lorsmirq Benton
eeb2d55f44
docs: add debug execution witness methods to pruning tables ( #20561 )
2025-12-22 15:53:58 +00:00
fig
96c77fd8b2
feat(storage): make insert_block() operate with references ( #20504 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-22 15:13:43 +00:00
VolodymyrBg
ed7a5696b7
fix(engine): sync invalid header cache count gauge on hit eviction ( #20567 )
2025-12-22 14:59:18 +00:00
Brian Picciano
5a3cffa3e9
fix(stage): Don't clear merkle changesets in unwind near genesis ( #20568 )
2025-12-22 14:56:18 +00:00
YK
535d97f39e
refactor(provider): extract heal_segment for NippyJar consistency ( #20508 )
2025-12-22 14:01:12 +00:00
DaniPopes
f3aea8dac0
chore: simplify size functions ( #20560 )
2025-12-22 11:14:50 +00:00
Matthias Seitz
807fac0409
chore: use clone_into_consensus ( #20530 )
2025-12-22 12:15:09 +01:00
Brian Picciano
7b2fbdcd51
chore(db): Remove Sync from DbTx ( #20516 )
2025-12-22 10:13:57 +00:00
Merkel Tranjes
3b8acd4b07
feat(payload): add transaction_count to ExecutionPayload trait ( #20534 )
2025-12-22 10:07:31 +01:00
YK
62abfdaeb5
feat(cli): add tracing-samply to profiling ( #20546 )
2025-12-21 11:52:26 +00:00
emmmm
256a9fdb79
docs: add missing trace methods to pruning tables ( #20547 )
2025-12-21 12:40:58 +01:00
github-actions[bot]
4d9aff99bf
chore(deps): weekly cargo update ( #20545 )
...
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com >
2025-12-21 12:40:14 +01:00
Vitalyr
28bb2891bb
refactor(consensus): simplify verify_receipts return ( #20517 )
2025-12-20 19:05:50 +01:00
kurahin
1d8f265744
chore(net): remove stale ECIES rand TODO ( #20531 )
2025-12-20 19:05:37 +01:00
Matthias Seitz
c754caf8c7
fix: remove stale blobs ( #20528 )
2025-12-20 15:35:22 +00:00
cui
e1b0046329
chore: remove todo after jovian fork ( #20535 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2025-12-20 15:31:08 +00:00
cui
ddfe177578
chore: remove todo ( #20533 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2025-12-20 15:19:53 +00:00
Gigi
178558c6d7
fix(tree): correct block buffer eviction policy comment ( #20512 )
2025-12-20 09:44:51 +00:00
Emilia Hane
f4d3a9701f
chore(trie): Rm redundant clone of propagated error ( #20466 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-20 08:42:20 +00:00
Gigi
42e41a9370
docs: add reth JSON-RPC namespace documentation ( #20522 )
2025-12-20 08:03:06 +00:00
pepes
a66dcce834
chore(evm): remove deprecated state_change compatibility alias ( #20518 )
2025-12-20 07:50:12 +00:00
Arsenii Kulikov
21d835cf2b
perf: use LRU eviction policy for precompile cache ( #20527 )
2025-12-20 02:12:42 +00:00
Alexey Shekhirin
29438631be
fix: propagate keccak-cache-global feature to reth-node-core ( #20524 )
2025-12-19 17:11:41 +00:00
Brian Picciano
0eb4e0ce29
fix(stages): Fix two bugs related to stage checkpoints and pipeline syncs ( #20521 )
2025-12-19 16:09:57 +00:00
gustavo
9147f9aafe
perf(trie): remove more unnecessary channels ( #20489 )
2025-12-19 15:34:42 +00:00
Snezhkko
13b111e058
refactor: remove dead storage multiproof path ( #20485 )
2025-12-19 15:11:31 +00:00
leniram159
25c247b14c
refactor(engine): simplify fork detection in insert_block ( #20441 )
2025-12-19 14:49:33 +00:00
Matthias Seitz
72bea44d8c
chore: remove redundant num hash ( #20501 )
2025-12-19 14:48:42 +00:00
alex017
63b9d5fe57
refactor(db-api): remove redundant clone and unused import in unwind ( #20499 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-19 14:47:11 +00:00
Arsenii Kulikov
30162c535e
perf: properly share precompile cache + use moka ( #20502 )
2025-12-18 22:42:44 +00:00
Federico Gimenez
cd8fec3273
feat(stages): use EitherWriter for TransactionLookupStage RocksDB writes ( #20428 )
2025-12-18 21:34:17 +00:00
Tomass
1e38c7fea8
chore(hardforks): drop unnecessary field reassignment in TTD branch ( #20457 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-18 21:02:56 +00:00
Block Wizard
4dfaf238c9
chore(net): fix misleading comment about uncompressed message size check ( #19510 )
2025-12-18 20:34:50 +00:00
forkfury
4cf36dda54
docs: correct FinishedStateUpdates message name ( #20471 )
2025-12-18 20:16:15 +00:00
phrwlk
41ce3d3bbf
docs: fix Docker db-access troubleshooting example ( #20483 )
2025-12-18 20:13:01 +00:00
sashass1315
429d13772e
chore(cli): correct p2p body error message ( #20498 )
2025-12-18 20:01:59 +00:00
Gigi
0cbf89193d
docs: correct intra-doc link references ( #20467 )
2025-12-18 19:56:57 +00:00
radik878
0c3c42bffe
chore(primitives-traits): correct SealedBlock::senders return description ( #20465 )
2025-12-18 19:56:22 +00:00
cui
cdbbd08677
fix: session config should be read from config file ( #20484 )
...
Co-authored-by: weixie.cui <weixie.cui@okg.com >
2025-12-18 19:53:18 +00:00
Alexey Shekhirin
4adb1fa5ac
fix(cli): default to 0 genesis block number ( #20494 )
2025-12-18 15:07:59 +00:00
Brian Picciano
b3a792ad1e
fix(engine): Use OverlayStateProviderFactory for state root fallback ( #20462 )
2025-12-18 14:30:11 +00:00
Arsenii Kulikov
98a7095c7a
fix: properly determine first stage during pipeline consistency check ( #20460 )
2025-12-18 10:43:08 +00:00
Matthias Seitz
701e5ec455
chore: add engine terminate ( #20420 )
...
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com >
2025-12-18 09:01:36 +00:00
Lorsmirq Benton
8e00e81af4
docs: remove orphaned debug.mdx ( #20474 )
2025-12-18 04:14:23 +00:00
YK
453514c48f
perf(engine): share Arc<ExecutionOutcome> to avoid cloning BundleState ( #20448 )
2025-12-18 01:07:18 +00:00
James Niken
432ac7afa1
chore: fix blob count in validation benchmark ( #20456 )
2025-12-18 00:51:45 +00:00
Emilia Hane
c7fca9f2b4
chore(node): Report actual gas price to ethstats ( #20461 )
...
Co-authored-by: Rifvck Zieger <rifvckzieger@gmail.com >
2025-12-18 00:50:16 +00:00
DaniPopes
715ca5b980
chore: simplify prewarm state providers ( #20469 )
2025-12-17 22:11:11 +00:00
Federico Gimenez
9ae62aad26
feat(storage): add method to check invariants on RocksDB tables ( #20340 )
2025-12-17 20:26:51 +00:00
YK
c65df40526
perf: remove redundant contains_key check in ProofSequencer::add_proof ( #20459 )
2025-12-17 13:58:59 +00:00
Vui-Chee
d8acc1e4cf
feat: support non-zero genesis block numbers ( #19877 )
...
Co-authored-by: JimmyShi22 <417711026@qq.com >
2025-12-17 11:03:12 +00:00
sashass1315
852aad8126
docs(exex): document ChainRevert flow in how-it-works ( #20455 )
2025-12-17 10:28:49 +00:00
Karl Yu
61c072ad20
feat: add engine_getBlobsV3 method ( #20451 )
2025-12-17 10:15:49 +00:00
Lorsmirq Benton
6a5b985113
docs: remove orphaned recover CLI documentation ( #20447 )
2025-12-17 10:13:55 +00:00
joshieDo
1adc6aec00
chore(engine): extract on_persistence_complete ( #20443 )
2025-12-17 09:07:54 +00:00
Matthias Seitz
5edc16ad85
perf: only populate cache during prewarm ( #20445 )
2025-12-17 08:46:16 +00:00
phrwlk
f54a8a1ef5
fix(payload): clarify PayloadTransactions mark_invalid semantics ( #20452 )
2025-12-17 08:44:17 +00:00
leniram159
c681851ec8
chore: make docs correct ( #20440 )
...
Co-authored-by: YK <chiayongkang@hotmail.com >
2025-12-17 04:32:18 +00:00
DaniPopes
d964fcbcde
chore: simplify execution state providers ( #20444 )
2025-12-16 22:52:57 +00:00
Alexey Shekhirin
e79691aae7
feat: turn on asm-keccak by default, use maxperf profile in Dockerfiles ( #20422 )
2025-12-16 22:43:20 +00:00
bigbear
4231f4b688
docs: fix incorrect API example in node-components.mdx ( #20297 )
2025-12-16 15:09:29 +00:00
Léa Narzis
0b607113dc
refactor(era): make era count in era file name optional ( #20292 )
2025-12-16 15:08:43 +00:00
emmmm
be4dc53b92
docs: fix --color auto option description ( #20352 )
2025-12-16 15:06:04 +00:00
emmmm
4afb555d06
docs(opstack): document all rollup CLI arguments ( #20374 )
2025-12-16 15:04:34 +00:00
Matthias Seitz
ab2ef99458
chore: add keccak-global ( #20418 )
2025-12-16 14:59:09 +00:00
Sophia Raye
bfd4b79245
docs(trace): remove duplicate comment ( #20360 )
2025-12-16 14:56:01 +00:00
Federico Gimenez
49057b1c0c
feat(storage): add with_default_tables() to register RocksDB column families at initialization ( #20416 )
2025-12-16 12:59:58 +00:00
Gigi
b6772370d7
docs: fix incorrect method reference in try_recover_sealed_with_senders ( #20410 )
2025-12-16 12:27:53 +00:00
Karl Yu
d72935628a
feat: add support for eth/70 eip-7975 ( #20255 )
...
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de >
2025-12-16 12:05:11 +00:00
YK
ad63b135d6
feat(storage): implement EitherWriter/EitherReader methods for RocksDB ( #20408 )
2025-12-16 11:26:31 +00:00
Brian Picciano
90651ae8e8
feat(engine): Use BAL in state root validation ( #20383 )
2025-12-16 11:05:51 +00:00