diff --git a/src/providers/token-provider.ts b/src/providers/token-provider.ts index 00e12bb04..c84f40e2a 100644 --- a/src/providers/token-provider.ts +++ b/src/providers/token-provider.ts @@ -393,7 +393,7 @@ export const DAI_BASE_SEPOLIA = new Token( 18, 'DAI', 'Dai Stablecoin' -) +); //polygon mumbai tokens export const WMATIC_POLYGON_MUMBAI = new Token( diff --git a/src/util/chains.ts b/src/util/chains.ts index fe062248a..2890aa57e 100644 --- a/src/util/chains.ts +++ b/src/util/chains.ts @@ -45,7 +45,7 @@ export const V2_SUPPORTED = [ ChainId.AVALANCHE, ChainId.MONAD_TESTNET, ChainId.UNICHAIN_SEPOLIA, - ChainId.UNICHAIN + ChainId.UNICHAIN, ]; export const V4_SUPPORTED = [ChainId.SEPOLIA]; diff --git a/test/integ/routers/alpha-router/alpha-router.integration.test.ts b/test/integ/routers/alpha-router/alpha-router.integration.test.ts index 0f5ea7096..ad7f8db77 100644 --- a/test/integ/routers/alpha-router/alpha-router.integration.test.ts +++ b/test/integ/routers/alpha-router/alpha-router.integration.test.ts @@ -130,7 +130,7 @@ import { const FORK_BLOCK = 20444945; const UNIVERSAL_ROUTER_ADDRESS_V1_2 = UNIVERSAL_ROUTER_ADDRESS_BY_CHAIN(UniversalRouterVersion.V1_2, 1); const SLIPPAGE = new Percent(15, 100); // 5% or 10_000? -const LARGE_SLIPPAGE = new Percent(45, 100); // 5% or 10_000? +const LARGE_SLIPPAGE = new Percent(75, 100); // 5% or 10_000? // Those are the worst deviation (we intend to keep them low and strict) tested manually with FORK_BLOCK = 18222746 // We may need to tune them if we change the FORK_BLOCK @@ -2888,7 +2888,6 @@ describe('alpha router integration', () => { const tokenInAndTokenOut = [ [BULLET_WITHOUT_TAX, WETH9[ChainId.MAINNET]!], [WETH9[ChainId.MAINNET]!, BULLET_WITHOUT_TAX], - [WETH9[ChainId.MAINNET]!, DFNDR_WITHOUT_TAX], ]; tokenInAndTokenOut.forEach(([tokenIn, tokenOut]) => {