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

test: add 7702 e2e test #118

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading