astro_assembly/
lib.rs

1pub mod contract;
2pub mod error;
3pub mod state;
4
5/// Exclusively to bypass wasmd migration limitation. Assembly doesn't have IBC features.
6/// https://github.com/CosmWasm/wasmd/blob/7165e41cbf14d60a9fef4fb1e04c2c2e5e4e0cf4/x/wasm/keeper/keeper.go#L446
7pub mod ibc;
8pub mod queries;
9pub mod utils;
10
11pub mod migration;
12#[cfg(test)]
13mod unit_tests;