Skip to content

Commit 93cb8fd

Browse files
committed
create primitives
1 parent fd3cc2a commit 93cb8fd

4 files changed

Lines changed: 448 additions & 0 deletions

File tree

Cargo.lock

Lines changed: 10 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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ resolver = "2"
33
members = [
44
"bin/ev-reth",
55
"crates/common",
6+
"crates/ev-primitives",
67
"crates/evolve",
78
"crates/node",
89
"crates/tests",
@@ -71,6 +72,7 @@ reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.
7172
reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" }
7273

7374
ev-revm = { path = "crates/ev-revm" }
75+
ev-primitives = { path = "crates/ev-primitives" }
7476

7577

7678
# Consensus dependencies
@@ -108,6 +110,7 @@ alloy-signer = { version = "1.0.37", default-features = false }
108110
alloy-signer-local = { version = "1.0.37", features = ["mnemonic"] }
109111
alloy-primitives = { version = "1.3.1", default-features = false }
110112
alloy-consensus = { version = "1.0.37", default-features = false }
113+
alloy-rlp = { version = "0.3.12", default-features = false }
111114
alloy-genesis = { version = "1.0.37", default-features = false }
112115
alloy-rpc-types-txpool = { version = "1.0.37", default-features = false }
113116
alloy-sol-types = { version = "1.3.1", default-features = false }

crates/ev-primitives/Cargo.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "ev-primitives"
3+
version = "0.1.0"
4+
edition = "2021"
5+
rust-version = "1.82"
6+
license = "MIT OR Apache-2.0"
7+
8+
[dependencies]
9+
alloy-consensus = { workspace = true }
10+
alloy-eips = { workspace = true }
11+
alloy-primitives = { workspace = true, features = ["k256", "rlp"] }
12+
alloy-rlp = { workspace = true, features = ["derive"] }

0 commit comments

Comments
 (0)