Type Definition pallet_nfts::pallet::CollectionAccount

source ·
pub type CollectionAccount<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageCollectionAccount<T, I>, Blake2_128Concat, T::AccountId, Blake2_128Concat, T::CollectionId, (), OptionQuery>;
Expand description

The collections owned by any given account; set out this way so that collections owned by a single account can be enumerated.

Storage type is StorageDoubleMap with key1 type T :: AccountId, key2 type T :: CollectionId and value type ().