Skip to content

Commit

Permalink
test: add 7702 e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Sep 20, 2024
1 parent 6d7ad7c commit 0d4c033
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 194 deletions.
210 changes: 43 additions & 167 deletions Cargo.lock

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

12 changes: 2 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,25 +57,16 @@ strip = false
alphanet-node = { path = "crates/node" }
alphanet-precompile = { path = "crates/precompile" }

alloy = { version = "0.3", features = [
"contract",
"providers",
"provider-http",
"signers",
] }
alloy-network = { version = "0.3" }
alloy-signer-local = { version = "0.3", features = ["mnemonic"] }

# tokio
tokio = { version = "1.21", default-features = false }

# reth
reth = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7", features = [
"optimism",
] }
reth-cli = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7", features = [
Expand Down Expand Up @@ -104,6 +95,7 @@ reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7"
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }

# misc
alloy-eips = "0.3"
clap = "4"
eyre = "0.6.12"
tracing = "0.1.0"
Expand Down
15 changes: 6 additions & 9 deletions crates/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,16 @@ categories.workspace = true
[dev-dependencies]
alphanet-node.workspace = true

alloy.workspace = true
alloy-network.workspace = true
alloy-signer-local = { workspace = true, features = ["mnemonic"] }

reth = { workspace = true }
reth-node-core = { workspace = true }
reth-node-builder = { workspace = true, features = ["test-utils"] }
reth-e2e-test-utils.workspace = true
reth-node-core.workspace = true
reth-node-optimism.workspace = true
reth-payload-builder.workspace = true
reth-primitives.workspace = true
reth-tracing.workspace = true

once_cell = "1.19.0"
alloy-eips.workspace = true
eyre.workspace = true
tokio.workspace = true
url = "2.5.0"

[lints]
workspace = true
Loading

0 comments on commit 0d4c033

Please sign in to comment.