6 releases
new 0.2.2 | Oct 23, 2024 |
---|---|
0.2.1 | Sep 27, 2024 |
0.2.0 | Aug 9, 2024 |
0.1.1 | Jul 30, 2024 |
0.0.1 | Mar 14, 2024 |
#58 in #parity
320 downloads per month
Used in frame-decode
135KB
2.5K
SLoC
scale-info-legacy
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 (viaTypeRegistry::insert()
) and then query to resolve some type name to the relevant information (viaTypeRegistry::resolve_type()
).TypeRegistrySet
: a set of the above, which will resolve types (viaTypeRegistrySet::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 isChainTypeRegistry::for_spec_version()
, which returns aTypeRegistrySet
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 aValue
type (a bit likeserde_json
'sValue
type).
Dependencies
~1.5–2.3MB
~42K SLoC