From bb9d6de05f9fad4b67c7bdc1851d09170c58b93e Mon Sep 17 00:00:00 2001 From: nikdementev Date: Tue, 28 Sep 2021 19:46:17 +0300 Subject: [PATCH] fix: update gas limit for 16 inputs --- src/constants/variables.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/variables.ts b/src/constants/variables.ts index fae809b..a4bc19e 100644 --- a/src/constants/variables.ts +++ b/src/constants/variables.ts @@ -3,11 +3,11 @@ import { ChainId } from '@/types'; const NETWORKS_INFO: { [chainId in ChainId] } = { [ChainId.MAINNET]: { - gasLimit: BigNumber.from(1000000), + gasLimit: BigNumber.from(1500000), minimumBalance: '0.5', }, [ChainId.GOERLI]: { - gasLimit: BigNumber.from(1000000), + gasLimit: BigNumber.from(1500000), minimumBalance: '0.5', }, [ChainId.OPTIMISM]: {