Transaction Decoder
Decode a raw EVM transaction to view its contents
When a user sends a transaction, the wallet takes inputs such as:
{
"chainId": 1,
"type": "eip1559",
"to": "0x70997970c51812dc3a010c7d01b50e0d17dc79c8",
"nonce": 785,
"value": "1000000000000000000",
"maxFeePerGas": "2000000000",
"maxPriorityFeePerGas": "2000000000"
}It signs the data and outputs a raw transaction hex, such as 0x02ef0182031184773594008477359400809470997970c51812dc3a010c7d01b50e0d17dc79c8880de0b6b3a764000080c0.
As a web3 developer, you may have use cases for decoding this hex to see exactly what inputs the transaction was sent with. This page allows you to do just that, enter the raw transaction and see it in human-readable form.
OR