checkIfCallerIsEventManager
This view function checks if the caller is the event manager for a specific event. It takes two parameters:
_eventId
: The unique identifier for the event._callerAddress
: The address of the caller to be checked.
Explanation:
The function retrieves the token ID associated with the event manager for the specified event using the getTokenIdOfAnEventManager
function. Then, it checks if the caller's balance for the retrieved token ID is equal to 1, which indicates that they are the event manager.
If the caller is the event manager, the function returns true
; otherwise, it returns false
.
Last updated