cw_admin_factory/
state.rs

1use cosmwasm_std::Addr;
2use cw_storage_plus::Item;
3
4/// The account allowed to execute the contract. If None, anyone is allowed.
5pub const ADMIN: Item<Option<Addr>> = Item::new("admin");
6
7/// The expected instantiate2 address to validate in the reply.
8pub const EXPECT: Item<Addr> = Item::new("expect");