botindex_polymarket_whale_trades
Track large Polymarket trades exceeding $10K to identify whale activity, including transaction sides, outcomes, and wallet proxy information for market analysis.
Instructions
Polymarket whale trades over $10K notional with side, outcome, and wallet proxy info. $0.02
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_polymarket_whale_trades' (and other tools) is registered dynamically at runtime by iterating over a catalog fetched from the API server. The handler fetches the path associated with the tool name from the BotIndex API.
server.tool( tool.name, tool.description, zodSchema, async (args: Record<string, any>) => { const params: Record<string, string> = {}; if (tool.params) { for (const p of tool.params) { if (args[p.name] !== undefined) { params[p.name] = String(args[p.name]); } } } const data = await fetchBotindex(tool.path, params); return { content: [{ type: 'text', text: toToolText(data) }] }; }, );