
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
ethereum-tx-decoder
Advanced tools
Lightweight utility for decoding function parameters from Ethereum transactions.
Lightweight utility for decoding function parameters from Ethereum transactions.
Minimal dependencies.
Find the exact function parameters that triggered an event.
npm i ethereum-tx-decoder
decodeTx()
Decode raw transactions into an Object.
var txDecoder = require('ethereum-tx-decoder');
// transaction.raw = '0x...'
var decodedTx = txDecoder.decodeTx(transaction.raw);
// {
// nonce: Number
// gasPrice: BigNumber
// gasLimit: BigNumber
// to: string (hex)
// value: BigNumber
// data: string (hex)
// v: Number
// r: string (hex)
// s: string (hex)
// }
Need to know from
or chainId
? Use ethers.Wallet.parseTransaction()
instead.
class FunctionDecoder
Decode function call data into the original parameter values.
ethers.Contract
: // contract = new Contract(address, abi, provider)
var fnDecoder = new txDecoder.FunctionDecoder(contract.interface);
abi
: // Internally creates an ethers.Interface object.
var fnDecoder = new txDecoder.FunctionDecoder(abi);
decodeFn()
fnDecoder.decodeFn(decodedTx.data);
// Result {
// ...All function parameters indexed by both name and position...
// }
Note: decodeFn()
returns an Arrayish
.
decodeFnFromTx()
Shortcut for decoding a function from transaction.
fnDecoder.decodeFnFromTx(transaction.raw);
FAQs
Lightweight utility for decoding function parameters from Ethereum transactions.
The npm package ethereum-tx-decoder receives a total of 652 weekly downloads. As such, ethereum-tx-decoder popularity was classified as not popular.
We found that ethereum-tx-decoder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.