Home > @3rdweb/sdk > DropModule > canClaim
Can Claim
Signature:
canClaim(quantity: BigNumberish, addressToCheck?: string): Promise<boolean>;
Parameter | Type | Description |
---|---|---|
quantity | BigNumberish | |
addressToCheck | string |
Returns:
Promise<boolean>
Check if the drop can currently be claimed.
// Quantity of tokens to check if they are claimable
const quantity = 1;
await module.canClaim(quantity);