package
0.1.1
Repository: https://github.com/peersyst/xrpl-go.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Binary Codec

This package contains functions to encode/decode to/from the ripple binary serialization format.

API

Encode

encoded, err := binarycodec.Encode(jsonObject)

Decode

json, err := binarycodec.Decode(hexEncodedString)

EncodeForMultisigning

encoded, err := binarycodec.EncodeForMultisigning(jsonObject, xrpAccountID)

EncodeForSigning

encoded, err := binarycodec.EncodeForSigning(jsonObject)

EncodeForSigningClaim

encoded, err := binarycodec.EncodeForSigningClaim(jsonObject)

EncodeQuality

encoded, err := binarycodec.EncodeQuality(amountString)

DecodeQuality

decoded, err := binarycodec.DecodeQuality(encoded)

DecodeLedgerData

ledgerData, err := binarycodec.DecodeLedgerData(hexEncodedString)