Skip to content

Commit

Permalink
Add LUKSO chainID support
Browse files Browse the repository at this point in the history
Issue described in:
Uniswap#106
  • Loading branch information
blazejkrzak authored Jan 29, 2024
1 parent 5365ae4 commit 3de5a52
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export enum ChainId {
BNB = 56,
AVALANCHE = 43114,
BASE_GOERLI = 84531,
BASE = 8453
BASE = 8453,
LUKSO = 42
}

export const SUPPORTED_CHAINS = [
Expand All @@ -37,7 +38,8 @@ export const SUPPORTED_CHAINS = [
ChainId.BNB,
ChainId.AVALANCHE,
ChainId.BASE,
ChainId.BASE_GOERLI
ChainId.BASE_GOERLI,
ChainId.LUKSO
] as const
export type SupportedChainsType = typeof SUPPORTED_CHAINS[number]

Expand All @@ -49,5 +51,6 @@ export enum NativeCurrencyName {
GNOSIS = 'XDAI',
MOONBEAM = 'GLMR',
BNB = 'BNB',
AVAX = 'AVAX'
AVAX = 'AVAX',
LUKSO = 'LYX'
}

0 comments on commit 3de5a52

Please sign in to comment.