skills$openclaw/solana
sakaen736jih4.1k

by sakaen736jih

solana – OpenClaw Skill

solana is an OpenClaw Skills integration for coding workflows. Interact with Solana blockchain - check balances, view transactions, monitor NFTs, and explore account data. Works with Phantom and Solflare addresses.

4.1k stars7.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namesolana
descriptionInteract with Solana blockchain - check balances, view transactions, monitor NFTs, and explore account data. Works with Phantom and Solflare addresses. OpenClaw Skills integration.
ownersakaen736jih
repositorysakaen736jih/solana
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @sakaen736jih/solana
last updatedFeb 7, 2026

Maintainer

sakaen736jih

sakaen736jih

Maintains solana in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
270 B
SKILL.md
2.9 KB
SKILL.md

name: solana description: Interact with Solana blockchain - check balances, view transactions, monitor NFTs, and explore account data. Works with Phantom and Solflare addresses. metadata: {"openclaw":{"requires":{"bins":["solana"]},"install":[{"id":"solana","kind":"shell","command":"sh -c "$(curl -sSfL https://release.solana.com/stable/install)"","bins":["solana"],"label":"Install Solana CLI"}]}}

Solana Wallet CLI

Setup

Install Solana CLI:

sh -c "$(curl -sSfL https://release.solana.com/stable/install)"

Set mainnet RPC:

solana config set --url https://api.mainnet-beta.solana.com

Check Balance

SOL balance:

solana balance <ADDRESS>

In lamports:

solana balance <ADDRESS> --lamports

View Account Info

solana account <ADDRESS>

Detailed JSON output:

solana account <ADDRESS> --output json

Transaction History

Recent transactions:

solana transaction-history <ADDRESS> --limit 10

Transaction details:

solana confirm <SIGNATURE> -v

Token Balances (SPL Tokens)

List all tokens:

spl-token accounts --owner <ADDRESS>

Specific token balance:

spl-token balance <TOKEN_MINT> --owner <ADDRESS>

NFT & Token Info

Using Metaboss (NFT tool):

# Install
cargo install metaboss

# Get NFT metadata
metaboss decode mint -a <NFT_MINT_ADDRESS>

Stake Accounts

View stake:

solana stakes <ADDRESS>

Using Public RPC Endpoints

# Mainnet
solana config set --url https://api.mainnet-beta.solana.com

# Devnet (testing)
solana config set --url https://api.devnet.solana.com

# Custom RPC
solana config set --url https://your-rpc-provider.com

Quick Balance Check (curl)

curl -X POST https://api.mainnet-beta.solana.com -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getBalance",
  "params": ["<ADDRESS>"]
}' | python3 -c "import sys,json; d=json.load(sys.stdin); print(f\"{d['result']['value']/1e9:.4f} SOL\")"

Get Token Accounts (curl)

curl -X POST https://api.mainnet-beta.solana.com -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getTokenAccountsByOwner",
  "params": [
    "<ADDRESS>",
    {"programId": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"},
    {"encoding": "jsonParsed"}
  ]
}'

Monitor Address

Watch for changes:

watch -n 5 "solana balance <ADDRESS>"

Common Addresses

NameAddress
SOL MintSo11111111111111111111111111111111111111112
USDCEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
USDTEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB

Notes

  • Addresses are base58 encoded public keys
  • 1 SOL = 1,000,000,000 lamports
  • RPC rate limits apply on public endpoints
  • For heavy usage, consider paid RPC providers (Helius, QuickNode, Alchemy)
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install solana?

Run openclaw add @sakaen736jih/solana in your terminal. This installs solana into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/sakaen736jih/solana. Review commits and README documentation before installing.