File tree Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 6
6
7
7
## 3.20.0
8
8
9
+ - added: Banxa purchase with iDEAL
9
10
- added: Asset status card to remotely communicate known issues or important info
10
11
- added: Paybis buy with credit card
11
12
- changed: 'legacyLanding' experiment config set to 0% probability
Original file line number Diff line number Diff line change @@ -97,6 +97,15 @@ export const guiPlugins: { [pluginId: string]: GuiPlugin } = {
97
97
nativePlugin : amountQuoteFiatPlugin ,
98
98
displayName : 'ACH Bank Transfer'
99
99
} ,
100
+ ideal : {
101
+ pluginId : 'amountquote' ,
102
+ storeId : '' ,
103
+ baseUri : '' ,
104
+ lockUriPath : true ,
105
+ nativePlugin : amountQuoteFiatPlugin ,
106
+ forceFiatCurrencyCode : 'iso:EUR' ,
107
+ displayName : 'XX Do not show'
108
+ } ,
100
109
interac : {
101
110
pluginId : 'amountquote' ,
102
111
storeId : '' ,
Original file line number Diff line number Diff line change 308
308
"paymentTypeLogoKey" : " cash" ,
309
309
"deepPath" : " /"
310
310
},
311
+ {
312
+ "id" : " ideal" ,
313
+ "pluginId" : " ideal" ,
314
+ "paymentType" : " ideal" ,
315
+ "paymentTypes" : [" ideal" ],
316
+ "title" : " iDEAL" ,
317
+ "description" : " Fee: 4%\n Settlement: Instant - 24 hours" ,
318
+ "forCountries" : [" NL" ],
319
+ "cryptoCodes" : [],
320
+ "paymentTypeLogoKey" : " ideal"
321
+ },
311
322
{
312
323
"id" : " interac" ,
313
324
"pluginId" : " interac" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export const asFiatPaymentType = asValue(
25
25
'fasterpayments' ,
26
26
'googlepay' ,
27
27
'iach' ,
28
+ 'ideal' ,
28
29
'interac' ,
29
30
'iobank' ,
30
31
'payid' ,
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ const allowedPaymentTypes: AllowedPaymentTypes = {
40
40
credit : true ,
41
41
fasterpayments : true ,
42
42
googlepay : true ,
43
+ ideal : true ,
43
44
interac : true ,
44
45
iobank : true ,
45
46
payid : true ,
@@ -107,6 +108,7 @@ const asBanxaPaymentType = asValue(
107
108
'DIRECTCREDIT' ,
108
109
'DLOCALPIX' ,
109
110
'DLOCALZAIO' ,
111
+ 'IDEAL' ,
110
112
'MANUALPAYMENT' ,
111
113
'MONOOVAPAYID' ,
112
114
'WORLDPAYAPPLE' ,
@@ -681,6 +683,7 @@ const typeMap: { [Payment in BanxaPaymentType]: FiatPaymentType } = {
681
683
DIRECTCREDIT : 'directtobank' ,
682
684
DLOCALPIX : 'pix' ,
683
685
DLOCALZAIO : 'iobank' ,
686
+ IDEAL : 'ideal' ,
684
687
MANUALPAYMENT : 'turkishbank' ,
685
688
MONOOVAPAYID : 'payid' ,
686
689
WORLDPAYAPPLE : 'applepay' ,
You can’t perform that action at this time.
0 commit comments