Type Alias pallet_uniques::pallet::Item

source ·
pub type Item<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageItem<T, I>, Blake2_128Concat, T::CollectionId, Blake2_128Concat, T::ItemId, ItemDetails<T::AccountId, <<T as Config<I>>::Currency as Currency<<T as SystemConfig>::AccountId>>::Balance>, OptionQuery>;
Expand description

The items in existence and their ownership details.

Storage type is [StorageDoubleMap] with key1 type T :: CollectionId, key2 type T :: ItemId and value type ItemDetails < T :: AccountId, DepositBalanceOf < T, I > >.

Aliased Type§

struct Item<T: Config<I>, I: 'static = ()>(/* private fields */);