BlueWallet/models/fiatUnit.js
Marcos Rodriguez Vélez 66bce8874a FIX: Dismiss add screen
2018-12-29 13:24:51 -05:00

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' },
});