Skip to content

Commit

Permalink
fix(coin): add coin keys again (#81)
Browse files Browse the repository at this point in the history
they were removed accidentally
  • Loading branch information
mathiasmoeller committed Jul 7, 2022
1 parent deef86d commit 4fc2b9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,7 @@ export const defaultCoins: Array<Coin> = basicCoins.map((coin) => {
decimals: token.decimals,
symbol: token.symbol ?? coin.key,
chainId: parseInt(chainId), // Object.entries, Object.keys etc. only return keys as strings. Therefore, we have to parse them here
coinKey: coin.key,
name: token.name ?? coin.key,
logoURI: coin.logoURI,
}
Expand Down

0 comments on commit 4fc2b9f

Please sign in to comment.