-
Notifications
You must be signed in to change notification settings - Fork 3
/
supported-currencies.go
90 lines (88 loc) · 4.48 KB
/
supported-currencies.go
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
package telegram
type Currency string
const (
UnitedArabEmiratesDirham Currency = "AED"
AfghanAfghani Currency = "AFN"
AlbanianLek Currency = "ALL"
ArmenianDram Currency = "AMD"
ArgentinePeso Currency = "ARS"
AustralianDollar Currency = "AUD"
AzerbaijaniManat Currency = "AZN"
BosniaAndHerzegovinaConvertibleMark Currency = "BAM"
BangladeshiTaka Currency = "BDT"
BulgarianLev Currency = "BGN"
BruneiDollar Currency = "BND"
BolivianBoliviano Currency = "BOB"
BrazilianReal Currency = "BRL"
CanadianDollar Currency = "CAD"
SwissFranc Currency = "CHF"
ChileanPeso Currency = "CLP"
ChineseRenminbiYuan Currency = "CNY"
ColombianPeso Currency = "COP"
CostaRicanColon Currency = "CRC"
CzechKoruna Currency = "CZK"
DanishKrone Currency = "DKK"
DominicanPeso Currency = "DOP"
AlgerianDinar Currency = "DZD"
EgyptianPound Currency = "EGP"
Euro Currency = "EUR"
BritishPound Currency = "GBP"
GeorgianLari Currency = "GEL"
GuatemalanQuetzal Currency = "GTQ"
HongKongDollar Currency = "HKD"
HonduranLempira Currency = "HNL"
CroatianKuna Currency = "HRK"
HungarianForint Currency = "HUF"
IndonesianRupiah Currency = "IDR"
IsraeliNewSheqel Currency = "ILS"
IndianRupee Currency = "INR"
IcelandicKrona Currency = "ISK"
JamaicanDollar Currency = "JMD"
JapaneseYen Currency = "JPY"
KenyanShilling Currency = "KES"
KyrgyzstaniSom Currency = "KGS"
SouthKoreanWon Currency = "KRW"
KazakhstaniTenge Currency = "KZT"
LebanesePound Currency = "LBP"
SriLankanRupee Currency = "LKR"
MoroccanDirham Currency = "MAD"
MoldovanLeu Currency = "MDL"
MongolianTogrog Currency = "MNT"
MauritianRupee Currency = "MUR"
MaldivianRufiyaa Currency = "MVR"
MexicanPeso Currency = "MXN"
MalaysianRinggit Currency = "MYR"
MozambicanMetical Currency = "MZN"
NigerianNaira Currency = "NGN"
NicaraguanCordoba Currency = "NIO"
NorwegianKrone Currency = "NOK"
NepaleseRupee Currency = "NPR"
NewZealandDollar Currency = "NZD"
PanamanianBalboa Currency = "PAB"
PeruvianNuevoSol Currency = "PEN"
PhilippinePeso Currency = "PHP"
PakistaniRupee Currency = "PKR"
PolishZloty Currency = "PLN"
ParaguayanGuarani Currency = "PYG"
QatariRiyal Currency = "QAR"
RomanianLeu Currency = "RON"
SerbianDinar Currency = "RSD"
RussianRuble Currency = "RUB"
SaudiRiyal Currency = "SAR"
SwedishKrona Currency = "SEK"
SingaporeDollar Currency = "SGD"
ThaiBaht Currency = "THB"
TajikistaniSomoni Currency = "TJS"
TurkishLira Currency = "TRY"
TrinidadAndTobagoDollar Currency = "TTD"
NewTaiwanDollar Currency = "TWD"
TanzanianShilling Currency = "TZS"
UkrainianHryvnia Currency = "UAH"
UgandanShilling Currency = "UGX"
UnitedStatesDollar Currency = "USD"
UruguayanPeso Currency = "UYU"
UzbekistaniSom Currency = "UZS"
VietnameseDong Currency = "VND"
YemeniRial Currency = "YER"
SouthAfricanRand Currency = "ZAR"
)