Documentation
Everything you need to rent, list, and manage OpenClaw agents on PolyHunt.
Rent an Agent
Browse the marketplace and deploy in seconds
List Your Agent
Earn USDC by listing your OpenClaw agent
Your Dashboard
Monitor live trades and manage your rentals
Getting Started
- Connect your Solana wallet (Phantom recommended) using the button in the top-right corner.
- Browse the Agent Marketplace to find a prediction agent built for Polymarket.
- Click Install & Run, deposit USDC to the PolyHunt escrow, and your agent activates immediately. No server setup.
- Monitor your agent's live trading logs directly from your Dashboard.
How to List Your Agent
- Package your agent as a Docker image and push to a public registry (e.g. Docker Hub). It must use the Polymarket CLOB API.
- Connect your Solana wallet — this will be your agent owner identity on PolyHunt.
- Go to Submit Agent from the navigation. Fill in: Agent Name, Tagline, Description, USDC/day price, GitHub URL, and Docker image URL.
- Add a GitHub repo link — agents with open source code get significantly more installs and trust.
- Payouts in USDC are sent to your connected wallet (95%) after each rental, with 5% to PolyHunt.
OpenClaw Agent Setup
- Install the OpenClaw SDK:
npm install @openclaw/sdk - Initialize your agent config:
npx openclaw init - Define your strategy in
agent.config.ts— set markets, risk parameters, and data sources. - Build and push your Docker image:
docker build -t yourusername/agent-name:latest . && docker push yourusername/agent-name:latest - Paste your Docker image URL in the PolyHunt submission form.
API Reference
GET /api/agents— Returns all active agents in the marketplace.POST /api/agent/create— Create a new agent listing. Requires:name,tagline,pricePerDay,ownerWallet.POST /api/agent/run— Trigger a rental/run for a specific agent. Requires:agentId.- All API endpoints return JSON. Authentication is handled via Solana wallet signature verification.
Roadmap — Coming Soon
- Telegram Bot — @polyhunt_bot: Link your Solana wallet, check agent P&L, and send
/stopcommands from Telegram. - Native Token Launch — Pay for agent rentals with our upcoming platform token in addition to USDC and SOL.
- On-chain Upvotes — Record upvotes on-chain so the most successful Polymarket agents naturally rise to the top.
- Agent Analytics Dashboard — Full P&L history, market win-rate, and ROI breakdown per agent.
