
Nansen Sm Cross Chain Flows
- 337 installs
- 127 repo stars
- Updated August 4, 2026
- nansen-ai/nansen-cli
nansen-sm-cross-chain-flows is an agent skill that runs nansen-cli smart-money netflow queries across Ethereum, Solana, Base, and BNB to detect cross-chain capital rotation for developers monitoring labeled-wallet token
About
nansen-sm-cross-chain-flows is an agent skill from nansen-ai/nansen-cli that runs nansen research smart-money netflow queries across four default chains—Ethereum, Solana, Base, and BNB—to detect whether labeled smart money accumulates on one network while distributing on another. The skill installs the nansen-cli npm package, requires a NANSEN_API_KEY environment variable, and loops Bash commands with --limit 200 per chain, filtering output by TOKEN_SYMBOL to compare net_flow_1h_usd, net_flow_24h_usd, net_flow_7d_usd, and net_flow_30d_usd metrics. Developers reach for nansen-sm-cross-chain-flows when building portfolio risk monitors, validating cross-chain rotation thesis, or explaining token price divergence across L1 and L2 venues. Absent chain results indicate no smart-money activity for the requested symbol on that network. The skill declares allowed-tools Bash(nansen:*), tags NANSEN_API_KEY as primaryEnv in OpenClaw metadata, and fits agents that run shell-backed on-chain analytics workflows.
- Cross-chain flows
- Smart-money tracking
- Bridge migration view
- CLI analytics
- Capital rotation
Nansen Sm Cross Chain Flows by the numbers
- 337 all-time installs (skills.sh)
- +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #60 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-sm-cross-chain-flowsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 337 |
|---|---|
| repo stars | ★ 127 |
| Last updated | August 4, 2026 |
| Repository | nansen-ai/nansen-cli ↗ |
How do you trace smart money flows across blockchains?
Trace smart-money capital moving across chains, bridges, and venues to understand rotation, accumulation, and risk concentration in live crypto portfolios.
Who is it for?
Developers monitoring cross-chain token exposure or building on-chain portfolio risk dashboards with Nansen smart-money netflow data.
Skip if: Developers who need wallet-level transaction traces or DeFi protocol TVL analytics without smart-money segmentation.
When should I use this skill?
User asks whether smart money is buying a token on one chain while selling on another, or wants cross-chain capital rotation for a symbol.
What you get
Per-chain smart-money netflow tables with 1h, 24h, 7d, and 30d USD metrics filtered by token symbol
- Cross-chain smart-money netflow comparison
- Per-chain net_flow_1h/24h/7d/30d USD report
By the numbers
- Queries smart-money netflow with --limit 200 per chain
- Compares net_flow across 1h, 24h, 7d, and 30d USD windows
- Default CHAINS array covers ethereum, solana, base, and bnb
Files
TOKEN_SYMBOL=<symbol e.g. "AAVE"> CHAINS=(ethereum solana base bnb)
for chain in "${CHAINS[@]}"; do
nansen research smart-money netflow --chain $chain --limit 200
# Filter by token_symbol; → net_flow_1h_usd, net_flow_24h_usd, net_flow_7d_usd, net_flow_30d_usd
doneAbsent from results = SM activity below threshold on that chain, not necessarily unsupported. Use --limit 200; --limit 100 silently drops mid-tier tokens. ETH+ & SOL− = rotating from SOL→ETH. One chain positive only = chain-specific play. 24h/7d divergence across chains is the rotation signal, not 1h.
Related skills
How it compares
Pick nansen-sm-cross-chain-flows over single-chain Nansen netflow queries when rotation between L1 and L2 venues drives the analysis.
FAQ
What CLI command does nansen-sm-cross-chain-flows use?
nansen-sm-cross-chain-flows runs `nansen research smart-money netflow --chain <chain> --limit 200` for each chain in the CHAINS array, then filters by TOKEN_SYMBOL to read net_flow_1h_usd through net_flow_30d_usd.
What does nansen-sm-cross-chain-flows require to run?
nansen-sm-cross-chain-flows requires NANSEN_API_KEY as primaryEnv and the nansen binary installed from the nansen-cli npm package per OpenClaw metadata.
Which chains does nansen-sm-cross-chain-flows query by default?
nansen-sm-cross-chain-flows loops ethereum, solana, base, and bnb by default; absent results mean no smart-money activity for the token on that chain.