pub type Did<T> = StorageMap<_GeneratedPrefixForStorageDid<T>, Blake2_128Concat, DidIdentifierOf<T>, DidDetails<T>>;
Expand description
DIDs stored on chain.
It maps from a DID identifier to the DID details.
Storage type is [StorageMap
] with key type DidIdentifierOf < T >
and value type DidDetails < T >
.
Aliased Type§
struct Did<T>(/* private fields */);