pub trait WeightInfo {
    // Required methods
    fn create_pool() -> Weight;
    fn sell_asset() -> Weight;
    fn multiswap_sell_asset(x: u32) -> Weight;
    fn buy_asset() -> Weight;
    fn multiswap_buy_asset(x: u32) -> Weight;
    fn mint_liquidity() -> Weight;
    fn mint_liquidity_using_vesting_native_tokens() -> Weight;
    fn burn_liquidity() -> Weight;
    fn provide_liquidity_with_conversion() -> Weight;
    fn compound_rewards() -> Weight;
}
Expand description

Weight functions needed for pallet_xyk.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

Implementors§