1//! Ethereum hardfork starting points 2 3pub mod mainnet; 4pub use mainnet::*; 5pub mod sepolia; 6pub use sepolia::*; 7pub mod hoodi; 8pub use hoodi::*; 9pub mod holesky; 10pub use holesky::*;