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
//! Tendermint JSONRPC endpoints

pub mod abci_info;
pub mod abci_query;
pub mod block;
pub mod block_results;
pub mod blockchain;
pub mod broadcast;
pub mod commit;
pub mod genesis;
pub mod health;
pub mod net_info;
pub mod status;
pub mod validators;