#[repr(u64)]
pub enum NamedChain {
Show 69 variants Mainnet = 1, Morden = 2, Ropsten = 3, Rinkeby = 4, Goerli = 5, Kovan = 42, Holesky = 17_000, Sepolia = 11_155_111, Optimism = 10, OptimismKovan = 69, OptimismGoerli = 420, OptimismSepolia = 11_155_420, Arbitrum = 42_161, ArbitrumTestnet = 421_611, ArbitrumGoerli = 421_613, ArbitrumSepolia = 421_614, ArbitrumNova = 42_170, Cronos = 25, CronosTestnet = 338, Rsk = 30, BinanceSmartChain = 56, BinanceSmartChainTestnet = 97, Poa = 99, Sokol = 77, Scroll = 534_352, ScrollAlphaTestnet = 534_353, Metis = 1_088, Gnosis = 100, Polygon = 137, PolygonMumbai = 80_001, PolygonZkEvm = 1_101, PolygonZkEvmTestnet = 1_442, Fantom = 250, FantomTestnet = 4_002, Moonbeam = 1_284, MoonbeamDev = 1_281, Moonriver = 1_285, Moonbase = 1_287, Dev = 1_337, AnvilHardhat = 31_337, Evmos = 9_001, EvmosTestnet = 9_000, Chiado = 10_200, Oasis = 26_863, Emerald = 42_262, EmeraldTestnet = 42_261, FilecoinMainnet = 314, FilecoinCalibrationTestnet = 314_159, Avalanche = 43_114, AvalancheFuji = 43_113, Celo = 42_220, CeloAlfajores = 44_787, CeloBaklava = 62_320, Aurora = 1_313_161_554, AuroraTestnet = 1_313_161_555, Canto = 7_700, CantoTestnet = 740, Boba = 288, Base = 8_453, BaseGoerli = 84_531, Linea = 59_144, LineaTestnet = 59_140, ZkSync = 324, ZkSyncTestnet = 280, Mantle = 5_000, MantleTestnet = 5_001, Zora = 7_777_777, ZoraGoerli = 999, ZoraSepolia = 999_999_999,
}
Expand description

An Ethereum EIP-155 chain.

Variants§

§

Mainnet = 1

§

Morden = 2

§

Ropsten = 3

§

Rinkeby = 4

§

Goerli = 5

§

Kovan = 42

§

Holesky = 17_000

§

Sepolia = 11_155_111

§

Optimism = 10

§

OptimismKovan = 69

§

OptimismGoerli = 420

§

OptimismSepolia = 11_155_420

§

Arbitrum = 42_161

§

ArbitrumTestnet = 421_611

§

ArbitrumGoerli = 421_613

§

ArbitrumSepolia = 421_614

§

ArbitrumNova = 42_170

§

Cronos = 25

§

CronosTestnet = 338

§

Rsk = 30

§

BinanceSmartChain = 56

§

BinanceSmartChainTestnet = 97

§

Poa = 99

§

Sokol = 77

§

Scroll = 534_352

§

ScrollAlphaTestnet = 534_353

§

Metis = 1_088

§

Gnosis = 100

§

Polygon = 137

§

PolygonMumbai = 80_001

§

PolygonZkEvm = 1_101

§

PolygonZkEvmTestnet = 1_442

§

Fantom = 250

§

FantomTestnet = 4_002

§

Moonbeam = 1_284

§

MoonbeamDev = 1_281

§

Moonriver = 1_285

§

Moonbase = 1_287

§

Dev = 1_337

§

AnvilHardhat = 31_337

§

Evmos = 9_001

§

EvmosTestnet = 9_000

§

Chiado = 10_200

§

Oasis = 26_863

§

Emerald = 42_262

§

EmeraldTestnet = 42_261

§

FilecoinMainnet = 314

§

FilecoinCalibrationTestnet = 314_159

§

Avalanche = 43_114

§

AvalancheFuji = 43_113

§

Celo = 42_220

§

CeloAlfajores = 44_787

§

CeloBaklava = 62_320

§

Aurora = 1_313_161_554

§

AuroraTestnet = 1_313_161_555

§

Canto = 7_700

§

CantoTestnet = 740

§

Boba = 288

§

Base = 8_453

§

BaseGoerli = 84_531

§

Linea = 59_144

§

LineaTestnet = 59_140

§

ZkSync = 324

§

ZkSyncTestnet = 280

§

Mantle = 5_000

§

MantleTestnet = 5_001

§

Zora = 7_777_777

§

ZoraGoerli = 999

§

ZoraSepolia = 999_999_999

Implementations§

source§

impl NamedChain

source

pub fn as_str(&self) -> &str

Returns the string representation of the chain.

source

pub const fn average_blocktime_hint(self) -> Option<Duration>

Returns the chain’s average blocktime, if applicable.

It can be beneficial to know the average blocktime to adjust the polling of an HTTP provider for example.

Note: this is not an accurate average, but is rather a sensible default derived from blocktime charts such as Etherscan’s or Polygonscan’s.

Examples
use alloy_chains::NamedChain;
use std::time::Duration;

assert_eq!(NamedChain::Mainnet.average_blocktime_hint(), Some(Duration::from_millis(12_000)),);
assert_eq!(NamedChain::Optimism.average_blocktime_hint(), Some(Duration::from_millis(2_000)),);
source

pub const fn is_legacy(self) -> bool

Returns whether the chain implements EIP-1559 (with the type 2 EIP-2718 transaction type).

Examples
use alloy_chains::NamedChain;

assert!(!NamedChain::Mainnet.is_legacy());
assert!(NamedChain::Celo.is_legacy());
source

pub const fn supports_shanghai(self) -> bool

Returns whether the chain supports the Shanghai hardfork.

source

pub const fn etherscan_urls(self) -> Option<(&'static str, &'static str)>

Returns the chain’s blockchain explorer and its API (Etherscan and Etherscan-like) URLs.

Returns (API_URL, BASE_URL).

Examples
use alloy_chains::NamedChain;

assert_eq!(
    NamedChain::Mainnet.etherscan_urls(),
    Some(("https://api.etherscan.io/api", "https://etherscan.io"))
);
assert_eq!(
    NamedChain::Avalanche.etherscan_urls(),
    Some(("https://api.snowtrace.io/api", "https://snowtrace.io"))
);
assert_eq!(NamedChain::AnvilHardhat.etherscan_urls(), None);
source

pub const fn etherscan_api_key_name(self) -> Option<&'static str>

Returns the chain’s blockchain explorer’s API key environment variable’s default name.

Examples
use alloy_chains::NamedChain;

assert_eq!(NamedChain::Mainnet.etherscan_api_key_name(), Some("ETHERSCAN_API_KEY"));
assert_eq!(NamedChain::AnvilHardhat.etherscan_api_key_name(), None);
source

pub fn etherscan_api_key(self) -> Option<String>

Returns the chain’s blockchain explorer’s API key, from the environment variable with the name specified in etherscan_api_key_name.

Examples
use alloy_chains::NamedChain;

let chain = NamedChain::Mainnet;
std::env::set_var(chain.etherscan_api_key_name().unwrap(), "KEY");
assert_eq!(chain.etherscan_api_key().as_deref(), Some("KEY"));
source

pub fn public_dns_network_protocol(self) -> Option<String>

Returns the address of the public DNS node list for the given chain.

See also https://github.com/ethereum/discv4-dns-lists.

Trait Implementations§

source§

impl AsRef<str> for NamedChain

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for NamedChain

source§

fn clone(&self) -> NamedChain

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NamedChain

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for NamedChain

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for NamedChain

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl EnumCount for NamedChain

source§

const COUNT: usize = 69usize

source§

impl From<NamedChain> for Chain

source§

fn from(id: NamedChain) -> Self

Converts to this type from the input type.
source§

impl From<NamedChain> for i128

source§

fn from(chain: NamedChain) -> Self

Converts to this type from the input type.
source§

impl From<NamedChain> for i64

source§

fn from(chain: NamedChain) -> Self

Converts to this type from the input type.
source§

impl From<NamedChain> for u128

source§

fn from(chain: NamedChain) -> Self

Converts to this type from the input type.
source§

impl From<NamedChain> for u64

source§

fn from(chain: NamedChain) -> Self

Converts to this type from the input type.
source§

impl FromStr for NamedChain

§

type Err = ParseError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<NamedChain, <Self as FromStr>::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for NamedChain

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl IntoEnumIterator for NamedChain

source§

impl Ord for NamedChain

source§

fn cmp(&self, other: &NamedChain) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for NamedChain

source§

fn eq(&self, other: &NamedChain) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for NamedChain

source§

fn partial_cmp(&self, other: &NamedChain) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl TryFrom<&str> for NamedChain

§

type Error = ParseError

The type returned in the event of a conversion error.
source§

fn try_from(s: &str) -> Result<NamedChain, <Self as TryFrom<&str>>::Error>

Performs the conversion.
source§

impl TryFrom<Chain> for NamedChain

§

type Error = <NamedChain as TryFrom<u64>>::Error

The type returned in the event of a conversion error.
source§

fn try_from(chain: Chain) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<i16> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: i16) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<i32> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: i32) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<i8> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: i8) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<isize> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: isize) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u16> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: u16) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u32> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: u32) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u64> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(number: u64) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
source§

impl TryFrom<u8> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: u8) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<usize> for NamedChain

§

type Error = TryFromPrimitiveError<NamedChain>

The type returned in the event of a conversion error.
source§

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFromPrimitive for NamedChain

§

type Primitive = u64

§

type Error = TryFromPrimitiveError<NamedChain>

source§

const NAME: &'static str = "NamedChain"

source§

fn try_from_primitive( number: Self::Primitive ) -> Result<Self, TryFromPrimitiveError<Self>>

source§

impl VariantNames for NamedChain

source§

const VARIANTS: &'static [&'static str] = _

Names of the variants of this enum
source§

impl Copy for NamedChain

source§

impl Eq for NamedChain

source§

impl StructuralEq for NamedChain

source§

impl StructuralPartialEq for NamedChain

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.