Skip to content

Commit

Permalink
feat(FiatType): added fiat types (#20)
Browse files Browse the repository at this point in the history
to bring the repo into alignment with spec changes from fiatconnect/specification#26
  • Loading branch information
cajubelt committed Apr 26, 2022
1 parent 6e7f647 commit 27ece36
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/index.ts
Expand Up @@ -255,7 +255,19 @@ export enum FiatConnectError {
export enum FiatType {
USD = 'USD',
EUR = 'EUR',
REAL = 'REAL'
REAL = 'REAL',
INR = 'INR',
NGN = 'NGN',
GHS = 'GHS',
KES = 'KES',
ZAR = 'ZAR',
PHP = 'PHP',
UGX = 'UGX',
GBP = 'GBP',
XOF = 'XOF',
RWF = 'RWF',
CNY = 'CNY',
XAF = 'XAF',
}

export enum CryptoType {
Expand Down

0 comments on commit 27ece36

Please sign in to comment.