pub trait DexGeneralApiClient<BlockHash, AccountId, AssetId>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    AccountId: Send + Sync + 'static + DeserializeOwned,
    AssetId: Send + Sync + 'static + Serialize + DeserializeOwned,{
    // Provided methods
    fn get_pair_by_asset_id<'life0, 'async_trait>(
        &'life0 self,
        asset_0: AssetId,
        asset_1: AssetId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<Option<PairInfo<AccountId, NumberOrHex, AssetId>>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn get_amount_in_price<'life0, 'async_trait>(
        &'life0 self,
        supply: AssetBalance,
        path: Vec<AssetId>,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<NumberOrHex>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn get_amount_out_price<'life0, 'async_trait>(
        &'life0 self,
        supply: AssetBalance,
        path: Vec<AssetId>,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<NumberOrHex>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn get_estimate_lptoken<'life0, 'async_trait>(
        &'life0 self,
        asset_0: AssetId,
        asset_1: AssetId,
        amount_0_desired: AssetBalance,
        amount_1_desired: AssetBalance,
        amount_0_min: AssetBalance,
        amount_1_min: AssetBalance,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<NumberOrHex>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn calculate_remove_liquidity<'life0, 'async_trait>(
        &'life0 self,
        asset_0: AssetId,
        asset_1: AssetId,
        amount: AssetBalance,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<Option<(AssetBalance, AssetBalance)>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Client implementation for the DexGeneralApi RPC API.

Provided Methods§

source

fn get_pair_by_asset_id<'life0, 'async_trait>( &'life0 self, asset_0: AssetId, asset_1: AssetId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<Option<PairInfo<AccountId, NumberOrHex, AssetId>>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn get_amount_in_price<'life0, 'async_trait>( &'life0 self, supply: AssetBalance, path: Vec<AssetId>, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<NumberOrHex>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn get_amount_out_price<'life0, 'async_trait>( &'life0 self, supply: AssetBalance, path: Vec<AssetId>, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<NumberOrHex>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn get_estimate_lptoken<'life0, 'async_trait>( &'life0 self, asset_0: AssetId, asset_1: AssetId, amount_0_desired: AssetBalance, amount_1_desired: AssetBalance, amount_0_min: AssetBalance, amount_1_min: AssetBalance, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<NumberOrHex>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn calculate_remove_liquidity<'life0, 'async_trait>( &'life0 self, asset_0: AssetId, asset_1: AssetId, amount: AssetBalance, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<Option<(AssetBalance, AssetBalance)>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§

source§

impl<TypeJsonRpseeInteral, BlockHash, AccountId, AssetId> DexGeneralApiClient<BlockHash, AccountId, AssetId> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, BlockHash: Send + Sync + 'static + Serialize, AccountId: Send + Sync + 'static + DeserializeOwned, AssetId: Send + Sync + 'static + Serialize + DeserializeOwned,