Transaction Payload Plain-Language Summary
Free to download on every platform. Comes pre-installed on BotFone, BotPad and BotFlip — with extra free apps included.
About this app
WHAT IT DOES
Transaction Payload Plain-Language Summary takes raw transaction call data (the hex payload you're about to sign) and translates it into a clear, plain-language summary. It decodes the function signature, extracts and interprets each parameter, and explains what the transaction will actually accomplish. If the function is recognized, it shows you the function name, signature, and decoded parameters. An AI layer then produces a concise summary explaining what the payload does, what each parameter means in context, and what the overall effect will be. No more staring at hex strings—you get a human-readable explanation of the transaction payload before you sign.
HOW TO USE
Connect your EVM wallet using the BotGentz wallet bridge. Select the network matching your transaction. Paste a transaction hash to fetch and summarize the full transaction payload from the chain, or paste raw hex call data (starting with 0x) to summarize it directly. Click "Summarize"—the tool resolves the method ID, decodes all parameters, and generates an AI summary. Results show you the sender, recipient, value, method ID, function name, decoded parameters, and a plain-language summary of what the payload does. No transaction is ever submitted—this tool is read-only and free.
TECHNICAL MECHANISM
The app uses the injected BGWallet bridge to access the EVM provider via ethers.js v5.7.2. Transaction hashes are fetched via provider.getTransaction(). The call data payload (the hex string after the method ID) is decoded against a built-in 4-byte signature database covering common ERC20 functions (transfer, approve, transferFrom, allowance, balanceOf), ERC721 functions (ownerOf, safeTransferFrom, transferFrom, setApprovalForAll), mint functions, admin functions (owner, renounceOwnership, transferOwnership, pause, unpause), withdraw, and selfdestruct. Parameter decoding extracts each field by position from the hex data—addresses are padded to 64 hex characters (20 bytes) and converted to 0x-prefixed strings, uint256 values are converted from hex to decimal using ethers.BigNumber, and booleans are checked against canonical hex values. The decoded function name, parameters, and raw data are passed to the AI bridge (BGAI.generate), which produces a concise plain-language summary capped at 1,024 tokens.
WHAT IT CANNOT SEE
This tool cannot detect malicious intent hidden in contract bytecode—it reads only the function call payload visible on-chain. It cannot verify that the resolved function name from the 4-byte database matches the actual contract implementation—any contract can implement a function with the same method ID but completely different behavior. It cannot verify off-chain intent or consequences of a transaction. It cannot detect cross-contract exploits, reentrancy vulnerabilities, or front-running attempts. It does not simulate transaction execution, so it cannot predict revert conditions or gas exhaustion. The AI summary is generated from the provided data and may miss nuances not present in the call data itself.
PLEASE NOTE
Supports EVM-compatible chains only—Ethereum, Sepolia, Polygon, Mumbai, Optimism, Arbitrum, and any network the wallet bridge connects to. The 4-byte signature database is built-in and covers the most common functions—if a function is not in the database, the tool will show the method ID and raw data but cannot provide a function name. Summaries are AI-generated and should be treated as assists, not authoritative audits. Always review the transaction details in your wallet's own signature prompt before approving. The wallet's signature step is the only protection that actually gates any action—this tool is informational and does not replace that safeguard. Free to use, no API keys required.