← 返回 Skills 市场
charles-lpd

check-transaction

作者 charles-lpd · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
251
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install check-transaction
功能描述
Allows users to check the status of a blockchain transaction by submitting a TxId. Queries the AOX transaction API and returns human-readable results.
使用说明 (SKILL.md)

Check Transaction Skill

This skill allows users to check the status of a blockchain transaction by providing a TxId. It queries the AOX transaction API (https://api.aox.xyz/tx/[txid]) and returns a human-readable summary of the transaction.


API Endpoint

URL: https://api.aox.xyz/tx/[txid]
Method: GET
Authentication: None required

Example Request:

curl -s "https://api.aox.xyz/tx/ZKmbSYqAYGMJKVldJ6nqDG_wT9SRBy44YDa6XNrfIUs"

Example JSON Response:

{ "rawId": 1773112604581, "createdAt": "2026-03-10T03:16:44.581Z", "updatedAt": "2026-03-10T03:22:18.7Z", "txType": "mint", "chainType": "arweave", "txId": "ZKmbSYqAYGMJKVldJ6nqDG_wT9SRBy44YDa6XNrfIUs", "sender": "kRdpOYaT5pUUiNFDaUymqO1VcybZpAfNPnNdls-A134", "recipient": "kRdpOYaT5pUUiNFDaUymqO1VcybZpAfNPnNdls-A134", "quantity": "25100000000000", "symbol": "AR", "decimals": 12, "blockHeight": 1873352, "fromTokenId": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "toTokenId": "xU9zFkq3X2ZQ6olwNVvr1vUWIjc3kXTWr7xKQD6dh10", "fee": "0", "feeRecipient": "", "confirmNum": 10, "confirmRange": -1670, "status": "waiting", "targetChainTxHash": "" }


Skill Usage

User Queries:

Example Input: "Check transaction ZKmbSYqAYGMJKVldJ6nqDG_wT9SRBy44YDa6XNrfIUs"
Output: Returns status, amount, sender, receiver, confirmations, and timestamp

Example Input: "Status of TxId ZKmbSYqAYGMJKVldJ6nqDG_wT9SRBy44YDa6XNrfIUs"
Output: Structured transaction info

CLI Example:

Query a transaction

curl -s "https://api.aox.xyz/tx/ZKmbSYqAYGMJKVldJ6nqDG_wT9SRBy44YDa6XNrfIUs"

Sample Output (Human-Readable):

Transaction Status: ⏳ Waiting TxId: ZKmbSYqAYGMJKVldJ6nqDG_wT9SRBy44YDa6XNrfIUs Type: mint Chain: arweave From: kRdpOYaT5pUUiNFDaUymqO1VcybZpAfNPnNdls-A134 To: kRdpOYaT5pUUiNFDaUymqO1VcybZpAfNPnNdls-A134 Amount: 25.1 AR (quantity: 25100000000000, decimals: 12) Block Height: 1873352 From Token ID: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA To Token ID: xU9zFkq3X2ZQ6olwNVvr1vUWIjc3kXTWr7xKQD6dh10 Fee: 0 Confirmations: 10 Confirm Range: -1670 Target Chain Tx Hash: (empty) Created At: 2026-03-10T03:16:44.581Z Updated At: 2026-03-10T03:22:18.7Z


Notes & Best Practices

  1. TxId format: Must start with 0x or valid AOX format.
  2. Error handling: If the TxId is invalid or not found, the API will return an error:

{ "error": "Transaction not found" }

  1. Confirmations: Include confirmNum to show network confirmation count.
  2. No API key required: Public endpoint, no authentication needed.
  3. JSON vs human-readable: The agent should format the JSON into readable message.
  4. Amount calculation: amount = quantity / (10^decimals)
  5. Status mapping:
    • waiting → ⏳ Waiting
    • success → ✅ Success
    • failed → ❌ Failed
  6. Target chain hash: If targetChainTxHash exists, display for cross-chain info.

References

安全使用建议
This skill appears to do exactly what it says: run a curl GET to https://api.aox.xyz/tx/[txid] and format the JSON. Before installing/using it, consider: (1) Do you trust the AOX domain (https://aox.xyz / api.aox.xyz)? Transactions you query will be sent to that external service. (2) If you need private/offline verification of transactions, this skill is not appropriate because it calls a public API. (3) The SKILL.md has a small doc ambiguity about TxId formats — if you see unexpected errors, try the AOX-style ID from the examples. If you’re comfortable with the external API and sending TxIds to it, this skill is proportionate and coherent.
功能分析
Type: OpenClaw Skill Name: check-transaction Version: 1.0.0 The skill is a straightforward utility for querying blockchain transaction statuses via the AOX API (api.aox.xyz). It uses curl to fetch public data and provides clear instructions for the AI agent to format the JSON response into a human-readable summary, with no evidence of malicious intent, data exfiltration, or harmful prompt injection.
能力评估
Purpose & Capability
Name/description (check transaction status via AOX API) match the instructions: SKILL.md shows a public GET to https://api.aox.xyz/tx/[txid] and returns human-readable fields. Required binary is only curl, which is appropriate for the described task.
Instruction Scope
Instructions are narrowly scoped to calling the AOX API and formatting results. They do not request filesystem reads, additional env vars, or sending data to other endpoints. Minor inconsistency: SKILL.md says TxId must start with 0x or valid AOX format while the provided example TxId uses the AOX format (no 0x); this is a small documentation ambiguity but not a security issue.
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes risk because nothing is written to disk by an installer.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate for a public, unauthenticated API query. Note: invoking the skill will transmit any TxId you provide to api.aox.xyz, so treat TxIds as potentially sensitive if needed.
Persistence & Privilege
always is false and the skill does not request persistent system changes or elevated privileges. Autonomous invocation is allowed (platform default) but does not combine with additional privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install check-transaction
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /check-transaction 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Major update: Replaced the "create-ticket" skill with the new "check_transaction" skill for AOX. - The skill now allows users to check the status of blockchain transactions by submitting a TxId. - Integrates with the AOX transaction API for real-time queries and human-readable results. - Removed all previous code and documentation related to Discord ticket creation.
元数据
Slug check-transaction
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

check-transaction 是什么?

Allows users to check the status of a blockchain transaction by submitting a TxId. Queries the AOX transaction API and returns human-readable results. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 251 次。

如何安装 check-transaction?

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

check-transaction 是免费的吗?

是的,check-transaction 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

check-transaction 支持哪些平台?

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

谁开发了 check-transaction?

由 charles-lpd(@charles-lpd)开发并维护,当前版本 v1.0.0。

💬 留言讨论