usecosmwasm_schema::cw_serde;usecosmwasm_std::{Addr, Coin, Uint128};#[cw_serde]pubstructInstantiateMsg{/// The account permitted to update the config
pubowner: Addr,
/// The fee to provide an incentive
pubincentive_fee: Coin,
/// The minimum amount of a denom that must be provided
pubincentive_min: Uint128,
}