Interface AccountMap<T>

AccountMap is used to store the user information by address.

interface AccountMap<T> {
    [cosmosAddress: string]: BitBadgesUserInfo<T> | undefined;
}

Type Parameters

Indexable

[cosmosAddress: string]: BitBadgesUserInfo<T> | undefined