referrerpolicy=no-referrer-when-downgrade

Type Alias pallet_identity::pallet::IdentityOf

source ·
pub type IdentityOf<T: Config> = StorageMap<_GeneratedPrefixForStorageIdentityOf<T>, Twox64Concat, T::AccountId, (Registration<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, T::MaxRegistrars, T::IdentityInformation>, Option<BoundedVec<u8, <T as Config>::MaxUsernameLength>>), OptionQuery>;
Expand description

Information that is pertinent to identify the entity behind an account. First item is the registration, second is the account’s primary username.

TWOX-NOTE: OK ― AccountId is a secure hash.

Storage type is [StorageMap] with key type T :: AccountId and value type `(Registration < BalanceOf < T > , T :: MaxRegistrars, T :: IdentityInformation

, Option < Username < T > >)`.

Aliased Type§

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