
Nansen Wallet Deep Dive
- 342 installs
- 127 repo stars
- Updated August 4, 2026
- nansen-ai/nansen-cli
nansen-wallet-deep-dive is a Web3 agent skill that runs Nansen CLI commands to profile on-chain wallets with labels, PnL, transactions, perp positions, and counterparties for developer due diligence.
About
nansen-wallet-deep-dive is an agent skill from nansen-ai/nansen-cli that answers who a wallet is and what it has been doing on-chain. The skill requires the nansen CLI binary and a NANSEN_API_KEY environment variable, installed via the node package nansen-cli. Developers set ADDR and CHAIN variables (for example ethereum) then run commands such as nansen research profiler labels to retrieve identity labels, categories like Smart Trader or Fund, balance, PnL summary, recent transactions, perpetual positions, and counterparties. Allowed tools are scoped to Bash(nansen:*). Reach for this skill during counterparty due diligence, token flow investigations, or debugging suspicious contract interactions. Output is structured wallet intelligence suitable for risk memos, integration go/no-go calls, or forensic reports—not financial advice.
- On-chain wallet profiling
- Counterparty tracing
- Token flow analysis
- Nansen CLI integration
Nansen Wallet Deep Dive by the numbers
- 342 all-time installs (skills.sh)
- +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #58 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nansen-ai/nansen-cli --skill nansen-wallet-deep-diveAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 342 |
|---|---|
| repo stars | ★ 127 |
| Last updated | August 4, 2026 |
| Repository | nansen-ai/nansen-cli ↗ |
How do you profile an on-chain wallet with Nansen?
Perform deep on-chain wallet analysis with Nansen CLI—labels, counterparties, token flows, and behavioral signals for due diligence.
Who is it for?
Developers and analysts running on-chain due diligence with Nansen CLI and a configured NANSEN_API_KEY.
Skip if: Developers without a Nansen API key or nansen CLI install who need free public block explorer lookups only.
When should I use this skill?
A developer supplies a wallet address and chain and asks who the wallet is, what it traded, or who its counterparties are.
What you get
Wallet label report, PnL summary, recent transactions, perp positions, and counterparty list from Nansen CLI
- wallet profile report
- counterparty list
- PnL summary
Files
Wallet Analysis
Answers: "Who is this wallet and what have they been doing?"
ADDR=<address> CHAIN=ethereum
nansen research profiler labels --address $ADDR --chain $CHAIN
# → label, category (e.g. "Smart Trader", "Fund", "Public Figure", ENS names)
nansen research profiler balance --address $ADDR --chain $CHAIN
# → token_symbol, token_name, token_amount, price_usd, value_usd per holding
nansen research profiler pnl-summary --address $ADDR --chain $CHAIN --days 30
# → realized_pnl_usd, realized_pnl_percent, win_rate, traded_token_count, traded_times, top5_tokens
nansen research profiler transactions --address $ADDR --chain $CHAIN --limit 20
# → block_timestamp, method, tokens_sent, tokens_received, volume_usd, source_type
nansen research profiler perp-positions --address $ADDR
# → asset_positions, margin_summary_account_value_usd, margin_summary_total_margin_used_usd
nansen research profiler counterparties --address $ADDR --chain $CHAIN --days 30
# → counterparty_address, counterparty_address_label, interaction_count, total_volume_usd, volume_in/out_usdperp-positions returns Hyperliquid data — returns empty if the wallet has no open perps.
Related skills
FAQ
What does nansen-wallet-deep-dive require to run?
nansen-wallet-deep-dive requires the nansen CLI from the nansen-cli npm package and a NANSEN_API_KEY environment variable. Developers set ADDR and CHAIN, then invoke Bash-scoped nansen commands.
What wallet data does the skill return?
nansen-wallet-deep-dive returns identity labels, category tags, balance, PnL summary, recent transactions, perpetual positions, and counterparties. Output supports due diligence and counterparty risk review on supported chains.