1use cosmwasm_schema::cw_serde; 2 3use cosmwasm_std::Addr; 4use cw_storage_plus::Item; 5 6#[cw_serde] 7pub struct State { 8 pub count: i32, 9 pub owner: Addr, 10} 11 12pub const STATE: Item<State> = Item::new("state");