trace_callMany - Mode Sepolia
Summary
Performs multiple call traces on top of the same block. transaction n will be executed on top of a pending block with all n-1 transactions applied (traced) first. Allows to trace dependent transactions. The first argument is an array of transaction objects (from, to, gas, gasPrice, value, data).Parameters
1. Transaction Call Array
From Address
The address the transaction is sent from
Example:Â
0x12345...
To Address
The address the transaction is directed to
Example:Â
0x12345...
Gas Hex
Integer of the gas provided for the transaction execution
Example:Â
0xff
Gas Price Hex
Integer of the
gasPrice
used for each paid gasExample:Â
0xff
Value Hex
Integer of the value sent with this transaction
Example:Â
0xff
Data Bytes
Hash of the method signature and encoded parameters
Example:Â
0x00000...
2. Trace Type Array String[]
An array of desired traces, which can be one of the following:
vmTrace
to get a full trace of the virtual machine's state during the execution of the given of given transaction, including for any subcells;trace
to get the basic trace of the given transaction;stateDiff
to get information on altered Ethereum state due to execution of the given transaction.
Example:Â
["trace"]
3. Block Number Quantity or Tag
Hex block number, or the tag
latest
, earliest
, pending
, finalized
or safe
Example:Â
latest or pending