mintTicket
This function enables the minting of tickets for specified recipients, events, access levels, and ticket amounts. It takes four parameters:
_to
: An array containing the addresses of recipients for whom tickets are to be minted._eventIds
: An array containing the unique identifiers for the events for which tickets are to be minted._accessLevels
: An array containing the access levels associated with the tickets being minted._amounts
: An array containing the amounts of tickets to be minted for each recipient.
Explanation:
The function begins by checking if the lengths of the input arrays match using the checkLengths
function. If the lengths do not match, indicating inconsistent input, the function reverts the transaction with a custom error message.
Next, the function iterates through each recipient address in the _to
array. For each recipient, it retrieves the corresponding token ID for the specified event and access level using the getTokenIdOfAccessLevel
function. It then checks if the ticket price associated with the token ID is greater than 0, which indicates a paid ticket. If a paid ticket is found, the function reverts the transaction with an error message indicating that paid tickets cannot be minted using this function.
Subsequently, the function verifies the validity of the recipient address, ensuring it is not a null address. It also checks if the amount of tickets to be minted is greater than 0, preventing the minting of invalid amounts. Additionally, it confirms whether the token ID exists for the specified event. If the token ID does not exist, indicating an invalid event or access level combination, the function reverts the transaction with an appropriate error message.
Finally, if all checks pass, the function calls the _mintTicket
internal function to mint the specified amount of tickets for the recipient, event, and access level.
Last updated