1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod msg;
mod state;
mod query;
mod querier;

pub use msg::TerraMsg;
pub use querier::TerraQuerier;
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() {}