You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns traces matching the specified filter. The response is limited to 10000 traces per response. <CreditCostnetwork="evm_trace"method="trace_filter" />
3
+
Returns traces matching the specified filter. The block range is limited to 100 blocks per query (the difference between `fromBlock` and `toBlock`). <CreditCostnetwork="evm_trace"method="trace_filter" />
|`callType`| Whether the transaction is `call` or `create`. |
65
-
|`from`| Address of the transaction sender. |
66
-
|`gas`| Gas provided by sender. |
67
-
|`input`| Transaction data. |
68
-
|`to`| Target of the transaction. |
69
-
|`value`| Value transferred in the transaction. |
63
+
| - `creationMethod`| Opcode used during contract creation: `create` or `create2`. Returned for `create` operations. |
64
+
| - `callType`| Whether the transaction is `call`, `staticcall`, or `delegatecall`. Returned for `call` operations. |
65
+
| - `from`| Address of the transaction sender. |
66
+
| - `gas`| Gas provided by sender. |
67
+
| - `input`| Transaction data. Returned for `call` operations. |
68
+
| - `init`| Contract initialization code. Returned for `create` operations. |
69
+
| - `to`| Target of the transaction. Returned for `call` operations. |
70
+
| - `value`| Value transferred in the transaction. |
71
+
|`blockHash`| Hash of the block containing this trace. |
72
+
|`blockNumber`| Block number containing this trace. |
70
73
|`result`| Transaction result. |
71
-
|`gasUsed`| Gas used by the transaction. Includes any refunds of unused gas. |
72
-
|`output`| Return value of the contract call. Contains only the actual value sent by a `RETURN` operation. If a `RETURN` was not executed, the output is empty bytes. |
73
-
|`subTraces`| Traces of contract calls made by the transaction. |
74
+
| - `address`| Address of the newly created contract. Returned for `create` operations. |
75
+
| - `code`| Bytecode of the newly created contract. Returned for `create` operations. |
76
+
| - `gasUsed`| Gas used by the transaction. Includes any refunds of unused gas. |
77
+
| - `output`| Return value of the contract call. Contains only the actual value sent by a `RETURN` operation. If a `RETURN` was not executed, the output is empty bytes. Returned for `call` operations. |
78
+
|`subtraces`| Number of sub-traces (nested contract calls) made by the transaction. |
74
79
|`traceAddress`| Tree list address of where the call occurred, address of the parents, and order of the current sub call. |
75
-
|`transactionHash`| Hash of the transaction. |
76
-
|`transactionPosition`| Transaction position. |
77
-
|`type`| Whether the transaction is a `CALL` or `CREATE` series operation. |
78
-
80
+
|`transactionHash`| Hash of the transaction. |
81
+
|`transactionPosition`| Transaction position within the block. |
82
+
|`type`| Whether the transaction is a `call` or `create` operation. |
79
83
80
84
## `stateDiff`
81
85
82
86
Displays state changes in the requested block for each transaction, represented as a map of accounts to an object. Lists
83
87
the balance, code, nonce, and storage changes from immediately before the transaction to after the transaction. For the `key:value` pairs:
84
88
85
-
-`+` indicates the field didn’t exist before and now has the specified value.
89
+
-`+` indicates the field didn't exist before and now has the specified value.
|`gasUsed`| Gas used by the transaction. Includes any refunds of unused gas. |
60
60
|`output`| Return value of the contract call. Contains only the actual value sent by a `RETURN` operation. If a `RETURN` was not executed, the output is empty bytes. |
61
-
|`subTraces`| Traces of contract calls made by the transaction. |
61
+
|`subtraces`| Traces of contract calls made by the transaction. |
62
62
|`traceAddress`| Tree list address of where the call occurred, address of the parents, and order of the current sub call. |
0 commit comments