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> { ... }
}
The identifier of the runtime api.
The version of the runtime api.