diff --git a/lib/util/newCachedRoutesRolloutPercent.ts b/lib/util/newCachedRoutesRolloutPercent.ts index 2fb2e3181..b28353336 100644 --- a/lib/util/newCachedRoutesRolloutPercent.ts +++ b/lib/util/newCachedRoutesRolloutPercent.ts @@ -5,30 +5,30 @@ import { ChainId } from '@uniswap/sdk-core' // production nets depending on revenue/quote traffic volume, if it's medium/high 1%, otherwise super low traffic (< 100 quotes per 5 minutes) 100% // so zora and blast go to 100% directly. rootstock is not supported by uniswap labs product or protocol layer, go to 100% directly. export const NEW_CACHED_ROUTES_ROLLOUT_PERCENT: { [chain in ChainId]: number } = { - [ChainId.MAINNET]: 5, + [ChainId.MAINNET]: 10, [ChainId.GOERLI]: 100, [ChainId.SEPOLIA]: 100, - [ChainId.OPTIMISM]: 5, + [ChainId.OPTIMISM]: 10, [ChainId.OPTIMISM_GOERLI]: 100, [ChainId.OPTIMISM_SEPOLIA]: 100, - [ChainId.ARBITRUM_ONE]: 5, + [ChainId.ARBITRUM_ONE]: 10, [ChainId.ARBITRUM_GOERLI]: 100, [ChainId.ARBITRUM_SEPOLIA]: 100, - [ChainId.POLYGON]: 5, + [ChainId.POLYGON]: 10, [ChainId.POLYGON_MUMBAI]: 100, - [ChainId.CELO]: 5, + [ChainId.CELO]: 10, [ChainId.CELO_ALFAJORES]: 100, - [ChainId.GNOSIS]: 5, - [ChainId.MOONBEAM]: 5, - [ChainId.BNB]: 5, - [ChainId.AVALANCHE]: 5, + [ChainId.GNOSIS]: 10, + [ChainId.MOONBEAM]: 10, + [ChainId.BNB]: 10, + [ChainId.AVALANCHE]: 10, [ChainId.BASE_GOERLI]: 100, - [ChainId.BASE]: 5, + [ChainId.BASE]: 10, [ChainId.ZORA]: 100, [ChainId.ZORA_SEPOLIA]: 100, [ChainId.ROOTSTOCK]: 100, [ChainId.BLAST]: 100, - [ChainId.ZKSYNC]: 5, - [ChainId.WORLDCHAIN]: 5, + [ChainId.ZKSYNC]: 10, + [ChainId.WORLDCHAIN]: 10, [ChainId.ASTROCHAIN_SEPOLIA]: 100, }