Module subxt::dynamic

source ·
Expand description

This module provides the entry points to create dynamic transactions, storage and constant lookups.

Structs

This is the result of making a dynamic request to a node. From this, we can return the raw SCALE bytes that we were handed back, or we can complete the decoding of the bytes into a DecodedValue type.
Value holds a representation of some value that has been decoded, as well as some arbitrary context.

Functions

Construct a new dynamic constant lookup.
Construct a new dynamic storage lookup.
Construct a new dynamic storage lookup to the root of some entry.
Construct a new dynamic transaction payload to submit to a node.

Type Definitions

A scale_value::Value type endowed with contextual information regarding what type was used to decode each part of it. This implements crate::metadata::DecodeWithMetadata, and is used as a return type for dynamic requests.