โ† All skills
Tencent SkillHub ยท Developer Tools

solana-skill

Interact with Solana blockchain via Helius APIs. Create/manage wallets, check balances (SOL + tokens), send transactions, swap tokens via Jupiter, and monitor addresses. Use for any Solana blockchain operation, crypto wallet management, token transfers, DeFi swaps, or portfolio tracking.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with Solana blockchain via Helius APIs. Create/manage wallets, check balances (SOL + tokens), send transactions, swap tokens via Jupiter, and monitor addresses. Use for any Solana blockchain operation, crypto wallet management, token transfers, DeFi swaps, or portfolio tracking.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
references/helius-api.md, references/jupiter.md, references/security.md, package.json, scripts/wallet.ts, scripts/send.ts

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Solana Skill

Comprehensive Solana blockchain interaction using Helius infrastructure.

Prerequisites

Helius API Key โ€” Get free at https://dashboard.helius.dev/signup Store key in ~/.config/solana-skill/config.json: { "heliusApiKey": "your-api-key", "network": "mainnet-beta" }

Wallet Management

Create new wallets (keypair generation) Import existing wallets (private key or seed phrase) List managed wallets Secure key storage (encrypted at rest)

Balance & Assets

Check SOL balance Get all token balances (SPL tokens) View NFTs and compressed NFTs Portfolio valuation (via DAS API)

Transactions

Send SOL Send SPL tokens Transaction history (enhanced, human-readable) Priority fee estimation

Swaps (Jupiter)

Get swap quotes Execute token swaps Slippage protection

Monitoring

Watch addresses for activity Transaction notifications

Check Balance

import { createHelius } from 'helius-sdk'; const helius = createHelius({ apiKey: 'YOUR_KEY' }); const assets = await helius.getAssetsByOwner({ ownerAddress: 'WALLET_ADDRESS', displayOptions: { showFungible: true, showNativeBalance: true } });

Send SOL

import { Connection, Keypair, SystemProgram, Transaction, sendAndConfirmTransaction, LAMPORTS_PER_SOL } from '@solana/web3.js'; const connection = new Connection('https://mainnet.helius-rpc.com/?api-key=YOUR_KEY'); const tx = new Transaction().add( SystemProgram.transfer({ fromPubkey: sender.publicKey, toPubkey: recipientPubkey, lamports: amount * LAMPORTS_PER_SOL }) ); await sendAndConfirmTransaction(connection, tx, [sender]);

Jupiter Swap

// 1. Get quote const quote = await fetch(`https://api.jup.ag/swap/v1/quote?inputMint=${inputMint}&outputMint=${outputMint}&amount=${amount}`); // 2. Build swap transaction const swap = await fetch('https://api.jup.ag/swap/v1/swap', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ quoteResponse: await quote.json(), userPublicKey: wallet.publicKey.toString() }) }); // 3. Sign and send

API Endpoints

ServiceBase URLHelius RPChttps://mainnet.helius-rpc.com/?api-key=KEYHelius Senderhttps://sender.helius-rpc.com/fastJupiter Quotehttps://api.jup.ag/swap/v1/quoteJupiter Swaphttps://api.jup.ag/swap/v1/swap

Security

Critical rules: Never log or display private keys Use encrypted storage for keys Validate all addresses before transactions Set reasonable slippage limits (default: 1%) Always confirm large transactions with user See references/security.md for detailed security practices.

Detailed References

references/helius-api.md โ€” Full Helius API reference references/security.md โ€” Wallet security best practices references/jupiter.md โ€” Jupiter swap integration

Common Token Addresses

TokenMint AddressSOLSo11111111111111111111111111111111111111112 (wrapped)USDCEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1vUSDTEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYBBONKDezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263

Error Handling

Common errors and solutions: Insufficient SOL: Need SOL for rent + transaction fees Token account not found: Create ATA before sending tokens Transaction too large: Reduce instructions or use address lookup tables Blockhash expired: Retry with fresh blockhash

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Scripts1 Config
  • references/helius-api.md Docs
  • references/jupiter.md Docs
  • references/security.md Docs
  • scripts/send.ts Scripts
  • scripts/wallet.ts Scripts
  • package.json Config