HederaToolbox
Query live Hedera blockchain data using AI-native, pay-per-call tools. No registration, no API keys to manage — send HBAR to the platform wallet once, and your Hedera account ID becomes your permanent key.
What This Skill Does
When active, your agent can call 20 Hedera blockchain tools across 6 modules:
- - Token — HBAR/token price, whale movement alerts, deep token analysis
- HCS — Query and monitor Hedera Consensus Service topics, anomaly detection
- Compliance — Write and verify tamper-proof audit records on HCS
- Identity — Resolve accounts, verify KYC status, sanctions screening
- Governance — Monitor and analyze active proposals and vote splits
- Contract — Read state, call functions, analyze smart contract activity
Setup (One Time)
- 1. Get your Hedera account ID — format
0.0.XXXXXX. Any mainnet account works. - Fund your balance — Send HBAR to the platform wallet
0.0.10309126 from your account. Your account ID becomes your API key within 10 seconds. - Set the env var — Add
HEDERA_ACCOUNT_ID=0.0.XXXXXX to your OpenClaw config.
Recommended starting balance: 10 HBAR (~$0.96 at current prices)
At 10 HBAR you get approximately:
- - 50 token price checks (0.10 ħ each), or
- 13 deep token analyses (0.60 ħ each), or
- A full compliance onboarding workflow (identityresolve + identityverifykyc + identitychecksanctions + hcswrite_record ≈ 6.70 ħ), or
- Roughly 8 complete scheduled agent runs at the X agent profile (≈1.15 ħ/run)
Send more at any time — balance tops up within 10 seconds.
Security & Trust
Your private key is never requested, stored, or transmitted. This skill only uses your public Hedera account ID (0.0.XXXXXX). No wallet signing is required at any point.
How payment verification works: The platform runs a deposit watcher that polls the Hedera Mirror Node every 10 seconds for incoming transfers to the platform wallet (0.0.10309126). Hedera transactions cryptographically record the sender account ID on-chain — no memo or transaction hash is required from you. When a transfer is detected from your account, your balance is credited automatically. You can verify any deposit on Hashscan: https://hashscan.io/mainnet/account/0.0.10309126. The watcher source code is at https://github.com/mountainmystic/hederatoolbox/blob/master/src/watcher.js.
"Permanent key" clarification: Your Hedera account ID is a persistent billing identifier — not a cryptographic credential. The platform tracks which account sent HBAR using on-chain transaction records from the Mirror Node. Only the account that deposited HBAR can spend that balance.
On-chain writes: Tools like hcs_write_record write HCS messages signed by the platform operator key (server-side, using the platform's own Hedera account). Your account ID is included in the message payload as the originator field — it is metadata, not a transaction signer. The transaction itself is signed by and appears on-chain as originating from the platform account (0.0.10309126), not yours. This is standard for metered API services on Hedera.
Payment model: You send HBAR using your own wallet (HashPack, Blade, CLI, etc.) before using the skill. The skill itself never initiates transfers or requests funds. All charges are deducted from your pre-funded balance only — the platform cannot pull additional funds from your wallet.
Data sent off-platform: Tool calls (account IDs, contract addresses, token IDs, query parameters) are sent to api.hederatoolbox.com. See the Privacy Policy at https://hederatoolbox.com/privacy.html for retention and sharing details.
Start small: Test with 2–5 HBAR before committing more. Full source: https://github.com/mountainmystic/hederatoolbox
Tool Pricing (HBAR)
| Module | Tool | Cost |
|---|
| Free | getterms, confirmterms, accountinfo | 0 ħ |
| HCS |
hcsmonitor, hcs_query | 0.10 ħ |
| HCS | hcs_understand | 1.00 ħ |
| Compliance | hcs
writerecord | 5.00 ħ |
| Compliance | hcs
verifyrecord | 1.00 ħ |
| Compliance | hcs
audittrail | 2.00 ħ |
| Governance | governance_monitor | 0.20 ħ |
| Governance | governance_analyze | 1.00 ħ |
| Token | token_price | 0.10 ħ |
| Token | token_monitor | 0.20 ħ |
| Token | token_analyze | 0.60 ħ |
| Identity | identity_resolve | 0.20 ħ |
| Identity | identity
verifykyc | 0.50 ħ |
| Identity | identity
checksanctions | 1.00 ħ |
| Contract | contract_read | 0.20 ħ |
| Contract | contract_call | 1.00 ħ |
| Contract | contract_analyze | 1.50 ħ |
MCP Endpoint
CODEBLOCK0
Standard MCP-over-HTTP. Compatible with any MCP client.
When To Use This Skill
Use HederaToolbox tools when the user asks about:
- - HBAR price or market data → INLINECODE8
- Whale activity or unusual transfers → INLINECODE9
- Deep token risk analysis → INLINECODE10
- Reading or monitoring an HCS topic →
hcs_monitor or INLINECODE12 - Detecting anomalies in HCS traffic → INLINECODE13
- Writing a compliance record on-chain → INLINECODE14
- Verifying an existing compliance record → INLINECODE15
- Full audit trail for an account or topic → INLINECODE16
- Resolving a Hedera account identity → INLINECODE17
- KYC status for a token → INLINECODE18
- Sanctions screening → INLINECODE19
- Active governance proposals → INLINECODE20
- Voter sentiment and participation → INLINECODE21
- Smart contract state → INLINECODE22
- Calling a contract function → INLINECODE23
- Contract activity patterns and risk → INLINECODE24
- Checking balance or platform info → INLINECODE25
Example Agent Prompts
CODEBLOCK1
CODEBLOCK2
CODEBLOCK3
CODEBLOCK4
CODEBLOCK5
Tool Call Format
All tools follow the same MCP pattern. Pass your account ID as api_key:
CODEBLOCK6
The agent reads HEDERA_ACCOUNT_ID from the environment and passes it automatically.
Checking Your Balance
Ask the agent: "What's my HederaToolbox balance?"
This calls account_info (free) and returns your remaining balance in HBAR.
Topping Up
Send additional HBAR to 0.0.10309126 from your account at any time. Balance updates within 10 seconds.
What You Could Build
- - Compliance onboarding agent — resolve + KYC + sanctions + write HCS record for any Hedera account. Board-ready audit trail in one workflow (~6.70 ħ total).
- Whale alert bot — run
token_monitor on a schedule, surface unusual transfers to Telegram or Slack. - DAO governance digest — daily
governance_monitor + governance_analyze summary for any token with active proposals. - Smart contract due diligence —
contract_analyze + identity_resolve on all callers, output a risk report. - On-chain market pulse —
token_price + token_monitor twice daily, draft a tweet or Slack summary from the data.
Links
- - Website: https://hederatoolbox.com
- GitHub: https://github.com/mountainmystic/hederatoolbox
- npm: INLINECODE37
- MCP Registry: INLINECODE38
- Terms: https://hederatoolbox.com/terms.html
- Privacy: https://hederatoolbox.com/privacy.html
HederaToolbox
使用AI原生、按次付费的工具查询实时Hedera区块链数据。无需注册,无需管理API密钥——只需向平台钱包发送一次HBAR,您的Hedera账户ID即成为您的永久密钥。
该技能的功能
激活后,您的智能体可以调用涵盖6个模块的20个Hedera区块链工具:
- - 代币 — HBAR/代币价格、巨鲸交易提醒、深度代币分析
- HCS — 查询和监控Hedera共识服务主题、异常检测
- 合规 — 在HCS上编写和验证防篡改审计记录
- 身份 — 解析账户、验证KYC状态、制裁筛查
- 治理 — 监控和分析活跃提案及投票分歧
- 合约 — 读取状态、调用函数、分析智能合约活动
设置(一次性)
- 1. 获取您的Hedera账户ID — 格式为0.0.XXXXXX。任何主网账户均可使用。
- 充值余额 — 从您的账户向平台钱包0.0.10309126发送HBAR。您的账户ID将在10秒内成为您的API密钥。
- 设置环境变量 — 在您的OpenClaw配置中添加HEDERAACCOUNTID=0.0.XXXXXX。
建议初始余额:10 HBAR(按当前价格约0.96美元)
10 HBAR大约可进行:
- - 50次代币价格查询(每次0.10 ħ),或
- 13次深度代币分析(每次0.60 ħ),或
- 一次完整的合规入职工作流(identityresolve + identityverifykyc + identitychecksanctions + hcswrite_record ≈ 6.70 ħ),或
- 在X智能体配置下约8次完整的定时智能体运行(约1.15 ħ/次)
可随时充值更多——余额在10秒内更新。
安全与信任
您的私钥永远不会被请求、存储或传输。 该技能仅使用您的公开Hedera账户ID(0.0.XXXXXX)。在任何时候都不需要钱包签名。
支付验证方式: 平台运行一个存款监控器,每10秒轮询一次Hedera镜像节点,检查是否有向平台钱包(0.0.10309126)的转入交易。Hedera交易会以加密方式将发送方账户ID记录在链上——您无需提供任何备注或交易哈希。当检测到来自您账户的转账时,您的余额会自动增加。您可以在Hashscan上验证任何存款:https://hashscan.io/mainnet/account/0.0.10309126。监控器源代码位于https://github.com/mountainmystic/hederatoolbox/blob/master/src/watcher.js。
永久密钥说明: 您的Hedera账户ID是一个持久的计费标识符——而非加密凭证。平台使用镜像节点的链上交易记录来追踪哪个账户发送了HBAR。只有存入HBAR的账户才能使用该余额。
链上写入: 像hcswriterecord这样的工具会写入由平台操作员密钥(服务器端,使用平台自己的Hedera账户)签名的HCS消息。您的账户ID作为发起者字段包含在消息负载中——它是元数据,而非交易签名者。交易本身由平台账户(0.0.10309126)签名,并在链上显示为源自该账户,而非您的账户。这是Hedera上计量API服务的标准做法。
支付模式: 您在使用该技能之前,使用自己的钱包(HashPack、Blade、CLI等)发送HBAR。该技能本身永远不会发起转账或请求资金。所有费用仅从您的预充值余额中扣除——平台无法从您的钱包中提取额外资金。
发送到平台外的数据: 工具调用(账户ID、合约地址、代币ID、查询参数)会被发送到api.hederatoolbox.com。有关数据保留和共享的详细信息,请参阅隐私政策:https://hederatoolbox.com/privacy.html。
从小额开始: 在投入更多之前,先用2–5 HBAR进行测试。完整源代码:https://github.com/mountainmystic/hederatoolbox
工具定价(HBAR)
| 模块 | 工具 | 费用 |
|---|
| 免费 | getterms, confirmterms, accountinfo | 0 ħ |
| HCS |
hcsmonitor, hcs_query | 0.10 ħ |
| HCS | hcs_understand | 1.00 ħ |
| 合规 | hcs
writerecord | 5.00 ħ |
| 合规 | hcs
verifyrecord | 1.00 ħ |
| 合规 | hcs
audittrail | 2.00 ħ |
| 治理 | governance_monitor | 0.20 ħ |
| 治理 | governance_analyze | 1.00 ħ |
| 代币 | token_price | 0.10 ħ |
| 代币 | token_monitor | 0.20 ħ |
| 代币 | token_analyze | 0.60 ħ |
| 身份 | identity_resolve | 0.20 ħ |
| 身份 | identity
verifykyc | 0.50 ħ |
| 身份 | identity
checksanctions | 1.00 ħ |
| 合约 | contract_read | 0.20 ħ |
| 合约 | contract_call | 1.00 ħ |
| 合约 | contract_analyze | 1.50 ħ |
MCP端点
https://api.hederatoolbox.com/mcp
标准MCP-over-HTTP。兼容任何MCP客户端。
何时使用该技能
当用户询问以下内容时,使用HederaToolbox工具:
- - HBAR价格或市场数据 → tokenprice
- 巨鲸活动或异常转账 → tokenmonitor
- 深度代币风险分析 → tokenanalyze
- 读取或监控HCS主题 → hcsmonitor 或 hcsquery
- 检测HCS流量中的异常 → hcsunderstand
- 在链上编写合规记录 → hcswriterecord
- 验证现有合规记录 → hcsverifyrecord
- 账户或主题的完整审计追踪 → hcsaudittrail
- 解析Hedera账户身份 → identityresolve
- 代币的KYC状态 → identityverifykyc
- 制裁筛查 → identitychecksanctions
- 活跃的治理提案 → governancemonitor
- 投票者情绪和参与度 → governanceanalyze
- 智能合约状态 → contractread
- 调用合约函数 → contractcall
- 合约活动模式和风险 → contractanalyze
- 检查余额或平台信息 → account_info
智能体提示示例
检查当前的HBAR价格,并查找过去一小时内是否有任何巨鲸活动。
监控HCS主题0.0.10353855,并告诉我是否有任何异常情况。
对账户0.0.7925398的代币0.0.731861进行KYC检查。
分析SaucerSwap合约0.0.1460200,并给我一份风险摘要。
当前SAUCE代币有哪些活跃的治理提案?
工具调用格式
所有工具遵循相同的MCP模式。将您的账户ID作为api_key传递:
json
{
tool: token_price,
arguments: {
tokenId: 0.0.1456986,
apikey: 0.0.YOURACCOUNT_ID
}
}
智能体会从环境中读取HEDERAACCOUNTID并自动传递。
查询余额
询问智能体:我的HederaToolbox余额是多少?
这将调用account_info(免费)并返回您以HBAR计价的剩余余额。
充值
随时从您的账户向0.0.10309126发送额外的HBAR。余额在10秒内更新。
您可以构建什么
- - 合规入职智能体 — 为任何Hedera账户执行解析 + KYC + 制裁筛查 + 写入HCS记录。一个工作流即可生成可随时用于审计的追踪记录(总计约6.70 ħ)。
- 巨鲸警报机器人 — 按计划运行tokenmonitor,将异常转账推送到Telegram或Slack。
- DAO治理摘要 — 为任何有活跃提案的代币生成每日governancemonitor + governanceanalyze摘要。
- 智能合约尽职调查 — 对所有调用者执行contractanalyze + identity_resolve,输出风险报告。
- 链上市场脉搏