generateTokenId
This view function generates a unique token ID for an event access level based on the event registerer's address, event ID, and access level. It takes three parameters:
eventId
: The unique identifier for the event.eventRegisterer
: The address of the entity registering the event.accessLevel
: The access level for which the token ID is generated.
Explanation:
The function begins by converting the event registerer's address to a hexadecimal string using the toHexString
function provided by the Strings
library. This conversion ensures that the address is represented as a string.
Next, it concatenates the event ID, the hexadecimal representation of the event registerer's address, and the access level using the abi.encodePacked
function. This concatenated string serves as the basis for generating the token ID.
The token ID is generated by taking the keccak256
hash of the concatenated string. This hash operation ensures that the generated token ID is unique for the combination of event ID, event registerer's address, and access level.
Before returning the generated token ID, the function checks if the token ID already exists for the specified event using the checkTokenIdExistsForEventId
function. If a token ID collision is detected, indicating that the generated token ID already exists for the event, the function reverts the transaction with an appropriate error message.
Finally, if no collision is detected, the function returns the generated token ID, ensuring that it is unique within the context of the specified event.
Last updated