layer_climb/lib.rs
1pub mod prelude;
2
3#[cfg(not(target_arch = "wasm32"))]
4pub use layer_climb_core::pool;
5pub use layer_climb_core::{
6 // listing manually so we can excluse the prelude (which is re-exported in the prelude module here, along with config, address, etc.)
7 // and not confuse ide's with multiple preludes
8 contract_helpers,
9 events,
10 ibc_types,
11 network,
12 querier,
13 signing,
14 transaction,
15};
16
17// in case anyone wants to use the protobufs directly
18pub mod proto {
19 pub use layer_climb_proto::*;
20}