Skip to content
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.

Commit

Permalink
Merge pull request #534 from JunichiSugiura/hotfix/dollar-symbol
Browse files Browse the repository at this point in the history
LL-3664 Unify dollar symbol convention
  • Loading branch information
gre authored Oct 19, 2020
2 parents f4a5c05 + 45db7c9 commit e5b613d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/cryptoassets/src/fiats.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ function fiat(name, ticker, defaultSymbol, defaultMagnitude): FiatCurrency {

const byTicker: { [key: string]: FiatCurrency } = {
AED: fiat("Emirati Dirham", "AED", "د.إ.", 2),
AUD: fiat("Australian Dollar", "AUD", "$", 2),
AUD: fiat("Australian Dollar", "AUD", "AU$", 2),
BGN: fiat("Bulgarian Lev", "BGN", "лв.", 2),
BHD: fiat("Bahraini Dinar", "BHD", "د.ب.", 3),
BRL: fiat("Brazilian Real", "BRL", "R$", 2),
CAD: fiat("Canadian Dollar", "CAD", "$", 2),
CAD: fiat("Canadian Dollar", "CAD", "CA$", 2),
CHF: fiat("Swiss Franc", "CHF", "CHF", 2),
CLP: fiat("Chilean Peso", "CLP", "$", 2),
CNY: fiat("Yuan or Chinese Renminbi", "CNY", "¥", 2),
Expand All @@ -53,14 +53,14 @@ const byTicker: { [key: string]: FiatCurrency } = {
MYR: fiat("Malaysian Ringgit", "MYR", "RM", 2),
NGN: fiat("Nigerian Naira", "NGN", "₦", 2),
NOK: fiat("Norwegian Krone", "NOK", "kr", 2),
NZD: fiat("New Zealand Dollar", "NZD", "$", 2),
NZD: fiat("New Zealand Dollar", "NZD", "NZ$", 2),
PHP: fiat("Philippine Peso", "PHP", "₱", 2),
PKR: fiat("Pakistani Rupee", "PKR", "₨", 2),
PLN: fiat("Polish Złoty", "PLN", "zł", 2),
RON: fiat("Romanian Leu", "RON", "lei", 2),
RUB: fiat("Russian Rouble", "RUB", "₽", 2),
SEK: fiat("Swedish Krona", "SEK", "kr", 2),
SGD: fiat("Singapore Dollar", "SGD", "$", 2),
SGD: fiat("Singapore Dollar", "SGD", "S$", 2),
THB: fiat("Thai Baht", "THB", "฿", 2),
TRY: fiat("Turkish Lira", "TRY", "TL", 2),
TZS: fiat("Tanzanian Shilling", "TZS", "TSh", 2),
Expand Down

0 comments on commit e5b613d

Please sign in to comment.