Skip to content

Commit

Permalink
(fix) add more sepolia tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
fengtality committed Jul 25, 2024
1 parent d602607 commit 0ea7b89
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions src/templates/lists/erc20_tokens_sepolia.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
]
}
6 changes: 3 additions & 3 deletions test/connectors/uniswap/uniswap.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0ea7b89

Please sign in to comment.