botindex_hl_whale_alerts
Monitor Hyperliquid whale positions and large trades to track $187M+ in whale activity. Get alerts on top positions and recent large trade counts.
Instructions
Hyperliquid whale alert summary — top whale positions and recent large trade count. Tracks $187M+ in whale positions. FREE (3/day).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool "botindex_hl_whale_alerts" is dynamically registered in the loop that iterates over the catalog fetched from the API. The handler is a generic function that calls the BotIndex API for the tool's defined path.
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) }] }; }, );