pub trait LoansApiServer<BlockHash, AccountId, Balance>: Sized + Send + Sync + 'staticwhere
    Balance: Codec + Copy + TryFrom<NumberOrHex>,{
    // Required methods
    fn get_account_liquidity(
        &self,
        account: AccountId,
        at: Option<BlockHash>
    ) -> RpcResult<(Liquidity, Shortfall)>;
    fn get_market_status(
        &self,
        asset_id: CurrencyId,
        at: Option<BlockHash>
    ) -> RpcResult<(Rate, Rate, Rate, Ratio, NumberOrHex, NumberOrHex, FixedU128)>;
    fn get_liquidation_threshold_liquidity(
        &self,
        account: AccountId,
        at: Option<BlockHash>
    ) -> RpcResult<(Liquidity, Shortfall)>;

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

Server trait implementation for the LoansApi RPC API.

Required Methods§

source

fn get_account_liquidity( &self, account: AccountId, at: Option<BlockHash> ) -> RpcResult<(Liquidity, Shortfall)>

source

fn get_market_status( &self, asset_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<(Rate, Rate, Rate, Ratio, NumberOrHex, NumberOrHex, FixedU128)>

source

fn get_liquidation_threshold_liquidity( &self, account: AccountId, at: Option<BlockHash> ) -> RpcResult<(Liquidity, Shortfall)>

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, AccountId: Send + Sync + 'static + DeserializeOwned, Balance: Send + Sync + 'static + Codec + Copy + TryFrom<NumberOrHex>,

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

Implementors§

source§

impl<C, Block, AccountId, Balance> LoansApiServer<<Block as Block>::Hash, AccountId, Balance> for Loans<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: LoansRuntimeApi<Block, AccountId, Balance>, AccountId: Codec, Balance: Codec + Copy + TryFrom<NumberOrHex> + Into<NumberOrHex> + Display,