Token Launcher - Tator Launch Pad
by @azep-ninja
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...
Launch a Token
curl -X POST https://x402.quickintel.io/v1/tator/prompt \
-H "Content-Type: application/json" \
-H "PAYMENT-SIGNATURE: " \
-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.
Check Unclaimed Fees
{
"prompt": "check my unclaimed fees for token 0xTokenAddress on base",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
Claim Creator Fees
{
"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).
Update Fee Recipient
{
"prompt": "update the fee recipient for token 0xTokenAddress on base to 0xNewRecipientAddress",
"walletAddress": "0xYourWallet",
"provider": "my-agent"
}
Security Scan Post-Launch
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.
Discovery
Call GET https://x402.quickintel.io/accepted to get all supported payment networks, pricing, and input/output schemas for auto-configuration.
clawhub install tator-launch-pad