melwalletd-prot 0.3.1

RPC protocol for Themelio's reference wallet microservice
Documentation
1
2
3
4
5
6
7
8
//! Crate defining the [nanorpc] (JSON-RPC 2.0) protocol exposed by melwalletd, the reference Themelio wallet microservice implementation.
//!
//! As a user, you almost certainly only care about [MelwalletdClient], which you would generally want to wrap around an HTTP-based [nanorpc::RpcTransport] in order to talk to melwalletd.
mod protocol;
pub use protocol::*;

pub mod types;
// pub use types::*;