Transaction Parsing
Parse Transaction by ID
Usage
const parsed = await mnee.parseTx('txid-here');
console.log('Parsed TX:', parsed);With Extended Data
// Include raw transaction details
const parsed = await mnee.parseTx('txid-here', { includeRaw: true });
console.log('Raw data:', parsed.raw);Parse Transaction from Raw Hex
Usage
const parsed = await mnee.parseTxFromRawTx('raw-tx-hex-here');
console.log('Parsed TX:', parsed);With Extended Data
Parameters
parseTx
parseTxFromRawTx
Response
Basic Response
Extended Response (with includeRaw)
Response Properties
Basic Properties
Extended Properties (raw)
Common Use Cases
Transaction Analysis
Verify Transaction Before Acceptance
Debug Failed Transactions
Track Transaction Flow
Export Transaction Details
Validate Complex Transactions
Important Notes
See Also
Last updated