diff --git a/Thirdweb/Thirdweb.Transactions/ThirdwebTransaction.cs b/Thirdweb/Thirdweb.Transactions/ThirdwebTransaction.cs index 419350cd..cd3abb9e 100644 --- a/Thirdweb/Thirdweb.Transactions/ThirdwebTransaction.cs +++ b/Thirdweb/Thirdweb.Transactions/ThirdwebTransaction.cs @@ -269,7 +269,7 @@ public static async Task EstimateGasLimit(ThirdwebTransaction transa } else { - var hex = await rpc.SendRequestAsync("eth_estimateGas", transaction.Input, "latest").ConfigureAwait(false); + var hex = await rpc.SendRequestAsync("eth_estimateGas", transaction.Input).ConfigureAwait(false); return new HexBigInteger(hex).Value * 10 / 7; } }