1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod contract;
pub mod error;
pub mod state;

/// Exclusively to bypass wasmd migration limitation. Assembly doesn't have IBC features.
/// https://github.com/CosmWasm/wasmd/blob/7165e41cbf14d60a9fef4fb1e04c2c2e5e4e0cf4/x/wasm/keeper/keeper.go#L446
pub mod ibc;
pub mod queries;
pub mod utils;

pub mod migration;
#[cfg(test)]
mod unit_tests;