Trait reward_rpc::RewardApiServer
source · pub trait RewardApiServer<BlockHash, AccountId, VaultId, CurrencyId, Balance, BlockNumber, UnsignedFixedPoint>: Sized + Send + Sync + 'staticwhere
Balance: Codec + MaybeDisplay + MaybeFromStr,
AccountId: Codec,
VaultId: Codec,
CurrencyId: Codec,
BlockNumber: Codec,
UnsignedFixedPoint: Codec,{
// Required methods
fn compute_escrow_reward(
&self,
account_id: AccountId,
currency_id: CurrencyId,
at: Option<BlockHash>
) -> RpcResult<BalanceWrapper<Balance>>;
fn compute_farming_reward(
&self,
account_id: AccountId,
pool_currency_id: CurrencyId,
reward_currency_id: CurrencyId,
at: Option<BlockHash>
) -> RpcResult<BalanceWrapper<Balance>>;
fn compute_vault_reward(
&self,
vault_id: VaultId,
currency_id: CurrencyId,
at: Option<BlockHash>
) -> RpcResult<BalanceWrapper<Balance>>;
fn estimate_escrow_reward_rate(
&self,
account_id: AccountId,
amount: Option<Balance>,
lock_time: Option<BlockNumber>,
at: Option<BlockHash>
) -> RpcResult<UnsignedFixedPoint>;
fn estimate_farming_reward(
&self,
account_id: AccountId,
pool_currency_id: CurrencyId,
reward_currency_id: CurrencyId,
at: Option<BlockHash>
) -> RpcResult<BalanceWrapper<Balance>>;
fn estimate_vault_reward_rate(
&self,
vault_id: VaultId,
at: Option<BlockHash>
) -> RpcResult<UnsignedFixedPoint>;
// Provided method
fn into_rpc(self) -> RpcModule<Self>
where BlockHash: Send + Sync + 'static + DeserializeOwned,
AccountId: Send + Sync + 'static + DeserializeOwned + Codec,
VaultId: Send + Sync + 'static + DeserializeOwned + Codec,
CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec,
Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr,
BlockNumber: Send + Sync + 'static + DeserializeOwned + Codec,
UnsignedFixedPoint: Send + Sync + 'static + Serialize + Codec { ... }
}
Expand description
Server trait implementation for the RewardApi
RPC API.
Required Methods§
fn compute_escrow_reward( &self, account_id: AccountId, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>
fn compute_farming_reward( &self, account_id: AccountId, pool_currency_id: CurrencyId, reward_currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>
fn compute_vault_reward( &self, vault_id: VaultId, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>
fn estimate_escrow_reward_rate( &self, account_id: AccountId, amount: Option<Balance>, lock_time: Option<BlockNumber>, at: Option<BlockHash> ) -> RpcResult<UnsignedFixedPoint>
fn estimate_farming_reward( &self, account_id: AccountId, pool_currency_id: CurrencyId, reward_currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>
fn estimate_vault_reward_rate( &self, vault_id: VaultId, at: Option<BlockHash> ) -> RpcResult<UnsignedFixedPoint>
Provided Methods§
sourcefn into_rpc(self) -> RpcModule<Self>where
BlockHash: Send + Sync + 'static + DeserializeOwned,
AccountId: Send + Sync + 'static + DeserializeOwned + Codec,
VaultId: Send + Sync + 'static + DeserializeOwned + Codec,
CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec,
Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr,
BlockNumber: Send + Sync + 'static + DeserializeOwned + Codec,
UnsignedFixedPoint: Send + Sync + 'static + Serialize + Codec,
fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, AccountId: Send + Sync + 'static + DeserializeOwned + Codec, VaultId: Send + Sync + 'static + DeserializeOwned + Codec, CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec, Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr, BlockNumber: Send + Sync + 'static + DeserializeOwned + Codec, UnsignedFixedPoint: Send + Sync + 'static + Serialize + Codec,
Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule
.