Struct tc_chain_spec::GenericChainSpec[][src]

pub struct GenericChainSpec<G, E = NoExtension> { /* fields omitted */ }

A configuration of a chain. Can be used to build a genesis block.

Implementations

impl<G, E> ChainSpec<G, E>[src]

pub fn boot_nodes(&self) -> &[MultiaddrWithPeerId][src]

A list of bootnode addresses.

pub fn name(&self) -> &str[src]

Spec name.

pub fn id(&self) -> &str[src]

Spec id.

pub fn telemetry_endpoints(&self) -> &Option<TelemetryEndpoints>[src]

Telemetry endpoints (if any)

pub fn protocol_id(&self) -> Option<&str>[src]

Network protocol id.

pub fn properties(&self) -> Properties[src]

Additional loosly-typed properties of the chain.

Returns an empty JSON object if ‘properties’ not defined in config

pub fn add_boot_node(&mut self, addr: MultiaddrWithPeerId)[src]

Add a bootnode to the list.

pub fn extensions(&self) -> &E[src]

Returns a reference to defined chain spec extensions.

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>,
    properties: Option<Properties>,
    extensions: E
) -> Self
[src]

Create hardcoded spec.

impl<G, E: DeserializeOwned> ChainSpec<G, E>[src]

pub fn from_json_bytes(
    json: impl Into<Cow<'static, [u8]>>
) -> Result<Self, String>
[src]

Parse json content into a ChainSpec

pub fn from_json_file(path: PathBuf) -> Result<Self, String>[src]

Parse json file into a ChainSpec

impl<G: RuntimeGenesis, E: Serialize + Clone + 'static> ChainSpec<G, E>[src]

pub fn as_json(&self, raw: bool) -> Result<String, String>[src]

Dump to json string.

Trait Implementations

impl<G: RuntimeGenesis, E> BuildStorage for ChainSpec<G, E>[src]

impl<G, E> ChainSpec for ChainSpec<G, E> where
    G: RuntimeGenesis + 'static,
    E: GetExtension + Serialize + Clone + Send + Sync + 'static, 
[src]

impl<G, E: Clone> Clone for ChainSpec<G, E>[src]

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

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> CheckedConversion for T[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> DynClone for T where
    T: Clone
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 

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