pub trait OracleApiServer<BlockHash, Balance, CurrencyId>: Sized + Send + Sync + 'staticwhere
    Balance: Codec + MaybeDisplay + MaybeFromStr,
    CurrencyId: Codec,{
    // Required methods
    fn wrapped_to_collateral(
        &self,
        amount: BalanceWrapper<Balance>,
        currency_id: CurrencyId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn collateral_to_wrapped(
        &self,
        amount: BalanceWrapper<Balance>,
        currency_id: CurrencyId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self>
       where BlockHash: Send + Sync + 'static + DeserializeOwned,
             Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr,
             CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec { ... }
}
Expand description

Server trait implementation for the OracleApi RPC API.

Required Methods§

source

fn wrapped_to_collateral( &self, amount: BalanceWrapper<Balance>, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn collateral_to_wrapped( &self, amount: BalanceWrapper<Balance>, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr, CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec,

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

Implementors§

source§

impl<C, Block, Balance, CurrencyId> OracleApiServer<<Block as Block>::Hash, Balance, CurrencyId> for Oracle<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: OracleRuntimeApi<Block, Balance, CurrencyId>, Balance: Codec + MaybeDisplay + MaybeFromStr, CurrencyId: Codec,