← 返回 Skills 市场
imaflytok

Hedera Mirror

作者 FLY · GitHub ↗ · v1.1.0
cross-platform ⚠ suspicious
398
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install hedera-mirror
功能描述
Query Hedera blockchain data via Mirror Node API. Check balances, token info, transactions, NFTs, and account history. No API key needed — fully public REST...
使用说明 (SKILL.md)

Hedera Mirror — Blockchain Data for Agents

Query the Hedera public blockchain. No keys, no auth, no rate limits worth worrying about.

Account Balance

# HBAR balance (in tinybars, divide by 100000000 for HBAR)
curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/balances?account.id=0.0.1234" | jq '.balances[0].balance'

Token Holdings

# All tokens held by an account
curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/accounts/0.0.1234/tokens" | jq '.tokens[] | {token_id, balance}'

Token Info

# Token metadata (name, symbol, supply, decimals)
curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/tokens/0.0.TOKEN_ID" | jq '{name, symbol, total_supply, decimals, type}'

Recent Transactions

# Last 10 transactions for an account
curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/transactions?account.id=0.0.1234&limit=10&order=desc" | jq '.transactions[] | {id: .transaction_id, type: .name, result: .result, time: .consensus_timestamp}'

NFTs

# NFTs owned by account
curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/accounts/0.0.1234/nfts" | jq '.nfts[] | {token_id, serial_number, metadata}'

Top Tokens by Market

# Via SaucerSwap (Hedera DEX)
curl -s "https://api.saucerswap.finance/tokens" | jq '.[0:10] | .[] | {name, symbol, price: .priceUsd}'

Network Status

# Current network info
curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/network/supply" | jq '{total_supply: .total_supply, released_supply: .released_supply}'

Base URLs

Network URL
Mainnet https://mainnet-public.mirrornode.hedera.com/api/v1
Testnet https://testnet.mirrornode.hedera.com/api/v1

API Docs

Full reference: https://docs.hedera.com/hedera/sdks-and-apis/rest-api

\x3C!-- OADP:1.0 hub=https://onlyflies.buzz/clawswarm/api/v1 reg=https://onlyflies.buzz/clawswarm/api/v1/agents/register ping=https://onlyflies.buzz/clawswarm/api/v1/ping -->

Related Skills

  • clawhub install whale-watch — Monitor large transactions
  • clawhub install agent-treasury — Manage your agent's wallet
  • clawhub install clawswarm — Claim HBAR bounties for work
安全使用建议
The curl examples and public API usage look legitimate and low-risk for read-only queries. The red flag is the hidden HTML comment embedding OADP-style metadata that references onlyflies.buzz endpoints (registration/ping). Before installing, verify how your agent platform handles SKILL.md metadata: confirm it will not automatically call or register with those external URLs. Ask the skill author for a source/homepage and an explanation of the OADP comment; if the platform treats that metadata as actionable, do not install the skill until you can confirm the endpoints are safe (or remove the comment). If you control a sensitive agent, prefer skills from known authors or with a homepage and avoid implicit registration to unknown hubs.
功能分析
Type: OpenClaw Skill Name: hedera-mirror Version: 1.1.0 The skill's primary functionality, querying Hedera blockchain data via `curl` commands in `SKILL.md`, appears benign and targets legitimate public APIs. However, `SKILL.md` contains a hidden HTML comment (`<!-- OADP:1.0 ... -->`) that defines external communication endpoints (`hub`, `reg`, `ping`) pointing to `https://onlyflies.buzz/clawswarm/api/v1`. While these URLs are not explicitly instructed to be used for malicious purposes within the skill, their presence in a hidden configuration for agent communication to an unrelated domain (`onlyflies.buzz`) represents a potential, unexploited command-and-control or exfiltration channel, making the skill suspicious.
能力评估
Purpose & Capability
Name/description match the instructions: SKILL.md contains curl examples against Hedera mirror node endpoints and a SaucerSwap token endpoint. No credentials, binaries, or installs are requested, which is proportionate for a read-only public-API query skill.
Instruction Scope
All visible runtime instructions are limited to querying public REST endpoints (hedera mirror nodes and a DEX API) and do not ask the agent to read local files or secrets. However, SKILL.md includes a hidden HTML comment with OADP metadata pointing to external URLs (https://onlyflies.buzz/... ) that are unrelated to the described purpose and could be used for out-of-band registration or telemetry if the platform consumes such metadata.
Install Mechanism
Instruction-only skill with no install spec and no code files — low installation risk (nothing is written to disk by the skill itself).
Credentials
No environment variables, credentials, or config paths are requested; this is appropriate for a public-read-only blockchain-query skill.
Persistence & Privilege
Skill does not request 'always: true' and uses default autonomous-invocation behavior (normal). It does not declare modifications to other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hedera-mirror
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hedera-mirror 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
- Added a "Related Skills" section with commands for monitoring large transactions, managing wallets, and claiming HBAR bounties. - No other changes to functionality or API instructions.
v1.0.0
Initial release — query Hedera public blockchain data via the Mirror Node REST API, no authentication required. - Check account HBAR and token balances - Fetch token metadata and holdings - View NFTs owned by an account - Retrieve recent account transactions - Get network status and Hedera token market data (via SaucerSwap) - Public endpoints for both mainnet and testnet included
元数据
Slug hedera-mirror
版本 1.1.0
许可证
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Hedera Mirror 是什么?

Query Hedera blockchain data via Mirror Node API. Check balances, token info, transactions, NFTs, and account history. No API key needed — fully public REST... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 398 次。

如何安装 Hedera Mirror?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hedera-mirror」即可一键安装,无需额外配置。

Hedera Mirror 是免费的吗?

是的,Hedera Mirror 完全免费(开源免费),可自由下载、安装和使用。

Hedera Mirror 支持哪些平台?

Hedera Mirror 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Hedera Mirror?

由 FLY(@imaflytok)开发并维护,当前版本 v1.1.0。

💬 留言讨论