anychain-ripple 0.1.9

A Rust library for interacting with the Ripple blockchain. It provides core functionalities such as transaction signing and serialization, address generation, and network communication.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use anychain_core::Format;

use core::fmt;

/// Represents the format of a Ripple address
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum RippleFormat {
    Standard,
}

impl Format for RippleFormat {}

impl fmt::Display for RippleFormat {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Standard")
    }
}