alloy-eip2124 0.2.0

Fork identifier for chain compatibility checks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! EIP-2124 implementation based on <https://eips.ethereum.org/EIPS/eip-2124>.
//!
//! Previously version of Apache licenced [`ethereum-forkid`](https://crates.io/crates/ethereum-forkid).
#![cfg_attr(not(feature = "std"), no_std)]

#[allow(unused_imports)]
#[macro_use]
extern crate alloc;

mod head;
pub use head::Head;

mod forkid;
pub use forkid::*;