# IAirdropERC20Claimable

Thirdweb's `Airdrop` contracts provide a lightweight and easy to use mechanism to drop tokens. `AirdropERC20Claimable` contract is an airdrop contract for ERC20 tokens. It follows a pull mechanism for transfer of tokens, where allowlisted recipients can claim tokens from the contract.

## Methods

### claim

```solidity
function claim(address receiver, uint256 quantity, bytes32[] proofs, uint256 proofMaxQuantityForWallet) external nonpayable
```

Lets an account claim a given quantity of NFTs.

#### Parameters

| Name                      | Type       | Description                                                                                           |
| ------------------------- | ---------- | ----------------------------------------------------------------------------------------------------- |
| receiver                  | address    | The receiver of the NFTs to claim.                                                                    |
| quantity                  | uint256    | The quantity of NFTs to claim.                                                                        |
| proofs                    | bytes32\[] | The proof of the claimer's inclusion in the merkle root allowlist of the claim conditions that apply. |
| proofMaxQuantityForWallet | uint256    | The maximum number of NFTs an address included in an allowlist can claim.                             |

## Events

### TokensClaimed

```solidity
event TokensClaimed(address indexed claimer, address indexed receiver, uint256 quantityClaimed)
```

*Emitted when tokens are claimed.*

#### Parameters

| Name               | Type    | Description |
| ------------------ | ------- | ----------- |
| claimer `indexed`  | address | undefined   |
| receiver `indexed` | address | undefined   |
| quantityClaimed    | uint256 | undefined   |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://the-artist-xchange.gitbook.io/the-artist-xchange/docs/iairdroperc20claimable.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
