abstract-core 0.19.2

Abstract contract interfaces and storage layouts
Documentation
//! # State and Message Objects
//! This module contains all the structs and enums used in contract state-storage or contained in contract interaction.

pub(crate) mod ans_asset;
pub mod ans_host;
pub mod common_namespace;
pub mod version_control;

mod entry;
pub mod oracle;
pub mod pool;

pub use pool::*;

pub mod account;
pub mod chain_name;
pub mod dependency;
pub mod deposit_info;
pub mod deposit_manager;
pub mod fee;
pub mod gov_type;
pub mod module;
pub mod module_reference;
pub mod module_version;
pub mod namespace;
pub mod paged_map;
pub mod price_source;
pub mod time_weighted_average;
pub mod validation;

pub use account::{AccountId, ABSTRACT_ACCOUNT_ID};
pub use ans_asset::AnsAsset;

pub use entry::ans_entry_convertor::AnsEntryConvertor;
pub use entry::asset_entry::AssetEntry;
pub use entry::channel_entry::{ChannelEntry, UncheckedChannelEntry};
pub use entry::contract_entry::{ContractEntry, UncheckedContractEntry};
pub use entry::dex_asset_pairing::DexAssetPairing;
pub use entry::lp_token::{DexName, LpToken};