From 8f9dcbe46a3f2a6f1ff9465961c6dd03712d0ad9 Mon Sep 17 00:00:00 2001 From: Alain Nicolas Date: Thu, 19 Dec 2024 09:39:00 +0100 Subject: [PATCH] fix: Gas fees estimate is too high (#276) --- packages/linea-ens-app/package.json | 4 ++-- .../@molecules/TransactionDialogManager/stage/query.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/linea-ens-app/package.json b/packages/linea-ens-app/package.json index c305e9069..439f89591 100644 --- a/packages/linea-ens-app/package.json +++ b/packages/linea-ens-app/package.json @@ -1,6 +1,6 @@ { "name": "ens-app-v2", - "version": "0.1.123", + "version": "0.1.124", "scripts": { "dev": "NODE_NO_WARNINGS=1 next dev", "dev:https": "next-dev-https --https --qr --port 3000", @@ -209,4 +209,4 @@ "@wagmi/core@2.6.5": "patches/@wagmi__core@2.6.5.patch" } } -} \ No newline at end of file +} diff --git a/packages/linea-ens-app/src/components/@molecules/TransactionDialogManager/stage/query.ts b/packages/linea-ens-app/src/components/@molecules/TransactionDialogManager/stage/query.ts index 5620f588d..5ba88b3ad 100644 --- a/packages/linea-ens-app/src/components/@molecules/TransactionDialogManager/stage/query.ts +++ b/packages/linea-ens-app/src/components/@molecules/TransactionDialogManager/stage/query.ts @@ -211,7 +211,7 @@ export const createTransactionRequestQueryFn = account: connectorClient.account, data: transactionRequest.data, gas: gasLimit, - parameters: ['fees', 'nonce', 'type'], + parameters: ['nonce', 'type'], ...('value' in transactionRequest ? { value: transactionRequest.value } : {}), })