← 返回
开发者工具 中文

Weave

Create crypto invoices and stablecoin invoices (USDC/USDT), generate payment quotes, and monitor invoice payment status with the Weave CLI.
使用 Weave CLI 创建加密发票和稳定币发票(USDC/USDT),生成付款报价,监控付款状态。
aryanj-nyc
开发者工具 clawhub v0.1.6 2 版本 99862.4 Key: 无需
★ 2
Stars
📥 686
下载
💾 6
安装
2
版本
#latest

概述

Weave

Weave is a CLI for crypto invoicing and cross-chain payment workflows. Use this when you need to create Bitcoin, Ethereum, Solana, USDC, or USDT invoices, generate payment quotes, and monitor settlement across supported networks such as Base, Tron, and Zcash for agent workflows or operations.

Overview

Use weave for full Weave Cash invoice lifecycle workflows:

  1. Create an invoice (weave create)
  2. Generate payment instructions (weave quote)
  3. Track settlement (weave status or weave status --watch)

Guardrails

  • Crypto-to-crypto only. Do not introduce fiat currencies, fiat conversions, or fiat-denominated behavior.
  • Prefer machine-readable JSON output. Use --human only when explicitly requested.
  • Never expose secrets (private keys, tokens, JWTs) in outputs.
  • Treat network/API calls as failure-prone and handle non-zero exits explicitly.

When Not To Use

  • Do not use this skill for fiat invoice or fiat settlement workflows.
  • Do not use this skill for editing Weave web UI/frontend code.
  • Do not use this skill for unrelated wallet custody or private-key management tasks.
  • Do not use this skill when the user wants non-Weave payment rails.

Preflight

  1. Confirm CLI availability:
weave --help
  1. Discover runtime token/network support before choosing assets:
weave tokens
  1. If weave is missing, provide compliant install guidance and ask before running:
go install github.com/AryanJ-NYC/weave-cash/apps/cli/cmd/weave@latest
weave --help

If Go is unavailable, use npm fallback:

npm i -g weave-cash-cli
weave --help

If both Go and npm are unavailable, report the missing prerequisites.

Compliant Install Policy

  • Prefer metadata.openclaw.install / metadata.clawdbot.install package-manager installs.
  • Never suggest remote download commands piped directly to a shell interpreter.
  • Detect and instruct; do not auto-install dependencies without explicit user approval.

Token And Network Selection

  • Always trust live weave tokens output from the runtime binary.
  • Do not hardcode token/network lists in reasoning.
  • --receive-network is required only for receive tokens that support multiple networks.
  • Network aliases are accepted (for example Ethereum|ETH, Solana|SOL, Tron|TRX when supported by runtime output).

Workflow

1) Create Invoice

Collect:

  • receive-token
  • amount (positive numeric string)
  • wallet-address
  • receive-network only when required by runtime token/network map
  • optional buyer fields (description, buyer-name, buyer-email, buyer-address)

Command:

weave create \
  --receive-token USDC \
  --receive-network Ethereum \
  --amount 25 \
  --wallet-address 0x1111111111111111111111111111111111111111

Expected JSON shape:

{
  "id": "inv_123",
  "invoiceUrl": "https://www.weavecash.com/invoice/inv_123"
}

Capture id for downstream quote/status calls.

2) Generate Quote

Collect:

  • invoice-id
  • pay-token
  • pay-network
  • refund-address

Command:

weave quote inv_123 \
  --pay-token USDT \
  --pay-network Ethereum \
  --refund-address 0x2222222222222222222222222222222222222222

Expected fields:

  • depositAddress
  • depositMemo (optional)
  • amountIn
  • amountOut
  • timeEstimate
  • expiresAt

3) Check Status

One-shot:

weave status inv_123

Watch mode:

weave status inv_123 --watch --interval-seconds 5 --timeout-seconds 900

Interpretation:

  • Exit 0: reached terminal status (COMPLETED, FAILED, REFUNDED, EXPIRED)
  • Exit 2: watch timeout (not a command failure)
  • Exit 1: command/API/network/validation failure

Error Handling

When exit code is 1, surface structured stderr JSON when present. Common API-derived shape:

{
  "error": "api message",
  "status": 409,
  "details": {
    "error": "Invoice is not in PENDING status"
  }
}

If watch times out (exit 2), treat as incomplete progress, not fatal failure. Recommend extending --timeout-seconds or rerunning a one-shot weave status .

Runtime Drift Rule

The installed binary and source tree can drift in token support. Always use runtime discovery (weave tokens) when deciding valid token/network combinations.

版本历史

共 2 个版本

  • v0.1.6 当前
    2026-03-29 19:41 安全 安全
  • v0.0.2
    2026-03-07 02:00

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Cross Listing AI

aryanj-nyc
引导 OpenClaw 代理完成卖家侧的跨平台发布,并从商品图片生成符合市场规范的商品列表。当卖家需要列表 AI 时使用。
★ 1 📥 587
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 324,029
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,774