cw_i2_creator_pkg/state.rs
1use crate::types::Config;
2use cw_storage_plus::Item;
3
4// We might as well have one-letter keys like "c" or "n" to save ones and zeroes.
5// CONFIG will typically store values that might be updated later using a special function that checks if the sender is allowed to change it.
6pub const CONFIG: Item<Config> = Item::new("c");