pub trait OracleApiClient<BlockHash, Balance, CurrencyId>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    Balance: Send + Sync + 'static + Serialize + DeserializeOwned + Codec + MaybeDisplay + MaybeFromStr,
    CurrencyId: Send + Sync + 'static + Serialize + Codec,{
    // Provided methods
    fn wrapped_to_collateral<'life0, 'async_trait>(
        &'life0 self,
        amount: BalanceWrapper<Balance>,
        currency_id: CurrencyId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn collateral_to_wrapped<'life0, 'async_trait>(
        &'life0 self,
        amount: BalanceWrapper<Balance>,
        currency_id: CurrencyId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Client implementation for the OracleApi RPC API.

Provided Methods§

source

fn wrapped_to_collateral<'life0, 'async_trait>( &'life0 self, amount: BalanceWrapper<Balance>, currency_id: CurrencyId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn collateral_to_wrapped<'life0, 'async_trait>( &'life0 self, amount: BalanceWrapper<Balance>, currency_id: CurrencyId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§

source§

impl<TypeJsonRpseeInteral, BlockHash, Balance, CurrencyId> OracleApiClient<BlockHash, Balance, CurrencyId> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, BlockHash: Send + Sync + 'static + Serialize, Balance: Send + Sync + 'static + Serialize + DeserializeOwned + Codec + MaybeDisplay + MaybeFromStr, CurrencyId: Send + Sync + 'static + Serialize + Codec,