Skip to content

Commit

Permalink
feat: reexport eip2124 (#1900)
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr authored Jan 8, 2025
1 parent d809bd7 commit b9b2da0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ alloy-trie = { version = "0.7.6", default-features = false }
alloy-chains = { version = "0.1.18", default-features = false }

# eips
alloy-eip2124 = { version = "0.1.0", default-features = false }
alloy-eip2930 = { version = "0.1.0", default-features = false }
alloy-eip7702 = { version = "0.5.0", default-features = false }

Expand Down
1 change: 1 addition & 0 deletions crates/eips/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ workspace = true

[dependencies]
# eips
alloy-eip2124.workspace = true
alloy-eip2930.workspace = true
alloy-eip7702.workspace = true

Expand Down
2 changes: 2 additions & 0 deletions crates/eips/src/eip2124.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
//! Re-export the EIP-2124 types.
pub use alloy_eip2124::*;
2 changes: 2 additions & 0 deletions crates/eips/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ pub use eip1898::{
RpcBlockHash,
};

pub mod eip2124;

pub mod eip2718;

pub mod eip2930;
Expand Down

0 comments on commit b9b2da0

Please sign in to comment.