From c25ef3e72409e0a84aa43b480a6eecaa05e70f3e Mon Sep 17 00:00:00 2001 From: Nathan Seva Date: Wed, 17 Jul 2024 11:28:48 -0500 Subject: [PATCH] ETH for bsc WETH --- src/store/helpers/tokenSymbol.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/helpers/tokenSymbol.ts b/src/store/helpers/tokenSymbol.ts index 0018513b..9fbc782e 100644 --- a/src/store/helpers/tokenSymbol.ts +++ b/src/store/helpers/tokenSymbol.ts @@ -3,5 +3,6 @@ export function getMASSASymbol(symbol: string) { } export function getEVMSymbol(symbol: string) { // removes any ". + alphanumeric " from string + if (symbol === 'WETH.b') return 'ETH'; return symbol.replace(/\.[^.]+$/, ''); }