Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 51261be

Browse files
committed
test: add 7702 e2e test
1 parent 8984b72 commit 51261be

File tree

5 files changed

+99
-198
lines changed

5 files changed

+99
-198
lines changed

Cargo.lock

Lines changed: 42 additions & 167 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,25 +57,16 @@ strip = false
5757
alphanet-node = { path = "crates/node" }
5858
alphanet-precompile = { path = "crates/precompile" }
5959

60-
alloy = { version = "0.3", features = [
61-
"contract",
62-
"providers",
63-
"provider-http",
64-
"signers",
65-
] }
66-
alloy-network = { version = "0.3" }
67-
alloy-signer-local = { version = "0.3", features = ["mnemonic"] }
68-
6960
# tokio
7061
tokio = { version = "1.21", default-features = false }
7162

7263
# reth
73-
reth = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
7464
reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7", features = [
7565
"optimism",
7666
] }
7767
reth-cli = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
7868
reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
69+
reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
7970
reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
8071
reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
8172
reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7", features = [

crates/testing/Cargo.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,15 @@ categories.workspace = true
1212
[dev-dependencies]
1313
alphanet-node.workspace = true
1414

15-
alloy.workspace = true
16-
alloy-network.workspace = true
17-
alloy-signer-local = { workspace = true, features = ["mnemonic"] }
18-
19-
reth = { workspace = true }
20-
reth-node-core = { workspace = true }
21-
reth-node-builder = { workspace = true, features = ["test-utils"] }
15+
reth-e2e-test-utils.workspace = true
16+
reth-node-core.workspace = true
17+
reth-node-optimism.workspace = true
18+
reth-payload-builder.workspace = true
2219
reth-primitives.workspace = true
2320
reth-tracing.workspace = true
2421

25-
once_cell = "1.19.0"
22+
eyre.workspace = true
2623
tokio.workspace = true
27-
url = "2.5.0"
2824

2925
[lints]
3026
workspace = true

0 commit comments

Comments
 (0)