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
|`callType`| Whether the transaction is `call` or `create`. |
62
-
|`from`| Address of the transaction sender. |
63
-
|`gas`| Gas provided by sender. |
64
-
|`input`| Transaction data. |
65
-
|`to`| Target of the transaction. |
66
-
|`value`| Value transferred in the transaction. |
61
+
| - `creationMethod`| Opcode used during contract creation: `create` or `create2`. Returned for `create` operations. |
62
+
| - `callType`| Whether the transaction is `call`, `staticcall`, `delegatecall`. Returned for `call` operations. |
63
+
| - `from`| Address of the transaction sender. |
64
+
| - `gas`| Gas provided by sender. |
65
+
| - `input`| Transaction data. Returned for `call` operations. |
66
+
| - `init`| Contract initialization code. Returned for `create` operations. |
67
+
| - `to`| Target of the transaction. Returned for `call` operations. |
68
+
| - `value`| Value transferred in the transaction. |
69
+
|`blockHash`| Hash of the block containing this trace. |
70
+
|`blockNumber`| Block number containing this trace. |
67
71
|`result`| Transaction result. |
68
-
|`gasUsed`| Gas used by the transaction. Includes any refunds of unused gas. |
69
-
|`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. |
70
-
|`subTraces`| Traces of contract calls made by the transaction. |
72
+
| - `address`| Address of the newly created contract. Returned for `create` operations. |
73
+
| - `code`| Bytecode of the newly created contract. Returned for `create` operations. |
74
+
| - `gasUsed`| Gas used by the transaction. Includes any refunds of unused gas. |
75
+
| - `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. |
76
+
|`subtraces`| Number of sub-traces (nested contract calls) made by the transaction. |
71
77
|`traceAddress`| Tree list address of where the call occurred, address of the parents, and order of the current sub call. |
72
-
|`transactionHash`| Hash of the tansaction. |
73
-
|`transactionPosition`| Transaction position. |
74
-
|`type`| Whether the transaction is a `call` or `create` series operation. |
75
-
|`creationMethod`| Opcode used during contract creation `create` or `create2`. |
76
-
77
-
<!-- Not yet tested to see position of creationMethod in response body -->
78
+
|`transactionHash`| Hash of the transaction. |
79
+
|`transactionPosition`| Transaction position within the block. |
80
+
|`type`| Whether the transaction is a `call` or `create` operation. |
|`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