xrpl-rust 1.1.0

A 100% Rust library to interact with the XRPL
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core codec functions for interacting with the XRPL.

pub mod addresscodec;
pub mod binarycodec;
pub mod exceptions;
pub mod keypairs;

pub use self::binarycodec::binary_wrappers::BinaryParser;
pub use self::binarycodec::binary_wrappers::BinarySerializer;
pub use self::binarycodec::binary_wrappers::Parser;
pub use self::binarycodec::definitions::load_definition_map;