Skip to content

Commit

Permalink
remove Sepolia and Lisk
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Dovgopoly committed Nov 11, 2024
1 parent 0e9b17c commit 5084200
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
7 changes: 7 additions & 0 deletions .idea/prettier.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ export type BigintIsh = JSBI | bigint | string

export enum ChainId {
XDC = 50,
AXDC = 51,
SEPOLIA = 11155111,
LISK = 1135
AXDC = 51
}

export enum TradeType {
Expand All @@ -23,8 +21,7 @@ export enum Rounding {

export const FACTORY_ADDRESS: { [key: string]: string } = {
[ChainId.XDC]: '0x9fAb572F75008A42c6aF80b36Ab20C76a38ABc4B',
[ChainId.AXDC]: '0xe011699276055eDAd1E3fd2F98667068f7c8814A',
[ChainId.SEPOLIA]: '0x97989DFf5568F450970d404770f1975056834F93'
[ChainId.AXDC]: '0xe011699276055eDAd1E3fd2F98667068f7c8814A'
}

export const INIT_CODE_HASH = '0xa6d23746864049fd29713adbbf145eeecdddd2f9a91be053c057394dd5d7d9ad'
Expand Down
10 changes: 1 addition & 9 deletions src/entities/token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,5 @@ export function currencyEquals(currencyA: Currency, currencyB: Currency): boolea

export const WETH = {
[ChainId.XDC]: new Token(ChainId.XDC, '0x951857744785E80e2De051c32EE7b25f9c458C42', 18, 'WXDC', 'Wrapped XDC'),
[ChainId.AXDC]: new Token(ChainId.AXDC, '0xE99500AB4A413164DA49Af83B9824749059b46ce', 18, 'WXDC', 'Wrapped XDC'),
[ChainId.SEPOLIA]: new Token(
ChainId.SEPOLIA,
'0xD0dF82dE051244f04BfF3A8bB1f62E1cD39eED92',
18,
'WETH',
'Wrapped ETH'
),
[ChainId.LISK]: new Token(ChainId.LISK, '0x4200000000000000000000000000000000000006', 18, 'WETH', 'Wrapped ETH')
[ChainId.AXDC]: new Token(ChainId.AXDC, '0xE99500AB4A413164DA49Af83B9824749059b46ce', 18, 'WXDC', 'Wrapped XDC')
}

0 comments on commit 5084200

Please sign in to comment.