anychain_ethereum/network/
mod.rs

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