Skip to content

Commit

Permalink
Merge pull request #31 from 0xArbi/arb/fix-coin-gecko-ids
Browse files Browse the repository at this point in the history
force coin gecko IDs to be undefined
  • Loading branch information
pyramation committed Feb 23, 2023
2 parents 74871d5 + f20a4a8 commit eac0f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/keplr/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const chainRegistryChainToKeplr = (
coinDecimals: currency.denom_units.filter(
(denomUnit: { denom: string }) => denomUnit.denom === currency.display
)[0]?.exponent,
coinGeckoId: currency.coingecko_id,
coinGeckoId: currency.coingecko_id || undefined,
coinImageUrl: currency.logo_URIs?.svg ?? currency.logo_URIs?.png
};
});
Expand Down

0 comments on commit eac0f55

Please sign in to comment.