Skip to content

Commit

Permalink
fix: trim token symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKheops committed Oct 19, 2023
1 parent 9a3e764 commit 6e1153d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fetch-external/steps/fetchErc20TokenSymbols.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const updateTokenCache = async (
tokenCache.push({
chainId,
contractAddress: contractAddress.toLowerCase(),
symbol,
symbol: symbol.trim(),
decimals,
})
} catch (err) {
Expand Down

0 comments on commit 6e1153d

Please sign in to comment.