@@ -210,7 +210,7 @@ _property: transactionRequest.gasLimit => [[BigNumber]] | Promise<[[BigNumber]]>
210
210
The maximum amount of gas this transaction is permitted to use.
211
211
212
212
If left unspecified, ethers will use ``estimateGas`` to determine the value
213
- to use. For transactions with unpredicatable gas estiamtes , this may be required
213
+ to use. For transactions with unpredicatable gas estimates , this may be required
214
214
to specify explicitly.
215
215
216
216
_property: transactionRequest.gasPrice => [[BigNumber]] | Promise<[[BigNumber]]>
@@ -221,7 +221,7 @@ if ``maxFeePerGas`` or ``maxPriorityFeePerGas`` is given.
221
221
222
222
_property: transactionRequest.maxFeePerGas => [[BigNumber]] | Promise<[[BigNumber]]>
223
223
The maximum price (in wei) per unit of gas this transaction will pay for the
224
- [[link-eip-1559]] base fee.
224
+ combined [[link-eip-1559]] block's base fee and this transaction's priority fee.
225
225
226
226
Most developers should leave this unspecified and use the default value that
227
227
ethers determines from the network.
@@ -230,9 +230,10 @@ This may not be specified for transactions with ``type`` set to ``0`` or if ``ga
230
230
is specified..
231
231
232
232
_property: transactionRequest.maxPriorityFeePerGas => [[BigNumber]] | Promise<[[BigNumber]]>
233
- The price (in wei) per unit of gas this transaction will pay for the
234
- [[link-eip-1559]] priority fee. This is **included in** the ``maxFeePerGass``,
235
- so this will **not affect** the total maximum cost set with ``maxFeePerGas``.
233
+ The price (in wei) per unit of gas this transaction will allow in addition to
234
+ the [[link-eip-1559]] block's base fee to bribe miners into giving this transaction
235
+ priority. This is **included in** the ``maxFeePerGas``, so this will **not affect**
236
+ the total maximum cost set with ``maxFeePerGas``.
236
237
237
238
Most developers should leave this unspecified and use the default value that
238
239
ethers determines from the network.
0 commit comments