12 open-source projects similar to soramitsu/scale-codec-cpp, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Scale Codec Cpp alternative.
Scale Codec written by golang, reference from polkascan/py-scale-codec.
Warning: After v0.2.19, the develop branch will do a structure refactor and big optimization.
Lightweight, efficient, binary serialization and deserialization codec
This library provides a clean wrapper around all the methods exposed by a Polkadot/Substrate network client and defines all the types exposed by a node. For complete documentation around the interfaces and their use, visit the documentation portal.
Substrate uses a lightweight and efficient encoding and decoding program to optimize how data is sent and received over the network. The program used to serialize and deserialize data is called the SCALE codec, with SCALE being an acronym for Simple Concatenated Aggregate Little-Endian.
This monorepo contains JavaScript implementation of SCALE (Simple Concatenated Aggregate Little-Endian) codec specification.
Making use of type information this library allows for conversion of SCALE encoded data(wrapped in a scales::Value) to any format that implements Serialize including dynamic types like serde_json::Value for example. The opposite conversion of arbitrary data(e.g. JSON) to SCALE binary format is…