diff --git a/src/utils.js b/src/utils.js index 81b2a41..7b21fde 100644 --- a/src/utils.js +++ b/src/utils.js @@ -92,7 +92,7 @@ function getMainnetTokens() { Object.entries(tokens).map(([currency, data]) => { if (currency !== 'eth') { tokenAddresses.push(data.tokenAddress) - currencyLookup[data.tokenAddress] = currency + currencyLookup[data.tokenAddress.toLowerCase()] = currency } }) return { tokenAddresses, currencyLookup }