xrpl_types 0.9.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
//! 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 currency;
pub mod offer;
pub mod transaction;

pub use account::*;
pub use amount::*;
pub use currency::*;
pub use offer::*;
pub use transaction::*;