We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0539da2 commit c3f8403Copy full SHA for c3f8403
src/app/earn/constants.ts
@@ -5,7 +5,12 @@ import { ETH, Token } from '@/constants/tokens'
5
6
function createToken(chainId: number, symbol: string): Token {
7
const token = getTokenByChainAndSymbol(chainId, symbol)!
8
- return { ...token, image: token.logoURI }
+
9
+ return {
10
+ ...token,
11
+ symbol: token.symbol.replace('₮0', 'T'), // handle special case of USD₮0 on arbitrum
12
+ image: token.logoURI,
13
+ }
14
}
15
16
export function getCurrencyTokens(
@@ -29,7 +34,7 @@ export function getCurrencyTokens(
29
34
createToken(arbitrum.id, 'WETH'),
30
35
createToken(arbitrum.id, 'WBTC'),
31
36
createToken(arbitrum.id, 'USDC'),
32
- createToken(arbitrum.id, 'USDT'),
37
+ createToken(arbitrum.id, 'USD₮0'),
33
38
]
39
case base.id:
40
return [
0 commit comments