Tx 해시를 붙여넣고 무슨 일이 있었는지 영어로 간단히 설명합니다. 지갑이 연결되지 않았습니다.

작성자

카테고리:

← 피드로
DEV Community · Khalil Ahmed · 2026-08-24 개발(SW)
Cover image for Paste a tx hash, get a plain-English explanation of what happened. No wallet connect

Khalil Ahmed

Etherscan can decode a transaction into a function name and a list of hex parameters. It won’t tell you, in one sentence, what actually happened.

I spent the last few weeks building something that does. Paste a transaction hash from Ethereum, Base, Arbitrum, Polygon, BNB Chain, Optimism, or Avalanche, and get a plain-English explanation: what tokens moved, what was swapped, what was approved, what it cost in gas, and what it meant for the wallet that sent it.

A few decisions I made on purpose:
→ No wallet connection, it only reads transactions that already happened, nothing to sign or approve
→ No AI black box, the explanation comes from parsing the transaction and receipt directly, not a language model guessing
→ Open source (AGPL-3.0), so the logic is inspectable, not a trust-me claim

It’s version 0.1, free, and built solo. I’d genuinely value feedback from anyone who works with any of these chains regularly, what’s confusing, what’s missing, what would make you actually use it.

Try it: https://tx.tomnitive.com/
Code: https://github.com/khalilahmed63/Transaction-Explainer

원문에서 계속 ↗