We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a58521 + 8a2e932 commit f3cc4ebCopy full SHA for f3cc4eb
1 file changed
modules/statics/src/coins.ts
@@ -492,7 +492,7 @@ export function enrichBaseChainFeatures(
492
Object.entries(coinTokenMap).map(([key, coins]) => [
493
key,
494
coins.map((coin) => {
495
- if (coin.isToken || coin.additionalFeatures !== undefined) return coin;
+ if (coin.isToken || coin.additionalFeatures !== undefined || coin.network === undefined) return coin;
496
const features = featuresByNetworkName.get(coin.network.name);
497
return features !== undefined ? { ...coin, additionalFeatures: features } : coin;
498
}),
0 commit comments