Skip to content

Commit 36ec0f7

Browse files
committed
build it
1 parent f63c8e0 commit 36ec0f7

File tree

18 files changed

+12191
-424
lines changed

18 files changed

+12191
-424
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 69 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -19,52 +19,80 @@ authors = ["Rollkit Contributors"]
1919

2020
[workspace.dependencies]
2121
# Reth dependencies - Using the latest stable versions
22-
reth = { version = "1.1", default-features = false }
23-
reth-cli-util = { version = "1.1", default-features = false }
24-
reth-ethereum-cli = { version = "1.1", default-features = false }
25-
reth-ethereum = { version = "1.1", default-features = false }
26-
reth-node-builder = { version = "1.1", default-features = false }
27-
reth-chainspec = { version = "1.1", default-features = false }
28-
reth-ethereum-payload-builder = { version = "1.1", default-features = false }
29-
reth-payload-primitives = { version = "1.1", default-features = false }
30-
reth-primitives = { version = "1.1", default-features = false }
31-
reth-primitives-traits = { version = "1.1", default-features = false }
32-
reth-node-api = { version = "1.1", default-features = false }
33-
reth-provider = { version = "1.1", default-features = false }
34-
reth-payload-builder = { version = "1.1", default-features = false }
35-
reth-basic-payload-builder = { version = "1.1", default-features = false }
36-
reth-engine-local = { version = "1.1", default-features = false }
37-
reth-revm = { version = "1.1", default-features = false }
38-
reth-trie-db = { version = "1.1", default-features = false }
39-
reth-node-types = { version = "1.1", default-features = false }
40-
reth-payload-builder-primitives = { version = "1.1", default-features = false }
41-
reth-execution-types = { version = "1.1", default-features = false }
42-
reth-evm-ethereum = { version = "1.1", default-features = false }
43-
reth-evm = { version = "1.1", default-features = false }
44-
reth-errors = { version = "1.1", default-features = false }
45-
reth-node-core = { version = "1.1", default-features = false }
46-
reth-rpc-builder = { version = "1.1", default-features = false }
47-
reth-rpc-api = { version = "1.1", default-features = false }
48-
reth-rpc-engine-api = { version = "1.1", default-features = false }
49-
reth-engine-primitives = { version = "1.1", default-features = false }
50-
reth-ethereum-primitives = { version = "1.1", default-features = false }
22+
reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
23+
reth-cli = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
24+
reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
25+
reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
26+
reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
27+
reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
28+
reth-errors = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
29+
reth-optimism-node = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
30+
reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
31+
reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
32+
reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
33+
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
34+
reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
35+
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
36+
reth-trie-db = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
37+
reth-trie-common = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
38+
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
39+
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
40+
reth-provider = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
41+
reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
42+
reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
43+
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
44+
reth-network = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
45+
reth-network-types = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
46+
reth-chain-state = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
47+
reth-ethereum = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
48+
reth-ethereum-cli = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
49+
reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
50+
reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
51+
reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
52+
reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
53+
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
54+
reth-evm = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
55+
reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
56+
reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
57+
reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
58+
reth-node-types = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
59+
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
60+
reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
61+
reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
62+
reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
63+
reth-revm = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
64+
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
65+
reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
66+
reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
67+
5168

5269
# Test dependencies
53-
reth-testing-utils = { version = "1.1", default-features = false }
54-
reth-db = { version = "1.1", default-features = false }
55-
reth-transaction-pool = { version = "1.1", default-features = false }
56-
reth-consensus = { version = "1.1", default-features = false }
57-
reth-tasks = { version = "1.1", default-features = false }
58-
reth-tracing = { version = "1.1", default-features = false }
70+
reth-consensus = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8", default-features = false }
71+
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8", default-features = false }
72+
reth-db = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8", default-features = false }
73+
reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8", default-features = false }
5974

6075
# Alloy dependencies
61-
alloy-rpc-types = { version = "0.7", default-features = false }
62-
alloy-rpc-types-engine = { version = "0.7", default-features = false }
63-
alloy-primitives = { version = "0.8", default-features = false }
64-
alloy-eips = { version = "0.7", default-features = false }
65-
alloy-consensus = { version = "0.7", default-features = false }
76+
alloy = { version = "1.0.9", features = [
77+
"contract",
78+
"providers",
79+
"provider-http",
80+
"signers",
81+
"reqwest-rustls-tls",
82+
], default-features = false }
83+
alloy-eips = { version = "1.0.9", default-features = false }
84+
alloy-network = { version = "1.0.9", default-features = false }
85+
alloy-provider = { version = "1.0.9", default-features = false }
86+
alloy-rpc-client = { version = "1.0.9", default-features = false }
87+
alloy-rpc-types = { version = "1.0.9", default-features = false }
88+
alloy-json-rpc = { version = "1.0.9", default-features = false }
89+
alloy-rpc-types-eth = { version = "1.0.9", default-features = false }
90+
alloy-rpc-types-engine = { version = "1.0.9", default-features = false }
91+
alloy-signer-local = { version = "1.0.9", features = ["mnemonic"] }
92+
alloy-primitives = { version = "1.1.0", default-features = false }
93+
alloy-consensus = { version = "1.0.9", default-features = false }
6694
alloy-rlp = { version = "0.3", default-features = false }
67-
alloy-genesis = { version = "0.7", default-features = false }
95+
alloy-genesis = { version = "1.0.9", default-features = false }
6896

6997
# Core dependencies
7098
eyre = "0.6"

0 commit comments

Comments
 (0)