Struct sc_chain_spec::GenericChainSpec [−][src]
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]
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
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]
json: impl Into<Cow<'static, [u8]>>
) -> Result<Self, String>
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]
Trait Implementations
impl<G: RuntimeGenesis, E> BuildStorage for ChainSpec<G, E>
[src]
fn build_storage(&self) -> Result<Storage, String>
[src]
fn assimilate_storage(&self, _: &mut Storage) -> Result<(), String>
[src]
impl<G, E> ChainSpec for ChainSpec<G, E> where
G: RuntimeGenesis + 'static,
E: GetExtension + Serialize + Clone + Send + 'static,
[src]
G: RuntimeGenesis + 'static,
E: GetExtension + Serialize + Clone + Send + 'static,
fn boot_nodes(&self) -> &[MultiaddrWithPeerId]
[src]
fn name(&self) -> &str
[src]
fn id(&self) -> &str
[src]
fn chain_type(&self) -> ChainType
[src]
fn telemetry_endpoints(&self) -> &Option<TelemetryEndpoints>
[src]
fn protocol_id(&self) -> Option<&str>
[src]
fn properties(&self) -> Properties
[src]
fn add_boot_node(&mut self, addr: MultiaddrWithPeerId)
[src]
fn extensions(&self) -> &dyn GetExtension
[src]
fn as_json(&self, raw: bool) -> Result<String, String>
[src]
fn as_storage_builder(&self) -> &dyn BuildStorage
[src]
fn cloned_box(&self) -> Box<dyn ChainSpec>
[src]
fn set_storage(&mut self, storage: Storage)
[src]
fn set_light_sync_state(&mut self, light_sync_state: SerializableLightSyncState)
[src]
impl<G, E: Clone> Clone for ChainSpec<G, E>
[src]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl<G, E = Option<()>> !RefUnwindSafe for ChainSpec<G, E>
impl<G, E> Send for ChainSpec<G, E> where
E: Send,
E: Send,
impl<G, E> Sync for ChainSpec<G, E> where
E: Sync,
E: Sync,
impl<G, E> Unpin for ChainSpec<G, E> where
E: Unpin,
E: Unpin,
impl<G, E = Option<()>> !UnwindSafe for ChainSpec<G, E>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CheckedConversion for T
[src]
pub fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
pub fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
pub fn __clone_box(&self, Private) -> *mut ()
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
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> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> SaturatedConversion for T
[src]
pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
T: UncheckedFrom<S>,
pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
T: Bounded,
S: TryInto<T>,
pub fn unique_saturated_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,