THRYX — The AI Agent Launchpad on Base
Launch tokens for free. Trade gaslessly. Earn daily THRYX rewards. Built for humans and AI agents.
Try it live | Contract | THRYX on DexScreener | MCP Server | CLI | Agents
What is THRYX?
A self-sustaining token ecosystem on Base where creators launch tokens for $0 and earn 70% of every trade. The protocol sponsors all gas fees, rewards users with THRYX tokens daily, and burns THRYX on every trade for deflationary pressure.
400+ tokens launched. 20+ users. $0 cost to anyone. $23K+ THRYX/WETH liquidity on Uniswap V4.
How It Works
- Sign up with email + password (10 seconds). Wallet created automatically.
- Launch a token — name, ticker, image, done. Gas is sponsored. Earn 10,000 THRYX.
- Share your token — anyone can buy/sell on the bonding curve. Twitter cards auto-generated.
- Earn 70% of the 0.5% trading fee on every trade. Paid instantly.
- Tokens graduate to Uniswap V4 AMM when bonding curve fills — price-continuous liquidity.
- Buy/sell THRYX directly on the dashboard via the V4 Doppler pool.
The Flywheel: Trades generate fees → fees fund gas sponsorship → more users trade → more fees → cycle compounds.
For AI Agents
THRYX is built for autonomous operation. 16 MCP tools, npm packages, REST API — no wallet or private key needed for the HTTP API.
HTTP API (No Private Key Needed)
# Sign up — get JWT + wallet
curl -X POST https://thryx-launchpad.onrender.com/api/auth/signup \
-H "Content-Type: application/json" \
-d '{"email": "agent@example.com", "password": "secure-password"}'
# Launch a token (gas is free)
curl -X POST https://thryx-launchpad.onrender.com/api/launch \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <jwt>" \
-d '{"name": "My Token", "symbol": "MYTKN", "password": "secure-password"}'
# Buy tokens
curl -X POST https://thryx-launchpad.onrender.com/api/tokens/0xTokenAddress/buy \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <jwt>" \
-d '{"amount": "0.001", "password": "secure-password"}'
Full API reference at /agents — signup, profile, launch, buy, sell, token list, stats, activity.
MCP Server (Claude, Cursor, Windsurf)
{
"mcpServers": {
"thryx": {
"command": "npx",
"args": ["-y", "@thryx/mcp-server"],
"env": { "PRIVATE_KEY": "<your-key>" }
}
}
}
16 tools: thryx_launch, thryx_buy, thryx_sell, thryx_claim, thryx_info, thryx_portfolio, thryx_balance, thryx_about, thryx_set_referrer, thryx_claim_referral, thryx_stats_v2, thryx_safety_score, thryx_rug_check, thryx_meta_launch, thryx_paymaster_stats, thryx_recent_tokens
Read-only tools work without any key. For no-key trading, use the HTTP API above.
CLI
npx @thryx/cli launch "My Token" MYTK --key $PRIVATE_KEY
npx @thryx/cli buy 0x...token... 0.001 --with eth --key $PRIVATE_KEY
npx @thryx/cli info 0x...token... --json
vs. The Competition
| Feature | THRYX | pump.fun | Clanker | Virtuals |
|---|---|---|---|---|
| Launch cost | Free | Free | Free | ~$50+ |
| Gas fees | Sponsored | User pays | Bot covers | User pays |
| Trading fee | 0.5% | 1% / 0.3% | 1% | 1% |
| Creator share | 70% | 0.05-0.95% | 40-80% | 30% |
| Wallet needed | No | Yes | Yes | Yes |
| AI agent tools | 16 MCP + CLI + HTTP API | Third-party API | Farcaster bot + SDK | GAME framework |
| Daily rewards | 10K/launch, 1K/trade | None | None | None |
| Twitter OG cards | Auto-generated per token | Generic | Basic | None |
| DEX pool detection | Auto (DexScreener + GeckoTerminal) | Manual | Manual | None |
Architecture
thryx-launchpad/
src/ # React 18 frontend (Vite → Render)
server/ # Express 4 backend (→ Render)
contracts/ # Solidity Diamond (ERC-2535, 9 facets)
On-Chain
- Diamond proxy (ERC-2535) at
0x2F77b40c124645d25782CfBdfB1f54C1d76f2cCe - 9 facets: Admin, Swap, Launch, Claim, Views, Rewards, Paymaster, ThryxSwap, DiamondCut
- Gasless via EIP-712
metaLaunch()+ PaymasterFacet - Bonding curve (x*y=k) with graduation to Uniswap V4 Token/THRYX pools
- Self-funding paymaster (auto-sells THRYX for ETH every 5 min)
- Direct THRYX buy/sell via V4 Doppler pool ($23K liquidity)
- Daily reward distribution (RewardsFacetV2)
Infrastructure
- Cloudflare Workers — relay holds private key, handles gasless on-chain writes
- Render — frontend + API (no private keys)
- Turso — database (libSQL/SQLite)
- DexScreener + GeckoTerminal — DEX pool detection for graduated tokens
Fee Structure
| Fee | Amount | Recipient |
|---|---|---|
| Trading fee | 0.5% per trade | Split below |
| Creator share | 70% of fee | Token creator (instant) |
| Paymaster | ~20% of protocol share | Self-funding gas |
| THRYX burn | 2% of protocol share | Deflationary |
| Referral | 5% of protocol share | Referrer |
| Reserves | ~3% of protocol share | Protocol operations |
Reward System
| Action | Reward | Daily Cap |
|---|---|---|
| Launch a token | 10,000 THRYX | 10 per day |
| Make a trade | 1,000 THRYX | 20 per day |
| Refer a user | 5% of their trade fees | Unlimited |
Run Locally
git clone https://github.com/lordbasilaiassistant-sudo/thryx-launchpad.git
cd thryx-launchpad
npm install
cp .env.example .env
npm run dev
Contract Addresses
| Contract | Address |
|---|---|
| ThryxProtocol v2.8 Diamond | 0x2F77b40c124645d25782CfBdfB1f54C1d76f2cCe |
| THRYX Token | 0xc07E889e1816De2708BF718683e52150C20F3BA3 |
| THRYX/WETH V4 Pool | 0x5a86f04dbd3e6b532e... (DexScreener) |
| Gasless Relay | thryx-relay.thryx.workers.dev |
License
MIT
Built by a broke dad of 6 with Claude Code. Not because I had to. Because I wanted to prove anyone can build real on-chain infrastructure with AI.