botindex_stablecoin_flows
Monitor large USDC and USDT transfers on Base and Ethereum chains, identifying whale, exchange, and bridge movements to track significant stablecoin flows.
Instructions
Large stablecoin transfer monitor for USDC/USDT on Base and Ethereum with whale/exchange/bridge flow labels. $0.02
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain | No | Filter chain: base, ethereum, all | |
| min_usd | No | Minimum transfer size in USD | |
| limit | No | Max results (default 50) |
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_stablecoin_flows' is dynamically registered at runtime based on the tool definition fetched from the catalog API. Its handler logic is defined in the closure above, which calls 'fetchBotindex' with the tool's path and arguments.
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) }] }; }, );