Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ You can search for the transaction on a block explorer such as [Sepolia Ethersca
To change default values, update the `signer.sendTransaction` method to include an `estimateGas` result:

```javascript title="eip1559_tx.js"
const limit = provider.estimateGas({
const limit = await provider.estimateGas({
from: signer.address,
to: "<to_address_goes_here>",
value: ethers.utils.parseUnits("0.001", "ether"),
Expand Down
Loading