Skip to main content

Chain

Enum Chain 

Source
pub enum Chain {
    Ethereum,
    Arbitrum,
    Optimism,
    Polygon,
    Base,
    Bsc,
    Sonic,
    Avalanche,
    Celo,
    HyperEvm,
}
Expand description

EVM chains supported by waterpump-evm facades.

Variants are curated to chains where at least one facade has a V3ProtocolConfig. Chain IDs match the canonical EIP-155 values.

Variants§

§

Ethereum

Ethereum mainnet (chain ID 1).

§

Arbitrum

Arbitrum One (chain ID 42161).

§

Optimism

Optimism (chain ID 10).

§

Polygon

Polygon PoS (chain ID 137).

§

Base

Base (chain ID 8453).

§

Bsc

BNB Smart Chain (chain ID 56).

§

Sonic

Sonic (chain ID 146). Home of Shadow Exchange (R14 / R7 Slice C).

§

Avalanche

Avalanche C-Chain (chain ID 43114).

§

Celo

Celo (chain ID 42220).

§

HyperEvm

HyperEVM mainnet (chain ID 999). Home of Project X — R26 / spec docs/superpowers/specs/2026-05-12-r26-hyperevm-prjx-design.md.

Implementations§

Source§

impl Chain

Source

pub const ALL: &'static [Self]

Exhaustive runtime-iteration array of all supported chains.

Source

pub const fn id(self) -> u64

Canonical EIP-155 chain ID.

Source

pub const fn name(self) -> &'static str

Human-readable lower-snake-case name (matches CLI value name).

Source

pub const fn wrapped_native(self) -> Option<Address>

Canonical wrapped-native ERC20 for this chain.

Returns None for chains where the native token is already ERC20-compatible (e.g., Celo’s CELO).

Each Some(...) value is source-verified — see commit body for the cast-call / on-chain-fixture provenance trail. Spec §2 documents why wrapped-native is a chain property (not a V3ProtocolConfig property): a single facade CONFIG serves multiple chains with different WETH addresses (Uniswap V3 mainnet CONFIG → 5 chains → 5 different WETHs).

Trait Implementations§

Source§

impl Clone for Chain

Source§

fn clone(&self) -> Chain

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Chain

Source§

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

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

impl Display for Chain

Source§

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

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

impl Hash for Chain

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 PartialEq for Chain

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<u64> for Chain

Source§

type Error = u64

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

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

Performs the conversion.
Source§

impl Copy for Chain

Source§

impl Eq for Chain

Source§

impl StructuralPartialEq for Chain

Auto Trait Implementations§

§

impl Freeze for Chain

§

impl RefUnwindSafe for Chain

§

impl Send for Chain

§

impl Sync for Chain

§

impl Unpin for Chain

§

impl UnsafeUnpin for Chain

§

impl UnwindSafe for Chain

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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 T
where 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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

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

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.