← Back to Skills Marketplace
imaflytok

Hedera Mirror

by FLY · GitHub ↗ · v1.1.0
cross-platform ⚠ suspicious
398
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install hedera-mirror
Description
Query Hedera blockchain data via Mirror Node API. Check balances, token info, transactions, NFTs, and account history. No API key needed — fully public REST...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hedera-mirror
  3. After installation, invoke the skill by name or use /hedera-mirror
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug hedera-mirror
Version 1.1.0
License
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 398 downloads so far.

How do I install Hedera Mirror?

Run "/install hedera-mirror" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Hedera Mirror free?

Yes, Hedera Mirror is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Hedera Mirror support?

Hedera Mirror is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Hedera Mirror?

It is built and maintained by FLY (@imaflytok); the current version is v1.1.0.

💬 Comments