cosmwasm-std 0.12.0-alpha2

Standard library for Wasm based smart contracts on Cosmos blockchains
Documentation
//! This module contains the messages that are sent from the contract to the VM as an execution result

mod attribute;
mod context;
mod contract_result;
mod cosmos_msg;
mod handle;
mod init;
mod migrate;
mod query;
mod system_result;

pub use attribute::{attr, Attribute};
pub use context::Context;
pub use contract_result::ContractResult;
pub use cosmos_msg::{BankMsg, CosmosMsg, StakingMsg, WasmMsg};
pub use handle::{HandleResponse, HandleResult};
pub use init::{InitResponse, InitResult};
pub use migrate::{MigrateResponse, MigrateResult};
pub use query::{QueryResponse, QueryResult};
pub use system_result::SystemResult;