Crates.io | scale-info-legacy |
lib.rs | scale-info-legacy |
version | 0.2.2 |
source | src |
created_at | 2024-03-14 15:20:28.983627 |
updated_at | 2024-10-23 14:14:05.754801 |
description | Create type information that can be used to decode historic data from Substrate based chains |
homepage | https://www.parity.io/ |
repository | https://github.com/paritytech/scale-info-legacy |
max_upload_size | |
id | 1173470 |
size | 143,100 |
This crate provides a set of types which build on each other. The ultimate goal is to be able to define the necessary type information needed to describe how historic Substrate types are SCALE encoded. The main types exposed here are as follows:
TypeRegistry
: the lowest level type which one can populate with type information (via TypeRegistry::insert()
)
and then query to resolve some type name to the relevant information (via TypeRegistry::resolve_type()
).TypeRegistrySet
: a set of the above, which will resolve types (via TypeRegistrySet::resolve_type()
) by working
through the inner type registries until it finds the relevant information (or doesn't find anything). This allows us
to combine type registries in different ways to alter how we resolve things.ChainTypeRegistry
: this type is constructed by deserializing some JSON (or similar) which describes all of the
types that we need to know about on a given chain. The main function here is ChainTypeRegistry::for_spec_version()
,
which returns a TypeRegistrySet
for resolving types for the given spec version.We also expose an InsertName
, which is built by parsing type names like Vec<T>
from strings, and used in
TypeRegistry::insert()
to insert types, and then LookupName
, which is built by parsing type names like
Vec<T>
, u8; 32
and (bool, u32)
and is used to lookup the corresponding type information via TypeRegistry::resolve_type()
and similar. Finally, TypeShape
is an enum used to describe the shape of the type inserted via TypeRegistry::insert()
.
This crate, like scale-info
, can be used in conjunction with crates like:
scale-decode
to decode SCALE encoded bytes
into custom types based on this type information.scale-encode
to SCALE encode custom types
into bytes based on this type information.scale-value
to SCALE encode or decode from a
Value
type (a bit like serde_json
's Value
type).