用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill bnb-chain命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | bnb-chain |
| version | 0.1.0 |
| description | Basic BNB Chain operations — check balances, send BNB, send BEP-20 tokens. |
| metadata | {"openclaw":{"emoji":"🟡","category":"blockchain","requires":{"bins":["node"]}}} |
Basic operations on BNB Chain (BSC). Check balances and send transactions.
Requires Node.js and ethers.js:
cd ~/.openclaw/workspace/skills/bnb-chain && npm install ethers --silent
Store your private key securely. The skill reads from environment variable:
export BNB_PRIVATE_KEY="0x..."
Or pass it directly to the helper script.
All operations use the helper script: bnb.js
node bnb.js balance <address>
Example:
node bnb.js balance 0x9787436458A36a9CC72364BaC18ba78fdEf83997
node bnb.js token-balance <token_address> <wallet_address>
Example (USDT):
node bnb.js token-balance 0x55d398326f99059fF775485246999027B3197955 0x9787436458A36a9CC72364BaC18ba78fdEf83997
node bnb.js send <to_address> <amount_bnb> [--key <private_key>]
Example:
node bnb.js send 0xRecipient 0.01 --key 0xYourPrivateKey
node bnb.js send-token <token_address> <to_address> <amount> [--key <private_key>]
Example (send 10 USDT):
node bnb.js send-token 0x55d398326f99059fF775485246999027B3197955 0xRecipient 10 --key 0xYourPrivateKey
node bnb.js address <private_key>
node bnb.js tx <tx_hash>
| Token | Address |
|---|---|
| USDT | 0x55d398326f99059fF775485246999027B3197955 |
| USDC | 0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d |
| BUSD | 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56 |
| WBNB | 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c |
Default: https://bsc-dataseed.binance.org/
Alternatives:
https://bsc-dataseed1.binance.org/https://bsc-dataseed2.binance.org/https://bsc-dataseed3.binance.org/https://bsc-dataseed4.binance.org/