pub type IndexToAccount<T: Config> = StorageMap<_GeneratedPrefixForStorageIndexToAccount<T>, Blake2_128Concat, u16, T::AccountId>;
Expand description

Since we are using pallet-utility for account derivation (through AsDerivative), we need to provide an index for the account derivation. This storage item stores the index assigned for a given local account. These indices are usable as derivative in the relay chain

Storage type is [StorageMap] with key type u16 and value type T :: AccountId.

Aliased Type§

struct IndexToAccount<T: Config>(/* private fields */);