Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

tronscan-transaction-infotronscan 交易信息

Agent Skill

tronscan-transaction-info 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,489

周安装

531

GitHub Stars

1

下载量

4,375
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tronscan-transaction-info(tronscan 交易信息)
来源仓库:https://github.com/sshnii/tronscan-transaction-info
安装命令:
openclaw skills install tronscan-transaction-info
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tronscan-transaction-info

简介

查询 TRON 区块链上交易的执行状态、发送方和资源消耗情况。

  • 适合用于排查交易失败原因或分析链上操作成本。
  • 通过输入交易哈希即可获取详细的交易元数据和确认结果。
  • 依赖网络连接与 TRONScan API 可用性,需确保环境具备访问权限。
  • 返回数据包含燃料费、区块高度等字段,可用于进一步链上分析。

SKILL.md

name
tronscan-transaction-info
description
|
metadata
author
tronscan-mcp
version
1.0
mcp-server
https://mcp.tronscan.org/mcp

Transaction Info

Overview

ToolFunctionUse Case
getTransactionDetailTx by hashType, confirmation, amount, energy/bandwidth
getTransactionListTx listList with filters, sort, pagination
getTrc20TransfersTRC20/721 transfersToken transfer records
getTrc20TransfersWithStatusTRC20 with statusTRC20 transfers plus tx status
getTrc1155TransfersTRC1155 transfersMulti-token transfers
getTransferListTRX/TRC10 transfersNative TRX and TRC10 transfers
getInternalTransactionsInternal txsContract internal calls
getTransactionStatisticsTx statisticsAggregate tx and token volume
getTransferStatisticsTransfer statisticsTransfer activity by token type
getExchangeTransactionsExchange txsExchange-type transactions

Use Cases

  1. Transaction Result: Use getTransactionDetail for success/fail and confirmation.
  2. Confirmation Status: Confirmation and block info are in getTransactionDetail.
  3. Sender / Receiver: Use getTransactionDetail for from/to; use transfer tools for token flows.
  4. Resource Consumption: Energy and bandwidth used are in getTransactionDetail.
  5. Token Transfers in Tx: Use getTransactionDetail; its response includes trc20TransferInfo, transfersAllList, and other tx-level transfer info.
  6. Internal Calls: Use getInternalTransactions for contract internal txs.

MCP Server

Tools

getTransactionDetail

  • API: getTransactionDetail — Get transaction detail by hash (type, confirmation, amount, energy/bandwidth)
  • Use when: User provides a tx hash or asks "transaction status", "tx result", or "token transfers in this tx".
  • Input: Transaction hash (txid).
  • Response: Type, confirmed, amount, energy, bandwidth, from, to, block, trc20TransferInfo, transfersAllList, and other tx-level transfer info.
  • Units:

- net_fee, energy_fee, fee_limit: in sun (1 TRX = 10⁶ sun); divide by 1,000,000 to get TRX. - amount_str(TRC20): in smallest unit; divide by 10^decimals to get human-readable amount. - contractData.amount (TRX transfer): in sun (1 TRX = 10⁶ sun); divide by 1,000,000 to get TRX.

getTransactionList

  • API: getTransactionList — Get transaction list with pagination, sort, and filters
  • Use when: User asks for "list of transactions" or "recent txs" for an address or globally.

getTrc20Transfers / getTrc20TransfersWithStatus

  • API: getTrc20Transfers — Get TRC20/TRC721 transfer records; getTrc20TransfersWithStatus — Get TRC20 transfers with tx status
  • Use when: User asks for "token transfer" or "TRC20 transfer" by address, contract, or time range. For transfers within a single tx, use getTransactionDetail.

getTrc1155Transfers

  • API: getTrc1155Transfers — Get TRC1155 transfer records
  • Use when: User asks for TRC1155 transfers by address, contract, or time range. For transfers within a single tx, use getTransactionDetail.

getTransferList

  • API: getTransferList — Get TRX and TRC10 transfer records
  • Use when: User asks for "TRX transfer" or "TRC10 transfer" by address, contract, or time range. For transfers within a single tx, use getTransactionDetail.

getInternalTransactions

  • API: getInternalTransactions — Get smart contract internal transaction list
  • Use when: User asks for "internal tx" or "contract internal call".

getTransactionStatistics / getTransferStatistics

  • API: getTransactionStatistics — Get transaction statistics (total tx, token tx volume, etc.); getTransferStatistics — Get transfer statistics by token type
  • Use when: User asks for "tx volume" or "transfer distribution".

getExchangeTransactions

  • API: getExchangeTransactions — Get exchange-type transactions
  • Use when: User asks for "exchange transactions" or "DEX transactions".
  • Response: Exchange-type transaction list.

Workflow: Transaction Investigation

User: "Why did this tx fail?" or "Who sent it, what did it do?"
  1. tronscan-transaction-info — Use tx hash to call getTransactionDetail → result, confirmation, from/to, amount, energy/bandwidth.
  2. If asking about sender or receiver: tronscan-account-profilergetAccountDetail(from/to address) for balance and resources; if counterparty is a contract, tronscan-contract-analysisgetContractDetail(contract address).
  3. If token transfers within the tx are needed: getTransactionDetail response already includes trc20TransferInfo, transfersAllList, etc. — no need to call transfer list tools. If internal calls needed: getInternalTransactions (pass tx hash as parameter where supported).

Data handoff: User-provided tx hash is input for step 1. The from/to or contract address from step 1 feeds into step 2.

Troubleshooting

  • MCP connection failed: If you see "Connection refused", verify TronScan MCP is connected in Settings > Extensions.
  • API rate limit / 429: TronScan API has call count and frequency limits when no API key is used. If you encounter rate limiting or 429 errors, go to TronScan Developer API to apply for an API key, then add it to your MCP configuration and retry.

Invalid tx hash

Ensure the hash is a valid TRON transaction ID (64 hex chars). If tx not found, it may be pending or on a different network.

Notes

  • Always use getTransactionDetail first when user has a tx hash; token transfers within the tx are already in its response—no need to call getTrc20Transfers / getTrc1155Transfers / getTransferList.
  • getTrc20Transfers, getTrc1155Transfers, getTransferList are for address, contract, or time-range investigation; they do not expose tx hash filter parameters. Do not fabricate tx-hash filter or claim filtering by tx hash.
  • Energy/bandwidth in response are in the same unit as chain (energy in units, bandwidth in bytes).
  • Token entries in trc20TransferInfo and transfersAllList may include risk fields such as tokenCanShow and tokenLevel. If the transacted token has tokenCanShow: false or tokenLevel of "3" / "4", warn the user that this transaction involves a potentially risky token. See tronscan-token-scanner for full field semantics.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.89%
按下载量换算3,933

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills