Trait escrow_rpc::EscrowApiClient 
source · pub trait EscrowApiClient<BlockHash, AccountId, BlockNumber, Balance>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    AccountId: Send + Sync + 'static + Serialize + Codec,
    BlockNumber: Send + Sync + 'static + Serialize + Codec,
    Balance: Send + Sync + 'static + DeserializeOwned + Codec + MaybeDisplay + MaybeFromStr,{
    // Provided methods
    fn balance_at<'life0, 'async_trait>(
        &'life0 self,
        account_id: AccountId,
        height: Option<BlockNumber>,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn free_stakable<'life0, 'async_trait>(
        &'life0 self,
        account_id: AccountId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn total_supply<'life0, 'async_trait>(
        &'life0 self,
        height: Option<BlockNumber>,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}Expand description
Client implementation for the EscrowApi RPC API.
Provided Methods§
sourcefn balance_at<'life0, 'async_trait>(
    &'life0 self,
    account_id: AccountId,
    height: Option<BlockNumber>,
    at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>where
    Self: Sync + 'async_trait,
    'life0: 'async_trait,
 
fn balance_at<'life0, 'async_trait>( &'life0 self, account_id: AccountId, height: Option<BlockNumber>, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,
vkint/vintr balance
sourcefn free_stakable<'life0, 'async_trait>(
    &'life0 self,
    account_id: AccountId,
    at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>where
    Self: Sync + 'async_trait,
    'life0: 'async_trait,
 
fn free_stakable<'life0, 'async_trait>( &'life0 self, account_id: AccountId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,
amount of kint/intr that use can lock, taking into consideration the Limits.