import { prepareEvent } from "../../../../../event/prepare-event.js"; /** * Creates an event object for the ClaimConditionUpdated event. * @returns The prepared event object. * @extension COMMON * @example * ```ts * import { getContractEvents } from "thirdweb"; * import { claimConditionUpdatedEvent } from "thirdweb/extensions/common"; * * const events = await getContractEvents({ * contract, * events: [ * claimConditionUpdatedEvent() * ], * }); * ``` */ export function claimConditionUpdatedEvent() { return prepareEvent({ signature: "event ClaimConditionUpdated((uint256 startTimestamp, uint256 maxClaimableSupply, uint256 supplyClaimed, uint256 quantityLimitPerWallet, bytes32 merkleRoot, uint256 pricePerToken, address currency, string metadata) claimConditions, bool resetClaimEligibility)", }); }