pub trait LoansApiClient<BlockHash, AccountId, Balance>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    AccountId: Send + Sync + 'static + Serialize,
    Balance: Send + Sync + 'static + Codec + Copy + TryFrom<NumberOrHex>,{
    // Provided methods
    fn get_account_liquidity<'life0, 'async_trait>(
        &'life0 self,
        account: AccountId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<(Liquidity, Shortfall)>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn get_market_status<'life0, 'async_trait>(
        &'life0 self,
        asset_id: CurrencyId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<(Rate, Rate, Rate, Ratio, NumberOrHex, NumberOrHex, FixedU128)>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn get_liquidation_threshold_liquidity<'life0, 'async_trait>(
        &'life0 self,
        account: AccountId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<(Liquidity, Shortfall)>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Client implementation for the LoansApi RPC API.

Provided Methods§

source

fn get_account_liquidity<'life0, 'async_trait>( &'life0 self, account: AccountId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<(Liquidity, Shortfall)>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn get_market_status<'life0, 'async_trait>( &'life0 self, asset_id: CurrencyId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<(Rate, Rate, Rate, Ratio, NumberOrHex, NumberOrHex, FixedU128)>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn get_liquidation_threshold_liquidity<'life0, 'async_trait>( &'life0 self, account: AccountId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<(Liquidity, Shortfall)>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§

source§

impl<TypeJsonRpseeInteral, BlockHash, AccountId, Balance> LoansApiClient<BlockHash, AccountId, Balance> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, BlockHash: Send + Sync + 'static + Serialize, AccountId: Send + Sync + 'static + Serialize, Balance: Send + Sync + 'static + Codec + Copy + TryFrom<NumberOrHex>,