Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: new cached routes percent 10% #897

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
}
Loading