juno_tokenfactory_core/
state.rs1use cosmwasm_schema::cw_serde;
2use cw_storage_plus::Item;
3
4#[cw_serde]
5pub struct Config {
6 pub manager: String,
7 pub allowed_mint_addresses: Vec<String>,
8 pub denoms: Vec<String>,
9}
10
11pub const CONFIG: Item<Config> = Item::new("config");