The developer tools you reach for every day, all in one place.

Converters, formatters, hashes, validators, and the small utilities you keep reopening stay together instead of getting lost across tabs.

GitHub

/ Tools

/ Tool Finder
109 tools
/ Transaction Decoder
Real RLP Decoding: This tool uses viem's parseTransaction to properly decode signed transactions. It supports all transaction types (legacy, EIP-2930, EIP-1559) and extracts all transaction fields.
/ Selected Tool

Transaction Decoder

Decode raw Ethereum transaction data

01

What is Transaction Decoding?

Transaction decoding converts raw hexadecimal transaction data into human-readable fields like sender, recipient, value, gas parameters, and transaction data. Raw transactions are RLP-encoded and signed.

02

How does it work?

The decoder parses RLP-encoded transaction data by deserializing the hex string into its component fields. It extracts the transaction type, then decodes each field according to the transaction schema (legacy, EIP-2930,…

03

Sample Cases

Covers EIP-1559 Transaction (Type 2), Simple ETH transfer, and Contract interaction so you can compare common inputs and outputs quickly.

/ Code

/ Integration

Source code from the selected tool, shown here alongside the live version on the right.

/ Source Code
TypeScript
typescript
// npm install viem

import { parseTransaction, formatEther, formatGwei } from 'viem';

// Decode raw transaction hex
const rawTx = "0xf86c808504a817c800825208944592d8f8d7b001e72cb26a73e4fa1806a51ac79d880de0b6b3a7640000801ca0...";

const tx = parseTransaction(rawTx as `0x${string}`);

console.log("Transaction Details:");
Buidl Now icon

Keep every utility in one place and stay inside the build flow.

Pick a tool, finish the check, copy what you need, and get back to the actual product work.

Developer tools for builders who ship fast.© 2026 Buidl Now. All rights reserved.