tendermint 0.7.0-alpha1

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

pub mod abci_info;
pub mod block;
pub mod blockchain;
pub mod commit;
pub mod genesis;
pub mod net_info;
pub mod status;
pub mod validators;