mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 22:04:06 -06:00
9 lines
525 B
TypeScript
9 lines
525 B
TypeScript
export declare enum ClaimEligibility {
|
|
NotEnoughSupply = "There is not enough supply to claim.",
|
|
AddressNotAllowed = "This address is not on the allowlist.",
|
|
WaitBeforeNextClaimTransaction = "Not enough time since last claim transaction. Please wait.",
|
|
AlreadyClaimed = "You have already claimed the token.",
|
|
NotEnoughTokens = "There are not enough tokens in the wallet to pay for the claim.",
|
|
NoActiveClaimPhase = "There is no active claim phase at the moment. Please check back in later."
|
|
}
|