/binance-wallet-tracker
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups or public Smart Money/KOL data. Four domains: (A) Discovery — consensus, pioneer, leaderboard diff, token buyer lookup, time-window summaries, similar wallets; (B) Evaluation — token
$ npx -y skills add binance/binance-skills-hub --skill binance-wallet-tracker --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/binance-wallet-tracker
Context preview
The summary Claude sees to decide when to auto-load this skill.
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups or public Smart Money/KOL data. Four domains: (A) Discovery — consensus, pioneer, leaderboard diff, token buyer lookup, time-window summaries, similar wallets; (B) Evaluation — token
SKILL.md
binance-wallet-tracker.SKILL.mdname: binance-wallet-tracker
description: |
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups
or public Smart Money/KOL data. Four domains: (A) Discovery — consensus, pioneer,
leaderboard diff, token buyer lookup, time-window summaries, similar wallets; (B) Evaluation —
token risk (tokenRiskLevel ≥ 3), group rhythm, follow list assessment, token heat; (C) Replay —
4h summary, Accumulation/Distribution, sector rotation, anomaly orders, round-trip, first-mover/leader-follower,
wake-up, bot-like; (D) Management — group create/rename, batch import, label update, link, follow list;
(E) Real-time — WebSocket push for Smart Money, KOL, wallet-level, and address-level trade events.
Trigger on: wallet tracker, monitoring, consensus, pioneer, accumulation, Distribution, Sector Rotation, Anomaly Large Order,
round-trip, first-mover, wake-up, bot-like, token risk, token heat, group profile, similar wallets,
group management, address import, follow list, real-time push, WebSocket — even without "tracker" explicitly.
metadata:
author: binance-web3-team
version: "1.1"
openclaw:
requires:
bins:
- baw
install:
- kind: node
package: '@binance/agentic-wallet'
bins: [baw]
label: Install Binance Agentic Wallet CLI (npm)Binance Wallet Tracker Skill
On-chain wallet tracking and monitoring. Monitor token-level and trade-level activity for private groups or public Smart Money / KOL data. Includes 9 built-in analysis scenarios for replay and pattern detection.
Prerequisites
This skill requires the `baw` CLI (`@binance/agentic-wallet` npm package). If `baw` is not found:
npm install -g @binance/agentic-wallet
Verify: `baw --version` should print `1.6.2` or higher. If installation fails or the user doesn't have Node.js, inform them that Node.js >= 18 is required.
When to Use
Discovery
| User intent | Command | |-------------|---------| | Consensus tokens (many buyers) | `tracker token query` → sort by `consensusCount` | | Pioneer tokens (≤2 traders) | `tracker token query` → filter `launchTime` + `consensusCount ≤ 2` | | Leaderboard diff (untracked wallets) | `leaderboard query` (leaderboard skill) + `tracker address list` → diff | | Token-based buyer lookup | `tracker tx query` → client-side filter by `ca` | | Time-window summary | `tracker token query --period 4h` + `tracker tx query` | | Similar wallet discovery | `leaderboard analyze` (leaderboard skill) → archetype matching |
Evaluation
| User intent | Command | |-------------|---------| | Token risk screening | `tracker token query` → filter `tokenRiskLevel ≥ 3` + `consensusCount ≥ 3` | | Group rhythm profiling | `tracker tx query` → per-address rhythm analysis | | Follow list assessment | `tracker follow` + `leaderboard analyze` (cross-skill) | | Token heat analysis | `tracker tx query` → aggregate by `ca` |
Replay
| User intent | Command | |-------------|---------| | 4h comprehensive summary | `tracker token query --period 4h` + `tracker tx query` | | Accumulation vs distribution (Accumulation/Distribution) | `tracker token query` → `buyCount`/`sellCount` per address | | Sector rotation | `tracker tx query` → compare token top across time windows | | Anomaly large orders | `tracker tx query` → `anomaly` detection | | Round-trip (Round-Trip) | `tracker tx query` → `round-trip` detection | | First-mover + leader-follower | `tracker tx query` → `first-mover` + `leader-follower` | | Wake-up detection | `tracker tx query` → `wake-up` detection | | Bot-like behavior | `tracker tx query` → `bot-like` detection |
Full 9-scenario analysis rules: [`references/analytics.md`](references/analytics.md)
Management
| User intent | Command | |-------------|---------| | Create / rename group | `tracker group create/update` | | Batch import addresses | `tracker address batch` | | Add single address | `tracker address add` | || Update label / link to group | `tracker address update -l` + `tracker address link` | | Delete addresses | `tracker address delete` | | Follow / unfollow address | `tracker address follow/unfollow` | | View follow list | `tracker follow` | | Search address (fuzzy) | `tracker address search` |
Supported Chains
| Chain | chainId | |-------|---------| | BSC | `56` | | Solana | `CT_501` | | Base | `8453` | | Ethereum | `1` |
Command Tree
baw tracker
token query # Token dimension monitor (private + --tag-type for public)
tx query # Trade dimension monitor (private + --tag-type for public)
follow # Query current user follow list (read-only, chainId only)
ws # WebSocket real-time push (--smy/--kol/--wallet/--address/--following)
group
list # Group list
create # Create group
update # Rename group
address
search # Fuzzy search address
list # Paginated address list
add # Add single address (wraps import)
batch # Batch import
update # Update label (label only)
link # Link to group (group/link)
delete # Delete (supports batch)
follow # Follow address
unfollow # UnfollowAll commands support `--json` for structured output.
**`token query` and `tx query` require either `--group-id` (private group) or `--tag-type` (public KOL/SMY). Calling without either returns an error.**
**`--tag-type` accepts: `kol` (KOL), `smy` (Smart Money).**
Token Monitor (A2)
# Private — own group data (must specify --group-id or --tag-type)
baw tracker token query -c 56 --group-id 1 --json
baw tracker token query -c 56 --group-id 1 --period 4h --json
# Public — SMY/KOL data
baw tracker token query -c 56 --tag-type kol --j
Read more
name: binance-wallet-tracker
description: |
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups
or public Smart Money/KOL data. Four domains: (A) Discovery — consensus, pioneer,
leaderboard diff, token buyer lookup, time-window summaries, similar wallets; (B) Evaluation —
token risk (tokenRiskLevel ≥ 3), group rhythm, follow list assessment, token heat; (C) Replay —
4h summary, Accumulation/Distribution, sector rotation, anomaly orders, round-trip, first-mover/leader-follower,
wake-up, bot-like; (D) Management — group create/rename, batch import, label update, link, follow list;
(E) Real-time — WebSocket push for Smart Money, KOL, wallet-level, and address-level trade events.
Trigger on: wallet tracker, monitoring, consensus, pioneer, accumulation, Distribution, Sector Rotation, Anomaly Large Order,
round-trip, first-mover, wake-up, bot-like, token risk, token heat, group profile, similar wallets,
group management, address import, follow list, real-time push, WebSocket — even without "tracker" explicitly.
metadata:
author: binance-web3-team
version: "1.1"
openclaw:
requires:
bins:
- baw
install:
- kind: node
package: '@binance/agentic-wallet'
bins: [baw]
label: Install Binance Agentic Wallet CLI (npm)Binance Wallet Tracker Skill
On-chain wallet tracking and monitoring. Monitor token-level and trade-level activity for private groups or public Smart Money / KOL data. Includes 9 built-in analysis scenarios for replay and pattern detection.
Prerequisites
This skill requires the `baw` CLI (`@binance/agentic-wallet` npm package). If `baw` is not found:
npm install -g @binance/agentic-wallet
Verify: `baw --version` should print `1.6.2` or higher. If installation fails or the user doesn't have Node.js, inform them that Node.js >= 18 is required.
When to Use
Discovery
| User intent | Command | |-------------|---------| | Consensus tokens (many buyers) | `tracker token query` → sort by `consensusCount` | | Pioneer tokens (≤2 traders) | `tracker token query` → filter `launchTime` + `consensusCount ≤ 2` | | Leaderboard diff (untracked wallets) | `leaderboard query` (leaderboard skill) + `tracker address list` → diff | | Token-based buyer lookup | `tracker tx query` → client-side filter by `ca` | | Time-window summary | `tracker token query --period 4h` + `tracker tx query` | | Similar wallet discovery | `leaderboard analyze` (leaderboard skill) → archetype matching |
Evaluation
| User intent | Command | |-------------|---------| | Token risk screening | `tracker token query` → filter `tokenRiskLevel ≥ 3` + `consensusCount ≥ 3` | | Group rhythm profiling | `tracker tx query` → per-address rhythm analysis | | Follow list assessment | `tracker follow` + `leaderboard analyze` (cross-skill) | | Token heat analysis | `tracker tx query` → aggregate by `ca` |
Replay
| User intent | Command | |-------------|---------| | 4h comprehensive summary | `tracker token query --period 4h` + `tracker tx query` | | Accumulation vs distribution (Accumulation/Distribution) | `tracker token query` → `buyCount`/`sellCount` per address | | Sector rotation | `tracker tx query` → compare token top across time windows | | Anomaly large orders | `tracker tx query` → `anomaly` detection | | Round-trip (Round-Trip) | `tracker tx query` → `round-trip` detection | | First-mover + leader-follower | `tracker tx query` → `first-mover` + `leader-follower` | | Wake-up detection | `tracker tx query` → `wake-up` detection | | Bot-like behavior | `tracker tx query` → `bot-like` detection |
Full 9-scenario analysis rules: [`references/analytics.md`](references/analytics.md)
Management
| User intent | Command | |-------------|---------| | Create / rename group | `tracker group create/update` | | Batch import addresses | `tracker address batch` | | Add single address | `tracker address add` | || Update label / link to group | `tracker address update -l` + `tracker address link` | | Delete addresses | `tracker address delete` | | Follow / unfollow address | `tracker address follow/unfollow` | | View follow list | `tracker follow` | | Search address (fuzzy) | `tracker address search` |
Supported Chains
| Chain | chainId | |-------|---------| | BSC | `56` | | Solana | `CT_501` | | Base | `8453` | | Ethereum | `1` |
Command Tree
baw tracker
token query # Token dimension monitor (private + --tag-type for public)
tx query # Trade dimension monitor (private + --tag-type for public)
follow # Query current user follow list (read-only, chainId only)
ws # WebSocket real-time push (--smy/--kol/--wallet/--address/--following)
group
list # Group list
create # Create group
update # Rename group
address
search # Fuzzy search address
list # Paginated address list
add # Add single address (wraps import)
batch # Batch import
update # Update label (label only)
link # Link to group (group/link)
delete # Delete (supports batch)
follow # Follow address
unfollow # UnfollowAll commands support `--json` for structured output.
**`token query` and `tx query` require either `--group-id` (private group) or `--tag-type` (public KOL/SMY). Calling without either returns an error.**
**`--tag-type` accepts: `kol` (KOL), `smy` (Smart Money).**
Token Monitor (A2)
# Private — own group data (must specify --group-id or --tag-type) baw tracker token query -c 56 --group-id 1 --json baw tracker token query -c 56 --group-id 1 --period 4h --json # Public — SMY/KOL data baw tracker token query -c 56 --tag-type kol --j
Binance Skills Hub is an open skills marketplace that gives AI agents native access to crypto: both centralized and decentralized. Search tokens, execute trades, track wallets, monitor signals, and interact with DeFi protocols, all through natural language.
Repo: binance/binance-skills-hub
Other skills on binance-skills-hub.
- /binance-agentic-wallet
Use when the user mentions wallet connect/sign in/sign out, check balance, send/transfer tokens, swap/buy/sell tokens, DEX trade, limit/market order, cancel order, get a quote, transaction history, wallet settings, daily limit, slippage, MEV protection, supported chains,
Open skill - /binance-leaderboard
On-chain wallet leaderboard and Gem Hunter analysis on Binance Web3. Query top trader rankings by PnL, win rate, volume, trade count, or token count across BSC/Solana/Base/ETH. Analyze individual wallet addresses with a 6-dimension scoring model (winrate/stability/drawdown/
Open skill - /binance-sports-ai-analyzer
Use when users ask for World Cup or 世界杯 AI match predictions, WC assistant probabilities, World Cup news insights, master analysis, recomputing football match win rates with custom correction signals, or trading a related prediction market after reviewing the AI analysis.
Open skill - /binance-tokenized-securities-info
Query Ondo tokenized US stock data on Binance Web3. Covers: supported stock token list, RWA metadata (company info, attestation reports), market and per-asset trading status (with corporate action codes for earnings, dividends, splits), real-time on-chain data (token price,
Open skill - /binance-trading-signal
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal sources: smart money (wallet buy/sell events), platform strategies, and user-created strategies (meme / fomo). Four scenario domains: (A) Reports — daily report, monthly backtest review
Open skill - /crypto-market-rank
Crypto market leaderboards — ranked aggregate feeds across the whole market: social-hype/sentiment rank, trending / top-search / Binance Alpha / tokenized-stocks rank, smart-money net-inflow rank (which tokens received the most inflow), top meme tokens by breakout score on Pulse
Open skill

