Skip to content

Commit

Permalink
chore: new cached routes percent 30%
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 committed Nov 1, 2024
1 parent 719ddff commit 1b59ea1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions lib/util/newCachedRoutesRolloutPercent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]: 10,
[ChainId.MAINNET]: 30,
[ChainId.GOERLI]: 100,
[ChainId.SEPOLIA]: 100,
[ChainId.OPTIMISM]: 10,
[ChainId.OPTIMISM]: 30,
[ChainId.OPTIMISM_GOERLI]: 100,
[ChainId.OPTIMISM_SEPOLIA]: 100,
[ChainId.ARBITRUM_ONE]: 10,
[ChainId.ARBITRUM_ONE]: 30,
[ChainId.ARBITRUM_GOERLI]: 100,
[ChainId.ARBITRUM_SEPOLIA]: 100,
[ChainId.POLYGON]: 10,
[ChainId.POLYGON]: 30,
[ChainId.POLYGON_MUMBAI]: 100,
[ChainId.CELO]: 10,
[ChainId.CELO]: 30,
[ChainId.CELO_ALFAJORES]: 100,
[ChainId.GNOSIS]: 10,
[ChainId.MOONBEAM]: 10,
[ChainId.BNB]: 10,
[ChainId.AVALANCHE]: 10,
[ChainId.GNOSIS]: 30,
[ChainId.MOONBEAM]: 30,
[ChainId.BNB]: 30,
[ChainId.AVALANCHE]: 30,
[ChainId.BASE_GOERLI]: 100,
[ChainId.BASE]: 10,
[ChainId.BASE]: 30,
[ChainId.ZORA]: 100,
[ChainId.ZORA_SEPOLIA]: 100,
[ChainId.ROOTSTOCK]: 100,
[ChainId.BLAST]: 100,
[ChainId.ZKSYNC]: 10,
[ChainId.WORLDCHAIN]: 10,
[ChainId.ZKSYNC]: 30,
[ChainId.WORLDCHAIN]: 30,
[ChainId.ASTROCHAIN_SEPOLIA]: 100,
}

0 comments on commit 1b59ea1

Please sign in to comment.