xrpl_binary_codec 0.16.7

Binary serialization for XRPL Protocol objects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Binary serialization for XRPL Protocol objects.

#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

pub mod deserializer;
mod error;
pub mod hash;
pub mod serialize;
/// Implements serialization according to <https://xrpl.org/serialization.html>
pub mod serializer;
pub mod sign;

pub use error::*;