Module ext

Module ext 

Source

Re-exports§

pub use gear_core;
pub use gear_core_errors;
pub use sp_core;
pub use sp_runtime;
pub use sp_runtime::codec;
pub use sp_runtime::scale_info;
pub use subxt;

Modules§

codec
Parity SCALE Codec
frame_metadata
Decodable variant of the RuntimeMetadata.
futures
Abstractions for asynchronous programming.
jsonrpsee
jsonrpsee wrapper crate.
scale_bits
This small utility crate provides two separate things:
scale_decode
parity-scale-codec provides a Decode trait which allows bytes to be scale decoded into types based on the shape of those types. This crate builds on this, and allows bytes to be decoded into types based on type information, rather than the shape of the target type. At a high level, this crate just aims to do the reverse of the scale-encode crate.
scale_encode
parity-scale-codec provides an Encode trait which allows types to SCALE encode themselves based on their shape. This crate builds on this, and allows types to encode themselves based on type information from a TypeResolver implementation (one such implementation being a scale_info::PortableRegistry). It exposes two traits:
scale_value
This crate exposes the Value type and related subtypes, which are used as the runtime representations of SCALE encoded data (much like serde_json::Value is a runtime representation of JSON data).
subxt_core
subxt-core
subxt_rpcs
This crate provides a low level RPC interface to Substrate based nodes.