Nansen Polymarket Deep Dive

v0.1.0

Deep dive on a Polymarket market — OHLCV, orderbook, top holders, positions, trades, and PnL leaderboard. Use when analysing a specific prediction market.

0· 179·1 current·1 all-time
byNansen AI@nansen-devops

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for nansen-devops/nansen-polymarket-deep-dive.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nansen Polymarket Deep Dive" (nansen-devops/nansen-polymarket-deep-dive) from ClawHub.
Skill page: https://clawhub.ai/nansen-devops/nansen-polymarket-deep-dive
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: NANSEN_API_KEY
Required binaries: nansen
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install nansen-polymarket-deep-dive

ClawHub CLI

Package manager switcher

npx clawhub@latest install nansen-polymarket-deep-dive
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description ask for a Polymarket deep dive and the skill only requires the 'nansen' CLI and a NANSEN_API_KEY, which are exactly what you would expect to query Nansen's research commands.
Instruction Scope
SKILL.md contains explicit nansen CLI commands scoped to a market_id and does not instruct reading unrelated files, other env vars, or exfiltrating data to unexpected endpoints. It references using a market_id from another skill (reasonable).
Install Mechanism
Install uses a Node package (nansen-cli) that will create a 'nansen' binary. Installing from the npm registry is a normal choice for a CLI but carries standard supply-chain/code-execution risk: the package is unpinned (no version specified) and the skill metadata lacks a homepage/source to verify the publisher.
Credentials
Only NANSEN_API_KEY is required and declared as the primary credential, which is proportionate for a CLI that queries Nansen's API. No unrelated credentials or config paths are requested.
Persistence & Privilege
always:false and no requests to modify other skills or system-wide settings. The skill does not request persistent elevated privileges.
Assessment
This skill appears to do what it claims: run the nansen CLI against a Polymarket market and requires only your NANSEN_API_KEY. Before installing, consider: (1) the npm package 'nansen-cli' will be fetched from the public registry and no version is pinned — audit or pin the package version if you need stability/trust; (2) only provide an API key with the minimum privileges necessary and be prepared to rotate it if you stop using the skill; (3) if you are cautious, inspect the nansen-cli package source (or vendor a known-good release) before installing; and (4) run installation in an isolated environment if you want to limit risk from supply-chain code execution.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsnansen
EnvNANSEN_API_KEY
Primary envNANSEN_API_KEY

Install

Node
Bins: nansen
npm i -g nansen-cli
latestvk97cgxrrhg337sdw2t9gq80qy58330g5
179downloads
0stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

Prediction Market Deep Dive

Answers: "What's happening in this specific market? Who holds it, who's trading it?"

Use market_id from the screener (nansen-prediction-market skill).

MID=<market_id>

nansen research pm ohlcv --market-id $MID --sort period_start:desc --limit 50
# → period_start, open, high, low, close, volume

nansen research pm orderbook --market-id $MID
# → bids[], asks[] with price and size

nansen research pm top-holders --market-id $MID --limit 20
# → address, side, position_size, avg_entry_price, current_price, unrealized_pnl_usd

nansen research pm position-detail --market-id $MID --limit 20
# → address, side, size, avg_entry_price, current_price, pnl

nansen research pm trades-by-market --market-id $MID --limit 20
# → timestamp, buyer, seller, taker_action, side, size, price, usdc_value

nansen research pm pnl-by-market --market-id $MID --limit 20
# → address, side_held, net_buy_cost_usd, unrealized_value_usd, total_pnl_usd

Notes:

  • --market-id is a numeric ID from the screener, not a slug.
  • Works with any market ID regardless of status (active or closed/resolved).
  • All addresses are Polygon (EVM).

Comments

Loading comments...