{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawpay-2",
    "name": "Clawpay",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/mmchougule/clawpay-2",
    "canonicalUrl": "https://clawhub.ai/mmchougule/clawpay-2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawpay-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpay-2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/clawpay-2"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/clawpay-2",
    "agentPageUrl": "https://openagent3.xyz/skills/clawpay-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpay-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpay-2/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "ClawPay 🦞",
        "body": "Send money privately. Recipient sees funds from Railgun - can't trace back to you."
      },
      {
        "title": "Just Run It",
        "body": "Prerequisites: You need a wallet private key with USDT on BSC.\n\nSave this as send-private.mjs and run with node send-private.mjs:\n\n// send-private.mjs - Copy this entire file and run it\nimport { Wallet, JsonRpcProvider, Contract, parseUnits } from 'ethers';\n\n// ============ CONFIGURE THESE ============\nconst PRIVATE_KEY = process.env.WALLET_KEY || '0xYOUR_PRIVATE_KEY';\nconst RECIPIENT = '0xRECIPIENT_ADDRESS';\nconst AMOUNT = '0.10';  // USDT amount\n// =========================================\n\nconst API = 'https://clawpay.dev';\nconst BSC_RPC = 'https://bsc-dataseed.binance.org/';\nconst USDT = '0x55d398326f99059fF775485246999027B3197955';\nconst SIGN_MSG = 'b402 Incognito EOA Derivation';\n\nasync function sendPrivate() {\n  const provider = new JsonRpcProvider(BSC_RPC);\n  const wallet = new Wallet(PRIVATE_KEY, provider);\n  const myAddress = wallet.address;\n\n  console.log('Sending', AMOUNT, 'USDT privately to', RECIPIENT);\n  console.log('From wallet:', myAddress, '\\n');\n\n  // 1. Sign message\n  console.log('1. Signing...');\n  const signature = await wallet.signMessage(SIGN_MSG);\n\n  // 2. Get invoice address\n  console.log('2. Getting invoice...');\n  const invoiceRes = await fetch(\n    API + '/invoice?eoa=' + myAddress + '&signature=' + encodeURIComponent(signature)\n  );\n  const { invoiceAddress } = await invoiceRes.json();\n  console.log('   Invoice:', invoiceAddress);\n\n  // 3. Transfer USDT to invoice\n  console.log('3. Transferring USDT to invoice...');\n  const usdt = new Contract(USDT, ['function transfer(address,uint256) returns (bool)'], wallet);\n  const tx = await usdt.transfer(invoiceAddress, parseUnits(AMOUNT, 18));\n  console.log('   TX:', tx.hash);\n  await tx.wait();\n\n  // 4. Execute private transfer\n  console.log('4. Executing private transfer...');\n  const transferRes = await fetch(API + '/transfer', {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify({\n      eoa: myAddress,\n      signature,\n      recipient: RECIPIENT,\n      amount: AMOUNT,\n      token: 'USDT'\n    })\n  });\n  const result = await transferRes.json();\n\n  if (result.transferId) {\n    console.log('\\n✓ SUCCESS!');\n    console.log('Transfer ID:', result.transferId);\n    console.log('Status:', result.status);\n    console.log('\\nRecipient gets funds from Railgun in ~60 seconds.');\n    console.log('They CANNOT see your wallet address.');\n    console.log('\\nCheck status: curl ' + API + '/status/' + result.transferId);\n  } else {\n    console.log('Error:', result.error);\n  }\n}\n\nsendPrivate().catch(console.error);\n\nRun it:\n\nnpm install ethers\nWALLET_KEY=0xYourPrivateKey node send-private.mjs"
      },
      {
        "title": "How It Works",
        "body": "YOU                    CLAWPAY API                 RECIPIENT\n │                          │                          │\n ├── USDT to invoice ──────►│                          │\n │                          │                          │\n ├── Sign message ─────────►│                          │\n │                          │                          │\n ├── POST /transfer ───────►│                          │\n │                          ├── Shield (Railgun) ─────►│\n │                          ├── ZK Proof (~60s) ──────►│\n │                          ├── Unshield ─────────────►│\n │                          │                          │\n │                          │    Funds from \"Railgun\"  │\n │                          │    NO LINK TO YOU        │"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://clawpay.dev\n\nEndpointMethodDescription/healthGETAPI status/invoice?eoa=...&signature=...GETGet your invoice address/transferPOSTSend private payment/status/:idGETCheck transfer status/balance?eoa=...&signature=...&token=USDTGETCheck shielded balance/faucetPOSTGet BNB for gas (testnet)"
      },
      {
        "title": "POST /transfer",
        "body": "{\n  \"eoa\": \"0xYourAddress\",\n  \"signature\": \"0xSignedMessage...\",\n  \"recipient\": \"0xRecipientAddress\",\n  \"amount\": \"1.00\",\n  \"token\": \"USDT\"\n}\n\nResponse:\n\n{\n  \"transferId\": \"tx_123...\",\n  \"status\": \"pending\",\n  \"message\": \"Transfer initiated\"\n}\n\nStatus flow: pending → shielding → proving → complete"
      },
      {
        "title": "No Private Key? Use Bankr Wallet",
        "body": "If you're an agent without direct wallet access, use Bankr:\n\n// 1. Get your wallet from Bankr\nconst bankrWallet = await bankr.getWallet();\n\n// 2. Sign the ClawPay message\nconst signature = await bankr.signMessage('b402 Incognito EOA Derivation');\n\n// 3. Use signature with ClawPay API\n// (same flow as above)"
      },
      {
        "title": "Supported Tokens (BSC)",
        "body": "TokenAddressUSDT0x55d398326f99059fF775485246999027B3197955USDC0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d"
      },
      {
        "title": "Need Gas?",
        "body": "curl -X POST https://clawpay.dev/faucet \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"address\": \"0xYourAddress\"}'"
      },
      {
        "title": "Troubleshooting",
        "body": "ErrorFix\"Insufficient balance\"Transfer USDT to invoice first\"Signature does not match\"Sign exact message: b402 Incognito EOA Derivation\"No spendable UTXOs\"Wait 2 min after funding invoice\n\nPrivacy for the agent economy | Built on Railgun | https://clawpay.dev"
      }
    ],
    "body": "ClawPay 🦞\n\nSend money privately. Recipient sees funds from Railgun - can't trace back to you.\n\nJust Run It\n\nPrerequisites: You need a wallet private key with USDT on BSC.\n\nSave this as send-private.mjs and run with node send-private.mjs:\n\n// send-private.mjs - Copy this entire file and run it\nimport { Wallet, JsonRpcProvider, Contract, parseUnits } from 'ethers';\n\n// ============ CONFIGURE THESE ============\nconst PRIVATE_KEY = process.env.WALLET_KEY || '0xYOUR_PRIVATE_KEY';\nconst RECIPIENT = '0xRECIPIENT_ADDRESS';\nconst AMOUNT = '0.10';  // USDT amount\n// =========================================\n\nconst API = 'https://clawpay.dev';\nconst BSC_RPC = 'https://bsc-dataseed.binance.org/';\nconst USDT = '0x55d398326f99059fF775485246999027B3197955';\nconst SIGN_MSG = 'b402 Incognito EOA Derivation';\n\nasync function sendPrivate() {\n  const provider = new JsonRpcProvider(BSC_RPC);\n  const wallet = new Wallet(PRIVATE_KEY, provider);\n  const myAddress = wallet.address;\n\n  console.log('Sending', AMOUNT, 'USDT privately to', RECIPIENT);\n  console.log('From wallet:', myAddress, '\\n');\n\n  // 1. Sign message\n  console.log('1. Signing...');\n  const signature = await wallet.signMessage(SIGN_MSG);\n\n  // 2. Get invoice address\n  console.log('2. Getting invoice...');\n  const invoiceRes = await fetch(\n    API + '/invoice?eoa=' + myAddress + '&signature=' + encodeURIComponent(signature)\n  );\n  const { invoiceAddress } = await invoiceRes.json();\n  console.log('   Invoice:', invoiceAddress);\n\n  // 3. Transfer USDT to invoice\n  console.log('3. Transferring USDT to invoice...');\n  const usdt = new Contract(USDT, ['function transfer(address,uint256) returns (bool)'], wallet);\n  const tx = await usdt.transfer(invoiceAddress, parseUnits(AMOUNT, 18));\n  console.log('   TX:', tx.hash);\n  await tx.wait();\n\n  // 4. Execute private transfer\n  console.log('4. Executing private transfer...');\n  const transferRes = await fetch(API + '/transfer', {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify({\n      eoa: myAddress,\n      signature,\n      recipient: RECIPIENT,\n      amount: AMOUNT,\n      token: 'USDT'\n    })\n  });\n  const result = await transferRes.json();\n\n  if (result.transferId) {\n    console.log('\\n✓ SUCCESS!');\n    console.log('Transfer ID:', result.transferId);\n    console.log('Status:', result.status);\n    console.log('\\nRecipient gets funds from Railgun in ~60 seconds.');\n    console.log('They CANNOT see your wallet address.');\n    console.log('\\nCheck status: curl ' + API + '/status/' + result.transferId);\n  } else {\n    console.log('Error:', result.error);\n  }\n}\n\nsendPrivate().catch(console.error);\n\n\nRun it:\n\nnpm install ethers\nWALLET_KEY=0xYourPrivateKey node send-private.mjs\n\nHow It Works\nYOU                    CLAWPAY API                 RECIPIENT\n │                          │                          │\n ├── USDT to invoice ──────►│                          │\n │                          │                          │\n ├── Sign message ─────────►│                          │\n │                          │                          │\n ├── POST /transfer ───────►│                          │\n │                          ├── Shield (Railgun) ─────►│\n │                          ├── ZK Proof (~60s) ──────►│\n │                          ├── Unshield ─────────────►│\n │                          │                          │\n │                          │    Funds from \"Railgun\"  │\n │                          │    NO LINK TO YOU        │\n\nAPI Reference\n\nBase URL: https://clawpay.dev\n\nEndpoint\tMethod\tDescription\n/health\tGET\tAPI status\n/invoice?eoa=...&signature=...\tGET\tGet your invoice address\n/transfer\tPOST\tSend private payment\n/status/:id\tGET\tCheck transfer status\n/balance?eoa=...&signature=...&token=USDT\tGET\tCheck shielded balance\n/faucet\tPOST\tGet BNB for gas (testnet)\nPOST /transfer\n{\n  \"eoa\": \"0xYourAddress\",\n  \"signature\": \"0xSignedMessage...\",\n  \"recipient\": \"0xRecipientAddress\",\n  \"amount\": \"1.00\",\n  \"token\": \"USDT\"\n}\n\n\nResponse:\n\n{\n  \"transferId\": \"tx_123...\",\n  \"status\": \"pending\",\n  \"message\": \"Transfer initiated\"\n}\n\n\nStatus flow: pending → shielding → proving → complete\n\nNo Private Key? Use Bankr Wallet\n\nIf you're an agent without direct wallet access, use Bankr:\n\n// 1. Get your wallet from Bankr\nconst bankrWallet = await bankr.getWallet();\n\n// 2. Sign the ClawPay message\nconst signature = await bankr.signMessage('b402 Incognito EOA Derivation');\n\n// 3. Use signature with ClawPay API\n// (same flow as above)\n\nSupported Tokens (BSC)\nToken\tAddress\nUSDT\t0x55d398326f99059fF775485246999027B3197955\nUSDC\t0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d\nNeed Gas?\ncurl -X POST https://clawpay.dev/faucet \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"address\": \"0xYourAddress\"}'\n\nTroubleshooting\nError\tFix\n\"Insufficient balance\"\tTransfer USDT to invoice first\n\"Signature does not match\"\tSign exact message: b402 Incognito EOA Derivation\n\"No spendable UTXOs\"\tWait 2 min after funding invoice\n\nPrivacy for the agent economy | Built on Railgun | https://clawpay.dev"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mmchougule/clawpay-2",
    "publisherUrl": "https://clawhub.ai/mmchougule/clawpay-2",
    "owner": "mmchougule",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawpay-2",
    "downloadUrl": "https://openagent3.xyz/downloads/clawpay-2",
    "agentUrl": "https://openagent3.xyz/skills/clawpay-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpay-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpay-2/agent.md"
  }
}