From 19ae1b0b2ef38863954658be4020aa0bf31e05c3 Mon Sep 17 00:00:00 2001 From: Wayne Date: Fri, 23 Jun 2023 13:51:22 -1000 Subject: [PATCH] update comment --- contracts/QuestNFT.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/QuestNFT.sol b/contracts/QuestNFT.sol index 70d88a34..1e356aab 100644 --- a/contracts/QuestNFT.sol +++ b/contracts/QuestNFT.sol @@ -15,7 +15,7 @@ import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/se /// @title QuestNFT /// @author RabbitHole.gg -/// @notice This contract is the Erc721 Quest Completion contract. It is the NFT that can be minted after a quest is completed. +/// @notice This contract is the Erc1155 Quest Collection contract. It is the NFT that can be minted after a quest is completed. contract QuestNFT is Initializable, ERC1155Upgradeable, ERC1155SupplyUpgradeable, PausableUpgradeable, OwnableUpgradeable, IERC2981Upgradeable, ReentrancyGuardUpgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; using SafeERC20 for IERC20;