Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
97e7811
Reverts redundant visibility and doc diff with stable branch
emhane Jan 20, 2026
7b560bd
Use getters instead of direct field access
emhane Jan 20, 2026
35c7c75
fixup! Use getters instead of direct field access
emhane Jan 21, 2026
d25243e
fixup! Use getters instead of direct field access
emhane Jan 22, 2026
35af596
Merge branch 'unstable' into emhane/revert-redundant-diff
emhane Jan 22, 2026
32c3807
Point reth deps upstream
emhane Jan 22, 2026
33b5650
fixup! Point reth deps upstream
emhane Jan 22, 2026
1496179
Merge branch 'unstable' into emhane/mirror-reth-deps
emhane Jan 22, 2026
e225b7b
Merge branch 'emhane/revert-redundant-diff' into emhane/mirror-reth-deps
emhane Jan 22, 2026
35b812c
Merge branch 'emhane/mirror-reth-deps' of github.com:op-rs/op-reth in…
emhane Jan 22, 2026
d883ec0
Update lockfile
emhane Jan 22, 2026
dcb06c2
Merge branch 'unstable' into emhane/revert-redundant-diff
emhane Jan 22, 2026
804265c
Merge branch 'emhane/revert-redundant-diff' into emhane/mirror-reth-deps
emhane Jan 22, 2026
321084e
Set reth deps in individual crates
emhane Jan 22, 2026
171d9c1
fixup! Set reth deps in individual crates
emhane Jan 22, 2026
db77917
Point reth-optimism-rpc to v1.10.1
emhane Jan 22, 2026
9746901
Point reth deps in op-reth bin to v1.10.1
emhane Jan 22, 2026
57bcc82
Point reth deps in reth-optimism-cli to v1.10.1
emhane Jan 22, 2026
cfb6be8
fixup! Set reth deps in individual crates
emhane Jan 22, 2026
4997356
fixup! Point reth-optimism-rpc to v1.10.1
emhane Jan 22, 2026
c2eff7f
Point reth-op deps to v1.10.1
emhane Jan 22, 2026
b37c438
Fix reth-optimism-cli local dep in reth-op
emhane Jan 22, 2026
00e3a38
Revert to local dep in op-reth-proof-bench
emhane Jan 22, 2026
d5c1cfe
Update lockfile
emhane Jan 22, 2026
36703ba
Point reth deps in reth-optimism-node to v1.10.1
emhane Jan 22, 2026
5e061b3
Merge branch 'unstable' into emhane/mirror-reth-deps
emhane Jan 23, 2026
3805e4d
fix ci
dhyaniarun1993 Jan 23, 2026
e7ac815
Use local reth-optimism-node
emhane Jan 23, 2026
55ea880
Merge branch 'unstable' into emhane/mirror-reth-deps
emhane Jan 23, 2026
4bf2a9e
Update lockfile
emhane Jan 23, 2026
512028f
Merge branch 'emhane/mirror-reth-deps' of github.com:op-rs/op-reth in…
emhane Jan 23, 2026
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
5,763 changes: 4,292 additions & 1,471 deletions Cargo.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions crates/optimism/bin/op-reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ repository.workspace = true
exclude.workspace = true

[dependencies]
reth-cli-util.workspace = true
reth-cli-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-cli.workspace = true
reth-optimism-rpc.workspace = true
reth-optimism-node.workspace = true
reth-optimism-chainspec.workspace = true
reth-optimism-consensus.workspace = true
reth-optimism-evm.workspace = true
reth-optimism-payload-builder.workspace = true
reth-optimism-primitives.workspace = true
reth-optimism-forks.workspace = true
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-exex = { workspace = true, features = ["metrics"] }
reth-optimism-trie = { workspace = true, features = ["metrics"] }
reth-node-builder.workspace = true
reth-db-api.workspace = true
reth-chainspec.workspace = true
reth-db.workspace = true
reth-tasks.workspace = true
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-db-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }

clap = { workspace = true, features = ["derive", "env"] }
tracing.workspace = true
Expand Down
56 changes: 28 additions & 28 deletions crates/optimism/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,40 +11,40 @@ repository.workspace = true
workspace = true

[dependencies]
reth-static-file-types = { workspace = true, features = ["clap"] }
reth-cli.workspace = true
reth-cli-commands.workspace = true
reth-consensus.workspace = true
reth-rpc-server-types.workspace = true
reth-primitives-traits.workspace = true
reth-db = { workspace = true, features = ["mdbx", "op"] }
reth-db-api.workspace = true
reth-db-common.workspace = true
reth-downloaders.workspace = true
reth-provider.workspace = true
reth-prune.workspace = true
reth-stages.workspace = true
reth-static-file.workspace = true
reth-execution-types.workspace = true
reth-node-core.workspace = true
reth-static-file-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["clap"] }
reth-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-cli-commands = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-rpc-server-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["mdbx", "op"] }
reth-db-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-db-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-downloaders = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-prune = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-stages = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-static-file = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-core = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-node.workspace = true
reth-fs-util.workspace = true
reth-fs-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }

# so jemalloc metrics can be included
reth-node-metrics.workspace = true

## optimism
reth-optimism-primitives.workspace = true
reth-optimism-chainspec = { workspace = true, features = ["superchain-configs"] }
reth-optimism-consensus.workspace = true
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["superchain-configs"] }
reth-optimism-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-trie.workspace = true

reth-chainspec.workspace = true
reth-node-events.workspace = true
reth-optimism-evm.workspace = true
reth-cli-runner.workspace = true
reth-node-builder = { workspace = true, features = ["op"] }
reth-tracing.workspace = true
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-events = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-cli-runner = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["op"] }
reth-tracing = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }

# eth
alloy-eips.workspace = true
Expand All @@ -69,10 +69,10 @@ op-alloy-consensus.workspace = true

[dev-dependencies]
tempfile.workspace = true
reth-stages = { workspace = true, features = ["test-utils"] }
reth-stages = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["test-utils"] }

[build-dependencies]
reth-optimism-chainspec = { workspace = true, features = ["std", "superchain-configs"] }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["std", "superchain-configs"] }

[features]
default = []
Expand Down
22 changes: 11 additions & 11 deletions crates/optimism/exex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ workspace = true

[dependencies]
# reth
reth-exex.workspace = true
reth-execution-types.workspace = true
reth-node-types.workspace = true
reth-node-api.workspace = true
reth-trie.workspace = true
reth-provider.workspace = true
reth-exex = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }

# op-reth
# proofs exex handles `TrieUpdates` in notifications
Expand All @@ -37,12 +37,12 @@ tracing.workspace = true
tokio = { workspace = true, features = ["test-util", "rt-multi-thread", "macros"] }
futures.workspace = true
reth-db = { workspace = true, features = ["op", "test-utils"] }
reth-node-builder.workspace = true
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-node.workspace = true
reth-optimism-chainspec.workspace = true
reth-primitives-traits.workspace = true
reth-ethereum-primitives.workspace = true
reth-exex-test-utils.workspace = true
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
tempfile.workspace = true

[features]
Expand Down
72 changes: 36 additions & 36 deletions crates/optimism/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,36 +12,36 @@ workspace = true

[dependencies]
# reth
reth-chainspec.workspace = true
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
## ensure secp256k1 recovery with rayon support is activated
reth-primitives-traits = { workspace = true, features = ["secp256k1", "rayon"] }
reth-payload-builder.workspace = true
reth-consensus.workspace = true
reth-node-api.workspace = true
reth-node-builder.workspace = true
reth-tracing.workspace = true
reth-provider.workspace = true
reth-transaction-pool.workspace = true
reth-network.workspace = true
reth-evm.workspace = true
reth-rpc-server-types.workspace = true
reth-tasks = { workspace = true, optional = true }
reth-trie-common.workspace = true
reth-node-core.workspace = true
reth-rpc-engine-api.workspace = true
reth-engine-local = { workspace = true, features = ["op"] }
reth-rpc-api.workspace = true
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["secp256k1", "rayon"] }
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-network = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-rpc-server-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-trie-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-node-core = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-engine-local = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["op"] }
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }

# op-reth
reth-optimism-payload-builder.workspace = true
reth-optimism-evm = { workspace = true, features = ["std", "rpc"] }
reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["std", "rpc"] }
reth-optimism-rpc.workspace = true
reth-optimism-storage.workspace = true
reth-optimism-txpool.workspace = true
reth-optimism-chainspec.workspace = true
reth-optimism-consensus = { workspace = true, features = ["std"] }
reth-optimism-forks.workspace = true
reth-optimism-primitives = { workspace = true, features = ["serde", "serde-bincode-compat", "reth-codec"] }
reth-optimism-storage = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-txpool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["std"] }
reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["serde", "serde-bincode-compat", "reth-codec"] }

# revm with required optimism features
# Note: this must be kept to ensure all features are properly enabled/forwarded
Expand Down Expand Up @@ -73,16 +73,16 @@ serde_json = { workspace = true, optional = true }

[dev-dependencies]
reth-optimism-node = { workspace = true, features = ["test-utils"] }
reth-db = { workspace = true, features = ["op", "test-utils"] }
reth-node-builder = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-tasks.workspace = true
reth-payload-util.workspace = true
reth-revm = { workspace = true, features = ["std"] }
reth-rpc.workspace = true
reth-rpc-eth-types.workspace = true
reth-stages-types.workspace = true
reth-trie-db.workspace = true
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["op", "test-utils"] }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["test-utils"] }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["test-utils"] }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-payload-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-revm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["std"] }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-stages-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-trie-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }

alloy-network.workspace = true
alloy-op-hardforks.workspace = true
Expand Down
62 changes: 31 additions & 31 deletions crates/optimism/reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,39 +12,39 @@ workspace = true

[dependencies]
# reth
reth-primitives-traits = { workspace = true, features = ["op"] }
reth-chainspec.workspace = true
reth-network = { workspace = true, optional = true }
reth-network-api = { workspace = true, optional = true }
reth-eth-wire = { workspace = true, optional = true }
reth-provider = { workspace = true, optional = true }
reth-db = { workspace = true, optional = true, features = ["mdbx", "op"] }
reth-codecs = { workspace = true, optional = true }
reth-storage-api = { workspace = true, optional = true }
reth-node-api = { workspace = true, optional = true }
reth-node-core = { workspace = true, optional = true }
reth-consensus = { workspace = true, optional = true }
reth-consensus-common = { workspace = true, optional = true }
reth-evm = { workspace = true, optional = true }
reth-revm = { workspace = true, optional = true }
reth-rpc = { workspace = true, optional = true }
reth-rpc-api = { workspace = true, optional = true }
reth-rpc-eth-types = { workspace = true, optional = true }
reth-rpc-builder = { workspace = true, optional = true }
reth-exex = { workspace = true, optional = true }
reth-transaction-pool = { workspace = true, optional = true }
reth-trie = { workspace = true, optional = true }
reth-trie-db = { workspace = true, optional = true }
reth-node-builder = { workspace = true, optional = true }
reth-tasks = { workspace = true, optional = true }
reth-cli-util = { workspace = true, optional = true }
reth-engine-local = { workspace = true, optional = true }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", features = ["op"] }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-network = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-network-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-eth-wire = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true, features = ["mdbx", "op"] }
reth-codecs = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-storage-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-node-core = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-consensus-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-revm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-exex = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-trie-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-cli-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-engine-local = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }

# reth-op
reth-optimism-primitives.workspace = true
reth-optimism-chainspec.workspace = true
reth-optimism-consensus = { workspace = true, optional = true }
reth-optimism-evm = { workspace = true, optional = true }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1" }
reth-optimism-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.1", optional = true }
reth-optimism-node = { workspace = true, optional = true }
reth-optimism-rpc = { workspace = true, optional = true }
reth-optimism-cli = { workspace = true, optional = true }
Expand Down
Loading
Loading