fix: update gas limit for 16 inputs

This commit is contained in:
nikdementev 2021-09-28 19:46:17 +03:00
parent 7d72a7e92f
commit bb9d6de05f
No known key found for this signature in database
GPG Key ID: 769B05D57CF16FE2
1 changed files with 2 additions and 2 deletions

View File

@ -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]: {