Skip to main content

pryzm_auth/
types.rs

1use cosmwasm_schema::cw_serde;
2
3#[cw_serde]
4pub struct PausedResponse {
5    pub paused: bool,
6}
7
8#[cw_serde]
9pub struct AdminResponse {
10    pub admin: String,
11}