as-scale-codec
AS implementation of SCALE Codec
Overview
Codec
Examples
Encoding
import { Bool, String } from "as-scale-codec"
// Bool
const scaleBool = new Bool(true);
scaleBool.toU8a() // => [0x01]
// String
const scaleString = new ScaleString("a");
scaleString.toU8a() // => [0x04, 0x61]
// UInt64
const uInt64 = new UInt64(10);
uInt64.toU8a(); // => [0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]Decoding
Last updated