pub mod state {
use cosmwasm_std::Addr;
use cw_storage_plus::Map;
use crate::objects::{storage_namespaces, TruncatedChainId};
#[cosmwasm_schema::cw_serde]
pub struct IcaInfrastructure {
pub polytone_note: Addr,
}
pub const ICA_INFRA: Map<&TruncatedChainId, IcaInfrastructure> =
Map::new(storage_namespaces::ica_client::ICA_INFRA);
}