diff --git a/services/tutorials/ethereum/send-a-transaction/send-a-transaction-ethers.md b/services/tutorials/ethereum/send-a-transaction/send-a-transaction-ethers.md index 8e6729384aa..8e45e15cf4d 100644 --- a/services/tutorials/ethereum/send-a-transaction/send-a-transaction-ethers.md +++ b/services/tutorials/ethereum/send-a-transaction/send-a-transaction-ethers.md @@ -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: "", value: ethers.utils.parseUnits("0.001", "ether"),