pub mod denom;
pub mod msg;
pub mod oracle;
pub use self::{denom::Denom, oracle::ExchangeRateOracle};
use once_cell::sync::Lazy;
pub const MEMO: &str = concat!("delphi/", env!("CARGO_PKG_VERSION"));
static SCHEMA: Lazy<stdtx::amino::Schema> =
Lazy::new(|| include_str!("terra/schema.toml").parse().unwrap());