tendermint 0.40.4

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 (JSON-RPC).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Serde serializers
//!
//! Serializers and deserializers for a transparent developer experience.
//!
//! CAUTION: There are no guarantees for backwards compatibility, this module should be considered
//! an internal implementation detail which can vanish without further warning. Use at your own
//! risk.
pub use tendermint_proto::serializers::*;

pub mod allow_empty_object;
pub mod apphash;
pub mod apphash_base64;
pub mod hash;
pub mod option_hash;
pub mod time;