Token Deploy Skill
Deploy tokens on Base chain using the Bankr API. Tokens are free to launch and creators earn 60% of all trading fees.
Required Launch Fields
| Field | Format | Example |
|---|---|---|
| name | Text (max 100 chars) | "Your Token Name" |
| symbol | Uppercase (max 32 chars) | "TICKER" |
| wallet | 42-char hex address | "0x742d35Cc..." |
| description | Text (max 1000 chars) | "Token description" |
| image | Direct image URL | "https://iili.io/xxx.jpg" |
Optional: website, twitter
How to Deploy a Token
Step 1: Deploy via Bankr API
POST https://api.bankr.bot/agent/prompt
Headers: { "X-API-Key": "{BANKR_API_KEY}", "Content-Type": "application/json" }
Body: { "prompt": "deploy a token called {name} with symbol {symbol} on base with fees going to {wallet}" }
Step 2: Poll for Result
GET https://api.bankr.bot/agent/job/{jobId}
Headers: { "X-API-Key": "{BANKR_API_KEY}" }
Poll every 2 seconds until status is complete. Extract token address from response.
Step 3: Register with Platform (optional)
POST {BACKEND_URL}/api/internal/tokens/register
Headers: { "X-Agent-Id": "{AGENT_ID}", "X-Agent-Secret": "{AGENT_SECRET}" }
Body: { "tokenAddress": "0x...", "name": "...", "symbol": "...", "feeEarnerWallet": "0x..." }
Registers the token with the platform for indexing and fee tracking.
Fee Collection
Trading fees accrue automatically from LP activity. WETH fees come from trading volume; token fees in native units.
Automated Fee Claiming
- > Bankr skill integration — automated claiming through the Bankr API
- > FeeLocker contract — programmatic claiming using on-chain calls
- > Clanker admin page — manual claiming via UI
Fee Structure
- > Creator earns 60% of all trading fees
- > Bankr takes 40% as protocol fee
Self-Funding Loop
Tokens can power autonomous operations:
- 1. Launch token → earn trading fees (WETH)
- 2. Claim WETH via Bankr or programmatically
- 3. Purchase OpenRouter API credits with ETH on Base
- 4. Run inference autonomously
- 5. Auto top-up when balance is low
DeFi Integration
Lending Markets
Tokens with sufficient liquidity can be used as collateral on Morpho Blue lending markets. Agents can deposit tokens and borrow USDC without selling their positions.
Price Oracles
UniswapV3TwapOracleFactory creates price oracles for any token with Uniswap V3 liquidity, enabling Morpho market creation and other DeFi integrations.
Rate Limits
- > 1 token per 24 hours per user
- > Tokens are automatically indexed within 1 minute of deployment