mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 18:21:57 +01:00
f5704a9832
ADD: Added AUD, VEF, and ZAR fiats.
14 lines
726 B
JavaScript
14 lines
726 B
JavaScript
export const FiatUnit = Object.freeze({
|
|
USD: { endPointKey: 'USD', symbol: '$', locale: 'en-US' },
|
|
AUD: { endPointKey: 'AUD', symbol: '$', locale: 'en-AU' },
|
|
EUR: { endPointKey: 'EUR', symbol: '€', locale: 'en-EN' },
|
|
GBP: { endPointKey: 'GBP', symbol: '£', locale: 'en-GB' },
|
|
RUB: { endPointKey: 'RUB', symbol: '₽', locale: 'ru-RU' },
|
|
CAD: { endPointKey: 'CAD', symbol: '$', locale: 'en-CA' },
|
|
CNY: { endPointKey: 'CNY', symbol: '¥', locale: 'zh-CN' },
|
|
JPY: { endPointKey: 'JPY', symbol: '¥', locale: 'ja-JP' },
|
|
INR: { endPointKey: 'INR', symbol: '₹', locale: 'hi-HN' },
|
|
VEF: { endPointKey: 'VEF', symbol: 'Bs.', locale: 'es-VE' },
|
|
ZAR: { endPointKey: 'ZAR', symbol: 'R', locale: 'en-ZA' },
|
|
});
|