This repository was archived by the owner on Aug 12, 2023. It is now read-only.
File tree 3 files changed +54
-0
lines changed
3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,15 @@ Object {
48
48
],
49
49
" url" : " https://ddex.io" ,
50
50
},
51
+ " defiSaver" : Object {
52
+ " feeRecipients" : Array [],
53
+ " id" : " defiSaver" ,
54
+ " imageUrl" : " https://resources.0xtracker.com/logos/defi-saver.png" ,
55
+ " lookupId" : 37 ,
56
+ " name" : " DeFi Saver" ,
57
+ " slug" : " defi-saver" ,
58
+ " url" : " https://defisaver.com/" ,
59
+ },
51
60
" deversifi" : Object {
52
61
" feeRecipients" : Array [
53
62
" 0x61b9898c9b60a159fc91ae8026563cd226b7a0c1" ,
@@ -189,6 +198,15 @@ Object {
189
198
" slug" : " merchcoins-exchange" ,
190
199
" url" : " https://merchcoins.com/" ,
191
200
},
201
+ " metamask" : Object {
202
+ " feeRecipients" : Array [],
203
+ " id" : " metamask" ,
204
+ " imageUrl" : " https://resources.0xtracker.com/logos/metamask.png" ,
205
+ " lookupId" : 36 ,
206
+ " name" : " MetaMask" ,
207
+ " slug" : " metamask" ,
208
+ " url" : " https://metamask.io/" ,
209
+ },
192
210
" oc2Dex" : Object {
193
211
" feeRecipients" : Array [
194
212
" 0x1af29de80f743be444aa195e2cae38ee9bc74c4c" ,
Original file line number Diff line number Diff line change @@ -312,4 +312,20 @@ module.exports = {
312
312
feeRecipients : [ '0x86003b044f70dac0abc80ac8957305b6370893ed' ] ,
313
313
url : 'https://matcha.xyz' ,
314
314
} ,
315
+ metamask : {
316
+ imageUrl : 'https://resources.0xtracker.com/logos/metamask.png' ,
317
+ lookupId : 36 ,
318
+ name : 'MetaMask' ,
319
+ slug : 'metamask' ,
320
+ feeRecipients : [ ] ,
321
+ url : 'https://metamask.io/' ,
322
+ } ,
323
+ defiSaver : {
324
+ imageUrl : 'https://resources.0xtracker.com/logos/defi-saver.png' ,
325
+ lookupId : 37 ,
326
+ name : 'DeFi Saver' ,
327
+ slug : 'defi-saver' ,
328
+ feeRecipients : [ ] ,
329
+ url : 'https://defisaver.com/' ,
330
+ } ,
315
331
} ;
Original file line number Diff line number Diff line change @@ -37,6 +37,26 @@ const resolveRelayer = metadata => {
37
37
return relayers . radarRelay ;
38
38
}
39
39
40
+ // TODO: Remove this temporary hack once apps feature is in place
41
+ if (
42
+ ( affiliateAddress === '0xfee5f86a8737ff816ba3f6adb5fc6027c1cb3f75' && // MetaMask
43
+ feeRecipient === '0x1000000000000000000000000000000000000011' ) || // 0x API
44
+ ( affiliateAddress === '0xfee5f86a8737ff816ba3f6adb5fc6027c1cb3f75' && // MetaMask
45
+ matchingRelayer === undefined )
46
+ ) {
47
+ return relayers . metamask ;
48
+ }
49
+
50
+ // TODO: Remove this temporary hack once apps feature is in place
51
+ if (
52
+ ( affiliateAddress === '0x322d58b9e75a6918f7e7849aee0ff09369977e08' && // DeFi Saver
53
+ feeRecipient === '0x1000000000000000000000000000000000000011' ) || // 0x API
54
+ ( affiliateAddress === '0x322d58b9e75a6918f7e7849aee0ff09369977e08' && // DeFi Saver
55
+ matchingRelayer === undefined )
56
+ ) {
57
+ return relayers . defiSaver ;
58
+ }
59
+
40
60
return matchingRelayer || null ;
41
61
} ;
42
62
You can’t perform that action at this time.
0 commit comments