pub trait LoansRuntimeApi<Block, AccountId, Balance>: Core<Block>where
Block: Block,
AccountId: Codec,
Balance: Codec,{
// Provided methods
fn get_account_liquidity(
&self,
__runtime_api_at_param__: <Block as Block>::Hash,
account: AccountId
) -> Result<Result<(FixedU128, FixedU128), DispatchError>, ApiError> { ... }
fn get_market_status(
&self,
__runtime_api_at_param__: <Block as Block>::Hash,
asset_id: CurrencyId
) -> Result<Result<(FixedU128, FixedU128, FixedU128, Permill, Balance, Balance, FixedU128), DispatchError>, ApiError> { ... }
fn get_liquidation_threshold_liquidity(
&self,
__runtime_api_at_param__: <Block as Block>::Hash,
account: AccountId
) -> Result<Result<(FixedU128, FixedU128), DispatchError>, ApiError> { ... }
}
The identifier of the runtime api.
The version of the runtime api.