use astroport::asset::AssetInfo;
use astroport::common::OwnershipProposal;
use astroport::maker::{Config, SeizeConfig};
use cw_storage_plus::{Item, Map};
pub const CONFIG: Item<Config> = Item::new("config");
pub const OWNERSHIP_PROPOSAL: Item<OwnershipProposal> = Item::new("ownership_proposal");
pub const BRIDGES: Map<String, AssetInfo> = Map::new("bridges");
pub const LAST_COLLECT_TS: Item<u64> = Item::new("last_collect_ts");
pub const SEIZE_CONFIG: Item<SeizeConfig> = Item::new("seize_config");