← Back to Skills Marketplace
347
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install bsc-dev-monitor
Description
BSC Dev Wallet Monitor - 专为跟投 Dev 的用户设计。 监控指定 BSC 地址的代币转出(发币)行为,第一时间发现新币发布。 支持 Webhook 通知、安全检测、历史记录等功能。
README (SKILL.md)
BSC Dev Monitor Skill
🎯 适用人群
- 跟投 Dev 的用户 - 追踪项目方地址,第一时间发现新币
- Alpha 猎人 - 寻找早期机会代币
- 套利交易者 - 检测大额转账,捕捉套利机会
- 风险管理者 - 追踪可疑地址行为
💰 收费模式
按次收费
- 每次监控请求: 0.01 USDT
- 无论是否有检测
- 简单明了
当前价格: 0.01 USDT / 次
🔧 使用方法
1. 设置监控
{
"action": "monitor",
"address": "0x4f0f84abd0b2d8a7ae5e252fb96e07946dbbb1a4",
"name": "知名 Dev 地址",
"billing_mode": "per_detection", // 按检测收费
"webhook_url": "https://your-server.com/webhook", // 可选:Webhook 通知
"duration": 86400 // 监控 24 小时,0 表示持续监控
}
2. 查询监控历史
{
"action": "history",
"address": "0x4f0f84abd0b2d8a7ae5e252fb96e07946dbbb1a4",
"limit": 20
}
3. 取消监控
{
"action": "stop",
"monitor_id": "monitor_xxxx"
}
📊 检测通知
检测到新币时的返回
{
"status": "detected",
"timestamp": "2026-03-05T08:00:00Z",
"block": 84768918,
"monitor_id": "monitor_abc123",
"token": {
"name": "New Token",
"symbol": "NEW",
"decimals": 18,
"contract": "0x..."
},
"amount": "1000000000000000000",
"txHash": "0x...",
"from": "0x4f0f84abd0d...1a4",
"billing": {
"mode": "per_detection",
"charged": true,
"amount": "0.001",
"currency": "USDT"
}
}
Webhook 通知格式
如果配置了 webhook_url,系统会自动推送:
{
"event": "token_detected",
"timestamp": "2026-03-05T08:00:00Z",
"monitor_id": "monitor_abc123",
"data": {
"token": {
"name": "New Token",
"symbol": "NEW",
"contract": "0x..."
},
"txHash": "0x...",
"block": 84768918
},
"billing": {
"charged": true,
"amount": "0.001 USDT"
}
}
🔍 高级功能
1. 批量监控
{
"action": "batch_monitor",
"addresses": [
{
"address": "0x4f0f84abd0d...1a4",
"name": "Dev A"
},
{
"address": "0x742d35Cc663...bEb",
"name": "Dev B"
}
],
"billing_mode": "per_detection",
"webhook_url": "https://your-server.com/webhook"
}
2. 安全过滤
{
"action": "monitor",
"address": "0x...",
"safety_checks": {
"honeypot_check": true, // 蜜罐检测
"liquidity_check": true, // 流动性检查
"min_liquidity": "1000" // 最小流动性(USDT)
},
"only_safe_tokens": true // 只通知通过安全检查的代币
}
3. 智能过滤
{
"action": "monitor",
"address": "0x...",
"filters": {
"min_amount": "1000000000000000000000", // 最小金额
"exclude_contracts": ["0x..."], // 排除的合约
"include_symbols": ["PEPE", "DOGE"] // 只关注指定符号
}
}
💡 使用场景
场景 1:跟投知名 Dev
// 设置监控
{
"action": "monitor",
"address": "0x4f0f84abd0d...1a4", // 知名 Dev 地址
"name": "知名 Dev A",
"billing_mode": "per_detection",
"webhook_url": "https://your-bot.com/webhook"
}
// 收到通知后,你可以:
// 1. 查看代币信息
// 2. 检查流动性
// 3. 决定是否买入
场景 2:监控多个地址
// 批量设置监控
{
"action": "batch_monitor",
"addresses": [
{"address": "0x...", "name": "Dev A"},
{"address": "0x...", "name": "Dev B"},
{"address": "0x...", "name": "Dev C"}
],
"billing_mode": "per_detection"
}
// 任何地址发币都会通知你
场景 3:安全跟投
// 只投资安全的代币
{
"action": "monitor",
"address": "0x...",
"safety_checks": {
"honeypot_check": true,
"liquidity_check": true,
"min_liquidity": "10000"
},
"only_safe_tokens": true,
"billing_mode": "per_detection"
}
// 只有通过安全检查的代币才会通知
⚠️ 重要提示
-
本 Skill 仅监控,不保证代币质量
- 检测到的代币可能存在风险
- 建议自行评估项目基本面
- 配合安全检测功能使用
-
收费模式说明
- 按检测收费:仅在检测到新代币时收费
- 按次收费:每次监控请求都收费
- 可根据需求选择合适模式
-
建议操作
- 检测到代币后,先查看合约
- 检查流动性池状态
- 验证代币安全
- 小仓位试水
📞 支持
- 查看 README.md 了解详细文档
- 访问 https://clawhub.com/skill/bsc-dev-monitor
- 提交 Issue 或联系作者
让跟投更简单! 🚀
Usage Guidance
Do not run deploy scripts or auto-deploy tools from this package without review. Before installing/running: (1) Remove any hard-coded secrets and publisher credentials; rotate any exposed keys (SkillPay, BscScan) and change the clawhub account password immediately if those credentials are real. (2) Prefer supplying API keys via secure environment variables or a secret store rather than embedding them. (3) Inspect/limit any webhook URLs you configure — they can receive sensitive detection payloads. (4) If you don't control the included clawhub account, treat the presence of its credentials as suspicious and avoid running scripts that use it. (5) Ask the author why publisher credentials are present; if you cannot verify their provenance, consider rejecting this skill or sandboxing its execution and performing a code audit first.
Capability Analysis
Type: OpenClaw Skill
Name: bsc-dev-monitor
Version: 1.0.0
The skill bundle contains multiple instances of hardcoded sensitive credentials, including a ClawHub account email and password ([email protected] / hefang198511633), a SkillPay API key, and a BSCScan API key. These are found in auto-deploy.js, DEPLOYMENT-GUIDE.md, READY-TO-DEPLOY.md, and the various index.js versions. While the core logic for monitoring BSC wallet activity appears to align with the stated purpose, the inclusion of these secrets and the presence of an automated deployment script (auto-deploy.js) using them is a significant security risk. No evidence of intentional data exfiltration or malicious behavior targeting the user was identified.
Capability Assessment
Purpose & Capability
The code and docs implement BSC monitoring and payment integration which fits the description, but several files include unrelated deployment account credentials and automated publish tooling (auto-deploy.js, DEPLOYMENT-GUIDE.md, READY-TO-DEPLOY.md) that are not required for runtime monitoring. Including a platform login/password for clawhub.ai in the package is unnecessary for a monitoring skill and inconsistent with the stated purpose.
Instruction Scope
SKILL.md and many docs embed a SkillPay API key and instruct deployment steps that reference local paths (/root/.openclaw/...) and provide clear commands to run deploy scripts. The runtime instructions (and scripts) will perform network actions (login/upload to clawhub.ai, calls to SkillPay, BSC RPC and BscScan). The SKILL.md itself contains a payment.api_key value in cleartext, granting wide operational capability beyond a simple monitor.
Install Mechanism
No formal install spec is declared, but the bundle contains deploy.sh and auto-deploy.js which may install @clawhub/cli via npm and perform automated uploads. There are no obscure remote downloads or archive extracts, but the included scripts will perform network operations and may install global npm packages when executed.
Credentials
The package requires no declared environment variables yet contains multiple hard-coded secrets: SkillPay API key (present in SKILL.md, index.js, index-updated.js), a BscScan API key, and a plain-text clawhub.ai account (email/password) in deployment docs and the auto-deploy script. These credentials are not proportionate to a monitoring runtime (they should be provided via secure env/config or not included), and embedding a publisher account credential is particularly inappropriate.
Persistence & Privilege
The skill is not marked always:true and does not request system-wide privileges. However, auto-deploy.sh / auto-deploy.js can install tooling and programmatically publish the skill using embedded credentials, enabling action beyond a passive monitoring library. That automated publishing behavior increases blast radius if the package is executed.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install bsc-dev-monitor - After installation, invoke the skill by name or use
/bsc-dev-monitor - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
bsc-dev-monitor 1.0.0
- Initial release of BSC Dev Wallet Monitor, designed for users following dev wallets on BSC.
- Monitors specified BSC addresses for new token launches and large token transfers.
- Supports webhook notifications, security checks (honeypot/liquidity), and monitoring history.
- Includes batch monitoring, advanced filtering, and detailed API usage examples.
- Flexible billing: per detection or per request.
- Documentation and usage scenarios provided in SKILL.md.
Metadata
Frequently Asked Questions
What is Bsc Dev Monitor Skill?
BSC Dev Wallet Monitor - 专为跟投 Dev 的用户设计。 监控指定 BSC 地址的代币转出(发币)行为,第一时间发现新币发布。 支持 Webhook 通知、安全检测、历史记录等功能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 347 downloads so far.
How do I install Bsc Dev Monitor Skill?
Run "/install bsc-dev-monitor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Bsc Dev Monitor Skill free?
Yes, Bsc Dev Monitor Skill is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Bsc Dev Monitor Skill support?
Bsc Dev Monitor Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Bsc Dev Monitor Skill?
It is built and maintained by mybusd (@mybusd); the current version is v1.0.0.
More Skills