checkTokenIdExistsForEventId
This view function checks if a specific token ID exists for a given event. It takes two parameters:
_eventId
: The unique identifier for the event._tokenId
: The token ID to be checked for existence.
Explanation:
The function retrieves all token IDs associated with the event using the getTokenIdsFromEventId
function. Then, it iterates through these token IDs to check if the specified token ID exists among them. If it finds a match, indicating that the token ID exists for the event, the function returns true
; otherwise, it returns false
.
Last updated