skills$openclaw/solflare
sakaen736jih6.3k

by sakaen736jih

solflare – OpenClaw Skill

solflare is an OpenClaw Skills integration for coding workflows. Work with Solflare wallet - manage Solana assets, staking, custom RPC setup, hardware wallet integration, and NFT management.

6.3k stars1.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namesolflare
descriptionWork with Solflare wallet - manage Solana assets, staking, custom RPC setup, hardware wallet integration, and NFT management. OpenClaw Skills integration.
ownersakaen736jih
repositorysakaen736jih/solflare
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @sakaen736jih/solflare
last updatedFeb 7, 2026

Maintainer

sakaen736jih

sakaen736jih

Maintains solflare in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
274 B
SKILL.md
4.0 KB
SKILL.md

name: solflare description: Work with Solflare wallet - manage Solana assets, staking, custom RPC setup, hardware wallet integration, and NFT management. 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"}]}}

Solflare Wallet

Installation

Supported Features

FeatureSupported
SolanaYes
SPL TokensYes
NFTsYes
StakingYes (built-in)
LedgerYes
dApp BrowserYes

Configure Custom RPC

Settings → Network → Custom RPC

Recommended RPCs:

Helius: https://mainnet.helius-rpc.com/?api-key=YOUR_KEY
QuickNode: https://YOUR_ENDPOINT.solana-mainnet.quiknode.pro/
Triton: https://YOUR_PROJECT.triton.one/
GenesysGo: https://ssc-dao.genesysgo.net/

Staking SOL

  1. Portfolio → Staking → Stake
  2. Choose validator or use Solflare's stake pool
  3. Enter amount
  4. Confirm transaction

Check stake via CLI:

solana stakes YOUR_ADDRESS --url mainnet-beta

View Stake Accounts

solana stake-account YOUR_STAKE_ACCOUNT_ADDRESS --url mainnet-beta

List all stakes:

curl -s -X POST https://api.mainnet-beta.solana.com -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getProgramAccounts",
  "params": [
    "Stake11111111111111111111111111111111111111",
    {
      "encoding": "jsonParsed",
      "filters": [
        {"memcmp": {"offset": 12, "bytes": "YOUR_ADDRESS"}}
      ]
    }
  ]
}'

Import Tokens

Portfolio → Manage Token List → Add Token

Paste contract address:

USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
USDT: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB
mSOL: mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So
stSOL: 7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj

Check Balances (CLI)

SOL balance:

solana balance YOUR_SOLFLARE_ADDRESS

Token balances:

spl-token accounts --owner YOUR_SOLFLARE_ADDRESS

NFT Management

Portfolio → NFTs tab

View NFTs via CLI:

# Install metaboss
cargo install metaboss

# List NFTs
metaboss snapshot mints -c YOUR_ADDRESS -o nfts.json

Hardware Wallet (Ledger)

  1. Install Solana app on Ledger
  2. In Solflare: Add Wallet → Hardware Wallet → Ledger
  3. Connect and select address

Check Ledger address:

solana-keygen pubkey usb://ledger

Transaction History

Via Solscan:

https://solscan.io/account/YOUR_ADDRESS

Via CLI:

solana transaction-history YOUR_ADDRESS --limit 10

Priority Fees

Settings → Priority Fee

  • Market: Dynamic based on network
  • Custom: Set exact amount in lamports

Collectibles (NFTs)

View metadata:

metaboss decode mint -a NFT_MINT_ADDRESS

Connected dApps

Settings → Connected Apps → Manage

Export for CLI Usage

Settings → Export → Show recovery phrase

Create keypair file:

solana-keygen recover -o ~/my-solflare.json

Troubleshooting

Staking not showing:

# Verify stake accounts
solana stakes YOUR_ADDRESS

Transaction failed:

# Check recent blockhash
solana block-time $(solana slot)

Token balance wrong:

# Get actual balance
spl-token balance TOKEN_MINT --owner YOUR_ADDRESS

Solflare vs Phantom

FeatureSolflarePhantom
ChainsSolana onlyMulti-chain
Staking UIAdvancedBasic
LedgerFull supportFull support
Web versionYesNo
ValidatorsChoose anyLimited

Notes

  • Solflare is Solana-focused (no EVM chains)
  • Built-in staking with validator selection
  • Web version works without extension
  • Supports Ledger and Keystone hardware wallets
  • Professional staking analytics
  • NFT bulk management features
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:

Configuration

Settings → Network → Custom RPC Recommended RPCs: ``` Helius: https://mainnet.helius-rpc.com/?api-key=YOUR_KEY QuickNode: https://YOUR_ENDPOINT.solana-mainnet.quiknode.pro/ Triton: https://YOUR_PROJECT.triton.one/ GenesysGo: https://ssc-dao.genesysgo.net/ ```

FAQ

How do I install solflare?

Run openclaw add @sakaen736jih/solflare in your terminal. This installs solflare 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/solflare. Review commits and README documentation before installing.