cosmwasm-std 0.9.2

Standard library for Wasm based smart contracts on Cosmos blockchains
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod std_error;
mod std_error_helpers;
mod system_error;

pub use std_error::{StdError, StdResult};
#[allow(deprecated)]
pub use std_error_helpers::{
    generic_err, invalid_base64, invalid_utf8, not_found, parse_err, serialize_err, unauthorized,
    underflow,
};
pub use system_error::{SystemError, SystemResult};