Smart Airdrop Engine

Mint. Qualify.
Distribute. Grow.

Gate-checked token distribution that drives the flywheel. Only qualified wallets receive tokens. Stakers, holders, NFT owners, delegators — you set the rules, the SDK enforces them.

The Flywheel

Every Airdrop Starts a Growth Loop

Smart airdrops aren't charity — they're the growth engine. Each step feeds the next.

MINT
Issue a Smart Token with built-in clawback, freeze, and whitelist
🔒
QUALIFY
Gate-check candidates: stakers, holders, delegators, reputation
🎁
DISTRIBUTE
Batch-send tokens to qualified wallets. Equal, weighted, or tiered.
📈
TRADE
Recipients trade on the DEX. Volume grows. Liquidity deepens.
🌐
GROW
More holders = more governance, more demand, stronger community
What Makes It Smart

Not Just Token Sends.
Gate-Checked Distribution.

Every other airdrop tool just sends tokens to a list. TXAI qualifies recipients first.

🔒

Gate-Checked

Only wallets that pass your eligibility gates receive tokens. Balance, staking, NFT ownership, delegation, reputation.

🤖

NLP Parsing

"Airdrop 1000 MYTOKEN to all stakers" — describe it in plain English, the AI parses it into an executable intent.

📋

Dry Run

Preview the entire distribution before spending a single token. See who qualifies, how much each gets, estimated gas.

6 Strategies

Equal, weighted by balance, weighted by reputation, fixed amount, tiered distribution, or fully custom logic.

💰

Vesting

Cliff, linear, cliff+linear, or milestone-based vesting schedules. Tokens unlock over time, not all at once.

📊

Multi-Source

Pull candidates from stakers, token holders, NFT owners, transaction history, or CSV uploads. Union or intersection.

Distribution Strategies

One Engine, Six Distribution Modes

Pick the strategy that matches your growth goal. All gate-checked.

Equal

Split the total evenly among all qualified recipients. Fair launch, maximum reach.

Weighted

Proportional to token balance. Bigger holders get a bigger share. Rewards loyalty.

Reputation

Weighted by on-chain reputation score. Reliable agents and wallets get more.

Tiered

Define tiers with different amounts. Whales, mid-holders, and community each get their own allocation.

Fixed

Set amount per recipient regardless of holdings. Simple, predictable, easy to budget.

Custom

Write your own distribution function. Full control over allocation logic.

SDK + CLI

Two Lines to Qualify.
One Line to Execute.

The SDK handles everything: candidate sourcing, gate evaluation, batch sending, receipt tracking, and error recovery.

Or use the CLI to parse natural language instructions, dry-run the distribution, and execute — all from the terminal.

$ txai airdrop parse "Send 1000 MYTOKEN to all stakers"
$ txai airdrop dry-run --intent intent.json
$ txai airdrop execute --intent intent.json --confirm

// SDK: Gate-checked airdrop in 10 lines

const drop = new Airdrop(issuer, {
  denom: 'mytoken-testcore1...',
  totalAmount: '1000000000',
  gate: Gates.delegator(),
  strategy: 'equal',
});

drop.addCandidates(addresses);
await drop.qualify();
await drop.execute();

// { qualified: 47, sent: 47, failed: 0 }

Run Your First Airdrop

Open the studio, describe your airdrop in plain English, preview the distribution, and launch.

Try Live Preview → Open Full Studio