# Send Solana Connect to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solana-connect",
    "name": "Solana Connect",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Seenfinity/solana-connect",
    "canonicalUrl": "https://clawhub.ai/Seenfinity/solana-connect",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solana-connect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-connect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "scripts/solana.js",
      "test.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "solana-connect",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T19:11:40.268Z",
      "expiresAt": "2026-05-10T19:11:40.268Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-connect",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-connect",
        "contentDisposition": "attachment; filename=\"solana-connect-3.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "solana-connect"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solana-connect"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solana-connect",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-connect",
    "agentUrl": "https://openagent3.xyz/skills/solana-connect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-connect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-connect/agent.md"
  }
}
```
## Documentation

### 🔗 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Seenfinity
- Version: 3.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T19:11:40.268Z
- Expires at: 2026-05-10T19:11:40.268Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solana-connect)
- [Send to Agent page](https://openagent3.xyz/skills/solana-connect/agent)
- [JSON manifest](https://openagent3.xyz/skills/solana-connect/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solana-connect/agent.md)
- [Download page](https://openagent3.xyz/downloads/solana-connect)