Identifies wallets that achieved >100% APY in the last month and alerts you when they buy new tokens. Complete intelligence system for copy trading high-performing whales.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
A direct command skips the review prompt. Inspect the source before running it.
The command stays on one line. Scroll horizontally to inspect it before copying.
Prefer a local copy? Download the files currently available to SkillsMP.
File Explorer
5 files
Showing SKILL.md
SKILL.md
Source instructions · Read-only preview
name
Whale Wallet Copier
description
Identifies wallets that achieved >100% APY in the last month and alerts you when they buy new tokens. Complete intelligence system for copy trading high-performing whales.
["identify whale wallets","find high performing traders","copy trade whales","track whale purchases","alert on whale buys","whale wallet analysis","calculate wallet APY","monitor successful traders"]
parameters
[{"name":"wallet_addresses","type":"List[str]","required":true,"description":"List of wallet addresses to screen for whale performance"},{"name":"min_apy","type":"float","default":100,"description":"Minimum APY threshold to qualify as a whale (default 100%)"},{"name":"days_back","type":"int","default":30,"description":"Time period for performance analysis (default 30 days)"},{"name":"check_interval","type":"int","default":60,"description":"Seconds between transaction checks when monitoring (default 60s)"},{"name":"monitor_duration","type":"int","default":1440,"description":"How long to monitor whale wallets in minutes (default 24 hours)"}]
["Copy trade high-performing wallets automatically","Early detection of promising tokens before they pump","Whale activity intelligence and insights","Portfolio strategy research and analysis","Real-time trading signals from successful traders"]
expected_output
["List of whale wallets with >100% APY","Real-time alerts when whales buy new tokens","Token analysis (price, liquidity, safety score)","Actionable trading signals with confidence ratings","Performance reports and analytics"]
Whale Wallet Copier (Trading Intelligence)
Overview
The Whale Wallet Copier is a comprehensive on-chain intelligence system that identifies high-performing Ethereum wallets (>100% APY) and monitors their transactions in real-time to generate actionable trading signals.
Core Value Proposition: Know what successful traders are buying before the market does.
Key Features
Performance Tracking - Calculate wallet APY from transaction history
Whale Discovery - Screen thousands of wallets to find top performers
Real-Time Monitoring - Track whale purchases as they happen
Token Analysis - Evaluate safety, liquidity, and potential of purchased tokens
Trading Signals - Get actionable alerts with complete context
Problem Solved
Challenge: Retail traders lack the tools and intelligence that institutional players use to identify profitable opportunities early.
Solution: By tracking wallets that have proven track records (>100% APY), you can copy their strategy and catch winning tokens at the same time they do.
Real-World Impact:
Early Entry: Buy tokens within minutes of whale purchases
Proven Strategy: Follow wallets with verified performance, not random influencers
Every check_interval seconds:
1. Fetch recent transactions for each whale wallet
2. Filter for incoming token transfers (purchases)
3. Exclude: sells, stablecoins, spam, self-transfers
4. For each new purchase:
a. Get token price & liquidity (DexScreener)
b. Calculate safety score
c. Generate alert with full analysis
Smart Filtering
Stablecoin Filter: Ignores USDT, USDC, DAI (not interesting)
Spam Filter: Removes transfers <0.01 tokens
Duplicate Detection: Tracks last seen transaction per wallet
Safety Scoring: 0-100 score based on liquidity, volume, market cap
3. Token Safety Analysis
Each token is scored on 4 dimensions (0-100 points):
# Save discovered whales
copier.save_whales_to_file("top_whales.json")
# Load later for monitoring
copier.load_whales_from_file("top_whales.json")
# Resume monitoring
signals = copier.start_monitoring(duration_minutes=120)
Production Deployment
Recommended Setup
# 1. Use dedicated server (VPS recommended)# 2. Install dependencies
pip install requests
# 3. Set API keyexport ETHERSCAN_API_KEY="your_production_key"# 4. Run as background servicenohup python scripts/whale_alerter.py &
# 5. Set up alerts (Discord, Telegram, Email)# See integration examples below