cometbft-rpc 0.1.0-alpha.2

cometbft-rpc contains the core types returned by a CometBFT 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
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 cometbft::serializers::*;

pub mod opt_tm_hash_base64;
pub mod tm_hash_base64;
pub mod tx_hash_base64;