pub trait DexGeneralRuntimeApi<Block, AccountId, AssetId>: Core<Block>where
    Block: Block,
    AccountId: Codec,
    u128: Codec,
    AssetId: Codec,{
    // Provided methods
    fn get_pair_by_asset_id(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        asset_0: AssetId,
        asset_1: AssetId
    ) -> Result<Option<PairInfo<AccountId, u128, AssetId>>, ApiError> { ... }
    fn get_amount_in_price(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        supply: u128,
        path: Vec<AssetId, Global>
    ) -> Result<u128, ApiError> { ... }
    fn get_amount_out_price(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        supply: u128,
        path: Vec<AssetId, Global>
    ) -> Result<u128, ApiError> { ... }
    fn get_estimate_lptoken(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        asset_0: AssetId,
        asset_1: AssetId,
        amount_0_desired: u128,
        amount_1_desired: u128,
        amount_0_min: u128,
        amount_1_min: u128
    ) -> Result<u128, ApiError> { ... }
    fn calculate_remove_liquidity(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        asset_0: AssetId,
        asset_1: AssetId,
        amount: u128
    ) -> Result<Option<(u128, u128)>, ApiError> { ... }
}

Provided Methods§

source

fn get_pair_by_asset_id( &self, __runtime_api_at_param__: <Block as Block>::Hash, asset_0: AssetId, asset_1: AssetId ) -> Result<Option<PairInfo<AccountId, u128, AssetId>>, ApiError>

source

fn get_amount_in_price( &self, __runtime_api_at_param__: <Block as Block>::Hash, supply: u128, path: Vec<AssetId, Global> ) -> Result<u128, ApiError>

source

fn get_amount_out_price( &self, __runtime_api_at_param__: <Block as Block>::Hash, supply: u128, path: Vec<AssetId, Global> ) -> Result<u128, ApiError>

source

fn get_estimate_lptoken( &self, __runtime_api_at_param__: <Block as Block>::Hash, asset_0: AssetId, asset_1: AssetId, amount_0_desired: u128, amount_1_desired: u128, amount_0_min: u128, amount_1_min: u128 ) -> Result<u128, ApiError>

source

fn calculate_remove_liquidity( &self, __runtime_api_at_param__: <Block as Block>::Hash, asset_0: AssetId, asset_1: AssetId, amount: u128 ) -> Result<Option<(u128, u128)>, ApiError>

Trait Implementations§

source§

impl<Block, AccountId, AssetId> RuntimeApiInfo for dyn DexGeneralApi<Block, AccountId, AssetId> + 'staticwhere Block: Block,

source§

const ID: [u8; 8] = [13u8, 238u8, 139u8, 48u8, 135u8, 126u8, 218u8, 11u8]

The identifier of the runtime api.
source§

const VERSION: u32 = 1u32

The version of the runtime api.

Implementors§