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§

source

fn compute_escrow_reward( &self, account_id: AccountId, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn compute_farming_reward( &self, account_id: AccountId, pool_currency_id: CurrencyId, reward_currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn compute_vault_reward( &self, vault_id: VaultId, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn estimate_escrow_reward_rate( &self, account_id: AccountId, amount: Option<Balance>, lock_time: Option<BlockNumber>, at: Option<BlockHash> ) -> RpcResult<UnsignedFixedPoint>

source

fn estimate_farming_reward( &self, account_id: AccountId, pool_currency_id: CurrencyId, reward_currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn estimate_vault_reward_rate( &self, vault_id: VaultId, at: Option<BlockHash> ) -> RpcResult<UnsignedFixedPoint>

Provided Methods§

source

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.

Implementors§

source§

impl<C, Block, AccountId, VaultId, CurrencyId, Balance, BlockNumber, UnsignedFixedPoint> RewardApiServer<<Block as Block>::Hash, AccountId, VaultId, CurrencyId, Balance, BlockNumber, UnsignedFixedPoint> for Reward<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: RewardRuntimeApi<Block, AccountId, VaultId, CurrencyId, Balance, BlockNumber, UnsignedFixedPoint>, AccountId: Codec, VaultId: Codec, CurrencyId: Codec, Balance: Codec + MaybeDisplay + MaybeFromStr, BlockNumber: Codec, UnsignedFixedPoint: Codec,