solscan

solscan is a skill for Claude Code, Codex from Vo1ganin/crypto-claude-skills. It costs 175 tokens per session (2,139 once invoked), scanned A, original, MIT.

A specialist tool for examining Solana blockchain data, including wallets, tokens, transactions, holders, prices, and NFTs, through the Solscan Pro API.

In plain words
What is it for?
Use it to check wallet balances, trace token transfers, analyse transactions, find token holders, review market data, and explore NFTs.
Why use it?
It provides a guided way to inspect Solana data and choose between individual API calls and scripts for larger or repeated analyses.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check wallet balances, trace token transfers, analyse transactions, find token holders, review market data, and explore NFTs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vo1ganin/crypto-claude-skills/solscan
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Vo1ganin/crypto-claude-skills --skill solscan
Clone the repo
git clone --depth 1 https://github.com/Vo1ganin/crypto-claude-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for solscan

README.md
[![agentmods](https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/solscan/github.svg)](https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/solscan)
Your own site
<a href="https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/solscan"><img src="https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/solscan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for solscan

Your own site · 80×15
<a href="https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/solscan"><img src="https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/solscan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 175 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,139 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00175 $0.02139
Opus 5 $0.00088 $0.01069
Sonnet 5 $0.00035 $0.00428
Haiku 4.5 $0.00017 $0.00214

Measured 11d ago against content hash 4658d21d8aa1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

solscan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (references/examples/batch_tx_details.py, references/examples/export_full_history.py, references/examples/fetch_defi_activities.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/solscan/SKILL.md · 181 lines

How it starts

The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Solscan Pro API Skill

You have access to the Solscan Pro API v2 for Solana data.

Read reference files when you need depth:

  • references/endpoints.md — full endpoint catalog with all parameters
  • references/limits.md — CU model, rate limits, page_size gotchas
  • references/batch-patterns.md — MCP vs script decision, multi-endpoints, export endpoints
  • references/examples/ — ready-to-run Python scripts for common batch tasks

🚨 Rule #1: scripts for batch, MCP for exploration

The #1 way this API gets wasted is calling MCP tools in a loop. Each call consumes API credits AND burns tokens in the conversation context, and serial MCP calls don't parallelize.

Task size Tool
1–10 API calls, exploratory MCP tools directly
10–30 calls Script preferred, especially if same shape of request repeats
> 30 calls Always write a script
Any batch where responses are parsed, aggregated, or filtered Always a script

When writing a script: async aiohttp + asyncio.Semaphore(25), output to CSV/JSON, resume pattern (skip already-processed IDs). See references/examples/ for working templates.

🚨 Rule #2: use multi-endpoints and exports

Solscan charges 100 CU per request flatly, so batch endpoints are 50× cheaper than per-item loops:

Instead of Use
50 × transaction/detail (5000 CU) 1 × transaction/detail/multi (100 CU)
50 × token/meta 1 × token/meta/multi
50 × account/metadata 1 × account/metadata/multi
Paginating account/defi/activities past 10k rows account/defi/activities/export
Paginating account/transfer for full history account/transfer/export

Before writing a loop, check if a multi-endpoint exists (see references/endpoints.md).

🚨 Rule #3: page_size is DISCRETE

Allowed values: 10, 20, 30, 40, 60, 100.

  • page_size=50fails silently or returns error
  • page_size=100 → works, use this for batch
  • page_size=200+ → fails

Read the full file on GitHub · 181 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 181 lines · 175 tokens per session scan A 4658d21d8aa1

Subscribe to this mod's changes

solscan is a skill published in the GitHub repository Vo1ganin/crypto-claude-skills (2 stars, last pushed 21d ago), licensed MIT. It adds 175 tokens to every session and 2,139 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

crypto-mining-setup

Setup and optimize cryptocurrency mining operations — AI-powered mining (soul.md protocol), parallel agent deployment, accumulation strategies, and performance optimization.

kevinnft/ai-agent-skills · 33 tokens

agent-wallet

Operate a non-custodial blockchain wallet on-chain (EVM and Bitcoin), no exchange or MetaMask. Create or import a wallet, balances, send native/ERC-20/BTC, swap tokens, compile/deploy/call Solidity. Trigger on wallet, crypto, ETH, BTC, ERC-20, token, send, transfer, swap, trade, Solidity, contract, on-chain, testnet…

hec-ovi/blockchain-skill · 93 tokens

agent-solidity

Write, audit and deploy Solidity smart contracts through a gated multi-step workflow (spec, threat model, design, implementation, in-process EVM proof, security audit, deployment), with a local EVM sandbox that needs no Foundry, Hardhat, anvil, node or funds. Trigger on Solidity, smart contract, .sol, ERC-20, ERC-721…

hec-ovi/blockchain-skill · 122 tokens

aelf-node-skill

AElf node querying and contract execution skill for agents.

AElfProject/aelf-node-skill · 17 tokens

tokenomist-fundraising-lookup

Look up fundraising rounds, investors, and valuation data for tokens. Use when finding who invested, at what valuation, or analyzing investor portfolios.

tokenomist-ai/tokenomist-cli · 37 tokens

tokenomist-unlock-analysis

Analyze token unlock events — upcoming unlocks, historical events, and allocation breakdowns. Use when checking unlock impact on market cap or reviewing unlock schedules.

tokenomist-ai/tokenomist-cli · 37 tokens