/install launch-bnb-token-on-flap
🦋 Launch a BNB Token on Flap
Launch a token on Flap (BNB Chain). Execute each step in order. Read each reference file at the step that requires it — do not pre-load them.
⚠️ Security Notice
This skill requires sensitive capabilities that must be provided:
- EVM wallet with signing capability — hardware wallet, browser wallet, MPC, or other secure signing method for BNB Chain (chain ID 56). The skill mainly focuses on constructing transaction data and then the transaction should be signed by the EVM wallet. Always verify transaction details independently before signing.
- BNB mainnet RPC endpoint — a trusted RPC URL for reading blockchain state and broadcasting transactions. If not presently available, this skill will use the public fallback
https://bsc-dataseed.binance.org/.
Directory structure
skills/launch-bnb-token-on-flap/
├── SKILL.md ← this file
└── references/
├── preflight.md ← Step 0: prerequisites
├── vault-factory.md ← Step 2: vault factory setup
├── meta-upload.md ← Steps 3 & 6: metadata upload
├── tax-params.md ← Step 4: tax parameters
├── salt-finding.md ← Step 7: vanity salt mining
└── construct-tx.md ← Step 8: transaction construction
Step 0 — Preflight check
Before starting, verify that all required reference files are present. If any are missing, you MUST obtain them before proceeding:
Required files:
references/preflight.mdreferences/vault-factory.mdreferences/meta-upload.mdreferences/tax-params.mdreferences/salt-finding.mdreferences/construct-tx.md
Check each file exists, then read references/preflight.md and verify every prerequisite is satisfied before continuing.
Step 1 — Choose token type
Determine the token configuration:
- Tax token or standard (non-tax) token?
- If tax token: Use a Vault Factory for revenue management?
Decision map:
| Choice | Contract to call |
|---|---|
| Standard token | Portal.newTokenV6 with tokenVersion = TOKEN_V2_PERMIT |
| Tax token, no vault | Portal.newTokenV6 with tokenVersion = TOKEN_TAXED_V3 |
| Tax token + vault | VaultPortal.newTokenV6WithVault with tokenVersion = TOKEN_TAXED_V3 |
Step 2 — Vault Factory setup (tax + vault only)
Read references/vault-factory.md to:
- Determine the vault factory address to use.
- Call the factory's
vaultDataSchema()to understand the requiredvaultDataencoding. - Determine the values needed to encode
vaultData.
Skip this step for standard tokens or tax tokens without a vault.
Step 3 — Token metadata
Determine the following token metadata fields:
- Required:
name,symbol, image file path - Optional:
description,twitterhandle,telegramhandle (omit if not available)
Read references/meta-upload.md when ready to upload the image and construct the metadata JSON.
Step 4 — Tax parameters (tax token only)
Read references/tax-params.md to determine and validate:
buyTaxRate,sellTaxRatetaxDuration,antiFarmerDurationmktBps,deflationBps,dividendBps,lpBpsminimumShareBalancebeneficiaryaddress (only for tax token without vault)
Skip this step for standard tokens.
Step 5 — Launch buy amount
Determine quoteAmt: the amount of BNB to spend on the initial buy at launch (in BNB, will be converted to wei). This becomes both the quoteAmt field and the msg.value of the transaction. Use 0 to skip the initial buy.
Step 6 — Upload metadata
Follow references/meta-upload.md to upload the image and metadata JSON to Flap's upload API. Store the returned IPFS CID as meta.
Step 7 — Find the salt
Read references/salt-finding.md to mine a vanity salt using CREATE2 prediction:
- Tax token address must end in
7777. - Standard token address must end in
8888.
Save the resulting salt (bytes32) and the predicted tokenAddress.
Step 8 — Construct the EVM transaction
Read references/construct-tx.md to assemble the full calldata, value, and to address for the correct contract entry point (Portal or VaultPortal).
Step 9 — Send the transaction
Broadcast the constructed transaction to BNB Chain using the available wallet. After confirmation, report the token address and a link to https://flap.sh/bnb/\x3CtokenAddress>.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install launch-bnb-token-on-flap - 安装完成后,直接呼叫该 Skill 的名称或使用
/launch-bnb-token-on-flap触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
launch-bnb-token-on-flap 是什么?
Launch a token on Flap BNB. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 192 次。
如何安装 launch-bnb-token-on-flap?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install launch-bnb-token-on-flap」即可一键安装,无需额外配置。
launch-bnb-token-on-flap 是免费的吗?
是的,launch-bnb-token-on-flap 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
launch-bnb-token-on-flap 支持哪些平台?
launch-bnb-token-on-flap 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 launch-bnb-token-on-flap?
由 flapguy(@flapguy)开发并维护,当前版本 v1.2.0。