Commit Graph

3519 Commits

Author SHA1 Message Date
Dan Cline
9b1416b4f4 feat: add benchmark for blob_tx_priority and fee_delta (#5468) 2023-11-17 19:09:06 +00:00
Alexey Shekhirin
f33ef66cc1 chore: make maxperf, enable GC profiling on MDBX debug (#5459) 2023-11-17 15:27:40 +00:00
Matthias Seitz
3553cd5076 chore: remove cursed env lifetime (#5474) 2023-11-17 14:07:46 +00:00
Roman Krasiuk
30dfc070e1 chore(provider): migrate providers to ProviderError (#5473) 2023-11-17 14:07:28 +00:00
DoTheBestToGetTheBest
b03d0106ae feat(eth-wire) add missing docs (#5467) 2023-11-17 12:57:07 +00:00
Matthias Seitz
c0fe64700a chore: add missing helper fns (#5471) 2023-11-17 11:48:24 +01:00
Roman Krasiuk
eadbe5dce9 feat(provider): HeaderProvider::sealed_headers_while (#5470) 2023-11-17 10:21:35 +00:00
Matthias Seitz
7312ada852 chore: add optimism_deposit_tx_signature function (#5457) 2023-11-17 11:22:07 +01:00
Dan Cline
b4cbd0b04f chore: use i64 for blob priority function (#5466) 2023-11-16 21:53:44 +00:00
Matthias Seitz
baf407f5ed feat: add eth-call-bundle module (#5465) 2023-11-16 19:06:29 +00:00
Matthias Seitz
64500e93a2 chore: make decode_enveloped args consistent with other fns (#5456) 2023-11-16 18:56:39 +00:00
Matthias Seitz
2b4eb8438c fix: fetch 4844 blob before reinjected reorged blob txs (#5460) 2023-11-16 18:54:07 +00:00
clabby
ec3dbfe995 chore(op-reth): Add temporary Canyon warning (#5462) 2023-11-16 17:49:02 +00:00
clabby
460b5f6fda feat(book): op-reth runbook (#5440) 2023-11-16 15:32:53 +00:00
Matthias Seitz
fb981cec4d chore: move criterion and pprof to workspace (#5461) 2023-11-16 14:13:24 +00:00
Matthias Seitz
1b39096edd chore: more libmdbx cleanup (#5455) 2023-11-16 14:12:40 +00:00
Matthias Seitz
e5362882e0 chore: add recovery test (#5453) 2023-11-16 02:17:06 +00:00
DoTheBestToGetTheBest
0b46e16dcd feat(eth-wire): update docs (#5450) 2023-11-15 23:31:45 +00:00
Matthias Seitz
5e605d20a4 feat: add rpc-api trait for call bundle (#5449) 2023-11-15 21:16:26 +00:00
Matthias Seitz
f9725a4f88 feat: add blobstore file path functions (#5442) 2023-11-15 20:25:54 +00:00
DoTheBestToGetTheBest
8207401359 feat(bin) : refactor auth_jwt_secret function (#5451) 2023-11-15 19:43:45 +00:00
Matthias Seitz
187f6faa09 chore: some blob reinject improvements (#5441) 2023-11-15 19:04:03 +00:00
Matthias Seitz
8459fb0ada chore: make inner private (#5445) 2023-11-15 19:03:54 +00:00
Alexey Shekhirin
49f4606583 fix(net): check bounds on message logging (#5448) 2023-11-15 19:03:34 +00:00
Matthias Seitz
0583a967df chore: make it harder to misuse raw pointers (#5447) 2023-11-15 19:01:31 +00:00
joshieDo
a389a2b42d feat: search for a snapshot that fulfills a queried BlockHash or TxHash (#5373)
Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2023-11-15 16:53:28 +00:00
Matthias Seitz
dc72cad838 feat: phase out environment trait (#5439) 2023-11-15 16:42:34 +00:00
Matthias Seitz
de0cca2488 refactor: transaction internals (#5437) 2023-11-15 14:46:07 +00:00
Armin Sabouri
4e1e0463f7 docs: fix spelling mistakes in eth-wire.md (#5438)
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
2023-11-15 14:32:58 +00:00
Matthias Seitz
f42db5b4a2 chore: put env types into container type (#5436)
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
2023-11-15 14:30:09 +00:00
Alexey Shekhirin
b98d7c8c12 chore(storage): rebuild MDBX if sources changed (#5435) 2023-11-15 13:22:35 +00:00
Roman Krasiuk
e109896dbe chore: remove unnecessary async_trait usage (#5433) 2023-11-15 12:15:37 +00:00
Supernovahs.eth
352721370d use reth_primitives instead of revm_primitives (#5434) 2023-11-15 12:08:13 +00:00
Matthias Seitz
365fbb18c2 chore: add a few tx related helper functions (#5430) 2023-11-14 23:09:07 +00:00
joshieDo
6ee481b817 feat: Snapshotter triggers segment snapshots (#5287)
Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2023-11-14 21:38:54 +00:00
joshieDo
7b781eb602 feat: add directory paths to Snapshotter and SnapshotProvider (#5283)
Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2023-11-14 20:54:13 +00:00
Roman Krasiuk
fd392ba0b9 chore: decriptive panic on non-existing block indices (#5425) 2023-11-14 19:31:24 +00:00
Matthias Seitz
100b6b850a feat: add on disk blob pool (#5389)
Co-authored-by: DoTheBestToGetTheBest <146037313+DoTheBestToGetTheBest@users.noreply.github.com>
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
2023-11-14 19:08:38 +00:00
joshieDo
d21e346c04 feat: share SnapshotProvider through ProviderFactory (#5249)
Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
2023-11-14 17:50:12 +00:00
DoTheBestToGetTheBest
8ecd90b884 feat(consensus): support test for check_gas_limit function (#5329) 2023-11-14 17:35:43 +00:00
Matthias Seitz
efc5277964 chore: make txn manager private (#5426) 2023-11-14 17:07:04 +00:00
Matthias Seitz
fbc44e3cfb docs: some tree doc cleanup (#5423) 2023-11-14 15:35:47 +00:00
Roman Krasiuk
bf47eb3880 fix: network example (#5422) 2023-11-14 14:36:02 +00:00
christn
f061363e63 Fix wrong check regarding EIP-155 (#5421) 2023-11-14 13:49:01 +00:00
Roman Krasiuk
2bd8c7e7e6 chore(state): split_at refactor (#5419) 2023-11-14 11:59:17 +00:00
Dan Cline
fbf4873ea8 feat: add eviction ordering for blob transactions (#5335) 2023-11-13 20:37:46 +00:00
Matthias Seitz
1bd79a401d chore: add rlp codec for Sidecar (#5390) 2023-11-13 18:25:59 +00:00
Matthias Seitz
79abf2ba0f chore: remove ckzg dep from rpc types (#5392) 2023-11-13 17:37:14 +00:00
Luca Provini
5baa158fbc Mock eth provider implementation for EvmEnvProvider trait (#5414) 2023-11-13 17:20:35 +00:00
Matthias Seitz
cf2fd287fe perf: reduce overhead with open state (#5416) 2023-11-13 17:07:54 +00:00