Skip to main content

lotus_tokenfactory/
responses.rs

1use cosmwasm_schema::cw_serde;
2use cosmwasm_std::Coin;
3
4///QueryParamsResponse is the response type for the Query/Params RPC method.
5#[cw_serde]
6pub struct QueryParamsResponse {
7    pub params: Option<Params>,
8}
9
10/// Params defines the parameters for the tokenfactory module.
11#[cw_serde]
12pub struct Params {
13    pub denom_creation_fee: Vec<Coin>,
14    pub denom_creation_gas_consume: u64,
15}