Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/nirholas/three.ws/bnb-chain-toolkit-guidenpx skills add nirholas/three.ws --skill bnb-chain-toolkit-guidegit clone --depth 1 https://github.com/nirholas/three.wsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/nirholas/three.ws/bnb-chain-toolkit-guide)<a href="https://agentmods.dev/skills/nirholas/three.ws/bnb-chain-toolkit-guide"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/bnb-chain-toolkit-guide.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00067 | $0.01145 |
| Opus 5 | $0.00034 | $0.00573 |
| Sonnet 5 | $0.00013 | $0.00229 |
| Haiku 4.5 | $0.00007 | $0.00114 |
Grade A, and why
bnb-chain-toolkit-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BNB Chain Toolkit Guide
A modular TypeScript toolkit for building, deploying, and interacting with smart contracts on BNB Chain. Created by the Sperax team for the BNB Chain Hackathon.
Modules
| Module | Purpose | Key Features |
|---|---|---|
| Token | BEP-20 operations | Deploy, transfer, approve, metadata |
| DeFi | Protocol integrations | PancakeSwap, Venus, Thena |
| Wallet | Wallet management | Create, import, sign, batch ops |
| Bridge | Cross-chain | BSC ↔ Ethereum, Arbitrum, etc. |
| Contract | Smart contract tools | Deploy, verify, interact, ABI |
| MCP | AI agent interface | All above as MCP tools |
Quick Start
# Install
npm install @nirholas/bnb-chain-toolkit
# Or use with MCP
npx @nirholas/bnb-chain-toolkit mcp
Token Module
Deploy a BEP-20 Token
import { TokenModule } from '@nirholas/bnb-chain-toolkit';
const token = new TokenModule(provider);
const result = await token.deploy({
name: 'My Token',
symbol: 'MTK',
totalSupply: '1000000',
decimals: 18
});
console.log(`Token deployed at: ${result.address}`);
Token Operations
// Get token info
const info = await token.getInfo('0x...');
// { name, symbol, decimals, totalSupply, owner }
// Transfer tokens
await token.transfer('0xRecipient', '1000', '0xTokenAddress');
// Approve spending
await token.approve('0xSpender', '1000', '0xTokenAddress');
// Check allowance
const allowance = await token.allowance('0xOwner', '0xSpender', '0xToken');
DeFi Module
PancakeSwap Integration
import { DeFiModule } from '@nirholas/bnb-chain-toolkit';
const defi = new DeFiModule(provider);
// Get swap quote
const quote = await defi.getSwapQuote({
tokenIn: 'BNB',
tokenOut: 'USDT',
amountIn: '1'
});
// Execute swap
await defi.swap({
tokenIn: 'BNB',
tokenOut: 'USDT',
amountIn: '1',
slippage: 0.5
});
Venus Lending
// Supply collateral
await defi.supply({ protocol: 'venus', token: 'USDT', amount: '1000' });
// Borrow
await defi.borrow({ protocol: 'venus', token: 'BNB', amount: '0.5' });
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 184 lines · 67 tokens per session scan A b84fefda8949
bnb-chain-toolkit-guide is a skill published in the GitHub repository nirholas/three.ws (110 stars, last pushed today), licensed Apache-2.0. It adds 67 tokens to every session and 1,145 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
use-ts-sdk
Orchestrates TypeScript SDK integration for Aptos dApps. Routes to granular skills for specific tasks (client setup, accounts, transactions, view functions, types, wallet adapter). Use this skill for fullstack dApp integration or when multiple SDK concerns are involved. Triggers on: 'typescript sdk', 'ts-sdk', 'aptos…
ts-sdk-account
How to create and use Account (signer) in @aptos-labs/ts-sdk. Covers Account.generate(), fromPrivateKey(), fromDerivationPath(), Ed25519 vs SingleKey vs MultiKey vs Keyless, serialization (fromHex/toHex). Triggers on: 'Account.generate', 'Account.fromPrivateKey', 'Ed25519PrivateKey', 'SDK account', 'mnemonic'…
ts-sdk-address
How to create and use AccountAddress in @aptos-labs/ts-sdk. Covers address format (AIP-40), from/fromString/fromStrict, special addresses, LONG vs SHORT form, and derived addresses (object, resource, token, user-derived). Triggers on: 'AccountAddress', 'AccountAddress.from', 'AIP-40', 'derived address'…
ts-sdk-transactions
How to build, sign, submit, and simulate transactions in @aptos-labs/ts-sdk. Covers build.simple(), signAndSubmitTransaction(), waitForTransaction(), simulate, sponsored (fee payer), and multi-agent. Triggers on: 'build.simple', 'signAndSubmitTransaction', 'transaction.build', 'waitForTransaction', 'signAsFeePayer'…
ts-sdk-client
How to create and configure the Aptos client (Aptos, AptosConfig) in @aptos-labs/ts-sdk. Covers Network, fullnode/indexer/faucet URLs, singleton pattern, and Bun compatibility. Triggers on: 'Aptos client', 'AptosConfig', 'SDK client', 'client setup', 'new Aptos(', 'Network.TESTNET', 'Network.MAINNET'.
ts-sdk-types
Move to TypeScript type mapping in @aptos-labs/ts-sdk: u64/u128/u256 as bigint, address as string, TypeTag, functionArguments and typeArguments. Triggers on: 'typeArguments', 'functionArguments', 'Move to TypeScript', 'type mapping', 'TypeTag', 'bigint u128'.