xrpl_types 0.16.7

Core types and related functions for the XRP Ledger
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types and related functions for the XRP Ledger. Reused between Web and
//! WebSocket clients and potentially for server-side code.

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

mod error;
pub mod serialize;
/// Types in internal canonical binary format <https://xrpl.org/serialization.html#type-list>
pub mod types;

pub use error::*;
pub use types::*;