Skip to content

Commit 5741c7f

Browse files
authored
fix(linea): add USDT as a favourite token (#6498)
1 parent ba4edb0 commit 5741c7f

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

libs/common-const/src/tokens.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ export const BTCB_BNB = new TokenWithLogo(
492492

493493
// Linea
494494

495-
// TODO: verify and add more tokens for Linea
496495
export const USDC_LINEA = new TokenWithLogo(
497496
USDC_MAINNET.logoURI,
498497
SupportedChainId.LINEA,
@@ -503,6 +502,16 @@ export const USDC_LINEA = new TokenWithLogo(
503502
'USD Coin',
504503
)
505504

505+
export const USDT_LINEA = new TokenWithLogo(
506+
USDT.logoURI,
507+
SupportedChainId.LINEA,
508+
// https://lineascan.build/address/0xA219439258ca9da29E9Cc4cE5596924745e12B93
509+
'0xa219439258ca9da29e9cc4ce5596924745e12b93',
510+
6,
511+
'USDT',
512+
'Tether USD',
513+
)
514+
506515
// Plasma
507516

508517
// TODO: Verify and add more tokens for Plasma

libs/tokens/src/const/defaultFavoriteTokens.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import {
3131
USDT_AVALANCHE,
3232
USDT_BASE,
3333
USDT_BNB,
34+
USDT_LINEA,
3435
USDT_PLASMA,
3536
USDT_POLYGON,
3637
WBTC,
@@ -120,6 +121,10 @@ export const DEFAULT_FAVORITE_TOKENS: Record<SupportedChainId, TokensMap> = {
120121
DAI_BNB,
121122
BTCB_BNB,
122123
]),
123-
[SupportedChainId.LINEA]: tokensListToMap([WRAPPED_NATIVE_CURRENCIES[SupportedChainId.LINEA], USDC_LINEA]),
124+
[SupportedChainId.LINEA]: tokensListToMap([
125+
WRAPPED_NATIVE_CURRENCIES[SupportedChainId.LINEA],
126+
USDC_LINEA,
127+
USDT_LINEA,
128+
]),
124129
[SupportedChainId.PLASMA]: tokensListToMap([WRAPPED_NATIVE_CURRENCIES[SupportedChainId.PLASMA], USDT_PLASMA]),
125130
}

0 commit comments

Comments
 (0)