pub type ConnectedAccounts<T> = StorageDoubleMap<_GeneratedPrefixForStorageConnectedAccounts<T>, Blake2_128Concat, <T as Config>::DidIdentifier, Blake2_128Concat, LinkableAccountId, ()>;
Expand description

Mapping from (DID + account identifier) -> (). The empty tuple is used as a sentinel value to simply indicate the presence of a given tuple in the map.

Storage type is [StorageDoubleMap] with key1 type DidIdentifierOf < T >, key2 type LinkableAccountId and value type ().

Aliased Type§

struct ConnectedAccounts<T>(/* private fields */);