Type Definition pallet_nfts::pallet::Collection
source · pub type Collection<T: Config<I>, I: 'static = ()> = StorageMap<_GeneratedPrefixForStorageCollection<T, I>, Blake2_128Concat, T::CollectionId, CollectionDetails<T::AccountId, <<T as Config<I>>::Currency as Currency<<T as SystemConfig>::AccountId>>::Balance>>;
Expand description
Details of a collection.
Storage type is StorageMap
with key type T :: CollectionId
and value type CollectionDetails < T :: AccountId, DepositBalanceOf < T, I > >
.