pub trait ToXykTechUnitFromDEXAndTradingPair<DEXId, TradingPair>: Sized {
    // Required method
    fn to_xyk_tech_unit_from_dex_and_trading_pair(
        dex_id: DEXId,
        trading_pair: TradingPair
    ) -> Self;
}

Required Methods§

source

fn to_xyk_tech_unit_from_dex_and_trading_pair( dex_id: DEXId, trading_pair: TradingPair ) -> Self

Implementors§

source§

impl<AccountId, AssetId, DEXId: Clone> ToXykTechUnitFromDEXAndTradingPair<DEXId, TradingPair<AssetId>> for TechAccountId<AccountId, AssetId, DEXId>