pub enum EthereumHardfork {
Show 19 variants
Frontier,
Homestead,
Dao,
Tangerine,
SpuriousDragon,
Byzantium,
Constantinople,
Petersburg,
Istanbul,
MuirGlacier,
Berlin,
London,
ArrowGlacier,
GrayGlacier,
Paris,
Shanghai,
Cancun,
Prague,
Osaka,
}
Expand description
The name of an Ethereum hardfork.
Variants§
Frontier
Homestead
Homestead: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/homestead.md.
Dao
The DAO fork: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/dao-fork.md.
Tangerine
SpuriousDragon
Spurious Dragon: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md.
Byzantium
Byzantium: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/byzantium.md.
Constantinople
Constantinople: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/constantinople.md.
Petersburg
Petersburg: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/petersburg.md.
Istanbul
MuirGlacier
Muir Glacier: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/muir-glacier.md.
Berlin
Berlin: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/berlin.md.
London
London: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/london.md.
ArrowGlacier
Arrow Glacier: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/arrow-glacier.md.
GrayGlacier
Gray Glacier: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/gray-glacier.md.
Paris
Paris: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/paris.md.
Shanghai
Cancun
Cancun.
Prague
Prague: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/prague.md
Osaka
Implementations§
Source§impl EthereumHardfork
impl EthereumHardfork
Sourcepub fn activation_block(&self, chain: Chain) -> Option<u64>
pub fn activation_block(&self, chain: Chain) -> Option<u64>
Retrieves the activation block for the specified hardfork on the given chain.
Sourcepub const fn mainnet_activation_block(&self) -> Option<u64>
pub const fn mainnet_activation_block(&self) -> Option<u64>
Retrieves the activation block for the specified hardfork on the Ethereum mainnet.
Sourcepub const fn sepolia_activation_block(&self) -> Option<u64>
pub const fn sepolia_activation_block(&self) -> Option<u64>
Retrieves the activation block for the specified hardfork on the Sepolia testnet.
Sourcepub const fn arbitrum_sepolia_activation_block(&self) -> Option<u64>
pub const fn arbitrum_sepolia_activation_block(&self) -> Option<u64>
Retrieves the activation block for the specified hardfork on the Arbitrum Sepolia testnet.
Sourcepub const fn arbitrum_activation_block(&self) -> Option<u64>
pub const fn arbitrum_activation_block(&self) -> Option<u64>
Retrieves the activation block for the specified hardfork on the Arbitrum One mainnet.
Sourcepub fn activation_timestamp(&self, chain: Chain) -> Option<u64>
pub fn activation_timestamp(&self, chain: Chain) -> Option<u64>
Retrieves the activation timestamp for the specified hardfork on the given chain.
Sourcepub const fn mainnet_activation_timestamp(&self) -> Option<u64>
pub const fn mainnet_activation_timestamp(&self) -> Option<u64>
Retrieves the activation timestamp for the specified hardfork on the Ethereum mainnet.
Sourcepub const fn sepolia_activation_timestamp(&self) -> Option<u64>
pub const fn sepolia_activation_timestamp(&self) -> Option<u64>
Retrieves the activation timestamp for the specified hardfork on the Sepolia testnet.
Sourcepub const fn holesky_activation_timestamp(&self) -> Option<u64>
pub const fn holesky_activation_timestamp(&self) -> Option<u64>
Retrieves the activation timestamp for the specified hardfork on the Holesky testnet.
Sourcepub const fn arbitrum_sepolia_activation_timestamp(&self) -> Option<u64>
pub const fn arbitrum_sepolia_activation_timestamp(&self) -> Option<u64>
Retrieves the activation timestamp for the specified hardfork on the Arbitrum Sepolia testnet.
Sourcepub const fn arbitrum_activation_timestamp(&self) -> Option<u64>
pub const fn arbitrum_activation_timestamp(&self) -> Option<u64>
Retrieves the activation timestamp for the specified hardfork on the Arbitrum One mainnet.
Sourcepub const fn mainnet() -> [(Self, ForkCondition); 17]
pub const fn mainnet() -> [(Self, ForkCondition); 17]
Ethereum mainnet list of hardforks.
Sourcepub const fn sepolia() -> [(Self, ForkCondition); 15]
pub const fn sepolia() -> [(Self, ForkCondition); 15]
Ethereum sepolia list of hardforks.
Sourcepub const fn holesky() -> [(Self, ForkCondition); 15]
pub const fn holesky() -> [(Self, ForkCondition); 15]
Ethereum holesky list of hardforks.
Trait Implementations§
Source§impl Clone for EthereumHardfork
impl Clone for EthereumHardfork
Source§fn clone(&self) -> EthereumHardfork
fn clone(&self) -> EthereumHardfork
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for EthereumHardfork
impl Debug for EthereumHardfork
Source§impl<'de> Deserialize<'de> for EthereumHardfork
impl<'de> Deserialize<'de> for EthereumHardfork
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for EthereumHardfork
impl Display for EthereumHardfork
Source§impl FromStr for EthereumHardfork
impl FromStr for EthereumHardfork
Source§impl Hash for EthereumHardfork
impl Hash for EthereumHardfork
Source§impl Ord for EthereumHardfork
impl Ord for EthereumHardfork
Source§fn cmp(&self, other: &EthereumHardfork) -> Ordering
fn cmp(&self, other: &EthereumHardfork) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for EthereumHardfork
impl PartialEq for EthereumHardfork
Source§impl PartialOrd for EthereumHardfork
impl PartialOrd for EthereumHardfork
Source§impl Serialize for EthereumHardfork
impl Serialize for EthereumHardfork
impl Copy for EthereumHardfork
impl Eq for EthereumHardfork
impl StructuralPartialEq for EthereumHardfork
Auto Trait Implementations§
impl Freeze for EthereumHardfork
impl RefUnwindSafe for EthereumHardfork
impl Send for EthereumHardfork
impl Sync for EthereumHardfork
impl Unpin for EthereumHardfork
impl UnwindSafe for EthereumHardfork
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Frontier
: 0 bytesHomestead
: 0 bytesDao
: 0 bytesTangerine
: 0 bytesSpuriousDragon
: 0 bytesByzantium
: 0 bytesConstantinople
: 0 bytesPetersburg
: 0 bytesIstanbul
: 0 bytesMuirGlacier
: 0 bytesBerlin
: 0 bytesLondon
: 0 bytesArrowGlacier
: 0 bytesGrayGlacier
: 0 bytesParis
: 0 bytesShanghai
: 0 bytesCancun
: 0 bytesPrague
: 0 bytesOsaka
: 0 bytes