Skip to content

Commit a6a026f

Browse files
committed
enabling v4,v2 and mixed for new chains
1 parent eb1ae39 commit a6a026f

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

lib/handlers/injector-sor.ts

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,13 +475,33 @@ export abstract class InjectorSOR<Router, QueryParams> extends Injector<
475475

476476
const v2Supported = [
477477
ChainId.MAINNET,
478+
ChainId.ARBITRUM_ONE,
479+
ChainId.BASE,
480+
ChainId.POLYGON,
481+
ChainId.OPTIMISM,
482+
ChainId.AVALANCHE,
483+
ChainId.BNB
478484
]
479485

480486
const v4Supported = [
481487
ChainId.MAINNET,
488+
ChainId.ARBITRUM_ONE,
489+
ChainId.BASE,
490+
ChainId.POLYGON,
491+
ChainId.OPTIMISM,
492+
ChainId.AVALANCHE,
493+
ChainId.BNB
482494
]
483495

484-
const mixedSupported = [ChainId.MAINNET]
496+
const mixedSupported = [
497+
ChainId.MAINNET,
498+
ChainId.ARBITRUM_ONE,
499+
ChainId.BASE,
500+
ChainId.POLYGON,
501+
ChainId.OPTIMISM,
502+
ChainId.AVALANCHE,
503+
ChainId.BNB
504+
]
485505

486506
const cachedRoutesCacheInvalidationFixRolloutPercentage = NEW_CACHED_ROUTES_ROLLOUT_PERCENT[chainId]
487507

0 commit comments

Comments
 (0)