celestia-core 0.34.0

This is a hard fork of tendermint to make it compatible with Celestia network. 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
//! Macros to facilitate protobuf conversions

macro_rules! tendermint_pb_modules {
    {
        $($contents:item)*
    } => {
        mod v0_34 {
            use celestia_core_proto::v0_34 as pb;
            #[allow(unused_imports)]
            use celestia_core_proto::Protobuf;

            $($contents)*
        }
    };
}