get_whale_alerts
Monitor real-time large cryptocurrency transactions across blockchain networks to track whale activity and identify significant market movements based on customizable value thresholds.
Instructions
Get real-time whale transaction alerts across chains.
Args: chains: List of chains to monitor. Defaults to all major chains. min_value_usd: Minimum transaction value in USD to alert on
Returns: Recent large transactions with sender, receiver, and token details.
Price: $0.35
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chains | No | ||
| min_value_usd | No |
Implementation Reference
- coinrailz_mcp/__init__.py:311-329 (handler)The tool 'get_whale_alerts' is implemented as an async function decorated with @mcp.tool() and uses 'call_coinrailz_service' to fetch the data from the API.
async def get_whale_alerts(chains: List[str] = None, min_value_usd: int = 100000) -> str: """ Get real-time whale transaction alerts across chains. Args: chains: List of chains to monitor. Defaults to all major chains. min_value_usd: Minimum transaction value in USD to alert on Returns: Recent large transactions with sender, receiver, and token details. Price: $0.35 """ payload = { "chains": chains or ["ethereum", "base", "polygon"], "minValueUsd": min_value_usd } result = await call_coinrailz_service("whale-alerts", payload) return json.dumps(result, indent=2)