pub trait EscrowApiServer<BlockHash, AccountId, BlockNumber, Balance>: Sized + Send + Sync + 'staticwhere
    Balance: Codec + MaybeDisplay + MaybeFromStr,
    BlockNumber: Codec,
    AccountId: Codec,{
    // Required methods
    fn balance_at(
        &self,
        account_id: AccountId,
        height: Option<BlockNumber>,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn free_stakable(
        &self,
        account_id: AccountId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn total_supply(
        &self,
        height: Option<BlockNumber>,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;

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

Server trait implementation for the EscrowApi RPC API.

Required Methods§

source

fn balance_at( &self, account_id: AccountId, height: Option<BlockNumber>, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

vkint/vintr balance

source

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

amount of kint/intr that use can lock, taking into consideration the Limits.

source

fn total_supply( &self, height: Option<BlockNumber>, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

Provided Methods§

source

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

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

Implementors§

source§

impl<C, Block, AccountId, BlockNumber, Balance> EscrowApiServer<<Block as Block>::Hash, AccountId, BlockNumber, Balance> for Escrow<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: EscrowRuntimeApi<Block, AccountId, BlockNumber, Balance>, AccountId: Codec, BlockNumber: Codec, Balance: Codec + MaybeDisplay + MaybeFromStr,