Skip to content

Commit

Permalink
chore: new cached routes percent 10% (#897)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 authored Nov 1, 2024
1 parent 242132d commit 719ddff
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]: 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,
}

0 comments on commit 719ddff

Please sign in to comment.