Enum vapjson::spec::spec::ForkSpec[][src]

pub enum ForkSpec {
    EIP150,
    EIP158,
    Frontier,
    Homestead,
    Byzantium,
    Constantinople,
    ConstantinopleFix,
    Istanbul,
    EIP158ToByzantiumAt5,
    FrontierToHomesteadAt5,
    HomesteadToDaoAt5,
    HomesteadToEIP150At5,
}

Fork spec definition

Variants

EIP150

EIP 150 Tangerine Whistle: Gas cost changes for IO-heavy operations (#2,463,000, 2016-10-18)

EIP158

EIP 158/EIP 161 Spurious Dragon: State trie clearing (#2,675,000, 2016-11-22)

Frontier

Frontier (#1, 2015-07-30)

Homestead

Homestead (#1,150,000, 2016-03-14)

Byzantium

Byzantium Metropolis phase 1 (#4,370,000, 2017-10-16)

Constantinople

Constantinople Metropolis phase 2 (#7,280,000, 2019-02-28)

ConstantinopleFix

Constantinople transition test-net

Istanbul

Istanbul (To be announced)

EIP158ToByzantiumAt5

Byzantium transition test-net

FrontierToHomesteadAt5

Homestead transition test-net

HomesteadToDaoAt5

Homestead transition test-net

HomesteadToEIP150At5

EIP158/EIP161 transition test-net

Trait Implementations

impl Debug for ForkSpec[src]

impl<'de> Deserialize<'de> for ForkSpec[src]

impl Eq for ForkSpec[src]

impl Ord for ForkSpec[src]

impl PartialEq<ForkSpec> for ForkSpec[src]

impl PartialOrd<ForkSpec> for ForkSpec[src]

impl StructuralEq for ForkSpec[src]

impl StructuralPartialEq for ForkSpec[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,