# Send BNB Chain NFT 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": "bnb-nft",
    "name": "BNB Chain NFT",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/CLAWZAI/bnb-nft",
    "canonicalUrl": "https://clawhub.ai/CLAWZAI/bnb-nft",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bnb-nft",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnb-nft",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "nft.js",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bnb-nft",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:28:15.134Z",
      "expiresAt": "2026-05-06T03:28:15.134Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnb-nft",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnb-nft",
        "contentDisposition": "attachment; filename=\"bnb-nft-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bnb-nft"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bnb-nft"
    },
    "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/bnb-nft",
    "downloadUrl": "https://openagent3.xyz/downloads/bnb-nft",
    "agentUrl": "https://openagent3.xyz/skills/bnb-nft/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bnb-nft/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bnb-nft/agent.md"
  }
}
```
## Documentation

### BNB Chain NFT Skill

ERC-721 NFT operations on BNB Chain (BSC).

### Setup

Requires Node.js and ethers.js:

cd ~/.openclaw/workspace/skills/bnb-nft && npm install ethers --silent

### Configuration

For write operations (transfer, approve), set private key:

export BNB_PRIVATE_KEY="0x..."

Or pass with --key flag.

### Usage

All operations use: nft.js

### Get Collection Info

node nft.js collection <contract_address>

Returns name, symbol, total supply (if available).

### Get NFT Metadata

node nft.js metadata <contract_address> <token_id>

Returns owner, tokenURI, and fetched metadata (if URI is HTTP).

### Check NFT Owner

node nft.js owner <contract_address> <token_id>

### List NFTs Owned by Address

node nft.js owned <contract_address> <wallet_address> [--limit 100]

Scans token IDs to find NFTs owned by wallet. Use --limit to cap the scan range.

### Get Wallet's NFT Balance

node nft.js balance <contract_address> <wallet_address>

Returns count of NFTs owned in collection.

### Transfer NFT

node nft.js transfer <contract_address> <to_address> <token_id> [--key <private_key>]

### Approve NFT for Transfer

node nft.js approve <contract_address> <spender_address> <token_id> [--key <private_key>]

### Set Approval for All

node nft.js approve-all <contract_address> <operator_address> <true|false> [--key <private_key>]

### Check if Approved

node nft.js is-approved <contract_address> <token_id> <spender_address>

### Popular NFT Collections (BSC Mainnet)

CollectionAddressPancake Squad0x0a8901b0E25DEb55A87524f0cC164E9644020EBAPancake Bunnies0xDf7952B35f24aCF7fC0487D01c8d5690a60DBa07BakerySwap0x5d0915E32b1fb1144f27B87C9f65AC3f661C9e6D

### Security Notes

Never commit private keys to git
Always verify contract addresses before interacting
Use testnet for testing transfers first
Check approval status before marketplace listings
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: CLAWZAI
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:28:15.134Z
- Expires at: 2026-05-06T03:28:15.134Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bnb-nft)
- [Send to Agent page](https://openagent3.xyz/skills/bnb-nft/agent)
- [JSON manifest](https://openagent3.xyz/skills/bnb-nft/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bnb-nft/agent.md)
- [Download page](https://openagent3.xyz/downloads/bnb-nft)