Trait dex_general_rpc::DexGeneralApiClient
source · 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.