2018-12-24 01:14:53 -05:00
|
|
|
export const FiatUnit = Object.freeze({
|
2018-12-29 01:55:14 -05:00
|
|
|
USD: { endPointKey: 'USD', symbol: '$', locale: 'en-US' },
|
2019-01-03 20:46:40 -05:00
|
|
|
AUD: { endPointKey: 'AUD', symbol: '$', locale: 'en-AU' },
|
2019-01-19 19:16:50 -03:00
|
|
|
BRL: { endPointKey: 'BRL', symbol: 'R$', locale: 'pt-BR' },
|
2018-12-29 01:55:14 -05:00
|
|
|
CAD: { endPointKey: 'CAD', symbol: '$', locale: 'en-CA' },
|
2019-02-19 13:17:18 -05:00
|
|
|
CHF: { endPointKey: 'CHF', symbol: 'CHF', locale: 'de-CH' },
|
2019-01-06 23:54:22 -05:00
|
|
|
CZK: { endPointKey: 'CZK', symbol: 'Kč', locale: 'cs-CZ' },
|
2018-12-29 01:55:14 -05:00
|
|
|
CNY: { endPointKey: 'CNY', symbol: '¥', locale: 'zh-CN' },
|
2019-01-06 23:54:22 -05:00
|
|
|
EUR: { endPointKey: 'EUR', symbol: '€', locale: 'en-EN' },
|
|
|
|
GBP: { endPointKey: 'GBP', symbol: '£', locale: 'en-GB' },
|
2019-01-07 21:05:40 -05:00
|
|
|
HRK: { endPointKey: 'HRK', symbol: 'HRK', locale: 'hr-HR' },
|
2019-06-18 20:42:16 +02:00
|
|
|
HUF: { endPointKey: 'HUF', symbol: 'Ft', locale: 'hu-HU' },
|
2018-12-29 01:55:14 -05:00
|
|
|
INR: { endPointKey: 'INR', symbol: '₹', locale: 'hi-HN' },
|
2019-01-06 23:54:22 -05:00
|
|
|
JPY: { endPointKey: 'JPY', symbol: '¥', locale: 'ja-JP' },
|
2019-08-01 14:09:07 -04:00
|
|
|
KRW: { endPointKey: 'KRW', symbol: '₩', locale: 'ko-KR' },
|
2019-01-18 00:09:43 -06:00
|
|
|
MXN: { endPointKey: 'MXN', symbol: '$', locale: 'es-MX' },
|
2019-01-29 23:00:12 -05:00
|
|
|
MYR: { endPointKey: 'MYR', symbol: 'RM', locale: 'ms-MY' },
|
2019-02-07 11:44:08 +13:00
|
|
|
NZD: { endPointKey: 'NZD', symbol: '$', locale: 'en-NZ' },
|
2019-01-12 19:05:05 -05:00
|
|
|
PLN: { endPointKey: 'PLN', symbol: 'zł', locale: 'pl-PL' },
|
2019-01-06 23:54:22 -05:00
|
|
|
RUB: { endPointKey: 'RUB', symbol: '₽', locale: 'ru-RU' },
|
2019-01-05 02:17:10 -05:00
|
|
|
SGD: { endPointKey: 'SGD', symbol: 'S$', locale: 'zh-SG' },
|
2019-01-13 16:58:53 -05:00
|
|
|
SEK: { endPointKey: 'SEK', symbol: 'kr', locale: 'sv-SE' },
|
2019-01-09 00:38:31 -05:00
|
|
|
THB: { endPointKey: 'THB', symbol: '฿', locale: 'th-TH' },
|
2019-01-06 23:54:22 -05:00
|
|
|
VEF: { endPointKey: 'VEF', symbol: 'Bs.', locale: 'es-VE' },
|
2019-01-03 20:46:40 -05:00
|
|
|
ZAR: { endPointKey: 'ZAR', symbol: 'R', locale: 'en-ZA' },
|
2018-12-29 13:24:51 -05:00
|
|
|
});
|