juno-tokenfactory-core 0.0.4

The tokenfactory core middleware for the Juno blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cosmwasm_schema::cw_serde;
use cw_storage_plus::Item;

#[cw_serde]
pub struct Config {
    pub manager: String,
    pub allowed_mint_addresses: Vec<String>,
    pub denoms: Vec<String>,
}

pub const CONFIG: Item<Config> = Item::new("config");