pub trait DexGeneralApiServer<BlockHash, AccountId, AssetId>: Sized + Send + Sync + 'static {
    // Required methods
    fn get_pair_by_asset_id(
        &self,
        asset_0: AssetId,
        asset_1: AssetId,
        at: Option<BlockHash>
    ) -> RpcResult<Option<PairInfo<AccountId, NumberOrHex, AssetId>>>;
    fn get_amount_in_price(
        &self,
        supply: AssetBalance,
        path: Vec<AssetId>,
        at: Option<BlockHash>
    ) -> RpcResult<NumberOrHex>;
    fn get_amount_out_price(
        &self,
        supply: AssetBalance,
        path: Vec<AssetId>,
        at: Option<BlockHash>
    ) -> RpcResult<NumberOrHex>;
    fn get_estimate_lptoken(
        &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>
    ) -> RpcResult<NumberOrHex>;
    fn calculate_remove_liquidity(
        &self,
        asset_0: AssetId,
        asset_1: AssetId,
        amount: AssetBalance,
        at: Option<BlockHash>
    ) -> RpcResult<Option<(AssetBalance, AssetBalance)>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self>
       where BlockHash: Send + Sync + 'static + DeserializeOwned,
             AccountId: Send + Sync + 'static + Serialize,
             AssetId: Send + Sync + 'static + DeserializeOwned + Serialize { ... }
}
Expand description

Server trait implementation for the DexGeneralApi RPC API.

Required Methods§

source

fn get_pair_by_asset_id( &self, asset_0: AssetId, asset_1: AssetId, at: Option<BlockHash> ) -> RpcResult<Option<PairInfo<AccountId, NumberOrHex, AssetId>>>

source

fn get_amount_in_price( &self, supply: AssetBalance, path: Vec<AssetId>, at: Option<BlockHash> ) -> RpcResult<NumberOrHex>

source

fn get_amount_out_price( &self, supply: AssetBalance, path: Vec<AssetId>, at: Option<BlockHash> ) -> RpcResult<NumberOrHex>

source

fn get_estimate_lptoken( &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> ) -> RpcResult<NumberOrHex>

source

fn calculate_remove_liquidity( &self, asset_0: AssetId, asset_1: AssetId, amount: AssetBalance, at: Option<BlockHash> ) -> RpcResult<Option<(AssetBalance, AssetBalance)>>

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, AccountId: Send + Sync + 'static + Serialize, AssetId: Send + Sync + 'static + DeserializeOwned + Serialize,

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

Implementors§

source§

impl<C, Block, AccountId, AssetId> DexGeneralApiServer<<Block as Block>::Hash, AccountId, AssetId> for DexGeneral<C, Block>where Block: BlockT, AccountId: Codec, AssetId: Codec, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: DexGeneralRuntimeApi<Block, AccountId, AssetId>,