@merkl/api 0.15.26 → 0.15.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/eden/index.d.ts +172 -125
- package/dist/src/index.d.ts +36 -25
- package/dist/src/modules/v4/boost/boost.controller.d.ts +32 -25
- package/dist/src/modules/v4/boost/boost.controller.js +4 -3
- package/dist/src/modules/v4/boost/boost.model.d.ts +6 -0
- package/dist/src/modules/v4/boost/boost.model.js +4 -0
- package/dist/src/modules/v4/boost/boost.service.d.ts +6 -1
- package/dist/src/modules/v4/boost/boost.service.js +33 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +22 -2
- package/dist/src/modules/v4/programPayload/programPayload.repository.js +403 -42
- package/dist/src/modules/v4/router.d.ts +36 -25
- package/dist/src/modules/v4/status/status.controller.d.ts +4 -0
- package/dist/src/modules/v4/status/status.service.d.ts +4 -0
- package/dist/src/modules/v4/status/status.service.js +9 -4
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -4,7 +4,24 @@ export declare enum program {
|
|
4
4
|
ZkSync = "ZkSync",
|
5
5
|
Mode = "Mode",
|
6
6
|
Vicuna = "Vicuna",
|
7
|
-
Sonicmarket = "Sonicmarket"
|
7
|
+
Sonicmarket = "Sonicmarket",
|
8
|
+
Reserve = "Reserve"
|
9
|
+
}
|
10
|
+
export declare enum reserveCampaigns {
|
11
|
+
Alpha_Base_Index_Reserve = "Alpha Base Index Reserve Base 0xeBcda5b80f62DD4DD2A96357b42BB6Facbf30267",
|
12
|
+
Clanker_Index_Reserve = "Clanker Index Reserve Base 0x44551CA46Fa5592bb572E20043f7C3D54c85cAD7",
|
13
|
+
AIndex_Reserve = "AIndex Reserve Base 0xfe45EDa533e97198d9f3dEEDA9aE6c147141f6F9",
|
14
|
+
Virtual_Index_Reserve = "Virtual Index Reserve Base 0x47686106181b3CEfe4eAf94C4c10b48Ac750370b",
|
15
|
+
MarketVector_Digital_Assets_25_Index_Reserve = "MarketVector Digital Assets 25 Index Reserve Base 0xD600e748C17Ca237Fcb5967Fa13d688AFf17Be78",
|
16
|
+
Bloomberg_Galaxy_Crypto_Index_Reserve = "Bloomberg Galaxy Crypto Index Reserve Base 0x23418De10d422AD71C9D5713a2B8991a9c586443",
|
17
|
+
MarketVector_Token_Terminal_Fundamental_Index_Reserve = "MarketVector Token Terminal Fundamental Index Reserve Base 0xe8b46b116D3BdFA787CE9CF3f5aCC78dc7cA380E",
|
18
|
+
Base_MemeIndexer_DTF_Reserve = "Base MemeIndexer DTF Reserve Base 0xb8753941196692E322846cfEE9C14C97AC81928A",
|
19
|
+
Large_Cap_DeFi_Index_Reserve = "Large Cap DeFi Index Reserve Mainnet 0x20d81101D254729a6E689418526bE31e2c544290",
|
20
|
+
DeFi_Growth_Index_Reserve = "DeFi Growth Index Reserve Mainnet 0x9a1741E151233a82Cf69209A2F1bC7442B1fB29C",
|
21
|
+
CoinDesk_DeFi_Select_Index_Reserve = "CoinDesk DeFi Select Index Reserve Mainnet 0x188D12Eb13a5Eadd0867074ce8354B1AD6f4790b",
|
22
|
+
RWA_Index_Reserve = "RWA Index Reserve Mainnet 0xA5cdea03B11042fc10B52aF9eCa48bb17A2107d2",
|
23
|
+
Imagine_the_SMEL_Reserve = "Imagine the SMEL Reserve Mainnet 0xF91384484F4717314798E8975BCd904A35fc2BF1",
|
24
|
+
BTC_ETH_DCA_Index_Reserve = "BTC ETH DCA Index Reserve Mainnet 0x4E3B170DcBe704b248df5f56D488114acE01B1C5"
|
8
25
|
}
|
9
26
|
export declare enum sonicmarketCampaigns {
|
10
27
|
USDCe_S_Vault_Sonic_Market = "USDC.e/S Vault Sonic Market 0x46107Ec44112675689053b96aea2127fD952bd47",
|
@@ -269,6 +286,9 @@ export declare enum modeCampaigns {
|
|
269
286
|
Bedrock_Ionic_Supply_ionuniBTC_Mode = "Bedrock Ionic Supply uniBTC 0xa48750877a83f7dec11f722178c317b54a44d142",
|
270
287
|
Bedrock_Ironclad_Supply_uniBTC_Mode = "Bedrock Ironclad Supply uniBTC 0x0F041cf2ae959f39215EFfB50d681Df55D4d90B1"
|
271
288
|
}
|
289
|
+
declare const ReserveInterfaceCampaigns: {
|
290
|
+
[key in reserveCampaigns]: partialConfig;
|
291
|
+
};
|
272
292
|
declare const SonicmarketInterfaceCampaigns: {
|
273
293
|
[key in sonicmarketCampaigns]: partialConfig;
|
274
294
|
};
|
@@ -285,6 +305,6 @@ declare const PufferInterfaceCampaigns: {
|
|
285
305
|
[key in pufferCampaigns]: partialConfig;
|
286
306
|
};
|
287
307
|
export declare const MerklInterfaceCampaigns: {
|
288
|
-
[key in program]: typeof PufferInterfaceCampaigns | typeof ZkSyncInterfaceCampaigns | typeof ModeInterfaceCampaigns | typeof VicunaInterfaceCampaigns | typeof SonicmarketInterfaceCampaigns;
|
308
|
+
[key in program]: typeof PufferInterfaceCampaigns | typeof ZkSyncInterfaceCampaigns | typeof ModeInterfaceCampaigns | typeof VicunaInterfaceCampaigns | typeof SonicmarketInterfaceCampaigns | typeof ReserveInterfaceCampaigns;
|
289
309
|
};
|
290
310
|
export {};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BalanceCallType, Campaign, ChainId, CompFork, CompoundSubCampaignType, Forwarder, HOOK, MorphoSubCampaignType, StandardType, selectionRaffleMethod, } from "@sdk";
|
1
|
+
import { BalanceCallType, Campaign, ChainId, CompFork, CompoundSubCampaignType, Forwarder, HOOK, MorphoSubCampaignType, StandardType, boostingFunction, defaultBoost, selectionRaffleMethod, } from "@sdk";
|
2
2
|
export var program;
|
3
3
|
(function (program) {
|
4
4
|
program["Puffer"] = "Puffer";
|
@@ -6,7 +6,25 @@ export var program;
|
|
6
6
|
program["Mode"] = "Mode";
|
7
7
|
program["Vicuna"] = "Vicuna";
|
8
8
|
program["Sonicmarket"] = "Sonicmarket";
|
9
|
+
program["Reserve"] = "Reserve";
|
9
10
|
})(program || (program = {}));
|
11
|
+
export var reserveCampaigns;
|
12
|
+
(function (reserveCampaigns) {
|
13
|
+
reserveCampaigns["Alpha_Base_Index_Reserve"] = "Alpha Base Index Reserve Base 0xeBcda5b80f62DD4DD2A96357b42BB6Facbf30267";
|
14
|
+
reserveCampaigns["Clanker_Index_Reserve"] = "Clanker Index Reserve Base 0x44551CA46Fa5592bb572E20043f7C3D54c85cAD7";
|
15
|
+
reserveCampaigns["AIndex_Reserve"] = "AIndex Reserve Base 0xfe45EDa533e97198d9f3dEEDA9aE6c147141f6F9";
|
16
|
+
reserveCampaigns["Virtual_Index_Reserve"] = "Virtual Index Reserve Base 0x47686106181b3CEfe4eAf94C4c10b48Ac750370b";
|
17
|
+
reserveCampaigns["MarketVector_Digital_Assets_25_Index_Reserve"] = "MarketVector Digital Assets 25 Index Reserve Base 0xD600e748C17Ca237Fcb5967Fa13d688AFf17Be78";
|
18
|
+
reserveCampaigns["Bloomberg_Galaxy_Crypto_Index_Reserve"] = "Bloomberg Galaxy Crypto Index Reserve Base 0x23418De10d422AD71C9D5713a2B8991a9c586443";
|
19
|
+
reserveCampaigns["MarketVector_Token_Terminal_Fundamental_Index_Reserve"] = "MarketVector Token Terminal Fundamental Index Reserve Base 0xe8b46b116D3BdFA787CE9CF3f5aCC78dc7cA380E";
|
20
|
+
reserveCampaigns["Base_MemeIndexer_DTF_Reserve"] = "Base MemeIndexer DTF Reserve Base 0xb8753941196692E322846cfEE9C14C97AC81928A";
|
21
|
+
reserveCampaigns["Large_Cap_DeFi_Index_Reserve"] = "Large Cap DeFi Index Reserve Mainnet 0x20d81101D254729a6E689418526bE31e2c544290";
|
22
|
+
reserveCampaigns["DeFi_Growth_Index_Reserve"] = "DeFi Growth Index Reserve Mainnet 0x9a1741E151233a82Cf69209A2F1bC7442B1fB29C";
|
23
|
+
reserveCampaigns["CoinDesk_DeFi_Select_Index_Reserve"] = "CoinDesk DeFi Select Index Reserve Mainnet 0x188D12Eb13a5Eadd0867074ce8354B1AD6f4790b";
|
24
|
+
reserveCampaigns["RWA_Index_Reserve"] = "RWA Index Reserve Mainnet 0xA5cdea03B11042fc10B52aF9eCa48bb17A2107d2";
|
25
|
+
reserveCampaigns["Imagine_the_SMEL_Reserve"] = "Imagine the SMEL Reserve Mainnet 0xF91384484F4717314798E8975BCd904A35fc2BF1";
|
26
|
+
reserveCampaigns["BTC_ETH_DCA_Index_Reserve"] = "BTC ETH DCA Index Reserve Mainnet 0x4E3B170DcBe704b248df5f56D488114acE01B1C5";
|
27
|
+
})(reserveCampaigns || (reserveCampaigns = {}));
|
10
28
|
export var sonicmarketCampaigns;
|
11
29
|
(function (sonicmarketCampaigns) {
|
12
30
|
sonicmarketCampaigns["USDCe_S_Vault_Sonic_Market"] = "USDC.e/S Vault Sonic Market 0x46107Ec44112675689053b96aea2127fD952bd47";
|
@@ -275,6 +293,260 @@ export var modeCampaigns;
|
|
275
293
|
modeCampaigns["Bedrock_Ionic_Supply_ionuniBTC_Mode"] = "Bedrock Ionic Supply uniBTC 0xa48750877a83f7dec11f722178c317b54a44d142";
|
276
294
|
modeCampaigns["Bedrock_Ironclad_Supply_uniBTC_Mode"] = "Bedrock Ironclad Supply uniBTC 0x0F041cf2ae959f39215EFfB50d681Df55D4d90B1";
|
277
295
|
})(modeCampaigns || (modeCampaigns = {}));
|
296
|
+
const ReserveInterfaceCampaigns = {
|
297
|
+
[reserveCampaigns.Alpha_Base_Index_Reserve]: {
|
298
|
+
campaignType: Campaign.ERC20,
|
299
|
+
computeChainId: ChainId.BASE,
|
300
|
+
hooks: [],
|
301
|
+
targetToken: "0xeBcda5b80f62DD4DD2A96357b42BB6Facbf30267",
|
302
|
+
whitelist: [],
|
303
|
+
blacklist: [
|
304
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
305
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
306
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
307
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
308
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
309
|
+
"0x5c62640d36012c03990561fB91fB515D85617Cbb",
|
310
|
+
"0xE207FAb5839CA5bCc0d930761755cC7d82C1f19c",
|
311
|
+
],
|
312
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0xebcda5b80f62dd4dd2a96357b42bb6facbf30267/overview",
|
313
|
+
forwarders: [],
|
314
|
+
},
|
315
|
+
[reserveCampaigns.Clanker_Index_Reserve]: {
|
316
|
+
campaignType: Campaign.ERC20,
|
317
|
+
computeChainId: ChainId.BASE,
|
318
|
+
hooks: [],
|
319
|
+
targetToken: "0x44551CA46Fa5592bb572E20043f7C3D54c85cAD7",
|
320
|
+
whitelist: [],
|
321
|
+
blacklist: [
|
322
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
323
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
324
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
325
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
326
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
327
|
+
"0xca2895eA0cf677B175145f6876761e73989236bE",
|
328
|
+
"0xFdCCD04DDCa9eCf052E8e9eF6BD09a9b323fBF49",
|
329
|
+
],
|
330
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0x44551ca46fa5592bb572e20043f7c3d54c85cad7/overview",
|
331
|
+
forwarders: [],
|
332
|
+
},
|
333
|
+
[reserveCampaigns.AIndex_Reserve]: {
|
334
|
+
campaignType: Campaign.ERC20,
|
335
|
+
computeChainId: ChainId.BASE,
|
336
|
+
hooks: [],
|
337
|
+
targetToken: "0xfe45EDa533e97198d9f3dEEDA9aE6c147141f6F9",
|
338
|
+
whitelist: [],
|
339
|
+
blacklist: [
|
340
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
341
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
342
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
343
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
344
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
345
|
+
"0xC77Ea9c6895FC395CBb012CAAee62Ec5841EF463",
|
346
|
+
"0xeD5210Bd97d855E8BEc2389439B8487eEcC3FC60",
|
347
|
+
],
|
348
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0xfe45eda533e97198d9f3deeda9ae6c147141f6f9/overview",
|
349
|
+
forwarders: [],
|
350
|
+
},
|
351
|
+
[reserveCampaigns.Virtual_Index_Reserve]: {
|
352
|
+
campaignType: Campaign.ERC20,
|
353
|
+
computeChainId: ChainId.BASE,
|
354
|
+
hooks: [],
|
355
|
+
targetToken: "0x47686106181b3CEfe4eAf94C4c10b48Ac750370b",
|
356
|
+
whitelist: [],
|
357
|
+
blacklist: [
|
358
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
359
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
360
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
361
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
362
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
363
|
+
"0x2aD9125028d00E17155BfF44333757a7AA63f25C",
|
364
|
+
"0x130C5bc30567987861620971C6B60C08D3784eF8",
|
365
|
+
],
|
366
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0x47686106181b3cefe4eaf94c4c10b48ac750370b/overview",
|
367
|
+
forwarders: [],
|
368
|
+
},
|
369
|
+
[reserveCampaigns.MarketVector_Digital_Assets_25_Index_Reserve]: {
|
370
|
+
campaignType: Campaign.ERC20,
|
371
|
+
computeChainId: ChainId.BASE,
|
372
|
+
hooks: [],
|
373
|
+
targetToken: "0xD600e748C17Ca237Fcb5967Fa13d688AFf17Be78",
|
374
|
+
whitelist: [],
|
375
|
+
blacklist: [
|
376
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
377
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
378
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
379
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
380
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
381
|
+
"0x715A5B7B14fE441E3a2a7eF7028A14f541d6dc7a",
|
382
|
+
"0xF37631E6481e61011FbDccbCE714ab06A031FBa8",
|
383
|
+
],
|
384
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0xd600e748c17ca237fcb5967fa13d688aff17be78/overview",
|
385
|
+
forwarders: [],
|
386
|
+
},
|
387
|
+
[reserveCampaigns.Bloomberg_Galaxy_Crypto_Index_Reserve]: {
|
388
|
+
campaignType: Campaign.ERC20,
|
389
|
+
computeChainId: ChainId.BASE,
|
390
|
+
hooks: [],
|
391
|
+
targetToken: "0x23418De10d422AD71C9D5713a2B8991a9c586443",
|
392
|
+
whitelist: [],
|
393
|
+
blacklist: [
|
394
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
395
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
396
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
397
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
398
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
399
|
+
"0x464C97F7Db99E4529572fF21e8b4345482EaFa3e",
|
400
|
+
"0xD38d1AB8A150e6eE0AE70C86A8E9Fb0c83255b76",
|
401
|
+
],
|
402
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0x23418de10d422ad71c9d5713a2b8991a9c586443/overview",
|
403
|
+
forwarders: [],
|
404
|
+
},
|
405
|
+
[reserveCampaigns.MarketVector_Token_Terminal_Fundamental_Index_Reserve]: {
|
406
|
+
campaignType: Campaign.ERC20,
|
407
|
+
computeChainId: ChainId.BASE,
|
408
|
+
hooks: [],
|
409
|
+
targetToken: "0xe8b46b116D3BdFA787CE9CF3f5aCC78dc7cA380E",
|
410
|
+
whitelist: [],
|
411
|
+
blacklist: [
|
412
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
413
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
414
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
415
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
416
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
417
|
+
"0xcD5743695c9f010E00AEe3F6eC18047ffEcc5860",
|
418
|
+
"0xd19c0dbbC5Ba2eC4faa0e3FFf892F0E95F23D9e0",
|
419
|
+
],
|
420
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0xe8b46b116d3bdfa787ce9cf3f5acc78dc7ca380e/overview",
|
421
|
+
forwarders: [],
|
422
|
+
},
|
423
|
+
[reserveCampaigns.Base_MemeIndexer_DTF_Reserve]: {
|
424
|
+
campaignType: Campaign.ERC20,
|
425
|
+
computeChainId: ChainId.BASE,
|
426
|
+
hooks: [],
|
427
|
+
targetToken: "0xb8753941196692E322846cfEE9C14C97AC81928A",
|
428
|
+
whitelist: [],
|
429
|
+
blacklist: [
|
430
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
431
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
432
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
433
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
434
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
435
|
+
"0x0cE7A880Bb4aED45567b7F53273c552f4A5933AD",
|
436
|
+
"0x477172B5176CC93e8766860fd58b0C640898080d",
|
437
|
+
],
|
438
|
+
url: "https://feature-dtf.register-app.pages.dev/base/index-dtf/0xb8753941196692e322846cfee9c14c97ac81928a/overview",
|
439
|
+
forwarders: [],
|
440
|
+
},
|
441
|
+
[reserveCampaigns.Large_Cap_DeFi_Index_Reserve]: {
|
442
|
+
campaignType: Campaign.ERC20,
|
443
|
+
computeChainId: ChainId.MAINNET,
|
444
|
+
hooks: [],
|
445
|
+
targetToken: "0x20d81101D254729a6E689418526bE31e2c544290",
|
446
|
+
whitelist: [],
|
447
|
+
blacklist: [
|
448
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
449
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
450
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
451
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
452
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
453
|
+
"0x5a643101A1141EE197E551A5703E45529D45C25b",
|
454
|
+
"0x479e82b60f5885A3569d618d027Ef1Ac2020Ee82",
|
455
|
+
],
|
456
|
+
url: "https://feature-dtf.register-app.pages.dev/ethereum/index-dtf/0x20d81101d254729a6e689418526be31e2c544290/overview",
|
457
|
+
forwarders: [],
|
458
|
+
},
|
459
|
+
[reserveCampaigns.DeFi_Growth_Index_Reserve]: {
|
460
|
+
campaignType: Campaign.ERC20,
|
461
|
+
computeChainId: ChainId.MAINNET,
|
462
|
+
hooks: [],
|
463
|
+
targetToken: "0x9a1741E151233a82Cf69209A2F1bC7442B1fB29C",
|
464
|
+
whitelist: [],
|
465
|
+
blacklist: [
|
466
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
467
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
468
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
469
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
470
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
471
|
+
"0xe77502D649e0995887DE26A6DE190b1bf8A05A49",
|
472
|
+
"0x4BaF786bd59022c942DceE4282b17D1bc681C99f",
|
473
|
+
],
|
474
|
+
url: "https://feature-dtf.register-app.pages.dev/ethereum/index-dtf/0x9a1741e151233a82cf69209a2f1bc7442b1fb29c/overview",
|
475
|
+
forwarders: [],
|
476
|
+
},
|
477
|
+
[reserveCampaigns.CoinDesk_DeFi_Select_Index_Reserve]: {
|
478
|
+
campaignType: Campaign.ERC20,
|
479
|
+
computeChainId: ChainId.MAINNET,
|
480
|
+
hooks: [],
|
481
|
+
targetToken: "0x188D12Eb13a5Eadd0867074ce8354B1AD6f4790b",
|
482
|
+
whitelist: [],
|
483
|
+
blacklist: [
|
484
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
485
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
486
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
487
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
488
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
489
|
+
"0x9Cd28884c6D666B85976B20FD6ADF252eb207a80",
|
490
|
+
"0x1914256C2F70aAc87e097Cd8B07958e9F17F2BCd",
|
491
|
+
],
|
492
|
+
url: "https://feature-dtf.register-app.pages.dev/ethereum/index-dtf/0x188d12eb13a5eadd0867074ce8354b1ad6f4790b/overview",
|
493
|
+
forwarders: [],
|
494
|
+
},
|
495
|
+
[reserveCampaigns.RWA_Index_Reserve]: {
|
496
|
+
campaignType: Campaign.ERC20,
|
497
|
+
computeChainId: ChainId.MAINNET,
|
498
|
+
hooks: [],
|
499
|
+
targetToken: "0xA5cdea03B11042fc10B52aF9eCa48bb17A2107d2",
|
500
|
+
whitelist: [],
|
501
|
+
blacklist: [
|
502
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
503
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
504
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
505
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
506
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
507
|
+
"0x684a17b0965Cbf3D785ed769502CcB58981c0217",
|
508
|
+
"0xB986a32F468EdaD2F2F890094Ea39aE484FBCaF4",
|
509
|
+
],
|
510
|
+
url: "https://feature-dtf.register-app.pages.dev/ethereum/index-dtf/0xa5cdea03b11042fc10b52af9eca48bb17a2107d2/overview",
|
511
|
+
forwarders: [],
|
512
|
+
},
|
513
|
+
[reserveCampaigns.Imagine_the_SMEL_Reserve]: {
|
514
|
+
campaignType: Campaign.ERC20,
|
515
|
+
computeChainId: ChainId.MAINNET,
|
516
|
+
hooks: [],
|
517
|
+
targetToken: "0xF91384484F4717314798E8975BCd904A35fc2BF1",
|
518
|
+
whitelist: [],
|
519
|
+
blacklist: [
|
520
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
521
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
522
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
523
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
524
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
525
|
+
"0xaa7C902C01D8903fFd7918125A7301d99D662b75",
|
526
|
+
"0xB76726B4befE761a1859C1c02E7d157142E077c0",
|
527
|
+
],
|
528
|
+
url: "https://feature-dtf.register-app.pages.dev/ethereum/index-dtf/0xf91384484f4717314798e8975bcd904a35fc2bf1/overview",
|
529
|
+
forwarders: [],
|
530
|
+
},
|
531
|
+
[reserveCampaigns.BTC_ETH_DCA_Index_Reserve]: {
|
532
|
+
campaignType: Campaign.ERC20,
|
533
|
+
computeChainId: ChainId.MAINNET,
|
534
|
+
hooks: [],
|
535
|
+
targetToken: "0x4E3B170DcBe704b248df5f56D488114acE01B1C5",
|
536
|
+
whitelist: [],
|
537
|
+
blacklist: [
|
538
|
+
"0xa2122051abF8e382394f37B68D95f7C20Bc0941B",
|
539
|
+
"0x6f1D6b86d4ad705385e751e6e88b0FdFDBAdf298",
|
540
|
+
"0x03d03A026E71979BE3b08D44B01eAe4C5FF9da99",
|
541
|
+
"0x7cc1bfAB73bE4E02BB53814d1059A98cF7e49644",
|
542
|
+
"0xfBd42e965A2DB2035636aeB41e1A54DbCC1Cf1da",
|
543
|
+
"0xA0b139Ff2A3C1f7370E960EFfEa0Bce19A080148",
|
544
|
+
"0xAED9261caa6A795178a4ab4D3Be62f2D01b2c214",
|
545
|
+
],
|
546
|
+
url: "https://feature-dtf.register-app.pages.dev/ethereum/index-dtf/0x4e3b170dcbe704b248df5f56d488114ace01b1c5/overview",
|
547
|
+
forwarders: [],
|
548
|
+
},
|
549
|
+
};
|
278
550
|
const SonicmarketInterfaceCampaigns = {
|
279
551
|
[sonicmarketCampaigns.USDCe_S_Vault_Sonic_Market]: {
|
280
552
|
campaignType: Campaign.ERC20,
|
@@ -2012,7 +2284,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2012
2284
|
[zkSyncCampaigns.Zerolend_ZK]: {
|
2013
2285
|
campaignType: Campaign.ERC20,
|
2014
2286
|
computeChainId: ChainId.ZKSYNC,
|
2015
|
-
hooks: [
|
2287
|
+
hooks: [
|
2288
|
+
{
|
2289
|
+
hookType: HOOK.APIBOOST,
|
2290
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=zerolend&target=0x072416442a0e40135e75c0eefb4be708b74b6c8a",
|
2291
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2292
|
+
sendScores: false,
|
2293
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2294
|
+
},
|
2295
|
+
],
|
2016
2296
|
targetToken: "0x072416442a0e40135e75c0eefb4be708b74b6c8a",
|
2017
2297
|
whitelist: [],
|
2018
2298
|
blacklist: [],
|
@@ -2052,7 +2332,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2052
2332
|
[zkSyncCampaigns.Zerolend_WETH]: {
|
2053
2333
|
campaignType: Campaign.ERC20REBASELOGPROCESSOR,
|
2054
2334
|
computeChainId: ChainId.ZKSYNC,
|
2055
|
-
hooks: [
|
2335
|
+
hooks: [
|
2336
|
+
{
|
2337
|
+
hookType: HOOK.APIBOOST,
|
2338
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=zerolend&target=0x9002ecb8a06060e3b56669c6b8f18e1c3b119914",
|
2339
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2340
|
+
sendScores: false,
|
2341
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2342
|
+
},
|
2343
|
+
],
|
2056
2344
|
targetToken: "0x9002ecb8a06060e3b56669c6b8f18e1c3b119914",
|
2057
2345
|
whitelist: [],
|
2058
2346
|
blacklist: [],
|
@@ -2062,7 +2350,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2062
2350
|
[zkSyncCampaigns.Zerolend_USDC]: {
|
2063
2351
|
campaignType: Campaign.ERC20,
|
2064
2352
|
computeChainId: ChainId.ZKSYNC,
|
2065
|
-
hooks: [
|
2353
|
+
hooks: [
|
2354
|
+
{
|
2355
|
+
hookType: HOOK.APIBOOST,
|
2356
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=zerolend&target=0x9e20e83d636870a887ce7c85cecfb8b3e95c9db2",
|
2357
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2358
|
+
sendScores: false,
|
2359
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2360
|
+
},
|
2361
|
+
],
|
2066
2362
|
targetToken: "0x9e20e83d636870a887ce7c85cecfb8b3e95c9db2",
|
2067
2363
|
whitelist: [],
|
2068
2364
|
blacklist: [],
|
@@ -2072,7 +2368,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2072
2368
|
[zkSyncCampaigns.Zerolend_USN]: {
|
2073
2369
|
campaignType: Campaign.ERC20,
|
2074
2370
|
computeChainId: ChainId.ZKSYNC,
|
2075
|
-
hooks: [
|
2371
|
+
hooks: [
|
2372
|
+
{
|
2373
|
+
hookType: HOOK.APIBOOST,
|
2374
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=zerolend&target=0xe2b026b30deA792e56201308Bd566C1e1F43FB2C",
|
2375
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2376
|
+
sendScores: false,
|
2377
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2378
|
+
},
|
2379
|
+
],
|
2076
2380
|
targetToken: "0xe2b026b30deA792e56201308Bd566C1e1F43FB2C",
|
2077
2381
|
whitelist: [],
|
2078
2382
|
blacklist: [],
|
@@ -2082,7 +2386,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2082
2386
|
[zkSyncCampaigns.Aave_WstETH]: {
|
2083
2387
|
campaignType: Campaign.ERC20,
|
2084
2388
|
computeChainId: ChainId.ZKSYNC,
|
2085
|
-
hooks: [
|
2389
|
+
hooks: [
|
2390
|
+
{
|
2391
|
+
hookType: HOOK.APIBOOST,
|
2392
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=aave&target=0xd4e607633f3d984633e946aea4eb71f92564c1c9",
|
2393
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2394
|
+
sendScores: false,
|
2395
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2396
|
+
},
|
2397
|
+
],
|
2086
2398
|
targetToken: "0xd4e607633f3d984633e946aea4eb71f92564c1c9",
|
2087
2399
|
whitelist: [],
|
2088
2400
|
blacklist: [],
|
@@ -2092,7 +2404,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2092
2404
|
[zkSyncCampaigns.Aave_ZK]: {
|
2093
2405
|
campaignType: Campaign.ERC20,
|
2094
2406
|
computeChainId: ChainId.ZKSYNC,
|
2095
|
-
hooks: [
|
2407
|
+
hooks: [
|
2408
|
+
{
|
2409
|
+
hookType: HOOK.APIBOOST,
|
2410
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=aave&target=0xd6cd2c0fc55936498726cacc497832052a9b2d1b",
|
2411
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2412
|
+
sendScores: false,
|
2413
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2414
|
+
},
|
2415
|
+
],
|
2096
2416
|
targetToken: "0xd6cd2c0fc55936498726cacc497832052a9b2d1b",
|
2097
2417
|
whitelist: [],
|
2098
2418
|
blacklist: [],
|
@@ -2102,7 +2422,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2102
2422
|
[zkSyncCampaigns.Aave_WETH]: {
|
2103
2423
|
campaignType: Campaign.ERC20,
|
2104
2424
|
computeChainId: ChainId.ZKSYNC,
|
2105
|
-
hooks: [
|
2425
|
+
hooks: [
|
2426
|
+
{
|
2427
|
+
hookType: HOOK.APIBOOST,
|
2428
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=aave&target=0xb7b93bcf82519bb757fd18b23a389245dbd8ca64",
|
2429
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2430
|
+
sendScores: false,
|
2431
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2432
|
+
},
|
2433
|
+
],
|
2106
2434
|
targetToken: "0xb7b93bcf82519bb757fd18b23a389245dbd8ca64",
|
2107
2435
|
whitelist: [],
|
2108
2436
|
blacklist: [],
|
@@ -2112,7 +2440,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2112
2440
|
[zkSyncCampaigns.Aave_USDC]: {
|
2113
2441
|
campaignType: Campaign.ERC20,
|
2114
2442
|
computeChainId: ChainId.ZKSYNC,
|
2115
|
-
hooks: [
|
2443
|
+
hooks: [
|
2444
|
+
{
|
2445
|
+
hookType: HOOK.APIBOOST,
|
2446
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=aave&target=0xe977f9b2a5ccf0457870a67231f23be4daecfbdb",
|
2447
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2448
|
+
sendScores: false,
|
2449
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2450
|
+
},
|
2451
|
+
],
|
2116
2452
|
targetToken: "0xe977f9b2a5ccf0457870a67231f23be4daecfbdb",
|
2117
2453
|
whitelist: [],
|
2118
2454
|
blacklist: [],
|
@@ -2122,7 +2458,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2122
2458
|
[zkSyncCampaigns.Venus_WETH]: {
|
2123
2459
|
campaignType: Campaign.ERC20,
|
2124
2460
|
computeChainId: ChainId.ZKSYNC,
|
2125
|
-
hooks: [
|
2461
|
+
hooks: [
|
2462
|
+
{
|
2463
|
+
hookType: HOOK.APIBOOST,
|
2464
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=venus&target=0x1fa916c27c7c2c4602124a14c77dbb40a5ff1be8",
|
2465
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2466
|
+
sendScores: false,
|
2467
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2468
|
+
},
|
2469
|
+
],
|
2126
2470
|
targetToken: "0x1fa916c27c7c2c4602124a14c77dbb40a5ff1be8",
|
2127
2471
|
whitelist: [],
|
2128
2472
|
blacklist: [],
|
@@ -2142,7 +2486,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2142
2486
|
[zkSyncCampaigns.Venus_ZK]: {
|
2143
2487
|
campaignType: Campaign.ERC20,
|
2144
2488
|
computeChainId: ChainId.ZKSYNC,
|
2145
|
-
hooks: [
|
2489
|
+
hooks: [
|
2490
|
+
{
|
2491
|
+
hookType: HOOK.APIBOOST,
|
2492
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=venus&target=0x697a70779c1a03ba2bd28b7627a902bff831b616",
|
2493
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2494
|
+
sendScores: false,
|
2495
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2496
|
+
},
|
2497
|
+
],
|
2146
2498
|
targetToken: "0x697a70779c1a03ba2bd28b7627a902bff831b616",
|
2147
2499
|
whitelist: [],
|
2148
2500
|
blacklist: [],
|
@@ -2162,7 +2514,15 @@ const ZkSyncInterfaceCampaigns = {
|
|
2162
2514
|
[zkSyncCampaigns.Venus_USDC]: {
|
2163
2515
|
campaignType: Campaign.ERC20,
|
2164
2516
|
computeChainId: ChainId.ZKSYNC,
|
2165
|
-
hooks: [
|
2517
|
+
hooks: [
|
2518
|
+
{
|
2519
|
+
hookType: HOOK.APIBOOST,
|
2520
|
+
url: "https://api.merkl.xyz/v4/boosts/openblock/zksync?protocol=venus&target=0x84064c058f2efea4ab648bb6bd7e40f83ffde39a",
|
2521
|
+
boostingFunction: boostingFunction.MULTIPLY,
|
2522
|
+
sendScores: false,
|
2523
|
+
defaultBoost: defaultBoost.ZERO_ADDRESS,
|
2524
|
+
},
|
2525
|
+
],
|
2166
2526
|
targetToken: "0x84064c058f2efea4ab648bb6bd7e40f83ffde39a",
|
2167
2527
|
whitelist: [],
|
2168
2528
|
blacklist: [],
|
@@ -2315,9 +2675,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2315
2675
|
blacklist: [],
|
2316
2676
|
url: "https://dapp.koi.finance/pool/v3/new/0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4/0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91/100",
|
2317
2677
|
isOutOfRangeIncentivized: false,
|
2318
|
-
weightFees:
|
2319
|
-
weightToken0:
|
2320
|
-
weightToken1:
|
2678
|
+
weightFees: 3000,
|
2679
|
+
weightToken0: 3500,
|
2680
|
+
weightToken1: 3500,
|
2321
2681
|
},
|
2322
2682
|
[zkSyncCampaigns.Koi_Finance_ZK_WETH_50]: {
|
2323
2683
|
campaignType: Campaign.CLAMM,
|
@@ -2328,9 +2688,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2328
2688
|
blacklist: [],
|
2329
2689
|
url: "https://dapp.koi.finance/pool/v3/new/0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e/0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91/100",
|
2330
2690
|
isOutOfRangeIncentivized: false,
|
2331
|
-
weightFees:
|
2332
|
-
weightToken0:
|
2333
|
-
weightToken1:
|
2691
|
+
weightFees: 3000,
|
2692
|
+
weightToken0: 3500,
|
2693
|
+
weightToken1: 3500,
|
2334
2694
|
},
|
2335
2695
|
[zkSyncCampaigns.Koi_Finance_USDCe_wETH]: {
|
2336
2696
|
campaignType: Campaign.ERC20REBASELOGPROCESSOR,
|
@@ -2364,9 +2724,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2364
2724
|
blacklist: [],
|
2365
2725
|
url: "https://pancakeswap.finance/add/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91/100",
|
2366
2726
|
isOutOfRangeIncentivized: false,
|
2367
|
-
weightFees:
|
2368
|
-
weightToken0:
|
2369
|
-
weightToken1:
|
2727
|
+
weightFees: 3000,
|
2728
|
+
weightToken0: 3500,
|
2729
|
+
weightToken1: 3500,
|
2370
2730
|
},
|
2371
2731
|
[zkSyncCampaigns.PancakeSwap_USDCe_ZK]: {
|
2372
2732
|
campaignType: Campaign.CLAMM,
|
@@ -2416,9 +2776,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2416
2776
|
blacklist: [],
|
2417
2777
|
url: "https://pancakeswap.finance/add/0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91/0x5A7d6b2F92C77FAD6CCaBd7EE0624E64907Eaf3E/2500",
|
2418
2778
|
isOutOfRangeIncentivized: false,
|
2419
|
-
weightFees:
|
2420
|
-
weightToken0:
|
2421
|
-
weightToken1:
|
2779
|
+
weightFees: 3000,
|
2780
|
+
weightToken0: 3500,
|
2781
|
+
weightToken1: 3500,
|
2422
2782
|
},
|
2423
2783
|
[zkSyncCampaigns.Uniswap_USDC_USDCe]: {
|
2424
2784
|
campaignType: Campaign.CLAMM,
|
@@ -2442,9 +2802,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2442
2802
|
blacklist: [],
|
2443
2803
|
url: "https://app.uniswap.org/positions/create",
|
2444
2804
|
isOutOfRangeIncentivized: false,
|
2445
|
-
weightFees:
|
2446
|
-
weightToken0:
|
2447
|
-
weightToken1:
|
2805
|
+
weightFees: 3000,
|
2806
|
+
weightToken0: 3500,
|
2807
|
+
weightToken1: 3500,
|
2448
2808
|
},
|
2449
2809
|
[zkSyncCampaigns.Uniswap_USDCe_ZK]: {
|
2450
2810
|
campaignType: Campaign.CLAMM,
|
@@ -2468,9 +2828,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2468
2828
|
blacklist: [],
|
2469
2829
|
url: "https://app.uniswap.org/positions/create",
|
2470
2830
|
isOutOfRangeIncentivized: false,
|
2471
|
-
weightFees:
|
2472
|
-
weightToken0:
|
2473
|
-
weightToken1:
|
2831
|
+
weightFees: 3000,
|
2832
|
+
weightToken0: 3500,
|
2833
|
+
weightToken1: 3500,
|
2474
2834
|
},
|
2475
2835
|
[zkSyncCampaigns.Maverick_USDC_USDCe_Boosted]: {
|
2476
2836
|
campaignType: Campaign.ERC20,
|
@@ -2757,9 +3117,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2757
3117
|
blacklist: [],
|
2758
3118
|
url: "https://syncswap.xyz/pool",
|
2759
3119
|
isOutOfRangeIncentivized: false,
|
2760
|
-
weightFees:
|
2761
|
-
weightToken0:
|
2762
|
-
weightToken1:
|
3120
|
+
weightFees: 3000,
|
3121
|
+
weightToken0: 3500,
|
3122
|
+
weightToken1: 3500,
|
2763
3123
|
},
|
2764
3124
|
[zkSyncCampaigns.SyncSwap_USDCe_ETH_Range]: {
|
2765
3125
|
campaignType: Campaign.CLAMM,
|
@@ -2796,9 +3156,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2796
3156
|
blacklist: [],
|
2797
3157
|
url: "https://syncswap.xyz/pool",
|
2798
3158
|
isOutOfRangeIncentivized: false,
|
2799
|
-
weightFees:
|
2800
|
-
weightToken0:
|
2801
|
-
weightToken1:
|
3159
|
+
weightFees: 3000,
|
3160
|
+
weightToken0: 3500,
|
3161
|
+
weightToken1: 3500,
|
2802
3162
|
},
|
2803
3163
|
[zkSyncCampaigns.ZKSwap_wrsETH_ETH]: {
|
2804
3164
|
campaignType: Campaign.ERC20,
|
@@ -2911,9 +3271,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2911
3271
|
blacklist: [],
|
2912
3272
|
url: "https://www.zkswap.finance/earn/pools?category=DEFI&type=2",
|
2913
3273
|
isOutOfRangeIncentivized: false,
|
2914
|
-
weightFees:
|
2915
|
-
weightToken0:
|
2916
|
-
weightToken1:
|
3274
|
+
weightFees: 3000,
|
3275
|
+
weightToken0: 3500,
|
3276
|
+
weightToken1: 3500,
|
2917
3277
|
},
|
2918
3278
|
[zkSyncCampaigns.ZKSwap_WETH_WBTC]: {
|
2919
3279
|
campaignType: Campaign.CLAMM,
|
@@ -2937,9 +3297,9 @@ const ZkSyncInterfaceCampaigns = {
|
|
2937
3297
|
blacklist: [],
|
2938
3298
|
url: "https://www.zkswap.finance/earn/pools?category=DEFI&type=2",
|
2939
3299
|
isOutOfRangeIncentivized: false,
|
2940
|
-
weightFees:
|
2941
|
-
weightToken0:
|
2942
|
-
weightToken1:
|
3300
|
+
weightFees: 3000,
|
3301
|
+
weightToken0: 3500,
|
3302
|
+
weightToken1: 3500,
|
2943
3303
|
},
|
2944
3304
|
[zkSyncCampaigns.ZKSwap_wstETH_ETH_20]: {
|
2945
3305
|
campaignType: Campaign.CLAMM,
|
@@ -3409,4 +3769,5 @@ export const MerklInterfaceCampaigns = {
|
|
3409
3769
|
[program.Mode]: ModeInterfaceCampaigns,
|
3410
3770
|
[program.Vicuna]: VicunaInterfaceCampaigns,
|
3411
3771
|
[program.Sonicmarket]: SonicmarketInterfaceCampaigns,
|
3772
|
+
[program.Reserve]: ReserveInterfaceCampaigns,
|
3412
3773
|
};
|