cw_erc20/
state.rs

1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3
4#[derive(Serialize, Debug, Deserialize, Clone, PartialEq, JsonSchema)]
5pub struct Constants {
6    pub name: String,
7    pub symbol: String,
8    pub decimals: u8,
9}