use cosmwasm_schema::cw_serde;
use cosmwasm_std::{Addr, Coin, Uint128};
use kujira_std::{Denom, Schedule};
#[cw_serde]
pub enum ExecuteMsg {
UpdateConfig {
owner: Option<Addr>,
incentive_fee: Option<Coin>,
incentive_min: Option<Uint128>,
},
Stake { addr: Option<Addr> },
Claim { denom: Denom },
Withdraw { amount: Coin },
AddIncentive { denom: Denom, schedule: Schedule },
}