Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
abc4aed
Mv op-proofs exex crate into optimism directory
emhane Oct 10, 2025
ff06dac
Rename external-proofs to reth-optimism-exex
emhane Oct 10, 2025
c8b5857
Rename ExternalProofExEx to OpProofsExEx
emhane Oct 10, 2025
ae5b6e4
Fix lint
emhane Oct 10, 2025
a9457e0
Rename prefix External to OpProofs
emhane Oct 10, 2025
fcb30e3
Move storage module from reth-optimism-exex into reth-optimism-storage
emhane Oct 10, 2025
8acb9d6
Slim down deps of reth-optimism-storage, rm async-trait
emhane Oct 10, 2025
b9e0cfb
Fix lint
emhane Oct 10, 2025
5c2113d
Fix lint
emhane Oct 10, 2025
a82e269
Rm boilerplate code in favour of using derive_more
emhane Oct 10, 2025
a8bd649
Fix docs
emhane Oct 10, 2025
7ed9f4d
Merge branch 'unstable' into emhane/op-exex
emhane Oct 14, 2025
3d03c78
Fix merge conflicts
emhane Oct 14, 2025
b66c89f
Move proofs storage to own crate
emhane Oct 14, 2025
917c7e2
Move proofs to reth-optimism-trie
emhane Oct 14, 2025
915ece2
Fix conflicts
emhane Oct 14, 2025
65274bc
Fix conflicts
emhane Oct 14, 2025
5411520
Fix docs
emhane Oct 14, 2025
78639f1
Fix docs
emhane Oct 14, 2025
d9636fd
Fix lint
emhane Oct 14, 2025
bde3730
Merge branch 'unstable' into emhane/op-exex
emhane Oct 14, 2025
58de61b
Fix lint
emhane Oct 14, 2025
6a04891
Fix lint
emhane Oct 14, 2025
d39a949
Add new crates to skip list
emhane Oct 14, 2025
e3cf847
Generalise crate docs
emhane Oct 14, 2025
8a21fed
Rescue missing mdbx files
emhane Oct 14, 2025
ff1c216
Remove redundant dep
emhane Oct 14, 2025
de7d0f9
Smol fixes
emhane Oct 14, 2025
1d16b9d
Revert unrelated change
emhane Oct 14, 2025
7cb2e95
Fix deps
emhane Oct 14, 2025
31f72d6
Rm redundant test module
emhane Oct 14, 2025
3d39b2a
Merge branch 'unstable' into emhane/op-exex
emhane Oct 14, 2025
6ac617f
Replace boiler plate code with derive macro
emhane Oct 14, 2025
4aebc6b
fixup! Replace boiler plate code with derive macro
emhane Oct 14, 2025
8f9b614
Fix features for reth-optimism-trie
emhane Oct 14, 2025
1487b93
fixup! Fix features for reth-optimism-trie
emhane Oct 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/assets/check_wasm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ exclude_crates=(
reth-trie-parallel # tokio
reth-trie-sparse-parallel # rayon
reth-testing-utils
reth-optimism-exex # reth-exex and reth-optimism-trie
reth-optimism-trie # reth-trie
reth-optimism-txpool # reth-transaction-pool
reth-era-downloader # tokio
reth-era-utils # tokio
Expand Down
68 changes: 41 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ members = [
"crates/exex/exex/",
"crates/exex/test-utils/",
"crates/exex/types/",
"crates/exex/external-proofs/",
"crates/metrics/",
"crates/net/banlist/",
"crates/net/discv4/",
Expand Down Expand Up @@ -77,6 +76,7 @@ members = [
"crates/optimism/cli",
"crates/optimism/consensus",
"crates/optimism/evm/",
"crates/optimism/exex/",
"crates/optimism/flashblocks/",
"crates/optimism/hardforks/",
"crates/optimism/node/",
Expand All @@ -85,6 +85,7 @@ members = [
"crates/optimism/reth/",
"crates/optimism/rpc/",
"crates/optimism/storage",
"crates/optimism/trie",
"crates/optimism/txpool/",
"crates/payload/basic/",
"crates/payload/builder/",
Expand Down Expand Up @@ -415,11 +416,13 @@ reth-op = { path = "crates/optimism/reth", default-features = false }
reth-optimism-chainspec = { path = "crates/optimism/chainspec", default-features = false }
reth-optimism-cli = { path = "crates/optimism/cli" }
reth-optimism-consensus = { path = "crates/optimism/consensus", default-features = false }
reth-optimism-exex = { path = "crates/optimism/exex" }
reth-optimism-forks = { path = "crates/optimism/hardforks", default-features = false }
reth-optimism-payload-builder = { path = "crates/optimism/payload" }
reth-optimism-primitives = { path = "crates/optimism/primitives", default-features = false }
reth-optimism-rpc = { path = "crates/optimism/rpc" }
reth-optimism-storage = { path = "crates/optimism/storage" }
reth-optimism-trie = { path = "crates/optimism/trie" }
reth-optimism-txpool = { path = "crates/optimism/txpool" }
reth-payload-builder = { path = "crates/payload/builder" }
reth-payload-builder-primitives = { path = "crates/payload/builder-primitives" }
Expand Down
12 changes: 0 additions & 12 deletions crates/exex/external-proofs/src/storage/in_memory/mod.rs

This file was deleted.

Loading
Loading