# Send solana-payments-wallet-dev 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solana-payments-wallet-dev",
    "name": "solana-payments-wallet-dev",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tilo-14/solana-payments-wallet-dev",
    "canonicalUrl": "https://clawhub.ai/tilo-14/solana-payments-wallet-dev",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solana-payments-wallet-dev",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-payments-wallet-dev",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/payments.md",
      "references/sign-with-adapter.md",
      "references/nullifiers.md",
      "references/sign-with-privy.md",
      "references/wallets.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solana-payments-wallet-dev"
    },
    "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-payments-wallet-dev",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-payments-wallet-dev",
    "agentUrl": "https://openagent3.xyz/skills/solana-payments-wallet-dev/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-payments-wallet-dev/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-payments-wallet-dev/agent.md"
  }
}
```
## Documentation

### Payments and wallets

Build payment flows and wallet integrations using light-token on Solana. The light-token API matches SPL-token and extends it to include the light token program.

Creation costSPLlight-tokenToken Account~2,000,000 lamports~11,000 lamports

### Workflow

Clarify intent

Recommend plan mode, if it's not activated
Use AskUserQuestion to resolve blind spots
All questions must be resolved before execution


Identify references and skills

Match task to domain references below
Locate relevant documentation and examples


Write plan file (YAML task format)

Use AskUserQuestion for anything unclear — never guess or assume
Identify blockers: permissions, dependencies, unknowns
Plan must be complete before execution begins


Execute

Use Task tool with subagents for parallel research
Subagents load skills via Skill tool
Track progress with TodoWrite


When stuck: ask to spawn a read-only subagent with Read, Glob, Grep, and DeepWiki MCP access, loading skills/ask-mcp. Scope reads to skill references, example repos, and docs.

### API overview

OperationSPLlight-token (action / instruction)ReceivegetOrCreateAssociatedTokenAccount()loadAta() / createLoadAtaInstructions()TransfercreateTransferInstruction()transferInterface() / createTransferInterfaceInstructions()Get balancegetAccount()getAtaInterface()Tx historygetSignaturesForAddress()rpc.getSignaturesForOwnerInterface()Wrap from SPLN/Awrap() / createWrapInstruction()Unwrap to SPLN/Aunwrap() / createUnwrapInstructions()Register SPL mintN/AcreateSplInterface() / LightTokenProgram.createSplInterface()Create mintcreateMint()createMintInterface()

Plural functions (createTransferInterfaceInstructions, createUnwrapInstructions) return TransactionInstruction[][] — each inner array is one transaction. They handle loading cold accounts automatically.

### Domain references

TaskReferenceBuild payment flows (receive, send, balance, history, wrap/unwrap)payments.mdBuild wallet UI (display tokens, transfer, wrap/unwrap)wallets.mdSign with Wallet Adapter or Mobile Wallet Adaptersign-with-adapter.mdSign with Privy (embedded wallet provider)sign-with-privy.mdPrevent duplicate actions (double-spend prevention)nullifiers.md

### Setup

npm install @lightprotocol/compressed-token@beta @lightprotocol/stateless.js@beta @solana/web3.js @solana/spl-token

import { createRpc } from "@lightprotocol/stateless.js";
import {
  createLoadAtaInstructions,
  loadAta,
  createTransferInterfaceInstructions,
  transferInterface,
  createUnwrapInstructions,
  unwrap,
  getAssociatedTokenAddressInterface,
  getAtaInterface,
  wrap,
} from "@lightprotocol/compressed-token/unified";

const rpc = createRpc(RPC_ENDPOINT);

### Resources

Payments docs
Wallets docs
GitHub examples
Nullifier program

### SDK references

PackageLink@lightprotocol/stateless.jsAPI docs@lightprotocol/compressed-tokenAPI docs@lightprotocol/nullifier-programnpm

### Security

The Privy signing examples transmit secrets to an external API — review sign-with-privy.md before running.

Declared dependencies. HELIUS_RPC_URL is required for all examples. The Privy signing flow additionally requires PRIVY_APP_ID, PRIVY_APP_SECRET, TREASURY_WALLET_ID, and TREASURY_AUTHORIZATION_KEY — get these at privy.io. Load secrets from a secrets manager, not agent-global environment.
Privy signing flow. PRIVY_APP_SECRET and TREASURY_AUTHORIZATION_KEY are sent to Privy's signing API. Verify these only reach Privy's official endpoints. See sign-with-privy.md.
Subagent scope. When stuck, the skill asks to spawn a read-only subagent with Read, Glob, Grep scoped to skill references, example repos, and docs.
Install source. npx skills add Lightprotocol/skills from Lightprotocol/skills.
Audited protocol. Audit reports at github.com/Lightprotocol/light-protocol/tree/main/audits.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tilo-14
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solana-payments-wallet-dev)
- [Send to Agent page](https://openagent3.xyz/skills/solana-payments-wallet-dev/agent)
- [JSON manifest](https://openagent3.xyz/skills/solana-payments-wallet-dev/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solana-payments-wallet-dev/agent.md)
- [Download page](https://openagent3.xyz/downloads/solana-payments-wallet-dev)