pub type Account<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageAccount<T, I>, Blake2_128Concat, T::AssetId, Blake2_128Concat, T::AccountId, AssetAccountOf<T, I>>;
Expand description
The holdings of a specific account for a specific asset.
Storage type is [StorageDoubleMap
] with key1 type T :: AssetId, key2 type T :: AccountId and value type AssetAccountOf < T, I >.
Aliased Type§
struct Account<T: Config<I>, I: 'static = ()>(/* private fields */);