-
Notifications
You must be signed in to change notification settings - Fork 4
/
currencies.ts
521 lines (518 loc) · 8.15 KB
/
currencies.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
/**
* Copyright 2020, SumUp Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Currency } from '../types/index.js';
/**
* An object that maps a 2 char country code to its official 3 char currency code.
* [View all supported countries](https://github.com/sumup-oss/intl-js/blob/main/src/data/currencies.ts).
*/
export const CURRENCIES: { [country: string]: Currency } = {
// Andorra
AD: 'EUR',
// United Arab Emirates
AE: 'AED',
// Afghanistan
AF: 'AFN',
// Antigua and Barbuda
AG: 'XCD',
// Anguilla
AI: 'XCD',
// Albania
AL: 'ALL',
// Armenia
AM: 'AMD',
// Netherlands Antilles
AN: 'ANG',
// Angola
AO: 'AOA',
// Antarctica
AQ: 'AQD',
// Argentina
AR: 'ARS',
// American Samoa
AS: 'USD',
// Austria
AT: 'EUR',
// Australia
AU: 'AUD',
// Aruba
AW: 'ANG',
// Aland Islands
AX: 'EUR',
// Azerbaijan
AZ: 'AZN',
// Bosnia and Herzegovina
BA: 'BAM',
// Barbados
BB: 'BBD',
// Bangladesh
BD: 'BDT',
// Belgium
BE: 'EUR',
// Burkina Faso
BF: 'XOF',
// Bulgaria
BG: 'BGN',
// Bahrain
BH: 'BHD',
// Burundi
BI: 'BIF',
// Benin
BJ: 'XOF',
// Saint Barthelemy
BL: 'EUR',
// Bermuda
BM: 'BMD',
// Brunei Darussalam
BN: 'BND',
// Bolivia
BO: 'BOB',
// Brazil
BR: 'BRL',
// Bahamas
BS: 'BSD',
// Bhutan
BT: 'INR',
// Bouvet Island
BV: 'NOK',
// Botswana
BW: 'BWP',
// Belarus
BY: 'BYR',
// Belize
BZ: 'BZD',
// Canada
CA: 'CAD',
// Cocos (Keeling) Islands
CC: 'AUD',
// Congo
CD: 'CDF',
// Central African Republic
CF: 'XAF',
// Congo Republic of the Democratic
CG: 'XAF',
// Switzerland
CH: 'CHF',
// Ivory Coast
CI: 'XOF',
// Cook Islands
CK: 'NZD',
// Chile
CL: 'CLP',
// Cameroon
CM: 'XAF',
// China
CN: 'CNY',
// Colombia
CO: 'COP',
// Costa Rica
CR: 'CRC',
// Cuba
CU: 'CUP',
// Cape Verde
CV: 'CVE',
// Christmas Island
CX: 'AUD',
// Cyprus
CY: 'EUR',
// Czech Republic
CZ: 'CZK',
// Germany
DE: 'EUR',
// Djibouti
DJ: 'DJF',
// Denmark
DK: 'DKK',
// Dominica
DM: 'XCD',
// Dominican Republic
DO: 'DOP',
// Algeria
DZ: 'DZD',
// Ecuador
EC: 'USD',
// Estonia
EE: 'EUR',
// Egypt
EG: 'EGP',
// Western Sahara
EH: 'MAD',
// Eritrea
ER: 'ERN',
// Spain
ES: 'EUR',
// Ethiopia
ET: 'ETB',
// Finland
FI: 'EUR',
// Fiji
FJ: 'FJD',
// Falkland Islands (Malvinas)
FK: 'FKP',
// Micronesia Federated States of
FM: 'USD',
// Faroe Islands
FO: 'DKK',
// France
FR: 'EUR',
// Gabon
GA: 'XAF',
// United Kingdom
GB: 'GBP',
// Grenada
GD: 'XCD',
// Georgia
GE: 'GEL',
// French Guiana
GF: 'EUR',
// Guernsey
GG: 'GGP',
// Ghana
GH: 'GHS',
// Gibraltar
GI: 'GIP',
// Greenland
GL: 'DKK',
// Gambia
GM: 'GMD',
// Guinea
GN: 'GNF',
// Guadeloupe
GP: 'EUR',
// Equatorial Guinea
GQ: 'XAF',
// Greece
GR: 'EUR',
// South Georgia and the South Sandwich Islands
GS: 'GBP',
// Guatemala
GT: 'GTQ',
// Guam
GU: 'USD',
// Guinea-Bissau
GW: 'XOF',
// Guyana
GY: 'GYD',
// Hong Kong
HK: 'HKD',
// Heard and Mc Donald Islands
HM: 'AUD',
// Honduras
HN: 'HNL',
// Croatia (Hrvatska)
HR: 'EUR',
// Haiti
HT: 'HTG',
// Hungary
HU: 'HUF',
// Indonesia
ID: 'IDR',
// Ireland
IE: 'EUR',
// Israel
IL: 'ILS',
// Isle of Man
IM: 'GBP',
// India
IN: 'INR',
// British Indian Ocean Territory
IO: 'USD',
// Iraq
IQ: 'IQD',
// Iran (Islamic Republic of)
IR: 'IRR',
// Iceland
IS: 'ISK',
// Italy
IT: 'EUR',
// Jersey
JE: 'GBP',
// Jamaica
JM: 'JMD',
// Jordan
JO: 'JOD',
// Japan
JP: 'JPY',
// Kenya
KE: 'KES',
// Kyrgyzstan
KG: 'KGS',
// Cambodia
KH: 'KHR',
// Kiribati
KI: 'AUD',
// Comoros
KM: 'KMF',
// Saint Kitts
KN: 'XCD',
// Korea North
KP: 'KPW',
// Korea South
KR: 'KRW',
// Kuwait
KW: 'KWD',
// Cayman Islands
KY: 'KYD',
// Kazakhstan
KZ: 'KZT',
// Laos
LA: 'LAK',
// Lebanon
LB: 'LBP',
// Saint Lucia
LC: 'XCD',
// Liechtenstein
LI: 'CHF',
// Sri Lanka
LK: 'LKR',
// Liberia
LR: 'LRD',
// Lesotho
LS: 'LSL',
// Lithuania
LT: 'EUR',
// Luxembourg
LU: 'EUR',
// Latvia
LV: 'EUR',
// Libyan Arab Jamahiriya
LY: 'LYD',
// Morocco
MA: 'MAD',
// Monaco
MC: 'EUR',
// Moldova Republic of
MD: 'MDL',
// Montenegro
ME: 'EUR',
// Saint Martin (French part)
MF: 'EUR',
// Madagascar
MG: 'MGA',
// Marshall Islands
MH: 'USD',
// Macedonia
MK: 'MKD',
// Mali
ML: 'XOF',
// Myanmar
MM: 'MMK',
// Mongolia
MN: 'MNT',
// Macau
MO: 'MOP',
// Northern Mariana Islands
MP: 'USD',
// Martinique
MQ: 'EUR',
// Mauritania
MR: 'MRO',
// Montserrat
MS: 'XCD',
// Malta
MT: 'EUR',
// Mauritius
MU: 'MUR',
// Maldives
MV: 'MVR',
// Malawi
MW: 'MWK',
// Mexico
MX: 'MXN',
// Malaysia
MY: 'MYR',
// Mozambique
MZ: 'MZN',
// Namibia
NA: 'NAD',
// New Caledonia
NC: 'XPF',
// Niger
NE: 'XOF',
// Norfolk Island
NF: 'AUD',
// Nigeria
NG: 'NGN',
// Nicaragua
NI: 'NIO',
// Netherlands
NL: 'EUR',
// Norway
NO: 'NOK',
// Nepal
NP: 'NPR',
// Nauru
NR: 'AUD',
// Niue
NU: 'NZD',
// New Zealand
NZ: 'NZD',
// Oman
OM: 'OMR',
// Panama
PA: 'PAB',
// Peru
PE: 'PEN',
// French Polynesia
PF: 'XPF',
// Papua New Guinea
PG: 'PGK',
// Philippines
PH: 'PHP',
// Pakistan
PK: 'PKR',
// Poland
PL: 'PLN',
// Saint Pierre and Miquelon
PM: 'EUR',
// Pitcairn
PN: 'NZD',
// Puerto Rico
PR: 'USD',
// Palestinian Territory
PS: 'JOD',
// Portugal
PT: 'EUR',
// Palau
PW: 'USD',
// Paraguay
PY: 'PYG',
// Qatar
QA: 'QAR',
// Reunion
RE: 'EUR',
// Romania
RO: 'RON',
// Serbia
RS: 'RSD',
// Russian Federation
RU: 'RUB',
// Rwanda
RW: 'RWF',
// Saudi Arabia
SA: 'SAR',
// Solomon Islands
SB: 'SBD',
// Seychelles
SC: 'SCR',
// Sudan
SD: 'SDG',
// Sweden
SE: 'SEK',
// Singapore
SG: 'SGD',
// Saint Helena
SH: 'GBP',
// Slovenia
SI: 'EUR',
// Svalbard and Jan Mayen Islands
SJ: 'NOK',
// Slovakia (Slovak Republic)
SK: 'EUR',
// Sierra Leone
SL: 'SLL',
// San Marino
SM: 'EUR',
// Senegal
SN: 'XOF',
// Somalia
SO: 'SOS',
// Suriname
SR: 'SRD',
// Sao Tome and Principe
ST: 'STD',
// El Salvador
SV: 'USD',
// Syrian Arab Republic
SY: 'SYP',
// Swaziland
SZ: 'SZL',
// Turks and Caicos Islands
TC: 'USD',
// Chad
TD: 'XAF',
// French Southern Territories
TF: 'EUR',
// Togo
TG: 'XOF',
// Thailand
TH: 'THB',
// Tajikistan
TJ: 'TJS',
// Tokelau
TK: 'NZD',
// East Timor
TL: 'IDR',
// Turkmenistan
TM: 'TMT',
// Tunisia
TN: 'TND',
// Tonga
TO: 'TOP',
// Turkey
TR: 'TRY',
// Trinidad and Tobago
TT: 'TTD',
// Tuvalu
TV: 'AUD',
// Taiwan
TW: 'TWD',
// Tanzania
TZ: 'TZS',
// Ukraine
UA: 'UAH',
// Uganda
UG: 'UGX',
// United States Minor Outlying Islands
UM: 'USD',
// United States
US: 'USD',
// Uruguay
UY: 'UYU',
// Uzbekistan
UZ: 'UZS',
// Vatican City State (Holy See)
VA: 'EUR',
// Saint Vincent Grenadines
VC: 'XCD',
// Venezuela
VE: 'VEF',
// Virgin Islands (British)
VG: 'USD',
// Virgin Islands (US)
VI: 'USD',
// Vietnam
VN: 'VND',
// Vanuatu
VU: 'VUV',
// Wallis and Futuna Islands
WF: 'XPF',
// Samoa
WS: 'WST',
// Yemen
YE: 'YER',
// Mayotte
YT: 'EUR',
// South Africa
ZA: 'ZAR',
// Zambia
ZM: 'ZMW',
// Zimbabwe
ZW: 'ZWD',
};
/**
* An array of currencies that support decimals according to the ISO standard
* but don't use decimals in everyday life.
*/
export const CURRENCIES_WITHOUT_DECIMALS = ['COP', 'HUF'];