cosmrs 0.22.0

Transaction builder and signer for Cosmos-based blockchains
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Application/BlockChain Interface (ABCI)-related functionality.

mod gas_info;
mod msg_data;

pub use self::{
    gas_info::GasInfo,
    msg_data::{MsgData, MsgResponse, TxMsgData},
};

/// Transaction data.
pub type Data = Vec<u8>;