abstract_interface/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#![cfg(not(target_arch = "wasm32"))]
#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]

pub const VERSION: &str = env!("CARGO_PKG_VERSION");

mod account;
mod ibc;
#[cfg(feature = "daemon")]
mod migrate;

pub use crate::{account::*, ibc::*};

mod native;

pub use crate::native::*;

mod interfaces;

pub use crate::interfaces::*;

mod daemon_state;
mod deployers;
mod deployment;
mod error;

pub use error::AbstractInterfaceError;

pub use crate::{deployers::*, deployment::*};

pub use daemon_state::AbstractDaemonState;