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
Copy file name to clipboardExpand all lines: docs/public-networks/reference/api/objects.md
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,21 +223,22 @@ Parameter for [`eth_call`](index.md#eth_call), [`eth_createAccessList`](index.md
223
223
224
224
All transaction call object parameters are optional.
225
225
226
-
| Key | Type | Value |
227
-
|------------------------| :-: | --- |
228
-
|`from`| Data, 20 bytes | Address of the sender. |
229
-
|`to`| Data, 20 bytes | Address of the action receiver. |
230
-
|`gas`| Quantity, Integer | Gas provided by the sender. `eth_call` consumes zero gas, but other executions might need this parameter. `eth_estimateGas` ignores this value. |
231
-
|`gasPrice`| Quantity, Integer | Gas price, in Wei, provided by the sender. The default is `0`. Used only in non-[`EIP1559`](../../concepts/transactions/types.md#eip1559-transactions) transactions. |
232
-
|`maxPriorityFeePerGas`| Quantity, Integer | Maximum fee, in Wei, the sender is willing to pay per gas above the base fee. Can be used only in [`EIP1559` transactions](../../concepts/transactions/types.md#eip1559-transactions). If used, must specify `maxFeePerGas`. |
233
-
|`maxFeePerGas`| Quantity, Integer | Maximum total fee (base fee + priority fee), in Wei, the sender is willing to pay per gas. Can be used only in [`EIP1559` transactions](../../concepts/transactions/types.md#eip1559-transactions). If used, must specify `maxPriorityFeePerGas`. |
234
-
|`maxFeePerBlobGas`| Quantity, Integer | Maximum fee the sender is willing to pay per blob gas. Only used for blob transactions introduced in [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844). |
235
-
|`value`| Quantity, Integer | Value transferred, in Wei. |
236
-
|`data`| Data | Hash of the method signature and encoded parameters. For details, see [Ethereum Contract ABI](https://solidity.readthedocs.io/en/develop/abi-spec.html). Must be equal to `input` if both parameters are provided. |
237
-
|`input`| Data | Hash of the method signature and encoded parameters. For details, see [Ethereum Contract ABI](https://solidity.readthedocs.io/en/develop/abi-spec.html). Must be equal to `data` if both parameters are provided. |
238
-
|`accessList`| Array | List of addresses and storage keys that the transaction plans to access. Used only in non-[`FRONTIER`](../../concepts/transactions/types.md#frontier-transactions) transactions. |
239
-
|`strict`| Tag | Determines if the sender account balance is checked. If `true`, the balance is checked. If `false`, the balance is not checked. If not specified, the balance is checked against the gas parameters if supplied.|
240
-
|`blobVersionedHashes`| Array | List of references to blobs introduced in [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844). |
|`from`| Data, 20 bytes | Address of the sender. |
229
+
|`to`| Data, 20 bytes | Address of the action receiver. |
230
+
|`gas`| Quantity, Integer | Gas provided by the sender. `eth_call` consumes zero gas, but other executions might need this parameter. `eth_estimateGas` ignores this value. |
231
+
|`gasPrice`| Quantity, Integer | Gas price, in Wei, provided by the sender. The default is `0`. Used only in non-[`EIP1559`](../../concepts/transactions/types.md#eip1559-transactions) transactions. |
232
+
|`maxPriorityFeePerGas`| Quantity, Integer | Maximum fee, in Wei, the sender is willing to pay per gas above the base fee. Can be used only in [`EIP1559` transactions](../../concepts/transactions/types.md#eip1559-transactions). If used, must specify `maxFeePerGas`. |
233
+
|`maxFeePerGas`| Quantity, Integer | Maximum total fee (base fee + priority fee), in Wei, the sender is willing to pay per gas. Can be used only in [`EIP1559` transactions](../../concepts/transactions/types.md#eip1559-transactions). If used, must specify `maxPriorityFeePerGas`. |
234
+
|`maxFeePerBlobGas`| Quantity, Integer | Maximum fee the sender is willing to pay per blob gas. Only used for blob transactions introduced in [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844). |
235
+
|`nonce`| Quantity, Integer | Number of transactions made by the sender before this one. The default is the sender's nonce. |
236
+
|`value`| Quantity, Integer | Value transferred, in Wei. |
237
+
|`data`| Data | Hash of the method signature and encoded parameters. For details, see [Ethereum Contract ABI](https://solidity.readthedocs.io/en/develop/abi-spec.html). Must be equal to `input` if both parameters are provided. |
238
+
|`input`| Data | Hash of the method signature and encoded parameters. For details, see [Ethereum Contract ABI](https://solidity.readthedocs.io/en/develop/abi-spec.html). Must be equal to `data` if both parameters are provided. |
239
+
|`accessList`| Array | List of addresses and storage keys that the transaction plans to access. Used only in non-[`FRONTIER`](../../concepts/transactions/types.md#frontier-transactions) transactions. |
240
+
|`strict`| Tag | Determines if the sender account balance is checked. If `true`, the balance is checked. If `false`, the balance is not checked. If not specified, the balance is checked against the gas parameters if supplied. |
241
+
|`blobVersionedHashes`| Array | List of references to blobs introduced in [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844). |
0 commit comments