Skip to content

Commit d525ad2

Browse files
committed
work until rpc
1 parent 93cb8fd commit d525ad2

26 files changed

Lines changed: 2367 additions & 75 deletions

Cargo.lock

Lines changed: 18 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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth.git",
5454
reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
5555
reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
5656
reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
57-
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
57+
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", features = ["serde", "serde-bincode-compat", "reth-codec"] }
5858
reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
5959
reth-evm = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
6060
reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
@@ -70,6 +70,9 @@ reth-revm = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
7070
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
7171
reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
7272
reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
73+
reth-rpc = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
74+
reth-rpc-convert = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
75+
reth-codecs = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
7376

7477
ev-revm = { path = "crates/ev-revm" }
7578
ev-primitives = { path = "crates/ev-primitives" }
@@ -110,6 +113,7 @@ alloy-signer = { version = "1.0.37", default-features = false }
110113
alloy-signer-local = { version = "1.0.37", features = ["mnemonic"] }
111114
alloy-primitives = { version = "1.3.1", default-features = false }
112115
alloy-consensus = { version = "1.0.37", default-features = false }
116+
alloy-consensus-any = { version = "1.0.37", default-features = false }
113117
alloy-rlp = { version = "0.3.12", default-features = false }
114118
alloy-genesis = { version = "1.0.37", default-features = false }
115119
alloy-rpc-types-txpool = { version = "1.0.37", default-features = false }

crates/ev-primitives/Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ license = "MIT OR Apache-2.0"
77

88
[dependencies]
99
alloy-consensus = { workspace = true }
10-
alloy-eips = { workspace = true }
11-
alloy-primitives = { workspace = true, features = ["k256", "rlp"] }
10+
alloy-eips = { workspace = true, features = ["serde"] }
11+
alloy-primitives = { workspace = true, features = ["k256", "rlp", "serde"] }
1212
alloy-rlp = { workspace = true, features = ["derive"] }
13+
reth-codecs = { workspace = true }
14+
reth-ethereum-primitives = { workspace = true }
15+
reth-primitives-traits = { workspace = true, features = ["serde-bincode-compat"] }
16+
serde = { workspace = true, features = ["derive"] }
17+
18+
[features]
19+
serde-bincode-compat = ["reth-primitives-traits/serde-bincode-compat"]

0 commit comments

Comments
 (0)