Skip to content

Commit

Permalink
Merge branch 'main' into use_alloy_signature_type
Browse files Browse the repository at this point in the history
  • Loading branch information
leruaa committed Sep 21, 2024
2 parents f546d02 + 5113e29 commit 5e506c3
Show file tree
Hide file tree
Showing 139 changed files with 1,696 additions and 976 deletions.
47 changes: 38 additions & 9 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ members = [
"crates/optimism/cli",
"crates/optimism/consensus",
"crates/optimism/evm/",
"crates/optimism/hardforks/",
"crates/optimism/node/",
"crates/optimism/payload/",
"crates/optimism/primitives/",
Expand Down Expand Up @@ -363,6 +364,7 @@ reth-node-types = { path = "crates/node/types" }
reth-optimism-chainspec = { path = "crates/optimism/chainspec" }
reth-optimism-cli = { path = "crates/optimism/cli" }
reth-optimism-consensus = { path = "crates/optimism/consensus" }
reth-optimism-forks = { path = "crates/optimism/hardforks" }
reth-optimism-payload-builder = { path = "crates/optimism/payload" }
reth-optimism-primitives = { path = "crates/optimism/primitives" }
reth-optimism-rpc = { path = "crates/optimism/rpc" }
Expand Down
2 changes: 1 addition & 1 deletion book/run/sync-op-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Importing OP mainnet Bedrock datadir requires exported data:

### Manual Export Steps

The `op-geth` Bedrock datadir can be downloaded from <https://datadirs.optimism.io/mainnet-bedrock.tar.zst>.
The `op-geth` Bedrock datadir can be downloaded from <https://datadirs.optimism.io>.

To export the OVM chain from `op-geth`, clone the `testinprod-io/op-geth` repo and checkout
<https://github.com/testinprod-io/op-geth/pull/1>. Commands to export blocks, receipts and state dump can be
Expand Down
5 changes: 4 additions & 1 deletion crates/chainspec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ reth-network-peers.workspace = true
reth-trie-common.workspace = true
reth-primitives-traits.workspace = true

# op-reth
reth-optimism-forks = { workspace = true, optional = true }

# ethereum
alloy-chains = { workspace = true, features = ["serde", "rlp"] }
alloy-eips = { workspace = true, features = ["serde"] }
Expand Down Expand Up @@ -47,9 +50,9 @@ op-alloy-rpc-types.workspace = true
[features]
default = ["std"]
optimism = [
"reth-ethereum-forks/optimism",
"serde",
"dep:op-alloy-rpc-types",
"reth-optimism-forks",
]
std = []
arbitrary = [
Expand Down
Loading

0 comments on commit 5e506c3

Please sign in to comment.