VOOZH about

URL: https://apify.com/gochujang/smart-money-tracker

โ‡ฑ Smart Money Wallet Tracker - On-chain Whale Activity ยท Apify


๐Ÿ‘ Smart Money Wallet Tracker (Free Nansen Alt, Multi-Chain) avatar

Smart Money Wallet Tracker (Free Nansen Alt, Multi-Chain)

Pricing

from $20.00 / 1,000 wallet scanneds

Go to Apify Store

Smart Money Wallet Tracker (Free Nansen Alt, Multi-Chain)

Track 238+ curated smart-money wallets + auto-discovery across Ethereum, Base, Arbitrum, BSC and Solana. Returns transactions, PnL, win-rate, coordinated buys, and token flow. Free alternative to Nansen ($150/mo). PPE $0.02/wallet.

Pricing

from $20.00 / 1,000 wallet scanneds

Rating

0.0

(0)

Developer

๐Ÿ‘ Hojun Lee

Hojun Lee

Maintained by Community

Actor stats

0

Bookmarked

10

Total users

2

Monthly active users

10 days ago

Last modified

Share

Smart Money Wallet Tracker

Automatically discover and monitor whale wallets across Ethereum, Base, Arbitrum, BSC, and Solana. Find wallets that buy tokens before they pump, track their current positions, and get structured market insights โ€” no API key required.


What It Does

Most whale trackers require you to already know which wallets to watch. This Actor goes further:

  1. Discover โ€” Automatically finds wallets that bought top-gaining tokens before they pumped. Ranks them by "hit rate" using a persistent scoring database.
  2. Monitor โ€” Scans tracked wallets for large transactions, aggregates token flow, and detects coordinated buying signals.
  3. PnL Analysis โ€” Calculates realized PnL, unrealized PnL, and win rate per wallet using FIFO trade matching โ€” similar to GMGN but using direct blockchain data, not a scraper.
  4. Insights โ€” Outputs structured signals: which tokens smart money is accumulating, how many wallets are piling in simultaneously, and net inflow/outflow by token.

Modes

ModeWhat it does
discoverFetches top 24h gainers, finds early buyers for each, scores wallets by prediction accuracy, saves to persistent KV Store
monitorScans wallets (yours + auto-discovered) for large transactions, outputs insights
bothRuns discover then monitor in sequence

Recommended schedule:

  • Daily: mode: "discover" โ€” refresh smart money rankings
  • Hourly: mode: "monitor" โ€” get fresh transaction data and signals

Input

FieldTypeDefaultDescription
modestring"monitor"discover, monitor, or both
walletsstring[][]Wallet addresses to monitor. If empty in monitor mode, uses auto-discovered wallets
chainsstring[]["ethereum"]ethereum, bsc, base, arbitrum, solana
minTxValueUsdnumber10000Only report transactions above this USD value
lookbackHoursnumber24How far back to scan (max 168 = 7 days)
maxDiscoveredWalletsnumber20How many top-scored auto-discovered wallets to include in monitor mode
etherscanApiKeystring""Optional Etherscan key for higher rate limits
telegramBotTokenstring""Optional โ€” send whale alerts to Telegram
telegramChatIdstring""Telegram chat ID for alerts

Example: Fully automated (no wallet list needed)

{
"mode":"both",
"chains":["ethereum"],
"minTxValueUsd":50000,
"lookbackHours":24,
"maxDiscoveredWallets":20
}

Example: Monitor specific wallets

{
"mode":"monitor",
"wallets":[
"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
"0x47ac0Fb4F2D84898e4D9E7b4DaB3C24507a6D503"
],
"chains":["ethereum","base"],
"minTxValueUsd":100000
}

Output

All records include a _type field for easy filtering.

tx โ€” Individual whale transaction

{
"_type":"tx",
"chain":"ethereum",
"tx_hash":"0x280371...",
"timestamp":"2026-04-05T10:00:00+00:00",
"wallet":"0xd8da6b...96045",
"direction":"in",
"token_symbol":"USDC",
"amount":5000000,
"usd_value":5000000
}

wallet_summary โ€” Per-wallet aggregate with PnL

{
"_type":"wallet_summary",
"wallet":"0xd8da6b...96045",
"is_discovered":true,
"sm_score":4.16,
"tx_count":14,
"total_inflow_usd":847200,
"total_outflow_usd":312400,
"current_holdings":[
{"symbol":"USDC","amount":4200000}
],
"realized_pnl":12400,
"unrealized_pnl":3800,
"total_pnl":16200,
"win_rate":0.72,
"win_rate_pct":"72.0%",
"total_trades":18,
"winning_trades":13,
"token_pnl":{
"PEPE":{"realized_pnl":8200},
"ARB":{"realized_pnl":4200}
}
}

insight_token_flow โ€” Which tokens money is flowing into/out of

{
"_type":"insight_token_flow",
"symbol":"ARB",
"inflow_usd":2400000,
"outflow_usd":150000,
"net_usd":2250000,
"wallets_in":6,
"wallets_out":1
}

insight_signal โ€” Coordinated buying signal

{
"_type":"insight_signal",
"signal_type":"coordinated_buy",
"symbol":"PEPE",
"wallet_count":5,
"inflow_usd":800000,
"strength":"strong"
}

smart_money_rank โ€” Discovered wallet rankings (discover mode)

{
"_type":"smart_money_rank",
"rank":1,
"address":"0xabc...123",
"hits":7,
"score":13.62,
"hit_rate":0.87,
"tokens_hit":["PEPE","WIF","BONK","DOGE"]
}

Filtering Output via API

# Get only coordination signals
curl"https://api.apify.com/v2/datasets/{DATASET_ID}/items?token=YOUR_TOKEN"\
| jq '[.[] | select(._type == "insight_signal")]'
# Get token flow sorted by net inflow
curl"https://api.apify.com/v2/datasets/{DATASET_ID}/items?token=YOUR_TOKEN"\
| jq '[.[] | select(._type == "insight_token_flow")] | sort_by(-.net_usd)'
# Get top smart money wallets
curl"https://api.apify.com/v2/datasets/{DATASET_ID}/items?token=YOUR_TOKEN"\
| jq '[.[] | select(._type == "smart_money_rank")] | sort_by(.rank)'

Supported Chains

ChainData SourceNotes
EthereumBlockScout ETHFree, no key needed
BaseBlockScout BaseFree, no key needed
ArbitrumBlockScout ArbitrumFree, no key needed
BSCBlockScout BSCFree, no key needed
SolanaSolscan PublicSPL token transfers

Pricing

Pay-Per-Event (PPE):

  • $0.02 per wallet scanned
  • No charge for discover-only runs
  • Apify platform usage included

Example: Monitoring 20 auto-discovered wallets on Ethereum hourly = $0.40/hour = ~$9.60/day


API Integration

# Trigger a run
curl-X POST "https://api.apify.com/v2/acts/gochujang~smart-money-tracker/runs?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{"mode": "both", "minTxValueUsd": 50000}'
# Poll for completion then fetch results
RUN_ID="..."
curl"https://api.apify.com/v2/actor-runs/$RUN_ID/dataset/items?token=YOUR_TOKEN"

How the Discovery Works

  1. Fetches the top 20 tokens by 24h price gain (>20%) from CoinGecko
  2. For each token, scans Ethereum transfer history 72 hours before the pump
  3. Identifies wallets that made repeated purchases (not DEX routers or burn addresses)
  4. Scores each wallet: score = hits ร— log(1 + hits) โ€” rewards consistency
  5. Results persist in a named Apify KV Store across runs, so the ranking improves over time

Running discover daily for a week gives you a high-confidence smart money list with proven prediction history.

You might also like

Crypto Wallet Performance Tracker

crypto-scraper/crypto-wallet-performance-tracker

Track and analyze crypto wallet performance across multiple blockchains by scraping gmgn.ai. Monitor insider and whale wallets with PnL, win rate, and balance tracking. Supports Solana, Ethereum, Base, Tron, and Blast.

๐Ÿ‘ User avatar

Crypto Scraper

134

1.0

GMGN CopyTrade Wallet Scraper

maximedupre/gmgn-copytrade-wallet-scraper

Scrape GMGN.ai copytrade wallet leaderboards across Solana, BSC, Ethereum, Base, Tron, and Monad. Export wallet PnL, win rates, transactions, balances, tags, source ranks, and GMGN wallet URLs.

๐Ÿ‘ User avatar

Maxime Duprรฉ

2

Polymarket Leaderboard Scraper โ€“ Top Wallets, PnL

logiover/polymarket-top-wallets-leaderboard

Polymarket leaderboard scraper and unofficial API: export top traders and smart-money wallet rankings (PnL, ROI, win rate) to CSV/JSON, no login.

GMGN Wallet Holdings Scraper

muhammetakkurtt/gmgn-wallet-holdings-scraper

GMGN.ai Wallet Holdings Scraper: Track crypto portfolios across Ethereum, BSC, Base, Solana, Tron. Analyze token values, PnL metrics, and transaction history. Export filtered wallet data for trading strategies and investment insights. Multi-address scanning with real-time profit/loss analysis

๐Ÿ‘ User avatar

Muhammet Akkurt

94

5.0

GMGN CopyTrade Wallet Scraper

parsebird/gmgn-copytrade-wallet-scraper

Scrape GMGN.ai copytrade wallet leaderboards across Solana, Ethereum, BSC, Base, Tron, and Monad. Extract wallet PnL, win rates, realized profit, transactions, balances, tags, and social profiles. Filter by trader type, sort by any metric. Export JSON, CSV, Excel.

Solana Whale Tracker and DEX Scraper | Smart Money

intelscrape/solana-whale-tracker

Track Solana whale wallets and scrape Raydium DEX swaps in real-time. Extracts wallet holdings, transaction history, and on-chain token flows. Outputs deterministic JSON for LangChain and trading bots.

The Money Makers

manysy/my-actor

Make money in your free time

Crypto Best Wallets Scraper

piotrv1001/crypto-best-wallets-scraper

Analyze and keep tabs on crypto wallet activity across various chains using data from gmgn.ai. Gain insights into insider and whale addresses by tracking PnL, win rate, and account balances. Compatible with Solana, Ethereum, Base and Tron.

60