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
13
14
//! Distribution module support
//!
//! <https://docs.cosmos.network/master/modules/distribution/>

mod msg_fund_community_pool;
mod msg_set_withdraw_address;
mod msg_withdraw_delegator_reward;
mod msg_withdraw_validator_commission;

pub use self::{
    msg_fund_community_pool::MsgFundCommunityPool, msg_set_withdraw_address::MsgSetWithdrawAddress,
    msg_withdraw_delegator_reward::MsgWithdrawDelegatorReward,
    msg_withdraw_validator_commission::MsgWithdrawValidatorCommission,
};