Type Definition pallet_nfts::pallet::PendingSwapOf

source ·
pub type PendingSwapOf<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStoragePendingSwapOf<T, I>, Blake2_128Concat, T::CollectionId, Blake2_128Concat, T::ItemId, PendingSwap<T::CollectionId, T::ItemId, PriceWithDirection<<<T as Config<I>>::Currency as Currency<<T as SystemConfig>::AccountId>>::Balance>, BlockNumberFor<T>>, OptionQuery>;
Expand description

Handles all the pending swaps.

Storage type is StorageDoubleMap with key1 type T :: CollectionId, key2 type T :: ItemId and value type PendingSwap < T :: CollectionId, T :: ItemId, PriceWithDirection < ItemPrice < T, I > >, BlockNumberFor < T >, >.