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
- You MUST use the same
--chainflag that was used for the original transaction. A Base tx hash will not be found on Monad. - Use this skill AFTER every
sendortradeto verify success.
Commands
npx fibx@latest tx-status <hash> [--chain <chain>] [--json]
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
hash |
string | Transaction hash (0x...) |
Yes |
chain |
string | base, citrea, hyperevm, or monad |
No |
json |
flag | Output as JSON | No |
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
| Error | Action |
|---|---|
Transaction not found |
Verify you are querying the correct chain. |
Pending |
Transaction is still in the mempool — wait and retry. |
Rate limit / 429 |
Use config skill to set a custom RPC. |
Related Skills
- This skill is used AFTER
sendortradeto verify transaction success. - Use
configto set a custom RPC if you encounter rate limit errors.
More from ahmetenesdur/fibx-agentic-wallet-skills
authenticate-wallet
Authenticate the fibx CLI wallet via email OTP (Privy) or private key import. Required before any wallet operation (balance, send, trade, aave). Private keys are encrypted at rest with AES-256-GCM.
14balance
Check wallet balances (native and ERC-20 tokens) on Base, Citrea, HyperEVM, or Monad.
13trade
Swap tokens using Fibrous aggregation on Base, Citrea, HyperEVM, or Monad. Finds optimal route, simulates before execution.
13send
Send native tokens (ETH, cBTC, HYPE, MON) or ERC-20 tokens to an address on Base, Citrea, HyperEVM, or Monad. Simulates before sending.
12config
View and modify fibx CLI configuration, such as setting custom RPC URLs to avoid rate limits.
2aave
Manage Aave V3 DeFi positions on Base — supply, borrow, repay, withdraw, view markets, and check account health. Includes liquidation safety checks.
2