Skip to content

Commit

Permalink
Merge pull request hackdays-io#522 from ikmzkro/feature/hackdays-io#432
Browse files Browse the repository at this point in the history
Allow external access to retrieve whether or not a person is a participant in the event.
  • Loading branch information
yu23ki14 authored Mar 16, 2024
2 parents da10f27 + fbb8f51 commit 8e66d19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion circom
Submodule circom updated from ccc8cd to 6cf742
5 changes: 5 additions & 0 deletions hardhat/contracts/IMintNFT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,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);
Expand Down

0 comments on commit 8e66d19

Please sign in to comment.