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
//! CometBFT 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 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;