pub trait Create<AccountId, CollectionConfig>: Inspect<AccountId> {
    fn create_collection(
        who: &AccountId,
        admin: &AccountId,
        config: &CollectionConfig
    ) -> Result<Self::CollectionId, DispatchError>; }
Expand description

Trait for providing the ability to create collections of nonfungible items.

Required Methods§

Create a collection of nonfungible items to be owned by who and managed by admin.

Implementors§