Type Alias public_credentials::pallet::Credentials
source · pub type Credentials<T> = StorageDoubleMap<_GeneratedPrefixForStorageCredentials<T>, Twox64Concat, SubjectIdOf<T>, Blake2_128Concat, CredentialIdOf<T>, CredentialEntryOf<T>>;
Expand description
The map of public credentials already attested. It maps from a (subject id + credential id) -> the creation details of the credential.
Storage type is [StorageDoubleMap
] with key1 type SubjectIdOf < T >, key2 type CredentialIdOf < T > and value type CredentialEntryOf < T >.
Aliased Type§
struct Credentials<T>(/* private fields */);