Skip to main content

foundry_cli/opts/
network.rs

1/// Network selection, defaulting to Ethereum
2#[derive(Clone, Debug, Default, clap::ValueEnum)]
3pub enum NetworkVariant {
4    /// Ethereum (default)
5    #[default]
6    Ethereum,
7    /// Optimism / OP-stack
8    Optimism,
9    /// Tempo
10    Tempo,
11}