Expand description
Types associated with accessing and working with storage items.
Structs§
- Default
Address - A concrete storage address. This can be created from static values (ie those generated
via the
subxtmacro) or dynamic values viadynamic. - Static
Storage Key - A storage key used as part of the static codegen.
- Storage
- Query the runtime storage.
- Storage
Client - Query the runtime storage.
- Storage
KeyValue Pair - A pair of keys and values together with all the bytes that make up the storage address.
keysisNoneif non-concat hashers are used. In this case the keys could not be extracted back from the key_bytes.
Traits§
- Address
- This represents a storage address. Anything implementing this trait can be used to fetch and iterate over storage entries.
- Storage
Key - This trait should be implemented by anything that can be used as one or multiple storage keys.
Functions§
- dynamic
- Construct a new dynamic storage lookup.
Type Aliases§
- Dynamic
Address - A typical storage address constructed at runtime rather than via the
subxtmacro; this has no restriction on what it can be used for (since we don’t statically know). - Static
Address - A storage address constructed by the static codegen.