diff --git a/src/constants/chains.ts b/src/constants/chains.ts index 87d90235d..a3d5c1a0d 100644 --- a/src/constants/chains.ts +++ b/src/constants/chains.ts @@ -91,7 +91,6 @@ export const L1_CHAIN_IDS = [ SupportedChainId.POLYGON_MUMBAI, SupportedChainId.CELO, SupportedChainId.CELO_ALFAJORES, - SupportedChainId.BASE, ] as const export type SupportedL1ChainId = typeof L1_CHAIN_IDS[number] diff --git a/src/hooks/transactions/updater.tsx b/src/hooks/transactions/updater.tsx index e50f7e478..6aec0e3c9 100644 --- a/src/hooks/transactions/updater.tsx +++ b/src/hooks/transactions/updater.tsx @@ -35,6 +35,7 @@ const RETRY_OPTIONS_BY_CHAIN_ID: { [chainId: number]: RetryOptions } = { [SupportedChainId.ARBITRUM_RINKEBY]: { n: 10, minWait: 250, maxWait: 1000 }, [SupportedChainId.OPTIMISM_GOERLI]: { n: 10, minWait: 250, maxWait: 1000 }, [SupportedChainId.OPTIMISM]: { n: 10, minWait: 250, maxWait: 1000 }, + [SupportedChainId.BASE]: { n: 10, minWait: 250, maxWait: 1000 }, } const DEFAULT_RETRY_OPTIONS: RetryOptions = { n: 1, minWait: 0, maxWait: 0 }