Type Alias did::pallet::ServiceEndpoints

source ·
pub type ServiceEndpoints<T> = StorageDoubleMap<_GeneratedPrefixForStorageServiceEndpoints<T>, Twox64Concat, DidIdentifierOf<T>, Blake2_128Concat, ServiceEndpointId<T>, DidEndpoint<T>>;
Expand description

Service endpoints associated with DIDs.

It maps from (DID identifier, service ID) to the service details.

Storage type is [StorageDoubleMap] with key1 type DidIdentifierOf < T >, key2 type ServiceEndpointId < T > and value type DidEndpoint < T >.

Aliased Type§

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