pub trait CreateTypedCollection<AccountId, CollectionId>: Create<AccountId> {
    fn create_typed_collection(
        owner: AccountId,
        collection_id: CollectionId
    ) -> DispatchResult; }

Required Methods§

This function create an NFT collection of created_by type.

Implementors§