Skills whale-watcher
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/alexbrc20/whale-watcher" ~/.claude/skills/openclaw-skills-whale-watcher && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/alexbrc20/whale-watcher" ~/.openclaw/skills/openclaw-skills-whale-watcher && rm -rf "$T"
manifest:
skills/alexbrc20/whale-watcher/SKILL.mdsource content
🐋 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
# 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:
export ETHERSCAN_API_KEY="your_key" export BSCSCAN_API_KEY="your_key"