pub struct RollupConfig {Show 23 fields
pub genesis: Genesis,
pub block_time: u64,
pub max_sequencer_drift: u64,
pub seq_window_size: u64,
pub channel_timeout_bedrock: u64,
pub channel_timeout_granite: u64,
pub l1_chain_id: Option<u128>,
pub l2_chain_id: Option<u128>,
pub regolith_time: Option<u64>,
pub canyon_time: Option<u64>,
pub delta_time: Option<u64>,
pub ecotone_time: Option<u64>,
pub fjord_time: Option<u64>,
pub granite_time: Option<u64>,
pub interop_time: Option<u64>,
pub batch_inbox_address: Address,
pub deposit_contract_address: Address,
pub l1_system_config_address: Address,
pub protocol_versions_address: Option<Address>,
pub da_challenge_address: Option<Address>,
pub da_challenge_window: u64,
pub da_resolve_window: u64,
pub use_plasma: bool,
}
Available on crate feature
rpc-types
only.Fields§
§genesis: Genesis
§block_time: u64
§max_sequencer_drift: u64
§seq_window_size: u64
§channel_timeout_bedrock: u64
§channel_timeout_granite: u64
§l1_chain_id: Option<u128>
§l2_chain_id: Option<u128>
§regolith_time: Option<u64>
§canyon_time: Option<u64>
§delta_time: Option<u64>
§ecotone_time: Option<u64>
§fjord_time: Option<u64>
§granite_time: Option<u64>
§interop_time: Option<u64>
§batch_inbox_address: Address
§deposit_contract_address: Address
§l1_system_config_address: Address
§protocol_versions_address: Option<Address>
§da_challenge_address: Option<Address>
§da_challenge_window: u64
§da_resolve_window: u64
§use_plasma: bool
Trait Implementations§
Source§impl Clone for RollupConfig
impl Clone for RollupConfig
Source§fn clone(&self) -> RollupConfig
fn clone(&self) -> RollupConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RollupConfig
impl Debug for RollupConfig
Source§impl<'de> Deserialize<'de> for RollupConfig
impl<'de> Deserialize<'de> for RollupConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RollupConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RollupConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RollupConfig
impl PartialEq for RollupConfig
Source§impl Serialize for RollupConfig
impl Serialize for RollupConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for RollupConfig
impl StructuralPartialEq for RollupConfig
Auto Trait Implementations§
impl Freeze for RollupConfig
impl RefUnwindSafe for RollupConfig
impl Send for RollupConfig
impl Sync for RollupConfig
impl Unpin for RollupConfig
impl UnwindSafe for RollupConfig
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more