pub struct GenesisConfigBuilderRuntimeCaller<'a, EHF = ()>
where EHF: HostFunctions,
{ /* private fields */ }
Expand description

A utility that facilitates calling the GenesisBuilder API from the runtime wasm code blob.

EHF type allows to specify the extended host function required for building runtime’s genesis config. The type will be combined with default sp_io::SubstrateHostFunctions.

Implementations§

source§

impl<'a, EHF> GenesisConfigBuilderRuntimeCaller<'a, EHF>
where EHF: HostFunctions,

source

pub fn new(code: &'a [u8]) -> Self

Creates new instance using the provided code blob.

This code is later referred to as runtime.

source

pub fn get_default_config(&self) -> Result<Value, String>

Returns a json representation of the default RuntimeGenesisConfig provided by the runtime.

Calls GenesisBuilder::create_default_config in the runtime.

source

pub fn get_storage_for_config(&self, config: Value) -> Result<Storage, String>

Builds RuntimeGenesisConfig from given json blob and returns the genesis state.

Calls GenesisBuilder::build_config provided by the runtime.

source

pub fn get_storage_for_patch(&self, patch: Value) -> Result<Storage, String>

Creates the genesis state by patching the default RuntimeGenesisConfig.

This function generates the RuntimeGenesisConfig for the runtime by applying a provided JSON patch. The patch modifies the default RuntimeGenesisConfig allowing customization of the specific keys. The resulting RuntimeGenesisConfig is then deserialized from the patched JSON representation and stored in the storage.

If the provided JSON patch is incorrect or the deserialization fails the error will be returned.

The patching process modifies the default RuntimeGenesisConfig according to the following rules:

  1. Existing keys in the default configuration will be overridden by the corresponding values in the patch.
  2. If a key exists in the patch but not in the default configuration, it will be added to the resulting RuntimeGenesisConfig.
  3. Keys in the default configuration that have null values in the patch will be removed from the resulting RuntimeGenesisConfig. This is helpful for changing enum variant value.

Please note that the patch may contain full RuntimeGenesisConfig.

Trait Implementations§

source§

impl<'a, EHF> FetchRuntimeCode for GenesisConfigBuilderRuntimeCaller<'a, EHF>
where EHF: HostFunctions,

source§

fn fetch_runtime_code(&self) -> Option<Cow<'_, [u8]>>

Fetch the runtime :code. Read more

Auto Trait Implementations§

§

impl<'a, EHF> Freeze for GenesisConfigBuilderRuntimeCaller<'a, EHF>
where EHF: Sync + Send + 'static,

§

impl<'a, EHF = ()> !RefUnwindSafe for GenesisConfigBuilderRuntimeCaller<'a, EHF>

§

impl<'a, EHF> Send for GenesisConfigBuilderRuntimeCaller<'a, EHF>
where EHF: Sync + Send + 'static,

§

impl<'a, EHF> Sync for GenesisConfigBuilderRuntimeCaller<'a, EHF>
where EHF: Sync + Send + 'static,

§

impl<'a, EHF> Unpin for GenesisConfigBuilderRuntimeCaller<'a, EHF>
where EHF: Sync + Send + 'static + Unpin,

§

impl<'a, EHF = ()> !UnwindSafe for GenesisConfigBuilderRuntimeCaller<'a, EHF>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedConversion for T

source§

fn checked_from<T>(t: T) -> Option<Self>
where Self: TryFrom<T>,

Convert from a value of T into an equivalent instance of Option<Self>. Read more
source§

fn checked_into<T>(self) -> Option<T>
where Self: TryInto<T>,

Consume self to return Some equivalent value of Option<T>. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

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

source§

fn from_ref(outer: &Outer) -> &T

Get a reference to the inner from the outer.

source§

fn from_mut(outer: &mut Outer) -> &mut T

Get a mutable reference to the inner from the outer.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatedConversion for T

source§

fn saturated_from<T>(t: T) -> Self
where Self: UniqueSaturatedFrom<T>,

Convert from a value of T into an equivalent instance of Self. Read more
source§

fn saturated_into<T>(self) -> T
where Self: UniqueSaturatedInto<T>,

Consume self to return an equivalent value of T. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<S, T> UncheckedInto<T> for S
where T: UncheckedFrom<S>,

source§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.
source§

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

source§

fn unique_saturated_into(self) -> T

Consume self to return an equivalent value of T.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> JsonSchemaMaybe for T