Skip to main content

Cardano serialization library

This is a library for serialization and deserialization of data structures used in Cardano’s Haskell implementation of Shelley along with useful utility functions.

Using the library

Due to the portability of Rust, you can bind to the native Rust library from any common programming language (including C and WebAssembly). This library generates both Typescript and Flow type definitions, and you can check out possible options by just looking at Flow types. You can also explore the example folder to see how to use this library from Typescript and experiment with it.

Benefits of using this library

Serialization/deserialization code is automatically generated from Cardano’s official specification, which guarantees it can easily stay up to date. This is enabled due to the use of an EMURGO-written tool called cddl-codegen, which can be re-used for other tasks such as the automatic generation of a Rust library for Cardano metadata specifications.

It is also easy to create scripts in Rust or WASM to share with stake pools, or even embed inside an online tool. The library is powerful and flexible enough to be used to power wallets and exchanges.

Other Cardano versions

If you are looking for legacy bindings, you can find them at:

Original binary specifications

You can find original CDDL specifications here.

Instructions

Before you start, see building, testing and publishing tips here. Then proceed exploring more in the doc folder, or follow the link to the repository below.

For more information: Go to GitHub repo