pub trait CreateTypedCollection<AccountId, CollectionId, CollectionType, Metadata> {
    fn create_typed_collection(
        owner: AccountId,
        collection_id: CollectionId,
        collection_type: CollectionType,
        metadata: Option<Metadata>
    ) -> DispatchResult; }

Required Methods§

This function create an NFT collection of collection_type type.

Implementors§