fix: increase quote gas overrides on arbitrum (#2614)

This commit is contained in:
Justin Domingue 2021-10-14 14:22:26 -04:00 committed by GitHub
parent 93b79be1b6
commit aea2bca775
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@ import { useActiveWeb3React } from './web3'
const QUOTE_GAS_OVERRIDES: { [chainId: number]: number } = {
[SupportedChainId.OPTIMISM]: 6_000_000,
[SupportedChainId.OPTIMISTIC_KOVAN]: 6_000_000,
[SupportedChainId.ARBITRUM_ONE]: 16_000_000,
[SupportedChainId.ARBITRUM_ONE]: 26_000_000,
}
const DEFAULT_GAS_QUOTE = 2_000_000