Trait escrow_rpc::EscrowApiServer
source · 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§
sourcefn balance_at(
&self,
account_id: AccountId,
height: Option<BlockNumber>,
at: Option<BlockHash>
) -> RpcResult<BalanceWrapper<Balance>>
fn balance_at( &self, account_id: AccountId, height: Option<BlockNumber>, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>
vkint/vintr balance
sourcefn free_stakable(
&self,
account_id: AccountId,
at: Option<BlockHash>
) -> RpcResult<BalanceWrapper<Balance>>
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.
fn total_supply( &self, height: Option<BlockNumber>, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>
Provided Methods§
sourcefn 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,
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
.