Type Alias Namespaces

Source
pub type Namespaces<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageNamespaces<T>, Blake2_128Concat, NamespaceOwnership<T>, Blake2_128Concat, NamespacePath, NamespaceMetadata<T>>;
Expand description

Namespace registry - maps (owner, path) to metadata

Storage type is [StorageDoubleMap] with key1 type NamespaceOwnership < T >, key2 type NamespacePath and value type NamespaceMetadata < T >.

Aliased Typeยง

struct Namespaces<T: Config>(/* private fields */);