anychain_ethereum/network/
mod.rs

1pub trait EthereumNetwork: Copy + Clone + Send + Sync + 'static {
2    const CHAIN_ID: u32;
3}
4
5pub mod mainnet;
6pub mod testnet;
7
8pub use mainnet::*;
9pub use testnet::*;