diff --git a/src/templates/lists/erc20_tokens_sepolia.json b/src/templates/lists/erc20_tokens_sepolia.json index 9b09126b5e..5f192abb82 100644 --- a/src/templates/lists/erc20_tokens_sepolia.json +++ b/src/templates/lists/erc20_tokens_sepolia.json @@ -14,6 +14,27 @@ "name": "Dai Stablecoin", "symbol": "DAI", "decimals": 18 + }, + { + "chainId": 11155111, + "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "name": "Uniswap", + "symbol": "UNI", + "decimals": 18 + }, + { + "chainId": 11155111, + "address": "0x4f7a67464b5976d7547c860109e4432d50afb38e", + "name": "METH", + "symbol": "METH", + "decimals": 18 + }, + { + "chainId": 11155111, + "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "name": "USDC (test)", + "symbol": "USDC", + "decimals": 18 } ] } diff --git a/test/connectors/uniswap/uniswap.test.ts b/test/connectors/uniswap/uniswap.test.ts index c6dbe51153..3fcddb7239 100644 --- a/test/connectors/uniswap/uniswap.test.ts +++ b/test/connectors/uniswap/uniswap.test.ts @@ -31,12 +31,12 @@ const WETH = new Token( const DAI = new Token( 11155111, - '0xff34b3d4aee8ddcd6f9afffb6fe49bd371b8a357', + '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984', 18, - 'DAI' + 'UNI' ); -const DAI_WETH_POOL_ADDRESS = '0x1c9d93e574be622821398e3fe677e3a279f256f7'; +const DAI_WETH_POOL_ADDRESS = '0x287b0e934ed0439e2a7b1d5f0fc25ea2c24b64f7'; const POOL_SQRT_RATIO_START = encodeSqrtRatioX96(100e6, 100e18); const POOL_TICK_CURRENT = TickMath.getTickAtSqrtRatio(POOL_SQRT_RATIO_START); const POOL_LIQUIDITY = 0;