Trait pallet_onboarding::Create
pub trait Create<AccountId>: Inspect<AccountId> {
fn create_collection(
collection: &Self::CollectionId,
who: &AccountId,
admin: &AccountId
) -> Result<(), DispatchError>;
}
Expand description
Trait for providing the ability to create collections of nonfungible items.
Required Methods§
fn create_collection(
collection: &Self::CollectionId,
who: &AccountId,
admin: &AccountId
) -> Result<(), DispatchError>
fn create_collection(
collection: &Self::CollectionId,
who: &AccountId,
admin: &AccountId
) -> Result<(), DispatchError>
Create a collection
of nonfungible items to be owned by who
and managed by admin
.
Implementations on Foreign Types§
§impl<T> Create<<T as Config>::AccountId> for Pallet<T>where
T: Config,
impl<T> Create<<T as Config>::AccountId> for Pallet<T>where
T: Config,
fn create_collection(
collection: &<Pallet<T> as Inspect<<T as Config>::AccountId>>::CollectionId,
who: &<T as Config>::AccountId,
_admin: &<T as Config>::AccountId
) -> Result<(), DispatchError>
§impl<T, I> Create<<T as Config>::AccountId> for Pallet<T, I>where
T: Config<I>,
I: 'static,
impl<T, I> Create<<T as Config>::AccountId> for Pallet<T, I>where
T: Config<I>,
I: 'static,
§fn create_collection(
collection: &<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId,
who: &<T as Config>::AccountId,
admin: &<T as Config>::AccountId
) -> Result<(), DispatchError>
fn create_collection(
collection: &<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId,
who: &<T as Config>::AccountId,
admin: &<T as Config>::AccountId
) -> Result<(), DispatchError>
Create a collection
of nonfungible items to be owned by who
and managed by admin
.