tx-status

Check the on-chain status of a transaction and get the block explorer link. Supports Base, Citrea, HyperEVM, and Monad.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "tx-status" with this command: npx skills add ahmetenesdur/fibx-agentic-wallet-skills/ahmetenesdur-fibx-agentic-wallet-skills-tx-status

Transaction Status

Fetch on-chain receipt data for a transaction hash: status, block number, gas used, and explorer link.

Prerequisites

  • A valid transaction hash (starts with 0x).
  • No authentication required — this is a public chain query.

Rules

  1. You MUST use the same --chain flag that was used for the original transaction. A Base tx hash will not be found on Monad.
  2. Use this skill AFTER every send or trade to verify success.

Commands

npx fibx@latest tx-status <hash> [--chain <chain>] [--json]

Parameters

ParameterTypeDescriptionRequired
hashstringTransaction hash (0x...)Yes
chainstringbase, citrea, hyperevm, or monadNo
jsonflagOutput as JSONNo

Default chain: base.

Examples

User: "Did my transaction go through?"

npx fibx@latest tx-status 0x123...abc

User: "Check tx 0xabc...def on Monad"

npx fibx@latest tx-status 0xabc...def --chain monad

JSON Output Structure

{
	"status": "success",
	"blockNumber": "12345",
	"gasUsed": "21000",
	"from": "0x...",
	"to": "0x...",
	"explorerLink": "https://basescan.org/tx/0x...",
	"chain": "base"
}

Error Handling

ErrorAction
Transaction not foundVerify you are querying the correct chain.
PendingTransaction is still in the mempool — wait and retry.
Rate limit / 429Use config skill to set a custom RPC.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Web3

authenticate-wallet

No summary provided by upstream source.

Repository SourceNeeds Review
Web3

trade

No summary provided by upstream source.

Repository SourceNeeds Review
Web3

balance

No summary provided by upstream source.

Repository SourceNeeds Review
Web3

send

No summary provided by upstream source.

Repository SourceNeeds Review