跳至主要内容
小龙虾小龙虾AI
🤖

solana-payments-wallet-dev

For stablecoin payment flows and wallet integrations on Solana 200x cheaper token accounts. Receive, send, balance, history, and client-side signing with Pri...

下载124
星标0
版本1.0.2
金融财务
安全通过
⚙️脚本

技能说明


name: payments-and-wallets description: "For stablecoin payment flows and wallet integrations on Solana 200x cheaper token accounts. Receive, send, balance, history, and client-side signing with Privy and Solana wallet adapters. Optional guide to add nullifiers to prevent payments from being executed more than once." metadata: source: https://github.com/Lightprotocol/skills documentation: https://www.zkcompression.com openclaw: requires: env: ["HELIUS_RPC_URL"] # Required for all examples # Privy signing flow only (sign-with-privy.md): PRIVY_APP_ID, PRIVY_APP_SECRET, TREASURY_WALLET_ID, TREASURY_AUTHORIZATION_KEY — get these at privy.io bins: ["node", "cargo"] # node for TS client, cargo for Rust nullifier example

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-token
Token Account~2,000,000 lamports~11,000 lamports

Workflow

  1. Clarify intent
    • Recommend plan mode, if it's not activated
    • Use AskUserQuestion to resolve blind spots
    • All questions must be resolved before execution
  2. Identify references and skills
  3. 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
  4. Execute
    • Use Task tool with subagents for parallel research
    • Subagents load skills via Skill tool
    • Track progress with TodoWrite
  5. 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

TaskReference
Build payment flows (receive, send, balance, history, wrap/unwrap)payments.md
Build wallet UI (display tokens, transfer, wrap/unwrap)wallets.md
Sign with Wallet Adapter or Mobile Wallet Adaptersign-with-adapter.md
Sign with Privy (embedded wallet provider)sign-with-privy.md
Prevent 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

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.

如何使用「solana-payments-wallet-dev」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「solana-payments-wallet-dev」技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能