What this tool does
Paste any 0x transaction hash and we figure out which EVM chain it lives on plus everything important about it: block, status, sender, receiver, value, gas, the method that was called, and any ERC-20 or ERC-721 transfers it produced.
You do not need to know the chain in advance. The server fires the same query at six big EVM networks in parallel (Ethereum, Optimism, Arbitrum, Base, Polygon, BNB Smart Chain) and reports back as soon as one of them recognises the hash. No wallet, no API key, no sign-in.
How to use it
- Paste a transaction hash in the input box. The format is 0x followed by 64 hex characters. Case does not matter.
- Click Find it (or pick one of the sample hashes). The server fans out to all six chains at once and usually answers in under two seconds.
- The top banner tells you which chain the hash belongs to, the status (success, failed, pending), and the transaction type (plain transfer, contract call, or contract deploy).
- The stats grid shows the block number, block time, value moved in the chain's native coin (with USD equivalent), gas used, gas price in gwei, and the total fee paid.
- The From and To cards have copy buttons for each address. The To card also links straight to the ENS resolver in case the address has a name registered.
- If the transaction is a contract call, the Method panel shows the selector and the matching function signature looked up at 4byte.directory.
- Any ERC-20 / ERC-721 transfer the transaction emitted shows up in the Transfers list (sender, receiver, token contract, amount).
- Copy buttons are everywhere: hash, addresses, raw JSON. The raw JSON has every field the chain returned, useful for debugging or piping into another tool.
When this is useful
Seven typical detective scenarios:
- You have a hash but no idea which chain it is on: somebody sent you a screenshot, a support ticket, a Discord message. One paste and you know.
- Quick "did the transfer succeed?" check: green badge means the chain accepted it, red means it reverted and the recipient never got the funds.
- Debug failed contract calls: see the method selector and signature so you know exactly which function the user tried to call before the revert.
- Audit a bridge or swap: confirm the source chain, see which tokens moved, what the bridge contract was, and how much gas the whole journey burned.
- Triage suspicious activity: paste a hash from a scam report and immediately see the chain, sender, recipient, and any token contracts it touched.
- Newsroom / OSINT: a journalist gets a tip with a hash. This tool tells them whether it is real, what chain, and the parties involved without opening five block explorers.
- Build a transaction archive: the raw JSON copy gives you a stable record of the on-chain data exactly as the chain saw it, useful for legal disputes or post-mortems.
Related tools: multi-chain address activity, ENS resolver, gas tracker, token info lookup.