{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bnb-chain",
    "name": "BNB Chain",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/CLAWZAI/bnb-chain",
    "canonicalUrl": "https://clawhub.ai/CLAWZAI/bnb-chain",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bnb-chain",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnb-chain",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "bnb.js",
      "package-lock.json",
      "package.json"
    ],
    "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/bnb-chain"
    },
    "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/bnb-chain",
    "agentPageUrl": "https://openagent3.xyz/skills/bnb-chain/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bnb-chain/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bnb-chain/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": "BNB Chain Skill",
        "body": "Basic operations on BNB Chain (BSC). Check balances and send transactions."
      },
      {
        "title": "Setup",
        "body": "Requires Node.js and ethers.js:\n\ncd ~/.openclaw/workspace/skills/bnb-chain && npm install ethers --silent"
      },
      {
        "title": "Configuration",
        "body": "Store your private key securely. The skill reads from environment variable:\n\nexport BNB_PRIVATE_KEY=\"0x...\"\n\nOr pass it directly to the helper script."
      },
      {
        "title": "Usage",
        "body": "All operations use the helper script: bnb.js"
      },
      {
        "title": "Check BNB Balance",
        "body": "node bnb.js balance <address>\n\nExample:\n\nnode bnb.js balance 0x9787436458A36a9CC72364BaC18ba78fdEf83997"
      },
      {
        "title": "Check BEP-20 Token Balance",
        "body": "node bnb.js token-balance <token_address> <wallet_address>\n\nExample (USDT):\n\nnode bnb.js token-balance 0x55d398326f99059fF775485246999027B3197955 0x9787436458A36a9CC72364BaC18ba78fdEf83997"
      },
      {
        "title": "Send BNB",
        "body": "node bnb.js send <to_address> <amount_bnb> [--key <private_key>]\n\nExample:\n\nnode bnb.js send 0xRecipient 0.01 --key 0xYourPrivateKey"
      },
      {
        "title": "Send BEP-20 Token",
        "body": "node bnb.js send-token <token_address> <to_address> <amount> [--key <private_key>]\n\nExample (send 10 USDT):\n\nnode bnb.js send-token 0x55d398326f99059fF775485246999027B3197955 0xRecipient 10 --key 0xYourPrivateKey"
      },
      {
        "title": "Get Wallet Address from Private Key",
        "body": "node bnb.js address <private_key>"
      },
      {
        "title": "Get Transaction Details",
        "body": "node bnb.js tx <tx_hash>"
      },
      {
        "title": "Common Token Addresses (BSC Mainnet)",
        "body": "TokenAddressUSDT0x55d398326f99059fF775485246999027B3197955USDC0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580dBUSD0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56WBNB0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c"
      },
      {
        "title": "RPC Endpoints",
        "body": "Default: https://bsc-dataseed.binance.org/\n\nAlternatives:\n\nhttps://bsc-dataseed1.binance.org/\nhttps://bsc-dataseed2.binance.org/\nhttps://bsc-dataseed3.binance.org/\nhttps://bsc-dataseed4.binance.org/"
      },
      {
        "title": "Security Notes",
        "body": "Never commit private keys to git\nUse environment variables or secure storage\nDouble-check recipient addresses before sending\nStart with small test amounts"
      }
    ],
    "body": "BNB Chain Skill\n\nBasic operations on BNB Chain (BSC). Check balances and send transactions.\n\nSetup\n\nRequires Node.js and ethers.js:\n\ncd ~/.openclaw/workspace/skills/bnb-chain && npm install ethers --silent\n\nConfiguration\n\nStore your private key securely. The skill reads from environment variable:\n\nexport BNB_PRIVATE_KEY=\"0x...\"\n\n\nOr pass it directly to the helper script.\n\nUsage\n\nAll operations use the helper script: bnb.js\n\nCheck BNB Balance\nnode bnb.js balance <address>\n\n\nExample:\n\nnode bnb.js balance 0x9787436458A36a9CC72364BaC18ba78fdEf83997\n\nCheck BEP-20 Token Balance\nnode bnb.js token-balance <token_address> <wallet_address>\n\n\nExample (USDT):\n\nnode bnb.js token-balance 0x55d398326f99059fF775485246999027B3197955 0x9787436458A36a9CC72364BaC18ba78fdEf83997\n\nSend BNB\nnode bnb.js send <to_address> <amount_bnb> [--key <private_key>]\n\n\nExample:\n\nnode bnb.js send 0xRecipient 0.01 --key 0xYourPrivateKey\n\nSend BEP-20 Token\nnode bnb.js send-token <token_address> <to_address> <amount> [--key <private_key>]\n\n\nExample (send 10 USDT):\n\nnode bnb.js send-token 0x55d398326f99059fF775485246999027B3197955 0xRecipient 10 --key 0xYourPrivateKey\n\nGet Wallet Address from Private Key\nnode bnb.js address <private_key>\n\nGet Transaction Details\nnode bnb.js tx <tx_hash>\n\nCommon Token Addresses (BSC Mainnet)\nToken\tAddress\nUSDT\t0x55d398326f99059fF775485246999027B3197955\nUSDC\t0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d\nBUSD\t0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56\nWBNB\t0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c\nRPC Endpoints\n\nDefault: https://bsc-dataseed.binance.org/\n\nAlternatives:\n\nhttps://bsc-dataseed1.binance.org/\nhttps://bsc-dataseed2.binance.org/\nhttps://bsc-dataseed3.binance.org/\nhttps://bsc-dataseed4.binance.org/\nSecurity Notes\nNever commit private keys to git\nUse environment variables or secure storage\nDouble-check recipient addresses before sending\nStart with small test amounts"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/CLAWZAI/bnb-chain",
    "publisherUrl": "https://clawhub.ai/CLAWZAI/bnb-chain",
    "owner": "CLAWZAI",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bnb-chain",
    "downloadUrl": "https://openagent3.xyz/downloads/bnb-chain",
    "agentUrl": "https://openagent3.xyz/skills/bnb-chain/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bnb-chain/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bnb-chain/agent.md"
  }
}