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

#[derive(Error, PartialEq, Debug)]
#[non_exhaustive]
pub enum XRPLFaucetException {
    #[error(
        "Cannot fund an account on an issuing chain. Accounts must be created via the bridge."
    )]
    CannotFundSidechainAccount,
    #[error("Cannot derive a faucet URL from the client host.")]
    CannotDeriveFaucetUrl,
    #[error("Funding request timed out.")]
    FundingTimeout,
}