1use cosmwasm_schema::cw_serde; 2use cosmwasm_std::Addr; 3 4#[cw_serde] 5pub struct Config { 6 /// Some, most, or all methods check this address for privileged access 7 pub owner: Addr, 8}