Type Alias pallet_identity::pallet::SubsOf
source · pub type SubsOf<T: Config> = StorageMap<_GeneratedPrefixForStorageSubsOf<T>, Twox64Concat, T::AccountId, (<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, BoundedVec<T::AccountId, T::MaxSubAccounts>), ValueQuery>;
Expand description
Alternative “sub” identities of this account.
The first item is the deposit, the second is a vector of the accounts.
TWOX-NOTE: OK ― AccountId
is a secure hash.
Storage type is [StorageMap
] with key type T :: AccountId
and value type (BalanceOf < T > , BoundedVec < T :: AccountId, T :: MaxSubAccounts >)
.
Aliased Type§
struct SubsOf<T: Config>(/* private fields */);