openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Whale Watcher

Monitor crypto whale wallets for large transactions. Track big moves on Ethereum, BSC, and other chains. Get alerts when whales move significant amounts.

通信与消息

作者:eddie @alexbrc20

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.2

统计:⭐ 0 · 188 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:alexbrc20/whale-watcher

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill's description promises Telegram alerts and API-key configuration, but the code and declared requirements don't line up — required env/binaries are unnecessary or missing and the runtime behavior is more limited than advertised.

目的

The skill claims Telegram real-time alerts and multi-chain monitoring. The declared required env only lists TELEGRAM_BOT_TOKEN (which is not used anywhere), and the declared required binaries include curl (also not used). The README/SKILL.md instruct users to set ETHERSCAN_API_KEY and BSCSCAN_API_KEY, but those are not declared in requires.env and the shipped Python code uses a built-in default key instead of reading env vars. These mismatches…

说明范围

SKILL.md and README show CLI-like commands (/whale-watcher monitor ...) and describe Telegram push alerts and 'real-time' monitoring. The provided whale_monitor.py only prints to stdout and polls Etherscan/BscScan via urllib; it does not implement a CLI dispatch, slash-command integration, Telegram notifications, or any external webhook delivery. The instructions therefore grant capabilities (sending Telegram messages, realtime push) that the …

安装机制

There is no install spec (instruction-only), which is lower risk. A Python script is included but there is no automated installer or external downloads. That said, the presence of a code file without an install step means the skill will rely on python3 being present and executed by the agent; there is no remote fetch of arbitrary archives or obscure URLs.

证书

requires.env declares TELEGRAM_BOT_TOKEN as required, but the code never references it; conversely, the documentation asks users to export ETHERSCAN_API_KEY and BSCSCAN_API_KEY but those keys are not declared as required in the manifest and the code uses a hardcoded default API key. Requiring a Telegram token without using it is disproportionate and misleading; missing declaration of API keys that the docs discuss is also inconsistent.

持久

always is false, there are no requested config paths, and the skill does not claim to modify other skills or agent-wide settings. It does not request persistent elevated privileges in the manifest.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Whale Watcher」。简介:Monitor crypto whale wallets for large transactions. Track big moves on Ethereu…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alexbrc20/whale-watcher/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: whale-watcher
version: 1.0.0
description: |
  Monitor crypto whale wallets for large transactions.
  Track big moves on Ethereum, BSC, and other chains.
  Get alerts when whales move significant amounts.
metadata:
  openclaw:
    emoji: 🐋
    requires:
      env:
        - TELEGRAM_BOT_TOKEN
      bins:
        - python3
        - curl
  pricing:
    type: freemium
    free:
      description: "监控 1 个钱包,阈值$50,000"
      limits:
        wallets: 1
        minThreshold: 50000
    pro:
      price: 1.99
      currency: USD
      period: monthly
      description: "监控 10 个钱包,阈值$10,000,实时推送"
      features:
        - "监控 10 个钱包"
        - "最低$10,000 阈值"
        - "Telegram 实时推送"
        - "历史数据分析"
        - "多链支持 (ETH, BSC, ARB, OP)"
---

# 🐋 Whale Watcher - 巨鲸钱包监控

Monitor crypto whale wallets and get alerts for large transactions.

## Features

- 🔍 Track specific whale wallets
- 💰 Set minimum transaction threshold
- ⛓️ Support multiple chains (ETH, BSC, etc.)
- 📱 Telegram alerts
- 📊 Transaction history

## Usage

```bash
# Monitor a wallet
/whale-watcher monitor 0x123...abc --threshold 1000000

# Check recent transactions
/whale-watcher txs 0x123...abc

# Set alert threshold
/whale-watcher alert --min 5000000
```

## API Sources

- Etherscan API
- BscScan API
- On-chain data

## Setup

Add to environment:
```bash
export ETHERSCAN_API_KEY="your_key"
export BSCSCAN_API_KEY="your_key"
```