onemoney-protocol 0.18.0

Official Rust SDK for OneMoney Protocol - L1 blockchain network client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! API interaction modules for the OneMoney SDK.

pub mod accounts;
pub mod chains;
pub mod checkpoints;
pub mod governance;
pub mod multisig;
pub mod tokens;
pub mod transactions;

#[cfg(feature = "bridge")]
pub mod bridge;

// Re-export client types from the new client module
// Re-export commonly used API types now from types module
pub use om_rest_types::*;

pub use crate::client::{Client, ClientBuilder, Network};