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

Commit 0d4c033

Browse files
committed
test: add 7702 e2e test
1 parent 6d7ad7c commit 0d4c033

File tree

5 files changed

+142
-194
lines changed

5 files changed

+142
-194
lines changed

Cargo.lock

Lines changed: 43 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: 2 additions & 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 = [
@@ -104,6 +95,7 @@ reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7"
10495
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.0.7" }
10596

10697
# misc
98+
alloy-eips = "0.3"
10799
clap = "4"
108100
eyre = "0.6.12"
109101
tracing = "0.1.0"

crates/testing/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,16 @@ 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+
alloy-eips.workspace = true
23+
eyre.workspace = true
2624
tokio.workspace = true
27-
url = "2.5.0"
2825

2926
[lints]
3027
workspace = true

0 commit comments

Comments
 (0)