You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(token-lists): drop tokens whose chainId is absent from viem/chains
@uniswap/default-token-list still ships tokens for Ropsten (chainId 3)
and Rinkeby (chainId 4), both removed from viem/chains. combineTokenLists
caught the buildNativeToken throw but logged it via console.error before
ignoring it, producing noise on every cold load.
Extend the existing safeParse filter to also drop tokens whose chainId
is not present in viem/chains, mirroring the existing non-EVM drop. This
removes the throw at source and keeps tokensByChainId free of
unreachable buckets.
Closes#465
0 commit comments