pub type Account<T: Config> = StorageMap<_GeneratedPrefixForStorageAccount<T>, Blake2_128Concat, T::AccountId, AccountInfo<T::Nonce, T::AccountData>, ValueQuery>;Expand description
The full account information for a particular account ID.
Storage type is [StorageMap] with key type T :: AccountId and value type AccountInfo < T :: Nonce, T :: AccountData >.
Aliased Type§
struct Account<T: Config>(/* private fields */);