alloy_chains::spec

Struct Chain

Source
pub struct Chain {
    pub internal_id: String,
    pub name: String,
    pub average_blocktime_hint: Option<u64>,
    pub is_legacy: bool,
    pub supports_shanghai: bool,
    pub is_testnet: bool,
    pub native_currency_symbol: Option<String>,
    pub etherscan_api_url: Option<String>,
    pub etherscan_base_url: Option<String>,
    pub etherscan_api_key_name: Option<String>,
}
Expand description

Specification for a single chain.

Fields§

§internal_id: String

The chain’s internal ID. This is the Rust enum variant’s name.

§name: String

The chain’s name. This is used in CLI argument parsing, TOML serialization etc.

§average_blocktime_hint: Option<u64>

An optional hint for the average block time, in milliseconds.

§is_legacy: bool

Whether the chain is a legacy chain, which does not support EIP-1559.

§supports_shanghai: bool

Whether the chain supports the Shanghai hardfork.

§is_testnet: bool

Whether the chain is a testnet.

§native_currency_symbol: Option<String>

The chain’s native currency symbol (e.g. ETH).

§etherscan_api_url: Option<String>

The chain’s base block explorer API URL (e.g. https://api.etherscan.io/).

§etherscan_base_url: Option<String>

The chain’s base block explorer base URL (e.g. https://etherscan.io/).

§etherscan_api_key_name: Option<String>

The name of the environment variable that contains the Etherscan API key.

Implementations§

Source§

impl Chain

Source

pub fn new(c: NamedChain) -> Self

Constructs a new chain specification from the given NamedChain.

Trait Implementations§

Source§

impl Clone for Chain

Source§

fn clone(&self) -> Chain

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 Chain

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Chain

§

impl RefUnwindSafe for Chain

§

impl Send for Chain

§

impl Sync for Chain

§

impl Unpin 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, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> 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, 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.