tendermint 0.10.1

Tendermint is a high-performance blockchain consensus engine that powers Byzantine fault tolerant applications written in any programming language. This crate provides core types for representing information about Tendermint blockchain networks, including chain information types, secret connections, and remote procedure calls (JSONRPC).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tendermint RPC: JSONRPC over HTTP support
//!
//! Wraps the RPC API described at: <https://tendermint.com/rpc/>

mod client;
pub mod endpoint;
pub mod error;
mod id;
mod method;
pub mod request;
pub mod response;
mod version;

pub use self::{
    client::Client, error::Error, id::Id, method::Method, request::Request, response::Response,
    version::Version,
};