xrpl_types 0.12.0

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

pub mod account;
pub mod amount;
pub mod book;
pub mod currency;
pub mod ledger_index;
pub mod transaction;

pub use account::*;
pub use amount::*;
pub use book::*;
pub use currency::*;
pub use ledger_index::*;
pub use transaction::*;