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
12
use thiserror_no_std::Error;

use crate::core::exceptions::XRPLCoreException;

pub type XRPLWalletResult<T, E = XRPLWalletException> = core::result::Result<T, E>;

#[derive(Debug, PartialEq, Error)]
#[non_exhaustive]
pub enum XRPLWalletException {
    #[error("XRPL Core error: {0}")]
    XRPLCoreError(#[from] XRPLCoreException),
}