- formatEthData(
data: {
block?: any;
log?: any;
trace?: any;
transaction?: any;
transactionReceipt?: any;
},
): {
block: undefined
| RichBlock;
log: undefined | LogParams;
trace: undefined | Trace;
transaction: undefined | TransactionResponseParams;
transactionReceipt: undefined | TransactionReceiptParams;
} Parameters
- data: {
block?: any;
log?: any;
trace?: any;
transaction?: any;
transactionReceipt?: any;
}
Returns {
block: undefined | RichBlock;
log: undefined | LogParams;
trace: undefined | Trace;
transaction: undefined | TransactionResponseParams;
transactionReceipt: undefined | TransactionReceiptParams;
}