mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
10 lines
541 B
JavaScript
10 lines
541 B
JavaScript
export const FiatUnit = Object.freeze({
|
|
USD: { endPointKey: 'USD', symbol: '$', locale: 'en-US' },
|
|
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' },
|
|
});
|