[][src]Trait substrate_subxt::system::AccountStoreExt

pub trait AccountStoreExt<T: System> {
    fn account<'a>(
        &'a self,
        account_id: &'a T::AccountId,
        hash: Option<T::Hash>
    ) -> Pin<Box<dyn Future<Output = Result<AccountInfo<T>, Error>> + Send + 'a>>; }

Store extension trait.

Required methods

fn account<'a>(
    &'a self,
    account_id: &'a T::AccountId,
    hash: Option<T::Hash>
) -> Pin<Box<dyn Future<Output = Result<AccountInfo<T>, Error>> + Send + 'a>>

Retrive the store element.

Loading content...

Implementors

impl<T: Runtime + System> AccountStoreExt<T> for Client<T>[src]

Loading content...