Skip to content

Commit df6e95b

Browse files
authored
Merge pull request #16 from EdgeApp/peachbits-patch-1
Add JPY and CAD support
2 parents 0f2d54f + ac6cdd2 commit df6e95b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/api.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@ export const LIMITS = {
2020
min: 50,
2121
daily: 16972,
2222
monthly: 42431
23+
},
24+
JPY: {
25+
min: 5500,
26+
daily: 2056193,
27+
monthly: 5140484
28+
},
29+
CAD: {
30+
min: 66,
31+
daily: 24725,
32+
monthly: 61810
2333
}
2434
}
2535

@@ -36,7 +46,7 @@ export const SUPPORTED_DIGITAL_CURRENCIES = [
3646
]
3747

3848
export const SUPPORTED_FIAT_CURRENCIES = [
39-
'USD', 'EUR'
49+
'USD', 'EUR', 'JPY', 'CAD'
4050
]
4151

4252
export const DEV = process.env.NODE_ENV === 'development'

0 commit comments

Comments
 (0)