getTokenIdOfAccessLevel
This view function retrieves the token ID associated with a specific access level for an event. It takes two parameters:
_eventId
: The unique identifier for the event._accessLevel
: The access level for which to retrieve the token ID.
Explanation:
The function first retrieves all token IDs and access levels associated with the provided event ID using helper functions getTokenIdsFromEventId
and getAccessLevelsFromEventId
. Then, it iterates through these arrays to find a match between the provided access level and the access levels associated with the event. If a match is found, it retrieves the corresponding token ID.
If no matching token ID is found, the function reverts with the error message DecastGating__TokenIdDoesNotExists
.
Finally, the function returns the retrieved token ID associated with the specified access level.
Last updated