1use cosmwasm_schema::cw_serde;
23/// The instantiate message has an optional owner
4#[cw_serde]
5pub struct InstantiateMsg {
6/// By default will assign the sender as the owner
7 /// You may also make another address owner with this.
8pub owner: Option<String>,
9}