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> { ... }
}

Provided Methods§

source

fn get_account_liquidity( &self, __runtime_api_at_param__: <Block as Block>::Hash, account: AccountId ) -> Result<Result<(FixedU128, FixedU128), DispatchError>, ApiError>

source

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>

source

fn get_liquidation_threshold_liquidity( &self, __runtime_api_at_param__: <Block as Block>::Hash, account: AccountId ) -> Result<Result<(FixedU128, FixedU128), DispatchError>, ApiError>

Trait Implementations§

source§

impl<Block, AccountId, Balance> RuntimeApiInfo for dyn LoansApi<Block, AccountId, Balance> + 'staticwhere Block: Block,

source§

const ID: [u8; 8] = [34u8, 185u8, 115u8, 35u8, 185u8, 232u8, 83u8, 218u8]

The identifier of the runtime api.
source§

const VERSION: u32 = 1u32

The version of the runtime api.

Implementors§