pub struct ChainConfig {Show 28 fields
pub chain_id: u64,
pub homestead_block: Option<u64>,
pub dao_fork_block: Option<u64>,
pub dao_fork_support: bool,
pub eip150_block: Option<u64>,
pub eip155_block: Option<u64>,
pub eip158_block: Option<u64>,
pub byzantium_block: Option<u64>,
pub constantinople_block: Option<u64>,
pub petersburg_block: Option<u64>,
pub istanbul_block: Option<u64>,
pub muir_glacier_block: Option<u64>,
pub berlin_block: Option<u64>,
pub london_block: Option<u64>,
pub arrow_glacier_block: Option<u64>,
pub gray_glacier_block: Option<u64>,
pub merge_netsplit_block: Option<u64>,
pub shanghai_time: Option<u64>,
pub cancun_time: Option<u64>,
pub prague_time: Option<u64>,
pub osaka_time: Option<u64>,
pub terminal_total_difficulty: Option<U256>,
pub terminal_total_difficulty_passed: bool,
pub ethash: Option<EthashConfig>,
pub clique: Option<CliqueConfig>,
pub parlia: Option<ParliaConfig>,
pub extra_fields: OtherFields,
pub deposit_contract_address: Option<Address>,
}
Expand description
Defines core blockchain settings per block.
Tailors unique settings for each network based on its genesis block.
Governs crucial blockchain behavior and adaptability.
Encapsulates parameters shaping network evolution and behavior.
See geth’s ChainConfig
struct
for the source of each field.
Fields§
§chain_id: u64
The network’s chain ID.
homestead_block: Option<u64>
The homestead switch block (None = no fork, 0 = already homestead).
dao_fork_block: Option<u64>
The DAO fork switch block (None = no fork).
dao_fork_support: bool
Whether or not the node supports the DAO hard-fork.
eip150_block: Option<u64>
The EIP-150 hard fork block (None = no fork).
eip155_block: Option<u64>
The EIP-155 hard fork block.
eip158_block: Option<u64>
The EIP-158 hard fork block.
byzantium_block: Option<u64>
The Byzantium hard fork block (None = no fork, 0 = already on byzantium).
constantinople_block: Option<u64>
The Constantinople hard fork block (None = no fork, 0 = already on constantinople).
petersburg_block: Option<u64>
The Petersburg hard fork block (None = no fork, 0 = already on petersburg).
istanbul_block: Option<u64>
The Istanbul hard fork block (None = no fork, 0 = already on istanbul).
muir_glacier_block: Option<u64>
The Muir Glacier hard fork block (None = no fork, 0 = already on muir glacier).
berlin_block: Option<u64>
The Berlin hard fork block (None = no fork, 0 = already on berlin).
london_block: Option<u64>
The London hard fork block (None = no fork, 0 = already on london).
arrow_glacier_block: Option<u64>
The Arrow Glacier hard fork block (None = no fork, 0 = already on arrow glacier).
gray_glacier_block: Option<u64>
The Gray Glacier hard fork block (None = no fork, 0 = already on gray glacier).
merge_netsplit_block: Option<u64>
Virtual fork after the merge to use as a network splitter.
shanghai_time: Option<u64>
Shanghai switch time (None = no fork, 0 = already on shanghai).
cancun_time: Option<u64>
Cancun switch time (None = no fork, 0 = already on cancun).
prague_time: Option<u64>
Prague switch time (None = no fork, 0 = already on prague).
osaka_time: Option<u64>
Osaka switch time (None = no fork, 0 = already on osaka).
terminal_total_difficulty: Option<U256>
Total difficulty reached that triggers the merge consensus upgrade.
terminal_total_difficulty_passed: bool
A flag specifying that the network already passed the terminal total difficulty. Its purpose is to disable legacy sync without having seen the TTD locally.
ethash: Option<EthashConfig>
Ethash parameters.
clique: Option<CliqueConfig>
Clique parameters.
parlia: Option<ParliaConfig>
Parlia parameters.
extra_fields: OtherFields
Additional fields specific to each chain.
deposit_contract_address: Option<Address>
The deposit contract address
Implementations§
source§impl ChainConfig
impl ChainConfig
sourcepub fn is_homestead_active_at_block(&self, block: u64) -> bool
pub fn is_homestead_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Homestead fork block.
sourcepub fn is_eip150_active_at_block(&self, block: u64) -> bool
pub fn is_eip150_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the EIP150 fork block.
sourcepub fn is_eip155_active_at_block(&self, block: u64) -> bool
pub fn is_eip155_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the EIP155 fork block.
sourcepub fn is_eip158_active_at_block(&self, block: u64) -> bool
pub fn is_eip158_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the EIP158 fork block.
sourcepub fn is_byzantium_active_at_block(&self, block: u64) -> bool
pub fn is_byzantium_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Byzantium fork block.
sourcepub fn is_constantinople_active_at_block(&self, block: u64) -> bool
pub fn is_constantinople_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Constantinople fork block.
sourcepub fn is_muir_glacier_active_at_block(&self, block: u64) -> bool
pub fn is_muir_glacier_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Muir Glacier (EIP-2384) fork block.
sourcepub fn is_petersburg_active_at_block(&self, block: u64) -> bool
pub fn is_petersburg_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Petersburg fork block.
sourcepub fn is_istanbul_active_at_block(&self, block: u64) -> bool
pub fn is_istanbul_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Istanbul fork block.
sourcepub fn is_berlin_active_at_block(&self, block: u64) -> bool
pub fn is_berlin_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Berlin fork block.
sourcepub fn is_london_active_at_block(&self, block: u64) -> bool
pub fn is_london_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the London fork block.
sourcepub fn is_arrow_glacier_active_at_block(&self, block: u64) -> bool
pub fn is_arrow_glacier_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Arrow Glacier (EIP-4345) fork block.
sourcepub fn is_gray_glacier_active_at_block(&self, block: u64) -> bool
pub fn is_gray_glacier_active_at_block(&self, block: u64) -> bool
Checks if the blockchain is active at or after the Gray Glacier (EIP-5133) fork block.
sourcepub fn is_shanghai_active_at_block_and_timestamp(
&self,
block: u64,
timestamp: u64,
) -> bool
pub fn is_shanghai_active_at_block_and_timestamp( &self, block: u64, timestamp: u64, ) -> bool
Checks if the blockchain is active at or after the Shanghai fork block and the specified timestamp.
sourcepub fn is_cancun_active_at_block_and_timestamp(
&self,
block: u64,
timestamp: u64,
) -> bool
pub fn is_cancun_active_at_block_and_timestamp( &self, block: u64, timestamp: u64, ) -> bool
Checks if the blockchain is active at or after the Cancun fork block and the specified timestamp.
Trait Implementations§
source§impl Clone for ChainConfig
impl Clone for ChainConfig
source§fn clone(&self) -> ChainConfig
fn clone(&self) -> ChainConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ChainConfig
impl Debug for ChainConfig
source§impl Default for ChainConfig
impl Default for ChainConfig
source§impl<'de> Deserialize<'de> for ChainConfigwhere
ChainConfig: Default,
impl<'de> Deserialize<'de> for ChainConfigwhere
ChainConfig: Default,
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 PartialEq for ChainConfig
impl PartialEq for ChainConfig
source§impl Serialize for ChainConfig
impl Serialize for ChainConfig
impl Eq for ChainConfig
impl StructuralPartialEq for ChainConfig
Auto Trait Implementations§
impl Freeze for ChainConfig
impl RefUnwindSafe for ChainConfig
impl Send for ChainConfig
impl Sync for ChainConfig
impl Unpin for ChainConfig
impl UnwindSafe for ChainConfig
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)