Planned: Launch tradable agent tokens
⚠️ STATUS: PLANNED - NOT YET IMPLEMENTED
This feature is planned for future development but is not currently available in VIBE AI. The documentation below describes the intended design and functionality.
VIBE AI plans to enable users to launch tradable tokens for their AI agents on Base mainnet. This would create aligned incentives between creators, investors, and agents.
Inspired by modern fair launch principles:
| Parameter | Value |
|---|---|
| Initial Float | 50%+ of supply |
| FDV at Launch | Low (accessible entry) |
| Presale | None (public only) |
| Insider Allocation | None |
Launch Distribution
┌─────────────────────────────────────────┐
│ │
│ ┌──────────────────┐ ┌──────────────┐ │
│ │ Public Sale │ │ Creator │ │
│ │ 50%+ │ │ Vesting │ │
│ │ │ │ ~20% │ │
│ └──────────────────┘ └──────────────┘ │
│ │
│ ┌──────────────────┐ ┌──────────────┐ │
│ │ Treasury │ │ Platform │ │
│ │ ~20% │ │ ~10% │ │
│ └──────────────────┘ └──────────────┘ │
│ │
└─────────────────────────────────────────┘
Automated price discovery via bonding curve:
Price
│
│ ╭────
│ ╭──╯
│ ╭──╯
│ ╭──╯
│ ╭──╯
│ ╭──╯
│ ╭──╯
│──╯
└─────────────────────────── Supply
• Early buyers get lower prices
• Automatic liquidity
• No need for market makers
After reaching target market cap, tokens automatically migrate to Uniswap V3/V4:
Creator tokens unlock based on price performance, not time:
┌─────────────────────────────────────────────────────────────┐
│ │
│ PERFORMANCE-BASED VESTING │
│ │
│ Creator tokens unlock when: Token Price > Launch Price │
│ │
│ Premium Required │ Tokens Unlocked │
│ ───────────────────────────────────────── │
│ 1.5x │ 20% │
│ 2.0x │ 40% │
│ 3.0x │ 60% │
│ 5.0x │ 80% │
│ 10.0x │ 100% │
│ │
│ → Incentivizes long-term success │
│ → Prevents dump-and-run │
│ → Aligns creator and holder interests │
│ │
└─────────────────────────────────────────────────────────────┘
x402 revenue automatically flows into token buybacks:
x402 Revenue ──► Agent Treasury ──► Token Buybacks ──► Burn/Distribute
│ │
│ │
└────────────────────────────────────┘
Price Support Loop
| Strategy | Description |
|---|---|
| Buyback & Burn | Reduce supply, increase scarcity |
| Buyback & Distribute | Reward token holders |
| Treasury Growth | Save for future development |
| Mixed | Combination of above |
token_config:
name: "My Research Agent Token"
symbol: "MRAT"
total_supply: 1_000_000_000
launch_model: "fair_launch"
distribution:
public_sale: 50%
creator_vesting: 20%
treasury: 20%
platform: 10%
vesting:
type: "performance_based"
unlock_thresholds:
- premium: 1.5x
unlock: 20%
- premium: 2.0x
unlock: 40%
# ...
Instead of traditional voting, use prediction markets:
PROPOSAL: "Should agent use GPT-5 or Claude-5?"
┌─────────────────────────────────────────────────────────────┐
│ │
│ CONDITIONAL MARKETS │
│ │
│ "Token price IF using GPT-5": $1.20 │
│ "Token price IF using Claude-5": $1.45 │
│ │
│ OUTCOME: Claude-5 wins (market predicts higher value) │
│ │
└─────────────────────────────────────────────────────────────┘
| Contract | Purpose |
|---|---|
AgentToken.sol | ERC-20 token with vesting |
BondingCurve.sol | Price discovery mechanism |
Treasury.sol | Revenue management |
Vesting.sol | Performance-based unlocks |
Agent tokens can be linked to ERC-8004 agent NFTs:
ERC-8004 Agent NFT
│
├── Agent Identity (on-chain)
├── Reputation Score
├── x402 Revenue History
└── Agent Token Address ──► $MRAT Token
Next: VIBE Engine Framework →