Airdrop

A distribution of cryptocurrency tokens or coins, usually for free, to numerous wallet addresses.

In the context of cryptocurrencies and blockchain technology, an airdrop is a promotional strategy where new or existing tokens are distributed freely to a community of users. This is typically done to raise awareness for a new project, reward existing token holders of a related blockchain, or incentivize participation in a decentralized application (dApp). The mechanics usually involve users performing certain actions, such as holding a specific token, signing up for a newsletter, following social media accounts, or interacting with a smart contract. The distribution itself is often executed via smart contracts that automatically transfer tokens to eligible wallet addresses. Trade-offs for projects include the cost of token distribution and potential dilution of token value if not managed carefully, balanced against the benefits of rapid community growth, increased token velocity, and decentralized network effects. For recipients, it's a risk-free way to acquire new digital assets, though the value can be speculative and subject to market volatility.

        graph LR
  Center["Airdrop"]:::main
  Rel_social_token["social-token"]:::related -.-> Center
  click Rel_social_token "/terms/social-token"
  Rel_wallet["wallet"]:::related -.-> Center
  click Rel_wallet "/terms/wallet"
  Rel_reflection_token["reflection-token"]:::related -.-> Center
  click Rel_reflection_token "/terms/reflection-token"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧠 Knowledge Check

1 / 5

🧒 Explain Like I'm 5

Think of an airdrop like a new store in town giving out free samples of their cookies on opening day. They want you to try the cookie, tell your friends, and hopefully come back to buy more later. In the crypto world, 'cookies' are digital tokens, and 'opening day' is when a new project starts. Instead of handing them out on the street, the project sends them directly to your digital [wallet](/en/terms/wallet) because they saw you've used similar apps before. It's a surprise gift that turns you into a part-owner of the project just for being an early user.

🤓 Expert Deep Dive

The technical execution of an airdrop focuses on two main pillars: Scalability and Sybil Resistance. For scalability, modern airdrops utilize Merkle Trees (specifically 'Merkle Distrubutors'). Instead of the protocol pushing tokens to 100,000 wallets (which would be prohibitively expensive in gas fees), the project publishes a Merkle Root on-chain. Eligible users then provide a Merkle Proof to 'claim' their specific allocation, shifting gas costs to the end-user. Sybil Resistance is the battle against 'Airdrop Farmers' who use scripts to create thousands of fake wallets to drain the allocation. Advanced protocols now integrate identity verification layers like Gitcoin Passport, EigenLayer resting scores, or WorldID to ensure 'One Person, One Airdrop'. Economically, airdrops must be modeled to avoid massive 'Sell Pressure' upon listing; this is why projects increasingly use 'Point Systems' (Off-chain ledgers) to track engagement before performing the final TGE (Token Generation Event). Architecturally, the claim contract must be audited for 'Re-entrancy' attacks and 'Front-running,' as malicious actors may try to intercept the claim transaction using MEV (Maximal Extractable Value) bots.

📚 Sources