cosmwasm-std 0.12.0-alpha2

Standard library for Wasm based smart contracts on Cosmos blockchains
Documentation
1
2
3
4
5
6
use crate::binary::Binary;
use crate::errors::StdError;

pub type QueryResponse = Binary;

pub type QueryResult = Result<QueryResponse, StdError>;