pub type NftToAsset<T: Config> = StorageMap<_GeneratedPrefixForStorageNftToAsset<T>, Blake2_128Concat, (T::NftCollectionId, T::NftId), Details<AssetIdOf<T>, AssetBalanceOf<T>, DepositOf<T>, T::AccountId>, OptionQuery>;
Expand description

Keeps track of the corresponding NFT ID, asset ID and amount minted.

Storage type is [StorageMap] with key type (T :: NftCollectionId, T :: NftId) and value type Details < AssetIdOf < T > , AssetBalanceOf < T > , DepositOf < T > , T :: AccountId >.

Aliased Type§

struct NftToAsset<T: Config>(/* private fields */);