Type Alias UsernameInfoOf

UsernameInfoOf: StorageDescriptor<[Key: Binary], {
    owner: SS58String;
    provider: Enum<{
        Allocation: undefined;
        AuthorityDeposit: bigint;
        System: undefined;
    }>;
}, true, never>

Reverse lookup from username to the AccountId that has registered it and the provider of the username. The owner value should be a key in the UsernameOf map, but it may not if the user has cleared their username or it has been removed.

Multiple usernames may map to the same AccountId, but UsernameOf will only map to one primary username.