Struct pallet_nft::pallet::Pallet
source · pub struct Pallet<T>(_);
Expand description
The pallet implementing the on-chain logic.
Implementations§
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
pub fn collection_owner(
collection_id: T::NftCollectionId
) -> Option<T::AccountId>
pub fn owner(
collection_id: T::NftCollectionId,
item_id: T::NftItemId
) -> Option<T::AccountId>
pub fn do_create_collection(
owner: T::AccountId,
collection_id: T::NftCollectionId,
created_by: Acc,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
pub fn do_mint(
owner: T::AccountId,
collection_id: T::NftCollectionId,
item_id: T::NftItemId,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
pub fn set_metadata(
owner: T::AccountId,
collection_id: T::NftCollectionId,
item_id: T::NftItemId,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
pub fn do_transfer(
collection_id: T::NftCollectionId,
item_id: T::NftItemId,
from: T::AccountId,
to: T::AccountId
) -> DispatchResult
pub fn do_burn(
owner: T::AccountId,
collection_id: T::NftCollectionId,
item_id: T::NftItemId
) -> DispatchResult
pub fn do_destroy_collection(
owner: T::AccountId,
collection_id: T::NftCollectionId
) -> DispatchResult
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
sourcepub fn create_collection(
origin: OriginFor<T>,
collection_id: PossibleCollections,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
pub fn create_collection(
origin: OriginFor<T>,
collection_id: PossibleCollections,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
Creates an NFT Collection of the given Collection and sets its metadata
Parameters:
collection_id
: Identifier of a Collectionmetadata
: Arbitrary data about a Collection, e.g. IPFS hash or name
Emits CollectionCreated event
sourcepub fn mint(
origin: OriginFor<T>,
collection_id: PossibleCollections,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
pub fn mint(
origin: OriginFor<T>,
collection_id: PossibleCollections,
metadata: BoundedVecOfUnq<T>
) -> DispatchResult
Mints a NFT in the specified Collection and sets its metadata
Parameters:
collection_id
: The Collection of the asset to be minted.item_id
: The Collection of the asset to be minted.metadata
: Arbitrary data about an Item, e.g. IPFS hash or symbol
sourcepub fn transfer(
origin: OriginFor<T>,
collection_id: PossibleCollections,
item_id: T::NftItemId,
dest: <T::Lookup as StaticLookup>::Source
) -> DispatchResult
pub fn transfer(
origin: OriginFor<T>,
collection_id: PossibleCollections,
item_id: T::NftItemId,
dest: <T::Lookup as StaticLookup>::Source
) -> DispatchResult
Triggered by Root(origin
), this transfers NFT from owner account to dest
account
Parameters:
collection_id
: The Collection of the asset to be transferred.item_id
: The Item of the asset to be transferred.dest
: The account to receive ownership of the asset.
sourcepub fn burn(
origin: OriginFor<T>,
collection_id: PossibleCollections,
item_id: T::NftItemId
) -> DispatchResult
pub fn burn(
origin: OriginFor<T>,
collection_id: PossibleCollections,
item_id: T::NftItemId
) -> DispatchResult
Triggered by a servicer (origin
) this removes a token from existence
Parameters:
collection_id
: The Collection of the asset to be burned.item_id
: The Item of the asset to be burned.
sourcepub fn destroy_collection(
origin: OriginFor<T>,
collection_id: PossibleCollections
) -> DispatchResult
pub fn destroy_collection(
origin: OriginFor<T>,
collection_id: PossibleCollections
) -> DispatchResult
Removes a Collection from existence
Parameters:
collection_id
: The identifier of the asset Collection to be destroyed.
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
sourcepub fn collections<KArg>(k: KArg) -> Option<CollectionInfo<BoundedVecOfUnq<T>>>where
KArg: EncodeLike<T::NftCollectionId>,
pub fn collections<KArg>(k: KArg) -> Option<CollectionInfo<BoundedVecOfUnq<T>>>where
KArg: EncodeLike<T::NftCollectionId>,
Stores Collection info
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
sourcepub fn items<KArg1, KArg2>(k1: KArg1, k2: KArg2) -> Option<ItemInfoOf<T>>where
KArg1: EncodeLike<T::NftCollectionId>,
KArg2: EncodeLike<T::NftItemId>,
pub fn items<KArg1, KArg2>(k1: KArg1, k2: KArg2) -> Option<ItemInfoOf<T>>where
KArg1: EncodeLike<T::NftCollectionId>,
KArg2: EncodeLike<T::NftItemId>,
Stores Item info
Trait Implementations§
source§impl<T: Config> Create<<T as Config>::AccountId> for Pallet<T>
impl<T: Config> Create<<T as Config>::AccountId> for Pallet<T>
source§fn create_collection(
collection: &Self::CollectionId,
who: &T::AccountId,
_admin: &T::AccountId
) -> DispatchResult
fn create_collection(
collection: &Self::CollectionId,
who: &T::AccountId,
_admin: &T::AccountId
) -> DispatchResult
Create a
collection
of nonfungible items to be owned by who
and managed by admin
.source§impl<T: Config> CreateTypedCollection<<T as Config>::AccountId, <T as Config>::NftCollectionId> for Pallet<T>
impl<T: Config> CreateTypedCollection<<T as Config>::AccountId, <T as Config>::NftCollectionId> for Pallet<T>
source§fn create_typed_collection(
owner: T::AccountId,
collection_id: T::NftCollectionId
) -> DispatchResult
fn create_typed_collection(
owner: T::AccountId,
collection_id: T::NftCollectionId
) -> DispatchResult
This function create an NFT collection of
created_by
type.source§impl<T: Config> Destroy<<T as Config>::AccountId> for Pallet<T>
impl<T: Config> Destroy<<T as Config>::AccountId> for Pallet<T>
§type DestroyWitness = DestroyWitness
type DestroyWitness = DestroyWitness
The witness data needed to destroy an item.
source§fn get_destroy_witness(
collection: &Self::CollectionId
) -> Option<Self::DestroyWitness>
fn get_destroy_witness(
collection: &Self::CollectionId
) -> Option<Self::DestroyWitness>
Provide the appropriate witness data needed to destroy an item.
source§impl<T: Config> GetStorageVersion for Pallet<T>
impl<T: Config> GetStorageVersion for Pallet<T>
source§fn current_storage_version() -> StorageVersion
fn current_storage_version() -> StorageVersion
Returns the current storage version as supported by the pallet.
source§fn on_chain_storage_version() -> StorageVersion
fn on_chain_storage_version() -> StorageVersion
Returns the on-chain storage version of the pallet as stored in the storage.
source§impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>
§fn on_finalize(_n: BlockNumber)
fn on_finalize(_n: BlockNumber)
The block is being finalized. Implement to have something happen.
§fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
This will be run when the block is being finalized (before
on_finalize
).
Implement to have something happen using the remaining weight.
Will not fire if the remaining weight is 0.
Return the weight used, the hook will subtract it from current weight used
and pass the result to the next on_idle
hook if it exists. Read more§fn on_initialize(_n: BlockNumber) -> Weight
fn on_initialize(_n: BlockNumber) -> Weight
The block is being initialized. Implement to have something happen. Read more
§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
Perform a module upgrade. Read more
§fn try_state(_n: BlockNumber) -> Result<(), &'static str>
fn try_state(_n: BlockNumber) -> Result<(), &'static str>
Execute the sanity checks of this pallet, per block. Read more
§fn pre_upgrade() -> Result<(), &'static str>
fn pre_upgrade() -> Result<(), &'static str>
Execute some pre-checks prior to a runtime upgrade. Read more
§fn post_upgrade() -> Result<(), &'static str>
fn post_upgrade() -> Result<(), &'static str>
Execute some post-checks after a runtime upgrade. Read more
§fn offchain_worker(_n: BlockNumber)
fn offchain_worker(_n: BlockNumber)
Implementing this function on a module allows you to perform long-running tasks
that make (by default) validators generate transactions that feed results
of those long-running computations back on chain. Read more
§fn integrity_test()
fn integrity_test()
Run integrity test. Read more
source§impl<T: Config> Inspect<<T as Config>::AccountId> for Pallet<T>
impl<T: Config> Inspect<<T as Config>::AccountId> for Pallet<T>
§type CollectionId = <T as Config>::NftCollectionId
type CollectionId = <T as Config>::NftCollectionId
Type for identifying a collection (an identifier for an independent collection of
items). Read more
source§fn owner(
collection: &Self::CollectionId,
item: &Self::ItemId
) -> Option<T::AccountId>
fn owner(
collection: &Self::CollectionId,
item: &Self::ItemId
) -> Option<T::AccountId>
Returns the owner of
item
of collection
, or None
if the item doesn’t exist
(or somehow has no owner). Read moresource§fn collection_owner(collection: &Self::CollectionId) -> Option<T::AccountId>
fn collection_owner(collection: &Self::CollectionId) -> Option<T::AccountId>
Returns the owner of the
collection
, if there is one. For many NFTs this may not
make any sense, so users of this API should not be surprised to find a collection
results in None
here. Read more§fn attribute(
_collection: &Self::CollectionId,
_item: &Self::ItemId,
_key: &[u8]
) -> Option<Vec<u8, Global>>
fn attribute(
_collection: &Self::CollectionId,
_item: &Self::ItemId,
_key: &[u8]
) -> Option<Vec<u8, Global>>
§fn typed_attribute<K, V>(
collection: &Self::CollectionId,
item: &Self::ItemId,
key: &K
) -> Option<V>where
K: Encode,
V: Decode,
fn typed_attribute<K, V>(
collection: &Self::CollectionId,
item: &Self::ItemId,
key: &K
) -> Option<V>where
K: Encode,
V: Decode,
§fn typed_collection_attribute<K, V>(
collection: &Self::CollectionId,
key: &K
) -> Option<V>where
K: Encode,
V: Decode,
fn typed_collection_attribute<K, V>(
collection: &Self::CollectionId,
key: &K
) -> Option<V>where
K: Encode,
V: Decode,
§fn can_transfer(_collection: &Self::CollectionId, _item: &Self::ItemId) -> bool
fn can_transfer(_collection: &Self::CollectionId, _item: &Self::ItemId) -> bool
source§impl<T: Config> InspectEnumerable<<T as Config>::AccountId> for Pallet<T>
impl<T: Config> InspectEnumerable<<T as Config>::AccountId> for Pallet<T>
source§fn collections() -> Box<dyn Iterator<Item = Self::CollectionId>>
fn collections() -> Box<dyn Iterator<Item = Self::CollectionId>>
Returns an iterator of the collections in existence.
source§fn items(
collection: &Self::CollectionId
) -> Box<dyn Iterator<Item = Self::ItemId>>
fn items(
collection: &Self::CollectionId
) -> Box<dyn Iterator<Item = Self::ItemId>>
Returns an iterator of the items of a
collection
in existence.source§fn owned(
who: &T::AccountId
) -> Box<dyn Iterator<Item = (Self::CollectionId, Self::ItemId)>>
fn owned(
who: &T::AccountId
) -> Box<dyn Iterator<Item = (Self::CollectionId, Self::ItemId)>>
Returns an iterator of the items of all collections owned by
who
.source§fn owned_in_collection(
collection: &Self::CollectionId,
who: &T::AccountId
) -> Box<dyn Iterator<Item = Self::ItemId>>
fn owned_in_collection(
collection: &Self::CollectionId,
who: &T::AccountId
) -> Box<dyn Iterator<Item = Self::ItemId>>
Returns an iterator of the items of
collection
owned by who
.source§impl<T: Config> IntegrityTest for Pallet<T>
impl<T: Config> IntegrityTest for Pallet<T>
source§fn integrity_test()
fn integrity_test()
Run integrity test. Read more
source§impl<T: Config> Mutate<<T as Config>::AccountId> for Pallet<T>
impl<T: Config> Mutate<<T as Config>::AccountId> for Pallet<T>
source§fn mint_into(
collection: &Self::CollectionId,
item: &Self::ItemId,
who: &T::AccountId
) -> DispatchResult
fn mint_into(
collection: &Self::CollectionId,
item: &Self::ItemId,
who: &T::AccountId
) -> DispatchResult
source§fn burn(
collection: &Self::CollectionId,
item: &Self::ItemId,
_maybe_check_owner: Option<&T::AccountId>
) -> DispatchResult
fn burn(
collection: &Self::CollectionId,
item: &Self::ItemId,
_maybe_check_owner: Option<&T::AccountId>
) -> DispatchResult
§fn set_attribute(
_collection: &Self::CollectionId,
_item: &Self::ItemId,
_key: &[u8],
_value: &[u8]
) -> Result<(), DispatchError>
fn set_attribute(
_collection: &Self::CollectionId,
_item: &Self::ItemId,
_key: &[u8],
_value: &[u8]
) -> Result<(), DispatchError>
§fn set_typed_attribute<K, V>(
collection: &Self::CollectionId,
item: &Self::ItemId,
key: &K,
value: &V
) -> Result<(), DispatchError>where
K: Encode,
V: Encode,
fn set_typed_attribute<K, V>(
collection: &Self::CollectionId,
item: &Self::ItemId,
key: &K,
value: &V
) -> Result<(), DispatchError>where
K: Encode,
V: Encode,
source§impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>
source§fn offchain_worker(n: <T as Config>::BlockNumber)
fn offchain_worker(n: <T as Config>::BlockNumber)
This function is being called after every block import (when fully synced). Read more
source§impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_finalize(n: <T as Config>::BlockNumber)
fn on_finalize(n: <T as Config>::BlockNumber)
The block is being finalized. Implement to have something happen. Read more
source§impl<T: Config> OnGenesis for Pallet<T>
impl<T: Config> OnGenesis for Pallet<T>
source§fn on_genesis()
fn on_genesis()
Something that should happen at genesis.
source§impl<T: Config> OnIdle<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnIdle<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_idle(n: <T as Config>::BlockNumber, remaining_weight: Weight) -> Weight
fn on_idle(n: <T as Config>::BlockNumber, remaining_weight: Weight) -> Weight
The block is being finalized.
Implement to have something happen in case there is leftover weight.
Check the passed
remaining_weight
to make sure it is high enough to allow for
your pallet’s extra computation. Read moresource§impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_initialize(n: <T as Config>::BlockNumber) -> Weight
fn on_initialize(n: <T as Config>::BlockNumber) -> Weight
The block is being initialized. Implement to have something happen. Read more
source§impl<T: Config> PalletInfoAccess for Pallet<T>
impl<T: Config> PalletInfoAccess for Pallet<T>
source§fn module_name() -> &'static str
fn module_name() -> &'static str
Name of the Rust module containing the pallet.
source§fn crate_version() -> CrateVersion
fn crate_version() -> CrateVersion
Version of the crate containing the pallet.
source§impl<T: Config> ReserveCollectionId<<T as Config>::NftCollectionId> for Pallet<T>
impl<T: Config> ReserveCollectionId<<T as Config>::NftCollectionId> for Pallet<T>
source§fn is_id_reserved(id: T::NftCollectionId) -> bool
fn is_id_reserved(id: T::NftCollectionId) -> bool
This function returns
true
if collection id is from the reserved range, false
otherwise.impl<T> Eq for Pallet<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Pallet<T>where
T: RefUnwindSafe,
impl<T> Send for Pallet<T>where
T: Send,
impl<T> Sync for Pallet<T>where
T: Sync,
impl<T> Unpin for Pallet<T>where
T: Unpin,
impl<T> UnwindSafe for Pallet<T>where
T: UnwindSafe,
Blanket Implementations§
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresource§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<U> OnRuntimeUpgradeHelpersExt for Uwhere
U: OnRuntimeUpgrade,
impl<U> OnRuntimeUpgradeHelpersExt for Uwhere
U: OnRuntimeUpgrade,
§fn storage_key(ident: &str) -> [u8; 32]
fn storage_key(ident: &str) -> [u8; 32]
Generate a storage key unique to this runtime upgrade. Read more
§fn get_temp_storage<T>(at: &str) -> Option<T>where
T: Decode,
fn get_temp_storage<T>(at: &str) -> Option<T>where
T: Decode,
Get temporary storage data written by [
Self::set_temp_storage
]. Read more§fn set_temp_storage<T>(data: T, at: &str)where
T: Encode,
fn set_temp_storage<T>(data: T, at: &str)where
T: Encode,
Write some temporary data to a specific storage that can be read (potentially in
post-upgrade hook) via [
Self::get_temp_storage
]. Read more§impl<T> PalletVersionToStorageVersionHelper for Twhere
T: GetStorageVersion + PalletInfoAccess,
impl<T> PalletVersionToStorageVersionHelper for Twhere
T: GetStorageVersion + PalletInfoAccess,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.