← 返回 Skills 市场
charles-lpd

check-hymx-transaction

作者 charles-lpd · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
167
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install check-hymx-transaction
功能描述
Check transaction status on Hymatrix bridge
使用说明 (SKILL.md)

Multi Chain Transaction Checker

Trigger

当用户提供交易 ID 或哈希值并询问以下信息时,请使用此技能:

Input

{ "tx_hash": "transaction hash" }

Output

{
  "rawId": 594,
  "createdAt": "2026-03-17T15:00:34.835Z",
  "updatedAt": "2026-03-17T15:00:34.835Z",
  "txType": "burn",
  "ChainType": "aostest",
  "TokenId": "0syT13r0s0tgPmIed95bJnuSqaD29HQNN8D3ElLSrsc",
  "WrappedTokenId": "SX8LisFGf3lqN1HJMa15F3FawZUdI4e8FRoE2EeoWCo",
  "txId": "gXZ8rxlGsj0yebaNXvBT9jNp68YCSfo40l6suH7tz_w",
  "sender": "0x578Dde4A4e00FF74c31E3645C28f06bE35D8aDEA",
  "recipient": "XWDOELeht4sdZ1HggZHM95OjEQIzTvoTnoJVt_u6Z9k",
  "blockHeight": 0,
  "amount": "105951171869250",
  "fee": "0",
  "feeRecipient": "0x72365DA62A3F9652a61bD11F2069AC41FBb5Bd8E",
  "status": "waiting",
  "targetChainTxHash": "",
  "approveTx": ""
}

字段类型

export interface BridgeHymxListItem {
  rawId: number
  createdAt: string
  updatedAt: string
  txType: 'burn' | 'mint'
  ChainType: string
  TokenId: string
  WrappedTokenId: string
  txId: string
  sender: string
  recipient: string
  blockHeight: number
  amount: string
  fee: string
  feeRecipient: string
  status:
    | 'success'
    | 'unPackaged'
    | 'waiting'
    | 'confirmed'
    | 'failed'
    | 'submintAosFailed'
    | 'notOnChain'
  targetChainTxHash: string
  errMsg?: string
  userAddress?: string
}

子段解释:

  • rawId: 游标
  • createdAt: 创建交易的时间。
  • updatedAt: 每当 status 改变会立即更新的时间。
  • txType: 交易类型 mint代表充值 burn 代表提现。
  • ChainType: txType等于 mint 代表 ChainType链到 hymatrix 网络,txType等于 burn代表 hymatrix 网络 到 ChainType链。
  • TokenId: 存入/铸造 的 tokenId。注意 info 提示
  • WrappedTokenId: 提取/销毁 的 tokenId 。注意 info 提示
  • txId: 交易哈希。
  • sender: 发起人的地址。
  • recipient: 收款人地址。
  • amount: 交易金额,若fee不为空,则收款账户需要缴纳手续费代表 amount - fee = 实际到账金额。
  • fee: 手续费。
  • feeRecipient:手续费收款地址。
  • status: 当前交易的状态,根据下方 info 中 status 返回给用户。
  • targetChainTxHash: 目标链的哈希。
  • errMsg: 当交易失败时,该字段回返回失败的原因。

:::info

  • fromToken/toToken TokenIdWrappedTokenId 要根据交易类型拍判断谁是(存入/铸造)或(提取/销毁),交易类型 txType 确定资产流向——若为 mint (存入/铸造),原始资产为 TokenId,目标资产为 WrappedTokenId;若为非 mint (提取/销毁),则方向相反。

  • status: Agent 需根据 txType 判定交易阶段——若为 mint (存入),unPackaged 为待上链,waiting/confirmed 为待收款 (wrapping);若为非 mint (提取),unPackaged 为待燃烧,waiting 为待执行。其余状态(如 success, failed, packageing)直接映射至对应的多语言标签。 :::

安全使用建议
This skill behaves as advertised: it will send whatever tx id/hash you provide to https://api-bridgescan-dev.hymatrix.com/bridgeTx/<txid> and return the JSON response. Before installing, consider: (1) the endpoint is a '-dev' host (a development/staging API) and the package has no homepage or known source owner — verify you trust that domain/owner; (2) no credentials are requested, but your transaction IDs (which may be sensitive or linkable to you) will be transmitted to the remote service; (3) the script relies on Node's fetch API — it may fail on older Node runtimes. If you want stronger assurance, ask the publisher for a production API endpoint, a homepage/repo, or a signed release.
功能分析
Type: OpenClaw Skill Name: check-hymx-transaction Version: 1.0.0 The skill is a straightforward transaction checker for the Hymatrix bridge. The script `script/index.js` reads a transaction hash from input and fetches data from a hardcoded API endpoint (api-bridgescan-dev.hymatrix.com), while `SKILL.md` provides standard instructions for the AI agent to interpret the results. No malicious behavior, data exfiltration, or prompt injection attempts were detected.
能力评估
Purpose & Capability
The skill is named and described as a Hymatrix bridge transaction checker and includes a single script that issues an HTTP GET to a Hymatrix bridge API endpoint. Required files and instructions align with that purpose.
Instruction Scope
SKILL.md and script/index.js accept input via stdin (tx id/hash), call the remote bridge API, and return JSON. The instructions do not ask the agent to read unrelated files, environment variables, or send data to other endpoints.
Install Mechanism
There is no install spec (instruction-only plus an included script), so nothing is written to disk beyond the provided script. Note: the script performs a network request to a remote endpoint (see below).
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate for a read-only transaction status checker.
Persistence & Privilege
The skill does not request always:true or any elevated persistent privileges and does not modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install check-hymx-transaction
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /check-hymx-transaction 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
check-hymx-transaction v1.0.0 - Initial release of the multi-chain transaction checker for Hymatrix bridge. - Allows users to check transaction status by providing a transaction hash. - Returns detailed status and metadata for bridge transactions, including type, involved tokens, sender/recipient, amount, fees, and state. - Supports both "mint" (deposit) and "burn" (withdrawal) transaction types, clarifying asset flow and status meanings.
元数据
Slug check-hymx-transaction
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

check-hymx-transaction 是什么?

Check transaction status on Hymatrix bridge. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 167 次。

如何安装 check-hymx-transaction?

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

check-hymx-transaction 是免费的吗?

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

check-hymx-transaction 支持哪些平台?

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

谁开发了 check-hymx-transaction?

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

💬 留言讨论