Skip to content

Commit

Permalink
feat: add nation to default tokens list (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina committed Dec 26, 2023
1 parent 64902dc commit 7e3a0fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/constants/routing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
DAI_OPTIMISM,
DAI_POLYGON,
ETH_BSC,
NATION_MAINNET,
nativeOnChain,
OP,
PORTAL_ETH_CELO,
Expand Down Expand Up @@ -67,10 +68,10 @@ const WRAPPED_NATIVE_CURRENCIES_ONLY: ChainTokenList = Object.fromEntries(
export const COMMON_BASES: ChainCurrencyList = {
[ChainId.MAINNET]: [
nativeOnChain(ChainId.MAINNET),
NATION_MAINNET,
DAI,
USDC_MAINNET,
USDT,
WBTC,
WRAPPED_NATIVE_CURRENCY[ChainId.MAINNET] as Token,
],
[ChainId.GOERLI]: [nativeOnChain(ChainId.GOERLI), WRAPPED_NATIVE_CURRENCY[ChainId.GOERLI] as Token],
Expand Down
7 changes: 7 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ export const USDC_MAINNET = new Token(
'USDC',
'USD//C'
)
export const NATION_MAINNET = new Token(
ChainId.MAINNET,
'0x333A4823466879eeF910A04D473505da62142069',
18,
'NATION',
'Nation3'
)
const USDC_GOERLI = new Token(ChainId.GOERLI, '0x07865c6e87b9f70255377e024ace6630c1eaa37f', 6, 'USDC', 'USD//C')
const USDC_SEPOLIA = new Token(ChainId.SEPOLIA, '0x6f14C02Fc1F78322cFd7d707aB90f18baD3B54f5', 6, 'USDC', 'USD//C')
export const USDC_OPTIMISM = new Token(
Expand Down

0 comments on commit 7e3a0fa

Please sign in to comment.