What it is
An airdrop is a distribution of tokens to a set of wallet addresses, typically at no direct cost to the recipients. Projects use airdrops to seed initial ownership of a token among users, community members, or holders of another asset, rather than (or in addition to) selling tokens through an exchange or auction.
How it works
- The project defines eligibility criteria: this might be "held asset X before date Y," "used the protocol Z times," "held an NFT from collection A," or simply "signed up for a form."
- A snapshot is taken — a record of which addresses satisfy the criteria at a specific point in time (often a specific block number), so eligibility can't be gamed after the fact.
- The project computes how many tokens each eligible address receives, often using a formula weighted by usage, holdings, or another activity metric.
- Tokens are either sent directly to recipients' wallets (a "push" airdrop) or made available for recipients to claim by submitting a transaction, often verified with a Merkle proof so the contract doesn't need to store every recipient's balance individually (a "pull" or claim-based airdrop).
- Recipients who claim typically pay only the gas fee for the claim transaction; the tokens themselves are free.
- Unclaimed allocations may expire after a deadline, sometimes returning to the project's treasury or being redistributed.
Why designers use it
- Bootstraps a distributed holder base quickly, which helps decentralize governance power and signals broad community ownership.
- Rewards early users or supporters of a product without requiring them to have spent money, building goodwill and loyalty.
- Converts users of one product (or holders of another token) into stakeholders of a new one, driving adoption and cross-pollination between ecosystems.
- Can substitute for or supplement a token sale, avoiding some of the regulatory and fairness concerns of selling tokens directly.
Failure modes
- Sybil farming: opportunists create large numbers of wallets to perform the minimum qualifying activity purely to inflate their airdrop allocation, diluting rewards meant for genuine users.
- Mercenary dumping: many recipients sell their free tokens immediately after the airdrop, creating sustained sell pressure and a price crash shortly after launch.
- Eligibility disputes and exclusion: snapshot criteria inevitably miss some genuine users (wrong chain, wrong wallet, used a different interface) while including gamed wallets, generating community backlash.
- Expectation-driven behavior distortion: once users anticipate a future airdrop for a still-tokenless project, they may perform artificial or wasteful on-chain activity solely to qualify, distorting real usage metrics.
- Legal and tax ambiguity: depending on jurisdiction, receiving or later selling airdropped tokens can carry unclear tax or securities-law treatment for both the project and recipients.
What to check before using it
- Design eligibility criteria and snapshot timing to be resistant to last-minute wash activity and easily forkable wallet-splitting.
- Decide on and communicate a clear claim deadline and what happens to unclaimed tokens.
- Model likely post-airdrop sell pressure and consider vesting, lockups, or tiered unlocks for large allocations.
- Have a Sybil-detection process (clustering, heuristics, off-chain identity checks) before finalizing the recipient list.
- Confirm the legal treatment of a free token distribution in the jurisdictions where your team and major recipient bases are located.