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
15
//! Vesting-related types

mod base_vesting_account;
mod continuous_vesting_account;
mod delayed_vesting_account;
mod period;
mod periodic_vesting_account;
mod permanent_locked_account;

pub use self::{
    base_vesting_account::BaseVestingAccount, continuous_vesting_account::ContinuousVestingAccount,
    delayed_vesting_account::DelayedVestingAccount, period::Period,
    periodic_vesting_account::PeriodicVestingAccount,
    permanent_locked_account::PermanentLockedAccount,
};