mintTicketPayable
This function allows the minting of tickets for specified recipients, events, access levels, and ticket amounts while collecting payment in Ether. 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 verifying whether the lengths of the input arrays match using the checkLengths
function to ensure data consistency. It then initializes a variable to store the total collected amount of Ether. Next, the function iterates through each recipient 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 checks whether the ticket price associated with the token ID is not zero and whether the requested ticket amount is valid. Additionally, it verifies whether the token ID exists for the specified event. If all validation checks pass, the function calculates and accumulates the total amount to be collected in Ether based on the ticket prices and amounts. It updates the collected amount for the respective event ID and then mints the tickets using the _mintTicket
internal function.
Finally, the function checks whether the total collected amount matches the sent Ether value. If the amounts do not match, indicating an inconsistency, the function reverts the transaction to maintain data integrity.
Last updated