From f4ed038389fa04111d486bcc71f5cadfd3bfd363 Mon Sep 17 00:00:00 2001 From: dsudit01 <79417718+dsudit01@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:38:37 -0500 Subject: [PATCH] increase gas estimate --- transactions/signTx/evm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transactions/signTx/evm.ts b/transactions/signTx/evm.ts index a0ed29f3..a3a60cd2 100644 --- a/transactions/signTx/evm.ts +++ b/transactions/signTx/evm.ts @@ -59,7 +59,7 @@ export async function signEVMTransaction( // make sure gas is at least base limit (21,000), then over estimate by 50% const { data: gasLimit, error: gasError } = percentOfAmount( gasEstimate < 21000 ? "21000" : gasEstimate.toString(), - 150 + 165 ); if (gasError) throw gasError;