← Back to Skills Marketplace
tiennv3

exploring-solana-with-solscan

by Solscan · GitHub ↗ · v1.0.8 · MIT-0
cross-platform ⚠ suspicious
348
Downloads
1
Stars
0
Active Installs
9
Versions
Install in OpenClaw
/install exploring-solana-with-solscan
Description
Use this skill to query Solana blockchain data via the Solscan Pro API. Triggers: look up wallet address, check token price, analyze NFT collection, inspect...
README (SKILL.md)

Solscan Pro Skill

Empowers AI agents to retrieve professional-grade Solana on-chain data across accounts, tokens, NFTs, transactions, blocks, markets, and programs.

When to Use This Skill

  • User asks about a Solana wallet address, balance, portfolio, or stake
  • User wants token price, holders, markets, or trending tokens
  • User needs to inspect a transaction signature or decode instructions
  • User asks about NFT collections, items, or recent NFT activity
  • User wants DeFi activity, transfer history, or reward exports
  • User wants to analyze a program's on-chain statistics, transaction metrics, or user activity
  • User needs to check popular DeFi platforms or view API usage

Authentication

All requests require an API key in the HTTP header:

token: \x3CYOUR_SOLSCAN_API_KEY>

Base URL: https://pro-api.solscan.io/v2.0


Tools

Tool 1 — Direct API CLI (Precise Data)

Use when: you need exact, structured on-chain data for a specific address, signature, block, or mint.

Syntax: python3 scripts/solscan.py \x3Cresource> \x3Caction> [--param value]

Tool 2 — MCP Natural Language Tools

Use when: answering general exploratory questions or when the user does not provide a specific address.

Available MCP tools:

  • search_transaction_by_signature — look up a transaction by its signature
  • get_account_balance — retrieve SOL balance for a wallet
  • get_token_metadata — get name, symbol, decimals for a token mint

API Reference

Account

Action Key Params Returns
account detail --address Lamports, owner, executable flag
account data-decoded --address Decoded account data
account metadata --address Label, icon, tags, domain, funder
account metadata-multi --addresses Batch metadata (comma-separated)
account transfer --address [filters...] SPL + SOL transfer history (supports activity-type, token, flow, time range filters)
account defi --address [filters...] DeFi protocol interactions (activity-type, from, platform, source, token, time range)
account balance-change --address [filters...] Historical balance changes (token, flow, amount, time range, remove-spam)
account transactions --address [--before] [--limit] Recent transactions list (cursor-based pagination)
account portfolio --address [--exclude-low-score-tokens] Token holdings with USD value
account tokens --address --type [--page] [--page-size] [--hide-zero] Associated token/NFT accounts (page-size: 10/20/30/40)
account stake --address [--page] [--page-size] [--sort-by] [--sort-order] Active stake accounts (page-size: 10/20/30/40)
account reward-export --address [--time-from] [--time-to] Staking reward history CSV (max 5000 items, max 1 req/min)
account transfer-export --address [filters...] Transfer history CSV (max 5000 items, max 1 req/min)
account leaderboard [--sort-by] [--sort-order] [--page] [--page-size] Top accounts by activity
account defi-export --address [filters...] DeFi activity CSV (max 5000 items, max 1 req/min)

account metadata response fields:

account_address, account_label, account_icon, account_tags, account_type, account_domain, funded_by, tx_hash, block_time

account transfer filter options:

  • --activity-type: Transfer type filter (comma-separated). Options: ACTIVITY_SPL_TRANSFER, ACTIVITY_SPL_BURN, ACTIVITY_SPL_MINT, ACTIVITY_SPL_CREATE_ACCOUNT, ACTIVITY_SPL_CLOSE_ACCOUNT, ACTIVITY_SPL_TOKEN_WITHDRAW_STAKE, ACTIVITY_SPL_TOKEN_SPLIT_STAKE, ACTIVITY_SPL_TOKEN_MERGE_STAKE, ACTIVITY_SPL_VOTE_WITHDRAW, ACTIVITY_SPL_SET_OWNER_AUTHORITY
  • --token-account: Filter transfers for a specific token account in the wallet
  • --from: Filter by source address(es) (max 5, comma-separated)
  • --exclude-from: Exclude transfers from address(es) (max 5, comma-separated)
  • --to: Filter by recipient address(es) (max 5, comma-separated)
  • --exclude-to: Exclude transfers to address(es) (max 5, comma-separated)
  • --token: Filter by token address(es) (max 5, comma-separated). Use So11111111111111111111111111111111111111111 for native SOL
  • --amount: Amount range filter (min max)
  • --value: USD value range filter (min max)
  • --from-time, --to-time: Unix timestamp range filter
  • --exclude-amount-zero: Exclude transfers with zero amount (boolean)
  • --flow: Transfer direction: in|out
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)
  • --sort-order: Sort order: asc|desc (default: desc)

Deprecated parameters: sort_by, block_time (use from_time/to_time instead)

account defi filter options:

  • --activity-type: Activity type filter (comma-separated). Options: ACTIVITY_TOKEN_SWAP, ACTIVITY_AGG_TOKEN_SWAP, ACTIVITY_TOKEN_ADD_LIQ, ACTIVITY_TOKEN_REMOVE_LIQ, ACTIVITY_POOL_CREATE, ACTIVITY_SPL_TOKEN_STAKE, ACTIVITY_LST_STAKE, ACTIVITY_SPL_TOKEN_UNSTAKE, ACTIVITY_LST_UNSTAKE, ACTIVITY_TOKEN_DEPOSIT_VAULT, ACTIVITY_TOKEN_WITHDRAW_VAULT, ACTIVITY_SPL_INIT_MINT, ACTIVITY_ORDERBOOK_ORDER_PLACE, ACTIVITY_BORROWING, ACTIVITY_REPAY_BORROWING, ACTIVITY_LIQUIDATE_BORROWING, ACTIVITY_BRIDGE_ORDER_IN, ACTIVITY_BRIDGE_ORDER_OUT
  • --from: Filter activities from a specific address
  • --platform: Filter by platform address(es) (comma-separated, max 5)
  • --source: Filter by source address(es) (comma-separated, max 5)
  • --token: Filter by token address
  • --from-time, --to-time: Unix timestamp range filter
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)
  • --sort-by: Sort field (default: block_time, options: block_time)
  • --sort-order: Sort order: asc|desc (default: desc)

Deprecated parameters: block_time (use from_time/to_time instead)

account balance-change filter options:

  • --token-account: Filter by specific token account
  • --token: Filter by token address
  • --amount: Amount range (min max)
  • --flow: in|out
  • --remove-spam: true|false
  • --from-time, --to-time: Unix timestamp range
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)
  • --sort-by: Sort field (default: block_time, options: block_time)
  • --sort-order: Sort order: asc|desc (default: desc)

Deprecated parameters: block_time (use from_time/to_time instead)

account transactions pagination:

  • Uses cursor-based pagination with --before (transaction signature)
  • --limit: 10, 20, 30, 40 (default: 10)
  • No page/page_size parameters

account stake options:

  • --sort-by: active_stake|delegated_stake (default: active_stake)
  • --sort-order: asc|desc
  • --page-size: 10, 20, 30, 40 (default: 10)

account reward-export parameters:

  • --time-from: Start time (Unix timestamp in seconds, default: 1 month before time-to)
  • --time-to: End time (Unix timestamp in seconds, default: current time)

account transfer-export filter options:

  • --activity-type: Transfer type filter (comma-separated). Options: ACTIVITY_SPL_TRANSFER, ACTIVITY_SPL_BURN, ACTIVITY_SPL_MINT, ACTIVITY_SPL_CREATE_ACCOUNT, ACTIVITY_SPL_CLOSE_ACCOUNT, ACTIVITY_SPL_TOKEN_WITHDRAW_STAKE, ACTIVITY_SPL_TOKEN_SPLIT_STAKE, ACTIVITY_SPL_TOKEN_MERGE_STAKE, ACTIVITY_SPL_VOTE_WITHDRAW, ACTIVITY_SPL_SET_OWNER_AUTHORITY
  • --token-account: Filter by specific token account address
  • --from: Filter from address
  • --to: Filter to address
  • --token: Filter by token address (use So11111111111111111111111111111111111111111 for native SOL)
  • --amount: Amount range (min max)
  • --from-time, --to-time: Unix timestamp range
  • --exclude-amount-zero: Exclude zero amount transfers
  • --flow: Transfer direction: in|out

Deprecated parameters: block_time (use from_time/to_time instead)

account leaderboard options:

  • --sort-by: sol_values|stake_values|token_values|total_values (default: total_values)
  • --sort-order: asc|desc
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)

account defi-export filter options:

  • --activity-type: Activity type filter (comma-separated). Options: ACTIVITY_TOKEN_SWAP, ACTIVITY_AGG_TOKEN_SWAP, ACTIVITY_TOKEN_ADD_LIQ, ACTIVITY_TOKEN_REMOVE_LIQ, ACTIVITY_POOL_CREATE, ACTIVITY_SPL_TOKEN_STAKE, ACTIVITY_LST_STAKE, ACTIVITY_SPL_TOKEN_UNSTAKE, ACTIVITY_LST_UNSTAKE, ACTIVITY_TOKEN_DEPOSIT_VAULT, ACTIVITY_TOKEN_WITHDRAW_VAULT, ACTIVITY_SPL_INIT_MINT, ACTIVITY_ORDERBOOK_ORDER_PLACE, ACTIVITY_BORROWING, ACTIVITY_REPAY_BORROWING, ACTIVITY_LIQUIDATE_BORROWING, ACTIVITY_BRIDGE_ORDER_IN, ACTIVITY_BRIDGE_ORDER_OUT
  • --from: Filter activities from a specific address
  • --platform: Filter by platform address(es) (comma-separated, max 5)
  • --source: Filter by source address(es) (comma-separated, max 5)
  • --token: Filter by token address
  • --from-time, --to-time: Unix timestamp range
  • --sort-by: Sort field (default: block_time, options: block_time)
  • --sort-order: Sort order: asc|desc (default: desc)

Deprecated parameters: block_time (use from_time/to_time instead)

Token

Action Key Params Returns
token meta --address Name, symbol, decimals, supply
token meta-multi --addresses Batch metadata
token price ⚠️ --address [--from-time] [--to-time] DEPRECATED - Single token price history (use token price-history instead)
token price-multi ⚠️ --addresses [--from-time] [--to-time] DEPRECATED - Batch price history (use token price-history instead)
token price-latest --addresses Latest price of multiple tokens (max 50, comma-separated)
token price-history --addresses [--from-time] [--to-time] Historical price of multiple tokens (max 50, comma-separated; time: YYYYMMDD)
token holders --address [--page] [--page-size] [--from-amount] [--to-amount] Top holder list with amounts (page-size: 10/20/30/40)
token markets --token [--sort-by] [--program] [--page] [--page-size] DEX markets: 1 token for all markets, 2 tokens for pair search
token transfers --address [filters...] Transfer history
token defi --address [filters...] DeFi activity
token defi-export --address [filters...] DeFi activity CSV
token historical --address [--range] Historical data (price, volume, holder, trader,...) for a token (range: 7 or 30 days, default: 7)
token search --keyword [--search-mode] [--search-by] [--sort-by] [--sort-order] [--page] [--page-size] Search tokens by keyword/address/name/symbol
token trending [--limit] Currently trending tokens
token list [--page] [--page-size] [--sort-by] [--sort-order] Full token list (sort: holder
token top Top tokens by market cap
token latest [--platform-id] [--page] [--page-size] Newly listed tokens (page-size: 10/20/30/40/60/100)

token price parameters ⚠️ DEPRECATED:

  • --address: Token address (required)
  • --from-time: Start time in YYYYMMDD format (optional)
  • --to-time: End time in YYYYMMDD format (optional)

token price-multi parameters ⚠️ DEPRECATED:

  • --addresses: Token addresses, comma-separated (max 50, required)
  • --from-time: Start time in YYYYMMDD format (optional)
  • --to-time: End time in YYYYMMDD format (optional)

token price-latest parameters:

  • --addresses: Token addresses, comma-separated (max 50, required)

token price-history parameters:

  • --addresses: Token addresses, comma-separated (max 50, required)
  • --from-time: Start time in YYYYMMDD format (optional)
  • --to-time: End time in YYYYMMDD format (optional)

token holders parameters:

  • --address: Token address (required)
  • --from-amount: Minimum token holding amount (string format, optional)
  • --to-amount: Maximum token holding amount (string format, optional)
  • --page: Page number (default: 1)
  • --page-size: 10, 20, 30, 40 (default: 10)

token markets parameters:

  • --token: Token address(es) - REQUIRED (1 token for all markets, 2 tokens for pair search, comma-separated)
  • --sort-by: Sort field: volume|trade|tvl|trader
  • --program: Filter by DEX program(s) (comma-separated, max 5)
  • --page: Page number (default: 1)
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)

token transfers filter options:

  • --activity-type: Transfer type filter (comma-separated). Options: ACTIVITY_SPL_TRANSFER, ACTIVITY_SPL_BURN, ACTIVITY_SPL_MINT, ACTIVITY_SPL_CREATE_ACCOUNT, ACTIVITY_SPL_CLOSE_ACCOUNT, etc.
  • --from: Filter from address(es) (max 5, comma-separated)
  • --exclude-from: Exclude from address(es) (max 5, comma-separated)
  • --to: Filter to address(es) (max 5, comma-separated)
  • --exclude-to: Exclude to address(es) (max 5, comma-separated)
  • --amount: Amount range (min max)
  • --value: USD value range (min max)
  • --exclude-amount-zero: Exclude zero amount transfers (boolean flag)
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)
  • --sort-by: block_time (default: block_time)
  • --sort-order: asc|desc (default: desc)

token defi filter options:

  • --activity-type: Activity type filter (comma-separated). Options: ACTIVITY_TOKEN_SWAP, ACTIVITY_AGG_TOKEN_SWAP, ACTIVITY_TOKEN_ADD_LIQ, ACTIVITY_TOKEN_REMOVE_LIQ, ACTIVITY_POOL_CREATE, etc.
  • --from: Filter activities from a specific address
  • --platform: Filter by platform address(es) (comma-separated, max 5)
  • --source: Filter by source address(es) (comma-separated, max 5)
  • --token: Filter by token address
  • --from-time, --to-time: Unix timestamp range filter
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)
  • --sort-by: block_time (default: block_time)
  • --sort-order: asc|desc (default: desc)

token defi-export filter options:

  • --activity-type: Activity type filter (comma-separated): ACTIVITY_TOKEN_SWAP, ACTIVITY_AGG_TOKEN_SWAP, etc.
  • --from: Filter activities from a specific address
  • --platform: Filter by platform address(es) (comma-separated, max 5)
  • --source: Filter by source address(es) (comma-separated, max 5)
  • --token: Filter by token address
  • --from-time, --to-time: Unix timestamp range filter
  • --sort-by: block_time (default: block_time)
  • --sort-order: asc|desc (default: desc)

token historical parameters:

  • --address: Token address (required)
  • --range: 7 or 30 days (default: 7)

token search parameters:

  • --keyword: Search term (required)
  • --search-by: combination|address|name|symbol (default: combination)
  • --search-mode: exact|fuzzy (default: exact)
  • --exclude-unverified-token: Exclude unverified tokens (boolean flag)
  • --sort-by: reputation|market_cap|volume_24h (default: reputation)
  • --sort-order: asc|desc (default: desc)
  • --page, --page-size: 10, 20, 30, 40 (default: 10)

token latest platforms:

  • --platform-id: jupiter, lifinity, meteora, orca, raydium, phoenix, sanctum, kamino, pumpfun, openbook, apepro, stabble, jupiterdca, jupiter_limit_order, solfi, zerofi, letsbonkfun_launchpad, raydium_launchlab, believe_launchpad, moonshot_launchpad, jup_studio_launchpad, bags_launchpad

Transaction

Action Key Params Returns
transaction detail --tx Full tx details (token and sol balance changes, IDL data, defi or transfer activities of each instructions)
transaction detail-multi --txs Batch tx details (max 50 transactions)
transaction last [--limit] [--filter] Most recent transactions
transaction actions --tx Human-readable decoded actions (transfers, swap activities, nft activities...)
transaction actions-multi --txs Batch decoded actions (max 50 transactions)
transaction fees Network fees statistics (no parameters)

transaction last parameters:

  • --limit: Number of transactions to return (10, 20, 30, 40, 60, 100, default: 10)
  • --filter: Filter type (exceptVote, all, default: exceptVote)

transaction detail parameters:

  • --tx: Transaction signature (required, length: 30-100 characters)

transaction detail-multi parameters:

  • --txs: Transaction signatures, comma-separated (required, max 50, each 30-100 characters)

transaction actions parameters:

  • --tx: Transaction signature (required, length: 30-100 characters)

transaction actions-multi parameters:

  • --txs: Transaction signatures, comma-separated (required, max 50, each 30-100 characters)

NFT

Action Key Params Returns
nft news --filter [--page] [--page-size] Latest NFT activity feed (filter: created_time, page-size: 12/24/36)
nft activities [filters...] NFT activities (all filters optional: from, to, source, activity-type, token, collection, currency-token, price, from-time, to-time)
nft collections [--range] [--sort-by] [--sort-order] [--collection] [--page] [--page-size] Top NFT collections (range: 1/7/30 days, sort: items/floor_price/volumes)
nft items --collection [--sort-by] [--page] [--page-size] Items inside a collection (sort: last_trade/listing_price, page-size: 12/24/36)

nft activities parameters (all optional):

  • --from, --to: Filter by address
  • --source: Filter by source address(es) (comma-separated, max 5)
  • --activity-type: Type of activity (comma-separated). Options: ACTIVITY_NFT_SOLD, ACTIVITY_NFT_LISTING, ACTIVITY_NFT_BIDDING, ACTIVITY_NFT_CANCEL_BID, ACTIVITY_NFT_CANCEL_LIST, ACTIVITY_NFT_REJECT_BID, ACTIVITY_NFT_UPDATE_PRICE, ACTIVITY_NFT_LIST_AUCTION
  • --token: Token address
  • --collection: Collection address
  • --currency-token: Currency token address
  • --price: Price range filter (min max, requires currency_token parameter)
  • --from-time, --to-time: Unix timestamp range
  • --page-size: 10, 20, 30, 40, 60, 100 (default: 10)
  • --block-time ⚠️ DEPRECATED: Use --from-time/--to-time instead

nft collections parameters (all optional):

  • --range: Days range (1, 7, 30, default: 1)
  • --sort-by: Sort field (items, floor_price, volumes, default: volumes)
  • --sort-order: Sort order (asc, desc, default: desc)
  • --collection: Filter by collection ID
  • --page: Page number (default: 1)
  • --page-size: 10, 20, 30, 40 (default: 10)

nft items parameters:

  • --collection: Collection address (required)
  • --sort-by: Sort field (last_trade, listing_price, default: last_trade)
  • --page: Page number (default: 1)
  • --page-size: 12, 24, 36 (default: 12)

Block

Action Key Params Returns
block last [--limit] Get the list of the latest blocks
block detail --block Get the details of a block
block transactions --block [--page] [--page-size] [--exclude-vote] [--program] Get the list of transactions of a block

block last parameters:

  • --limit: Number of blocks to return (10, 20, 30, 40, 60, 100, default: 10)

block detail parameters:

  • --block: The slot index of a block (required, minimum: 0)

block transactions parameters:

  • --block: The slot index of a block (required, minimum: 0)
  • --page: Page number for pagination (default: 1)
  • --page-size: Number of items per page (10, 20, 30, 40, 60, 100, default: 10)
  • --exclude-vote: Excludes vote transactions from the results (boolean flag, default: false)
  • --program: The program used to filter transactions that interact with it (optional, string)

Market

Action Key Params Returns
market list [--page] [--page-size] [--program] [--token-address] [--sort-by] [--sort-order] All trading pools/markets (sort: created_time|volumes_24h|trades_24h)
market info --address Get market/pool details by address
market volume --address [--time] Get historical market data and volume

market list parameters:

  • --page: Page number (default: 1)
  • --page-size: Number of items per page (10, 20, 30, 40, 60, 100, default: 10)
  • --program: Program owner address (optional)
  • --token-address: Token address involved in market (optional)
  • --sort-by: Sort field (created_time, volumes_24h, trades_24h, default: volumes_24h)
  • --sort-order: Sort order (asc, desc, default: desc)

market info parameters:

  • --address: Market ID/address (required, minimum length: 30 characters)

market volume parameters:

  • --address: Market ID/address (required, minimum length: 30 characters)
  • --time: Filter data by time range in YYYYMMDD format. Pass start and end date to filter by time range (e.g., --time 20240701 20240715). Accepts 1-2 values (optional)

Program

Action Key Params Returns
program list [--sort-by] [--sort-order] [--page] [--page-size] Programs active in last 90 days (sort: num_txs|num_txs_success|interaction_volume|success_rate|active_users_24h)
program popular-platforms Popular DeFi platforms
program analytics --address --range Program-level analytics for any Solana program (range: 7 or 30 days, required)

program list parameters:

  • --sort-by: Sort field (num_txs, num_txs_success, interaction_volume, success_rate, active_users_24h, default: num_txs)
  • --sort-order: Sort order (asc, desc)
  • --page: Page number (default: 1)
  • --page-size: 10, 20, 30, 40 (default: 10)

program analytics parameters:

  • --address: Program address on Solana blockchain (required, minimum: 30 characters)
  • --range: Analytics time range in days (7 or 30, required)

Monitor

Action Key Params Returns
monitor usage Your API key usage & rate limits

Error Handling

HTTP Code Meaning Agent Action
400 Bad request / invalid address Validate address format, retry
401 Authentication failed Check token header is set correctly
429 Rate limit exceeded Wait and retry with backoff
500 Internal server error Retry once; report if persistent

All error responses include success: false, code, and message fields.


Example Workflows

Wallet Research Workflow

  • Step 1: account metadata --address \x3CADDR> → confirm label and type
  • Step 2: account portfolio --address \x3CADDR> → get token holdings
  • Step 3: account transfer --address \x3CADDR> → review recent activity
  • Step 4: account defi --address \x3CADDR> → check protocol interactions

Token Analysis Workflow

  • Step 1: token meta --address \x3CMINT> → confirm token identity
  • Step 2: token price --address \x3CMINT> → get current price
  • Step 3: token holders --address \x3CMINT> → check concentration risk
  • Step 4: token markets --token \x3CMINT> → find best liquidity pools

Evaluations

Query Expected Behavior
"What tokens does wallet ABC123 hold?" Calls account portfolio --address ABC123, returns token list with USD values
"What is the current price of BONK?" Calls token meta to resolve mint, then token price, returns USD price
"Decode transaction XYZ..." Calls transaction actions --signature XYZ, returns human-readable action list
"Is this a known wallet?" Calls account metadata --address, returns label/tags/domain if available

Resources: Solscan Pro API Docs, Solscan Pro API FAQs

Usage Guidance
This skill appears to do what it claims (talk to the Solscan Pro API), but the registry metadata is missing important runtime requirements. Before installing: (1) confirm you will provide a SOLSCAN_API_KEY (the script will exit without it); (2) ensure the environment has Python and the 'requests' library or declare/install that dependency; (3) treat the API key as a secret — supply it only to trusted environments and consider using scoped/limited API keys; (4) review the included scripts locally (they are readable) and verify there are no additional network endpoints beyond pro-api.solscan.io; (5) if you expect strict metadata, ask the publisher to update the package to declare the required env var and any dependencies. If you cannot verify these points, avoid installing or run the skill in an isolated environment.
Capability Analysis
Type: OpenClaw Skill Name: exploring-solana-with-solscan Version: 1.0.8 The skill bundle is a legitimate tool for querying the Solana blockchain via the Solscan Pro API. The Python script (scripts/solscan.py) acts as a standard CLI wrapper, using the SOLSCAN_API_KEY environment variable to authenticate requests to the official Solscan endpoint (pro-api.solscan.io). The instructions in SKILL.md are well-structured for an AI agent and contain no evidence of prompt injection or malicious intent.
Capability Assessment
Purpose & Capability
The name, SKILL.md, and the included scripts/solscan.py all consistently implement Solscan Pro API queries for accounts, tokens, NFTs, transactions, etc. The capabilities requested by the skill align with its stated purpose.
Instruction Scope
SKILL.md instructs the agent to call a local CLI wrapper (python3 scripts/solscan.py) and describes only Solscan API interactions. The instructions do not ask for unrelated files or system data. However, SKILL.md and the script require an API key for requests, which is not declared in the registry metadata.
Install Mechanism
There is no install spec (instruction-only with a bundled script). No remote downloads or archive extraction are used. The code is local and readable, lowering install-time risk.
Credentials
The runtime script requires the SOLSCAN_API_KEY environment variable (and SKILL.md specifies a Solscan API key) but the registry metadata lists no required env vars or primary credential — a clear mismatch. Also the script depends on the Python 'requests' package, but no dependency or runtime requirements are declared in metadata.
Persistence & Privilege
The skill is not marked always:true and does not request persistent system-wide privileges. It can be invoked autonomously per platform defaults (disable-model-invocation is false), which is expected for skills and not flagged on its own.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install exploring-solana-with-solscan
  3. After installation, invoke the skill by name or use /exploring-solana-with-solscan
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.8
- Skill renamed from "exploring-solana-with-solscan" to "solscan-data" for clarity and scope. - Updated and expanded API reference: added new query/filter parameters, more action options, and detailed usage notes for each account-related endpoint. - Improved tool documentation to clarify when to use CLI/API tools and natural language utilities. - Example workflows and detailed usage instructions removed from the SKILL.md; new structure is more concise and focused on capabilities. - Authentication/prerequisites and configuration simplified for easier onboarding. - File structure changed: new component docs added (Market Report/SKILL.md, Portfolio Tracker/SKILL.md), legacy files removed (README.md, references/solscan.md).
v1.0.7
No changes since the previous release. - Version unchanged: 2.0.0 - No file modifications detected - Functionality and documentation remain the same as the previous version
v1.0.6
- Added clearer authentication and environment configuration instructions, including `.env` usage. - Specified that private operations require both API credentials and an Omni seed. - Improved API key setup guidance for security best practices. - No changes to tools, workflows, or endpoint coverage.
v1.0.5
- Added a README.md file for improved documentation and onboarding. - No other feature or code changes in this release.
v1.0.4
- No changes detected in this version. - Version number remains at 2.0.0. - No updates to features, documentation, or interface.
v1.0.3
- Added detailed instructions for obtaining and using a Solscan Pro API key in the Authentication section. - No functional or structural changes to the skill code or capabilities.
v1.0.2
- Replaced the Python reference file with a Markdown documentation file for Solscan (added references/solscan.md, removed references/solscan.py). - No changes to core functionality or usage—update only affects referenced documentation files.
v1.0.1
- Added new script: scripts/solscan.py for direct Solscan Pro API CLI access. - Enables precise querying of Solana blockchain data from the command line.
v1.0.0
Initial release providing Solana blockchain data access via the Solscan Pro API. - Query wallet balances, token portfolios, and stake accounts - Look up token prices, markets, holders, and trending tokens - Analyze NFT collections, items, and latest NFT activities - Inspect transaction details, decode instructions, and check fees - Get DeFi history and protocol interactions for wallets and tokens - Fetch block info, program analytics, and market stats - Includes examples, error handling guidance, and authentication instructions
Metadata
Slug exploring-solana-with-solscan
Version 1.0.8
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 9
Frequently Asked Questions

What is exploring-solana-with-solscan?

Use this skill to query Solana blockchain data via the Solscan Pro API. Triggers: look up wallet address, check token price, analyze NFT collection, inspect... It is an AI Agent Skill for Claude Code / OpenClaw, with 348 downloads so far.

How do I install exploring-solana-with-solscan?

Run "/install exploring-solana-with-solscan" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is exploring-solana-with-solscan free?

Yes, exploring-solana-with-solscan is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does exploring-solana-with-solscan support?

exploring-solana-with-solscan is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created exploring-solana-with-solscan?

It is built and maintained by Solscan (@tiennv3); the current version is v1.0.8.

💬 Comments