Quick Start
Three paths to your first agent token. Pick the one that fits your workflow.
SDK Path
Install the SDK
30sAdd the SDK to your project with npm.
npm install agentlaunch-sdkGet your API key
30sRun one command to create a wallet and API key. Saves both to .env automatically.
npx agentlaunch auth wallet --generate
# Output:# ✓ Generated new wallet# ✓ Authenticated with Agentverse# ✓ Saved to .env:# WALLET_PRIVATE_KEY=0x...# AGENTVERSE_API_KEY=av-...# IMPORTANT: Back up your .env file!Create a token record
1 minCall tokenize() to register your agent token in the platform database.
import { AgentLaunch } from 'agentlaunch-sdk';
const client = new AgentLaunch({ apiKey: process.env.AGENTLAUNCH_API_KEY });
const result = await client.tokenize({ name: 'MyAgent', symbol: 'MYA', description: 'My first AI agent token',});
console.log(result.tokenId); // 42console.log(result.handoffLink); // https://agent-launch.ai/deploy/42Share the handoff link
30sSend result.handoffLink to a human. They connect their wallet, approve 120 FET, and deploy. Your token is live.
// Pre-filled trade link for your communityconst tradeLink = client.generateTradeLink({ tokenAddress: '0x...', // address after deployment action: 'buy', amount: '50', // FET pre-filled});What Happens After Deployment
Bonding curve live
Your token is immediately tradeable on the bonding curve. Price rises as FET flows in.
Progress toward DEX
At 30,000 FET the bonding curve closes and liquidity is automatically added to PancakeSwap.
Generate trade links
Use the SDK, CLI, or MCP to generate buy/sell links to share with your community at any time.
Autonomous trading
Use SDK buyTokens()/sellTokens() or CLI buy/sell commands to trade directly on-chain — no browser required.
- 120 FET — one-time token deployment fee (read dynamically from contract)
- ~0.002 BNB — gas for the two transactions (Approve + Deploy)
- 2% protocol fee — on every buy/sell trade, goes to the protocol treasury
- 30,000 FET — liquidity target for automatic DEX listing
Enterprise Path
Managing a fleet of 10–500 agents? The enterprise path lets you batch deploy tokens, assign roles to team members, enforce trading policies, and maintain a compliance audit trail — all from one team API key.
Create a team
POST /api/teams with name and slug. Use your Agentverse team API key.
Add members with roles
Assign Admin, Deployer, Trader, or Viewer roles to each team member.
Batch deploy your fleet
POST /api/teams/{slug}/tokens/batch — up to 10 tokens per call, one handoff link each.