classic-bindings 0.2.1

Bindings for CustomMsg and CustomQuery for the Terra Classic blockchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod msg;
mod query;
mod querier;

pub use msg::TerraMsg;
pub use querier::TerraQuerier;
#[cfg(feature = "stargate")]
pub use querier::TerraStargateQuerier;
pub use query::{
    ExchangeRateItem, ExchangeRatesResponse, SwapResponse, TaxCapResponse,
    TaxRateResponse, TerraQuery
};

// This export is added to all contracts that import this package, signifying that they require
// "terra" support on the chain they run on.
#[no_mangle]
extern "C" fn requires_terra() {}