tendermint-rpc 0.40.4

tendermint-rpc contains the core types returned by a Tendermint node's RPC endpoint. All networking related features are feature guarded to keep the dependencies small in cases where only the core types are needed.
Documentation
//! Tendermint JSON-RPC endpoints

pub mod abci_info;
pub mod abci_query;
pub mod block;
pub mod block_by_hash;
pub mod block_results;
pub mod block_search;
pub mod blockchain;
pub mod broadcast;
pub mod commit;
pub mod consensus_params;
pub mod consensus_state;
pub mod evidence;
pub mod genesis;
pub mod genesis_chunked;
pub mod header;
pub mod header_by_hash;
pub mod health;
pub mod net_info;
pub mod status;
pub mod subscribe;
pub mod tx;
pub mod tx_search;
pub mod unsubscribe;
pub mod validators;