Type Definition frame_system::pallet::Account

source ·
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 >.