Launch tokens on any chain without giving up 30-50% of your fees. Two paths: Easy Mode (call Tator API via x402 — works with any wallet provider, no env vars required) or Direct Mode (integrate SDKs yourself, keep 100% — requires signing key and RPC). Covers Clanker (7 EVM chains), Flaunch (Base), and Pump.fun (Solana). Includes strategy evaluation, fee management, claiming, recipient updates, and tax/legal guidance. Triggers: "token idea", "launch a coin", "launch a token", "deploy a token", "token strategy", "claim fees", "creator fees", "update fee recipient", "token launch on base", "launch on solana", "clanker", "flaunch", "pump.fun", "token economics", "is this a good token".
Launch tokens and keep your fees. Two paths, one goal: stop giving away 30-50% of your creator earnings to launch platforms.
Most token launch platforms take 30-50% of your creator fee earnings. Some charge upfront launch fees on top of that. Others layer in subscriptions, required platform tokens, or custodial wallets that hold your funds. You build the token, drive the volume, and someone else keeps the biggest slice.
A token doing $500K in trading volume on Clanker generates ~$5,000 in pool fees (1% of volume). Here's who keeps what:
| Path | Your Share | Platform Cut | You Keep |
|---|---|---|---|
| Direct Mode (this skill) | $5,000 | $0 | $5,000 (100%) |
| Easy Mode (Tator API) | $4,500 | $500 (10%) | $4,500 (90%) |
| Typical launch platforms |
| $2,500-3,500 |
| $1,500-2,500 (30-50%) |
| $2,500-3,500 |
The difference compounds. At $5M volume, Direct Mode keeps you an extra $15,000-25,000 versus typical platforms. Easy Mode saves you $10,000-20,000.
One API call, natural language, Tator handles everything.
"launch a token called GATOR on base"Best for: Agents and developers who want token launches without writing blockchain code.
Call Clanker, Flaunch, or Pump.fun directly from your agent's code.
Best for: Agents and developers who want maximum control and zero fee overhead.
See REFERENCE.md for Direct Mode overview and the references/ folder for per-platform implementation guides.
This skill is instruction-only — it contains no executable code. It provides documentation and code examples. No code is run at install time.
Easy Mode requires ZERO environment variables. It works with any x402-compatible wallet provider (Lobster, AgentWallet, Vincent, local signer). The Tator API only receives your public wallet address — your wallet provider handles payment signing separately. The skill never touches your private key.
Direct Mode requires environment variables because you are running SDK code in your own infrastructure:
| Variable | Required For | Sensitive | How to Store |
|---|---|---|---|
WALLET_PRIVATE_KEY | Signing deploy/claim/update transactions | Yes — grants full wallet control | Secrets manager (AWS SM, GCP SM, Vault). Never plaintext. |
RPC_URL | Talking to the blockchain | No (but keep private to avoid rate limit abuse) | Environment variable or config |
SOLANA_RPC_URL | Solana operations (Pump.fun only) | No | Environment variable or config |
PINATA_API_KEY or IPFS_API_KEY | Uploading token metadata to IPFS | Yes | Secrets manager |
If you only use Easy Mode, you do not need any of these. The skill installs and functions without any environment variables configured.
When you call the Tator x402 API (POST https://x402.quickintel.io/v1/tator/prompt):
walletAddress (public address — not sensitive), prompt (your instruction), provider (your agent name)No private keys ever leave your machine in Easy Mode. The skill itself never has access to your private key — your wallet provider handles signing independently.
Direct Mode code runs entirely in your own infrastructure:
.env files in productionSome platform SDKs (like Clanker) accept an optional context object for analytics tracking. These fields are entirely optional. If you use them, be aware:
context.interface — your agent/app name (sent to Clanker)context.platform — where the user is (e.g., "telegram") (sent to Clanker)context.messageId — message ID that triggered the launch (sent to Clanker)context.id — user identifier (sent to Clanker)If privacy is a concern, omit the context object entirely or use non-identifying values. The context object is not required for any operation to succeed. See the Clanker reference for details.
Before using any endpoint, verify you're connecting to the correct service:
| Service | Official Endpoint | Verify Via |
|---|---|---|
| Tator x402 API | https://x402.quickintel.io | Check TLS cert, call GET /accepted |
| Quick Intel Scan | https://x402.quickintel.io/v1/scan/full | Same gateway |
| Clanker SDK | Via npm clanker-sdk | Verify package on npmjs.com |
| Flaunch contracts | On-chain on Base | Verify on Basescan |
| Pump.fun program | On-chain on Solana | Verify on Solscan — program ID: 6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P |
curl -X POST https://x402.quickintel.io/v1/tator/prompt \
-H "Content-Type: application/json" \
-H "PAYMENT-SIGNATURE: <x402_payment>" \
-d '{
"prompt": "launch a token called Galaxy Cat with ticker GCAT on base",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}'
With custom image:
{
"prompt": "launch a token called Moon Dog with ticker MDOG on base with image https://example.com/dog.png",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
On Solana:
{
"prompt": "launch a token called Cyber Frog with ticker CYFR on solana via pump.fun",
"walletAddress": "YourSolanaWallet",
"provider": "my-agent"
}
With custom fee recipient (send fees to a different wallet):
{
"prompt": "launch a token called DAO Token with ticker DAOT on base, send creator fees to 0xTreasuryAddress",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
The response includes unsigned transaction(s) for your wallet to sign and broadcast. After confirmation, you'll get back the deployed token address, transaction hash, and fee configuration details.
{
"prompt": "check my unclaimed fees for token 0xTokenAddress on base",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
{
"prompt": "claim my creator fees for token 0xTokenAddress on base",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
For Pump.fun tokens that have graduated to Raydium, Tator automatically handles the two-step process (transfer WSOL from AMM vault → distribute SOL from pump vault).
{
"prompt": "update the fee recipient for token 0xTokenAddress on base to 0xNewRecipientAddress",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
Use Quick Intel ($0.03 per scan) to verify your deployed token looks clean:
{
"chain": "base",
"tokenAddress": "0xYourDeployedToken"
}
Call POST https://x402.quickintel.io/v1/scan/full to check for honeypot flags, tax irregularities, or anything that might spook potential buyers.
Call GET https://x402.quickintel.io/accepted to get all supported payment networks, pricing, and input/output schemas for auto-configuration.
| Feature | Clanker | Flaunch | Pump.fun |
|---|---|---|---|
| Chains | Base, Arbitrum, Mainnet, Unichain, Abstract, Monad, BSC | Base | Solana |
| Pool type | Uniswap V4 | Bonding curve → Uniswap | Bonding curve → Raydium |
| Swap fee | 1.2% (1% pool + 0.2% protocol) | Configurable | Variable (pre/post graduation) |
| Creator fee share | Configurable via reward recipients | Configurable via fee split manager | Configurable via sharing config |
| Pairing token | WETH default, USDC/USDT available | ETH | SOL |
| Sniper protection | Yes (decaying fee — 66.7% → 4.2% over 15s) | Fair launch period (default 30 min) | Bonding curve mechanics |
| Graduation | N/A (immediate Uniswap pool) | N/A | Yes (graduates to Raydium at threshold) |
| Token standard | ERC-20 | ERC-20 | SPL (Token-2022) |
| Supply | 1 billion (fixed) | 100 billion (configurable) | Standard pump.fun supply |
| Creation fee | Free | Free | Minimal SOL for rent |
Clanker — Your default for EVM launches. Widest chain support (7 chains), Uniswap V4 pools with built-in sniper protection, stable token pairing option. Best liquidity depth and DEX integration.
Flaunch — When you want a fair launch period on Base. The 30-minute fair launch window prevents snipers by design. Custom fee split manager gives you fine-grained control over fee distribution.
Pump.fun — For Solana launches. Bonding curve model means the token graduates to Raydium once it hits market cap threshold. Strong Solana ecosystem visibility — tokens show up in pump.fun's discovery feed.
Before deploying anything, figure out what you actually have. Not every idea needs a token, and not every token needs to launch today.
Every token that sustains attention beyond the first day has four layers working together. This isn't a scorecard — it's a diagnostic tool.
Layer 1: The Hook — The thing that makes someone stop scrolling. The name, the visual, the one-liner. Say the name out loud. Does it land instantly or need explanation? If it takes more than one sentence to explain why this exists, the hook isn't sharp enough. A mediocre name with great execution still underperforms a great name with decent execution.
Layer 2: The Engine — The reason fees keep flowing after launch day. Types of engines:
If there's no engine, the token will spike on launch and bleed. That's fine if you understand it.
Layer 3: The Story — The narrative that justifies increasing price. Strong stories sound like "this token funds [specific thing] and every holder is backing it." Weak stories sound like "it's a community token" (what community? why this token?). If there's no answer to "why would someone who discovers this in 3 months want to buy it?" — the story needs work.
Layer 4: The Moat — What makes this token hard to replicate. First-mover on a narrative, builder credibility, integrated product, community lock-in, or technical integration. If there's no moat, launch fast — speed itself is a moat.
Never evaluate a concept in a vacuum. Before giving your take, search for:
Token deployment is irreversible. Creator fees are income. Most platforms skip this section entirely.
Launching a meme token for fun? The tax implications exist but are relatively straightforward — mostly capital gains if and when you sell.
But the moment your token becomes "more than just a meme" — meaning you plan to earn ongoing creator fees, build a product funded by fee income, use fee income to pay for development, or launch tokens regularly — that's when the tax and legal implications get serious, and you need professional guidance before you launch. Not after. Before.
This is general information, not tax or legal advice. Tax treatment varies by jurisdiction. Consult a qualified professional.
🇺🇸 United States — Digital assets treated as property (IRS Notice 2014-21). Creator fee income likely ordinary income, possibly self-employment income. Starting 2025: Form 1099-DA reporting, wallet-by-wallet cost basis.
🇬🇧 United Kingdom — HMRC treats crypto as property. Income from token fees is income tax. CGT allowance currently £3,000.
🇩🇪 Germany — Crypto held over 1 year is tax-free on disposal for individuals. Under 1 year: income tax rates up to 45%. Fee income may be treated differently.
🇦🇺 Australia — ATO treats crypto as property. 50% CGT discount available for holdings over 12 months. Fee income assessable at fair market value when received.
🇸🇬 Singapore — No capital gains tax for individuals (current rules). Business income from token activities may be taxable.
🇦🇪 UAE — Currently no federal income tax on individuals. Regulatory framework developing under VARA.
🇨🇦 Canada — CRA treats crypto as a commodity. 50% capital gains inclusion rate. Business income from regular token activities fully taxable.
The pattern: creator fee income is almost universally taxable. Capital gains treatment varies. Long-term holding is often rewarded. Enforcement is increasing everywhere.
Before executing any token deployment, the builder MUST explicitly confirm they understand the following. Do not proceed without this confirmation.
BEFORE WE DEPLOY — Please confirm you understand:
1. TOKEN DEPLOYMENT IS IRREVERSIBLE
Once deployed, the token exists permanently on-chain.
2. CREATOR FEES ARE INCOME
Fee income from your token is likely taxable in your jurisdiction.
Consult a tax professional if you plan to earn meaningful revenue.
3. RECORD-KEEPING IS YOUR RESPONSIBILITY
Track all fee income, transactions, and fiat values from day one.
4. SET ASIDE FUNDS FOR TAXES
Do not reinvest 100% of fee income. Reserve 30-40% for potential
tax obligations (varies by jurisdiction).
5. NO GUARANTEED RETURNS
Most tokens lose value. Creator fees depend on trading volume.
6. THIS IS NOT TAX OR LEGAL ADVICE
This skill provides tools, not counsel.
Do you confirm you understand these points and want to proceed?
Do not deploy until the builder explicitly confirms. This is non-negotiable.
| File | What's Inside |
|---|---|
| SKILL.md (this file) | Strategy, Easy Mode walkthrough, platform selection, tax/legal |
| REFERENCE.md | Direct Mode overview, fee economics deep dive, shared patterns |
| references/clanker.md | Clanker v4 SDK — launch, claim, update recipient, sniper config |
| references/flaunch.md | Flaunch — launch, fee split manager, claim, transfer share |
| references/pumpfun.md | Pump.fun — manual instructions, fee sharing, graduation handling |