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§

source

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

source

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.

source

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,

Implementors§

source§

impl<TypeJsonRpseeInteral, BlockHash, AccountId, BlockNumber, Balance> EscrowApiClient<BlockHash, AccountId, BlockNumber, Balance> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, 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,