From fbb8f51b891f15edf40fcc1fb46b65b967622154 Mon Sep 17 00:00:00 2001 From: ikmz Date: Tue, 20 Feb 2024 01:19:50 +0900 Subject: [PATCH] Add function isHoldingEventNFTByAddress to IMintNFT.sol --- circom | 2 +- hardhat/contracts/IMintNFT.sol | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/circom b/circom index ccc8cd74..6cf74202 160000 --- a/circom +++ b/circom @@ -1 +1 @@ -Subproject commit ccc8cd743c38ff4d24f6c8b68a8ad7b3093705db +Subproject commit 6cf74202ebe9a768b67d688eb0ffd8768e73ad50 diff --git a/hardhat/contracts/IMintNFT.sol b/hardhat/contracts/IMintNFT.sol index f5eab4be..ad6ade7b 100644 --- a/hardhat/contracts/IMintNFT.sol +++ b/hardhat/contracts/IMintNFT.sol @@ -45,6 +45,11 @@ interface IMintNFT { string memory _secretPhrase ) external; + function isHoldingEventNFTByAddress( + address _address, + uint256 _eventId + ) external view returns (bool); + function name() external view returns (string memory); function owner() external view returns (address);