abstract-polytone-proxy 5.0.0

An Interchain Account contract.
Documentation
1
2
3
4
5
6
7
8
9
use cosmwasm_std::{Addr, SubMsgResponse};
use cw_storage_plus::Item;

/// Stores the instantiator of the contract.
pub const INSTANTIATOR: Item<Addr> = Item::new("owner");

/// Stores a list of callback's currently being collected. Has no
/// value if none are being collected.
pub const COLLECTOR: Item<Vec<Option<SubMsgResponse>>> = Item::new("callbacks");