install
source · Clone the upstream repo
git clone https://github.com/TermiX-official/cryptoclaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TermiX-official/cryptoclaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/whale-watcher" ~/.claude/skills/termix-official-cryptoclaw-whale-watcher && rm -rf "$T"
manifest:
skills/whale-watcher/SKILL.mdsource content
Whale Watcher Skill
Monitor large transactions and whale movements on-chain.
Overview
Track large token transfers and notable wallet activity using on-chain data and block explorer APIs.
Capabilities
- Large transfer alerts: Detect transfers above a threshold
- Wallet tracking: Monitor specific addresses for activity
- Recent blocks scan: Scan recent blocks for notable transactions
- Token flow analysis: Track inflows/outflows for specific tokens
Tools Used
- Fetch block data with transactionsget_block_info
- Get transaction detailsget_transaction
- Check whale wallet balancesget_native_balance
- Check token holdingsget_erc20_balance
Data Sources
- On-chain block/transaction data via RPC
- Block explorer APIs (Etherscan, BSCScan) for indexed data
Example Interactions
User: "Any big BNB transfers in the last hour?" Action: Scan recent blocks on BSC, filter transactions above 100 BNB
User: "Watch this address: 0x..." Action: Check recent transactions for the address, report notable activity
User: "What are whales doing with PEPE?" Action: Check large PEPE transfers on Ethereum, summarize trends