- The V2 smart contracts on Ink mainnet
- The InkyPump REST API at
inkypump.com - The InkyPump MCP server, a stdio server for editors like Claude Code and Codex
When to use each
| You want to… | Use |
|---|---|
| Read token state, list tokens, fetch leaderboard | InkyPump REST API |
| Launch or trade tokens from a backend | V2 contracts |
| Read swap quotes for the broader InkySwap DEX | InkySwap REST API |
| Drive InkyPump from your editor or an AI agent | MCP server |
V2 contracts
Direct contract integration. Read state, broadcast trades, listen for events.| Resource | Address (Ink mainnet) |
|---|---|
| InkyPump V2 hook | 0x4cC8F6d5B7cE150CCC0A9B7664532B1283b96AC4 |
| RPC | https://rpc-gel.inkonchain.com |
InkyPump REST API
JSON over HTTPS athttps://inkypump.com. No auth required for read endpoints. Image uploads require a captcha token.
| Endpoint | Returns |
|---|---|
GET /api/tokens/recent-v2?limit=N | Recently launched V2 tokens |
GET /api/token?address=0x... | Token details, V1 or V2 |
GET /api/tokens/by-owner?owner=0x... | Tokens created by an address |
GET /api/tokens/batch?addresses=0x...,0x... | Token details for a list of addresses |
GET /api/leaderboard?limit=N | Aggregated points and rankings |
GET /api/referral/stats?address=0x... | Referral attribution stats for a wallet |
GET /api/eoti | Current Emperor of the INK |
GET /api/eoti?includeBidData=true | Current Emperor plus open auction bid data |
GET /api/koti | Current King of the INK (top performing curve) |
POST /api/upload | Image upload (token logos, requires Turnstile token) |
GET /api/chat?tokenAddress=0x...&limit=N | Token chat messages |
InkySwap REST API
Separate from InkyPump. Covers the wider InkySwap DEX on Ink.| Endpoint | Returns |
|---|---|
GET /api/pairs | InkySwap liquidity pairs |
GET /api/quote | Swap quote for the DEX |
GET /api/tokens | Listed tokens on the DEX |
MCP server
A stdio MCP at the@inkyswap/pump-mcp npm package. Runs locally. Connects to your editor and exposes V2 tools (launch_token, preview_launch, wallet_info, recent_launches, launch_status).
See MCP Server.