Crypto Whale Monitor

Monitors large cryptocurrency wallet balances (whales) on-chain using Web3 RPC to detect potential market-moving activity. Can read from `references/wallets....

waleolapo

@waleolapo

What This Skill Does

Scans a list of cryptocurrency wallet addresses via Web3 RPC and alerts when a wallet's balance exceeds a configurable threshold. Reads addresses from a local file or accepts custom addresses.

Replaces manually checking blockchain explorers for each whale wallet by automating balance checks and threshold alerts.

When to Use It

  • Monitor known whale wallets for large balance changes before a major market move
  • Set up a cron job to automatically scan whale wallets every hour
  • Add a new whale address to the watchlist and immediately check its balance
  • Detect when a dormant whale wallet suddenly becomes active
  • Compare current whale balances against historical data to spot accumulation or distribution trends

Install

$ openclaw skills install @waleolapo/crypto-whale-monitor

Crypto Whale Monitor

This skill contains the logic to connect to blockchain explorers and track large balances for a defined set of "whale" wallets.

Workflow

  1. Define Wallets: Add known whale addresses to references/wallets.md.
  2. Execute: Run npm start (or ./scripts/monitor.js) to scan the list.
  3. Analyze: Review output for "WHALE DETECTED" alerts.
  4. Schedule: Set up a cron job to run npm start periodically for automated monitoring.

Scripts

  • scripts/monitor.js: Core logic for checking balances via public RPC. Reads from references/wallets.md by default.

References

  • references/wallets.md: A list of known, public whale wallet addresses.

Related skills