Struct sc_chain_spec::GenericChainSpec
source · pub struct GenericChainSpec<G, E = NoExtension> { /* private fields */ }
Expand description
A configuration of a chain. Can be used to build a genesis block.
Implementations§
source§impl<G, E> ChainSpec<G, E>
impl<G, E> ChainSpec<G, E>
sourcepub fn boot_nodes(&self) -> &[MultiaddrWithPeerId]
pub fn boot_nodes(&self) -> &[MultiaddrWithPeerId]
A list of bootnode addresses.
sourcepub fn telemetry_endpoints(&self) -> &Option<TelemetryEndpoints>
pub fn telemetry_endpoints(&self) -> &Option<TelemetryEndpoints>
Telemetry endpoints (if any)
sourcepub fn protocol_id(&self) -> Option<&str>
pub fn protocol_id(&self) -> Option<&str>
Network protocol id.
sourcepub fn properties(&self) -> Properties
pub fn properties(&self) -> Properties
Additional loosly-typed properties of the chain.
Returns an empty JSON object if ‘properties’ not defined in config
sourcepub fn add_boot_node(&mut self, addr: MultiaddrWithPeerId)
pub fn add_boot_node(&mut self, addr: MultiaddrWithPeerId)
Add a bootnode to the list.
sourcepub fn extensions(&self) -> &E
pub fn extensions(&self) -> &E
Returns a reference to the defined chain spec extensions.
sourcepub fn extensions_mut(&mut self) -> &mut E
pub fn extensions_mut(&mut self) -> &mut E
Returns a mutable reference to the defined chain spec extensions.
sourcepub fn from_genesis<F: Fn() -> G + 'static + Send + Sync>(
name: &str,
id: &str,
chain_type: ChainType,
constructor: F,
boot_nodes: Vec<MultiaddrWithPeerId>,
telemetry_endpoints: Option<TelemetryEndpoints>,
protocol_id: Option<&str>,
fork_id: Option<&str>,
properties: Option<Properties>,
extensions: E
) -> Self
pub fn from_genesis<F: Fn() -> G + 'static + Send + Sync>( name: &str, id: &str, chain_type: ChainType, constructor: F, boot_nodes: Vec<MultiaddrWithPeerId>, telemetry_endpoints: Option<TelemetryEndpoints>, protocol_id: Option<&str>, fork_id: Option<&str>, properties: Option<Properties>, extensions: E ) -> Self
Create hardcoded spec.
source§impl<G, E: DeserializeOwned> ChainSpec<G, E>
impl<G, E: DeserializeOwned> ChainSpec<G, E>
Trait Implementations§
source§impl<G: RuntimeGenesis, E> BuildStorage for ChainSpec<G, E>
impl<G: RuntimeGenesis, E> BuildStorage for ChainSpec<G, E>
source§impl<G, E> ChainSpec for ChainSpec<G, E>where
G: RuntimeGenesis + 'static,
E: GetExtension + Serialize + Clone + Send + Sync + 'static,
impl<G, E> ChainSpec for ChainSpec<G, E>where G: RuntimeGenesis + 'static, E: GetExtension + Serialize + Clone + Send + Sync + 'static,
source§fn boot_nodes(&self) -> &[MultiaddrWithPeerId]
fn boot_nodes(&self) -> &[MultiaddrWithPeerId]
A list of bootnode addresses.
source§fn chain_type(&self) -> ChainType
fn chain_type(&self) -> ChainType
Type of the chain.
source§fn telemetry_endpoints(&self) -> &Option<TelemetryEndpoints>
fn telemetry_endpoints(&self) -> &Option<TelemetryEndpoints>
Telemetry endpoints (if any)
source§fn protocol_id(&self) -> Option<&str>
fn protocol_id(&self) -> Option<&str>
Network protocol id.
source§fn properties(&self) -> Properties
fn properties(&self) -> Properties
Additional loosly-typed properties of the chain. Read more
source§fn add_boot_node(&mut self, addr: MultiaddrWithPeerId)
fn add_boot_node(&mut self, addr: MultiaddrWithPeerId)
Add a bootnode to the list.
source§fn extensions(&self) -> &dyn GetExtension
fn extensions(&self) -> &dyn GetExtension
Returns a reference to the defined chain spec extensions.
source§fn extensions_mut(&mut self) -> &mut dyn GetExtension
fn extensions_mut(&mut self) -> &mut dyn GetExtension
Returns a mutable reference to the defined chain spec extensions.
source§fn as_storage_builder(&self) -> &dyn BuildStorage
fn as_storage_builder(&self) -> &dyn BuildStorage
Return StorageBuilder for this spec.
source§fn cloned_box(&self) -> Box<dyn ChainSpec>
fn cloned_box(&self) -> Box<dyn ChainSpec>
Returns a cloned
Box<dyn ChainSpec>
.source§fn set_storage(&mut self, storage: Storage)
fn set_storage(&mut self, storage: Storage)
Set the storage that should be used by this chain spec. Read more
Auto Trait Implementations§
impl<G, E = Option<()>> !RefUnwindSafe for ChainSpec<G, E>
impl<G, E> Send for ChainSpec<G, E>where E: Send,
impl<G, E> Sync for ChainSpec<G, E>where E: Sync,
impl<G, E> Unpin for ChainSpec<G, E>where E: Unpin,
impl<G, E = Option<()>> !UnwindSafe for ChainSpec<G, E>
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
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, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.