Trait oracle_rpc::OracleApiServer
source · 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§
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 Methods§
sourcefn 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,
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
.