cosmwasm-std 3.0.5

Standard library for Wasm based smart contracts on Cosmos blockchains
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod backtrace;
mod recover_pubkey_error;
mod std_error;
mod system_error;
mod verification_error;

pub(crate) use backtrace::BT;
pub use recover_pubkey_error::RecoverPubkeyError;
pub use std_error::{
    CheckedFromRatioError, CheckedMultiplyFractionError, CheckedMultiplyRatioError,
    CoinFromStrError, CoinsError, ConversionOverflowError, DivideByZeroError, DivisionError,
    ErrorKind, OverflowError, OverflowOperation, RoundDownOverflowError, RoundUpOverflowError,
    StdError, StdResult, StdResultExt,
};
pub use system_error::SystemError;
pub use verification_error::{AggregationError, PairingEqualityError, VerificationError};