From 2222276c73c84989158242a739513de4c78a7f81 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Mon, 26 Aug 2024 17:33:50 +0530 Subject: [PATCH] Set default gas estimation multiplier to 2 --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 2206b01..f0c5654 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,4 +1,4 @@ export const DENOM = 'alnt'; export const DEFAULT_CHAIN_ID = 'laconic_9000-1'; -export const DEFAULT_GAS_ESTIMATION_MULTIPLIER = 1.5; +export const DEFAULT_GAS_ESTIMATION_MULTIPLIER = 2;