Type Alias pallet_ip_pallet::pallet::Nfts
source · pub type Nfts<T: Config> = StorageMap<_GeneratedPrefixForStorageNfts<T>, Blake2_128Concat, T::NFTId, NFT<T>>;Expand description
Storage for all NFTs in the system
Maps NFT IDs to their corresponding crate::types::NFT struct containing ownership
and metadata information.
Storage type is [StorageMap] with key type T :: NFTId and value type NFT < T >.
Aliased Type§
struct Nfts<T: Config>(/* private fields */);