|
91 | 91 | blobGasUsed*: Opt[Quantity] # EIP-4844 |
92 | 92 | excessBlobGas*: Opt[Quantity] # EIP-4844 |
93 | 93 | parentBeaconBlockRoot*: Opt[Hash32] # EIP-4788 |
94 | | - requestsRoot*: Opt[Hash32] # EIP-7685 |
| 94 | + requestsHash*: Opt[Hash32] # EIP-7685 |
95 | 95 |
|
96 | 96 | WithdrawalObject* = object |
97 | 97 | index*: Quantity |
|
155 | 155 |
|
156 | 156 | TransactionObject* = ref object # A transaction object, or null when no transaction was found: |
157 | 157 | hash*: Hash32 # hash of the transaction. |
158 | | - nonce*: Quantity # TODO: Is int? the number of transactions made by the sender prior to this one. |
| 158 | + nonce*: Quantity # the number of transactions made by the sender prior to this one. |
159 | 159 | blockHash*: Opt[Hash32] # hash of the block where this transaction was in. null when its pending. |
160 | 160 | blockNumber*: Opt[Quantity] # block number where this transaction was in. null when its pending. |
161 | 161 | transactionIndex*: Opt[Quantity] # integer of the transactions index position in the block. null when its pending. |
|
189 | 189 | effectiveGasPrice*: Quantity # The sum of the base fee and tip paid per unit of gas. |
190 | 190 | gasUsed*: Quantity # the amount of gas used by this specific transaction alone. |
191 | 191 | contractAddress*: Opt[Address] # the contract address created, if the transaction was a contract creation, otherwise null. |
192 | | - logs*: seq[LogObject] # TODO: See Wiki for details. list of log objects, which this transaction generated. |
| 192 | + logs*: seq[LogObject] # list of log objects, which this transaction generated. |
193 | 193 | logsBloom*: Bytes256 # bloom filter for light clients to quickly retrieve related logs. |
194 | 194 | `type`*: Opt[Quantity] # integer of the transaction type, 0x0 for legacy transactions, 0x1 for access list types, 0x2 for dynamic fees. |
195 | 195 | root*: Opt[Hash32] # 32 bytes of post-transaction stateroot (pre Byzantium) |
|
0 commit comments