Type Definition pallet_nfts::pallet::ItemPriceOf
source · pub type ItemPriceOf<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageItemPriceOf<T, I>, Blake2_128Concat, T::CollectionId, Blake2_128Concat, T::ItemId, (<<T as Config<I>>::Currency as Currency<<T as SystemConfig>::AccountId>>::Balance, Option<T::AccountId>), OptionQuery>;
Expand description
A price of an item.
Storage type is StorageDoubleMap
with key1 type T :: CollectionId, key2 type T :: ItemId and value type (ItemPrice < T, I >, Option < T :: AccountId >).