← All skills
Tencent SkillHub · AI

Solana Connect

OpenClaw Solana Connect — Secure toolkit for AI agents to interact with Solana blockchain. Features private key protection, max limits, dry-run mode, and hum...

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

OpenClaw Solana Connect — Secure toolkit for AI agents to interact with Solana blockchain. Features private key protection, max limits, dry-run mode, and hum...

⬇ 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
README.md, SKILL.md, package-lock.json, package.json, scripts/solana.js, test.js

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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
3.0.0

Documentation

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

🔗 OpenClaw Solana Connect v3.0

Secure toolkit for AI agents to interact with Solana blockchain

🛡️ Security Features

Private Key Protection - Keys never exposed to agent Max Limits - Configurable transaction limits Dry-Run Mode - Simulate before sending (default) Human Confirmation - Required for large transactions Testnet Default - Safe by default

What Works

FunctionStatusDescriptiongenerateWallet()✅ WorksGenerate wallet addressesconnectWallet()✅ WorksValidate wallet addressesgetBalance()✅ WorksRead SOL/token balancesgetTransactions()✅ WorksRead transaction historygetTokenAccounts()✅ WorksRead token holdingssendSol()✅ WorksSend SOL (with security)

Installation

clawhub install solana-connect

Environment Variables

SOLANA_RPC_URL - RPC endpoint (default: testnet) MAX_SOL_PER_TX - Max SOL per transaction (default: 10) MAX_TOKENS_PER_TX - Max tokens per transaction (default: 10000) HUMAN_CONFIRMATION_THRESHOLD - SOL amount requiring human confirmation (default: 1)

Usage

const { generateWallet, getBalance, sendSol, getConfig } = require('./scripts/solana.js'); // Generate wallet (address only - private key protected) const wallet = generateWallet(); console.log('Address:', wallet.address); // Check balance const balance = await getBalance(wallet.address); // Send SOL (DRY-RUN by default - simulation only) const result = await sendSol(privateKey, toAddress, 0.5, { dryRun: true }); console.log('Simulation:', result); // Send real transaction const tx = await sendSol(privateKey, toAddress, 0.5, { dryRun: false, skipConfirmation: true }); console.log('Signature:', tx.signature);

Security Options

// Dry-run (simulation) - safe, doesn't send await sendSol(key, to, amount, { dryRun: true }); // Real transaction - requires explicit flag await sendSol(key, to, amount, { dryRun: false }); // Skip human confirmation (for automated agents) await sendSol(key, to, amount, { dryRun: false, skipConfirmation: true }); Security: Never hardcode private keys. Use environment variables.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts2 Config
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/solana.js Scripts
  • test.js Scripts
  • package-lock.json Config
  • package.json Config