← 返回 Skills 市场
347
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install bsc-dev-monitor
功能描述
BSC Dev Wallet Monitor - 专为跟投 Dev 的用户设计。 监控指定 BSC 地址的代币转出(发币)行为,第一时间发现新币发布。 支持 Webhook 通知、安全检测、历史记录等功能。
使用说明 (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 或联系作者
让跟投更简单! 🚀
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bsc-dev-monitor - 安装完成后,直接呼叫该 Skill 的名称或使用
/bsc-dev-monitor触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
Bsc Dev Monitor Skill 是什么?
BSC Dev Wallet Monitor - 专为跟投 Dev 的用户设计。 监控指定 BSC 地址的代币转出(发币)行为,第一时间发现新币发布。 支持 Webhook 通知、安全检测、历史记录等功能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 347 次。
如何安装 Bsc Dev Monitor Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bsc-dev-monitor」即可一键安装,无需额外配置。
Bsc Dev Monitor Skill 是免费的吗?
是的,Bsc Dev Monitor Skill 完全免费(开源免费),可自由下载、安装和使用。
Bsc Dev Monitor Skill 支持哪些平台?
Bsc Dev Monitor Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Bsc Dev Monitor Skill?
由 mybusd(@mybusd)开发并维护,当前版本 v1.0.0。
推荐 Skills