@merkl/api 1.3.39 → 1.3.41
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 +58 -150
- package/dist/src/engine/deprecated/dynamicData/implementations/Clamm.js.map +1 -1
- package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.d.ts +0 -4
- package/dist/src/engine/deprecated/dynamicData/implementations/Radiant.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/pendleYT/tvl.d.ts +6 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/pendleYT/tvl.js.map +1 -0
- package/dist/src/index.d.ts +58 -155
- package/dist/src/jobs/reward-breakdowns.js.map +1 -1
- package/dist/src/libs/computeFee.d.ts +2 -2
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/campaign-batch/campaign-batch.service.d.ts +2 -2
- package/dist/src/modules/v4/opportunity/opportunity.converter.d.ts +2 -142
- package/dist/src/modules/v4/opportunity/opportunity.converter.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.formatter.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +21 -21
- package/dist/src/modules/v4/payload/payload.controller.d.ts +0 -27
- package/dist/src/modules/v4/payload/payload.controller.js.map +1 -1
- package/dist/src/modules/v4/payload/payload.model.d.ts +10 -10
- package/dist/src/modules/v4/payload/payload.service.d.ts +3 -8
- package/dist/src/modules/v4/payload/payload.service.js.map +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +57 -57
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +18 -18
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +101 -47
- package/dist/src/modules/v4/programPayload/programPayload.repository.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/coinbase.d.ts +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/coinbase.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.d.ts +17 -17
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/nibiru.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.d.ts +2 -2
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.d.ts +34 -34
- package/dist/src/modules/v4/programPayload/subPayloads/tac.js.map +1 -1
- package/dist/src/modules/v4/reward/reward.repository.d.ts +3 -2
- package/dist/src/modules/v4/reward/reward.repository.js.map +1 -1
- package/dist/src/modules/v4/reward/reward.service.d.ts +1 -0
- package/dist/src/modules/v4/reward/reward.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +57 -84
- package/dist/src/routes/v3/opportunity.d.ts +1 -71
- package/dist/src/routes/v3/router.d.ts +1 -71
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { CampaignType, CompFork, CompoundSubCampaignType, CompoundV3SubCampaignType, ComputeScoreMethod, ComputeScoreParameters, DistributionMethod, DistributionParameters, EulerSubCampaignType, Forwarder, ForwarderParameters, GenericCampaignConfigComposed,
|
1
|
+
import type { CampaignType, CompFork, CompoundSubCampaignType, CompoundV3SubCampaignType, ComputeScoreMethod, ComputeScoreParameters, DistributionMethod, DistributionParameters, EulerSubCampaignType, Forwarder, ForwarderParameters, GenericCampaignConfigComposed, HookParameters, HookType, MerklChainId, MorphoSubCampaignType } from "@package/sdk";
|
2
2
|
import type { LockerEventSchema } from "@package/sdk/types/merkl/campaignTypes/locker";
|
3
3
|
import type { ComputeCurveMethod, ComputeCurveParameters } from "@package/sdk/types/merkl/computeCurve";
|
4
4
|
// ─── DTOs ────────────────────────────────────────────────────────────────────
|
@@ -148,7 +148,7 @@ export type safePayload = {
|
|
148
148
|
};
|
149
149
|
export type partialConfigERC20 = {
|
150
150
|
computeChainId?: MerklChainId;
|
151
|
-
hooks?: (HookParameters<
|
151
|
+
hooks?: (HookParameters<HookType> | string)[];
|
152
152
|
campaignType: CampaignType;
|
153
153
|
targetToken: string;
|
154
154
|
whitelist: string[];
|
@@ -159,7 +159,7 @@ export type partialConfigERC20 = {
|
|
159
159
|
};
|
160
160
|
export type partialConfigTermFinance = {
|
161
161
|
computeChainId?: MerklChainId;
|
162
|
-
hooks?: (HookParameters<
|
162
|
+
hooks?: (HookParameters<HookType> | string)[];
|
163
163
|
campaignType: CampaignType;
|
164
164
|
collateral: string;
|
165
165
|
whitelist: string[];
|
@@ -169,7 +169,7 @@ export type partialConfigTermFinance = {
|
|
169
169
|
};
|
170
170
|
export type partialConfigMORPHOBORROW = {
|
171
171
|
computeChainId?: MerklChainId;
|
172
|
-
hooks?: (HookParameters<
|
172
|
+
hooks?: (HookParameters<HookType> | string)[];
|
173
173
|
campaignType: CampaignType;
|
174
174
|
market: string;
|
175
175
|
whitelist: string[];
|
@@ -178,7 +178,7 @@ export type partialConfigMORPHOBORROW = {
|
|
178
178
|
};
|
179
179
|
export type partialConfigMORPHOSUPPLY = {
|
180
180
|
computeChainId?: MerklChainId;
|
181
|
-
hooks?: (HookParameters<
|
181
|
+
hooks?: (HookParameters<HookType> | string)[];
|
182
182
|
campaignType: CampaignType;
|
183
183
|
market: string;
|
184
184
|
whitelist: string[];
|
@@ -189,7 +189,7 @@ export type partialConfigMORPHOSUPPLY = {
|
|
189
189
|
};
|
190
190
|
export type partialConfigMORPHOVAULT = {
|
191
191
|
computeChainId?: MerklChainId;
|
192
|
-
hooks?: (HookParameters<
|
192
|
+
hooks?: (HookParameters<HookType> | string)[];
|
193
193
|
campaignType: CampaignType;
|
194
194
|
targetToken: string;
|
195
195
|
whitelist: string[];
|
@@ -200,7 +200,7 @@ export type partialConfigMORPHOVAULT = {
|
|
200
200
|
};
|
201
201
|
export type partialConfigERC20FixedAPR = {
|
202
202
|
computeChainId?: MerklChainId;
|
203
|
-
hooks?: (HookParameters<
|
203
|
+
hooks?: (HookParameters<HookType> | string)[];
|
204
204
|
campaignType: CampaignType;
|
205
205
|
targetToken: string;
|
206
206
|
whitelist: string[];
|
@@ -213,7 +213,7 @@ export type partialConfigERC20FixedAPR = {
|
|
213
213
|
};
|
214
214
|
export type partialConfigEULER = {
|
215
215
|
computeChainId: MerklChainId;
|
216
|
-
hooks?: (HookParameters<
|
216
|
+
hooks?: (HookParameters<HookType> | string)[];
|
217
217
|
campaignType: CampaignType;
|
218
218
|
subCampaignType: EulerSubCampaignType;
|
219
219
|
evkAddress: string;
|
@@ -229,7 +229,7 @@ export type partialConfigMultiLog = {
|
|
229
229
|
composedCampaignsCompute: string;
|
230
230
|
computeScoreParameters: ComputeScoreParameters<ComputeScoreMethod> | string;
|
231
231
|
computeChainId?: MerklChainId;
|
232
|
-
hooks?: (HookParameters<
|
232
|
+
hooks?: (HookParameters<HookType> | string)[];
|
233
233
|
campaignType: CampaignType;
|
234
234
|
whitelist: string[];
|
235
235
|
blacklist: string[];
|
@@ -240,7 +240,7 @@ export type partialCongigERC20LOGPROCESSOR = {
|
|
240
240
|
computeChainId: MerklChainId;
|
241
241
|
campaignType: CampaignType;
|
242
242
|
targetToken: string;
|
243
|
-
hooks?: (HookParameters<
|
243
|
+
hooks?: (HookParameters<HookType> | string)[];
|
244
244
|
forwarders?: ForwarderParameters<Forwarder>[];
|
245
245
|
whitelist: string[];
|
246
246
|
blacklist: string[];
|
@@ -252,7 +252,7 @@ export type partialCongigAAVE_SUPPLY = {
|
|
252
252
|
computeChainId: MerklChainId;
|
253
253
|
campaignType: CampaignType;
|
254
254
|
targetToken: string;
|
255
|
-
hooks?: (HookParameters<
|
255
|
+
hooks?: (HookParameters<HookType> | string)[];
|
256
256
|
forwarders?: ForwarderParameters<Forwarder>[];
|
257
257
|
whitelist: string[];
|
258
258
|
blacklist: string[];
|
@@ -262,7 +262,7 @@ export type partialCongigAAVE_SUPPLY = {
|
|
262
262
|
};
|
263
263
|
export type partialConfigCompoundV3 = {
|
264
264
|
computeChainId?: MerklChainId;
|
265
|
-
hooks?: (HookParameters<
|
265
|
+
hooks?: (HookParameters<HookType> | string)[];
|
266
266
|
campaignType: CampaignType;
|
267
267
|
targetToken: string;
|
268
268
|
whitelist: string[];
|
@@ -272,7 +272,7 @@ export type partialConfigCompoundV3 = {
|
|
272
272
|
};
|
273
273
|
export type partialConfigMorpho = {
|
274
274
|
computeChainId?: MerklChainId;
|
275
|
-
hooks?: (HookParameters<
|
275
|
+
hooks?: (HookParameters<HookType> | string)[];
|
276
276
|
campaignType: CampaignType;
|
277
277
|
whitelist: string[];
|
278
278
|
blacklist: string[];
|
@@ -286,7 +286,7 @@ export type partialConfigMorpho = {
|
|
286
286
|
});
|
287
287
|
export type partialConfigCLAMM = {
|
288
288
|
computeChainId?: MerklChainId;
|
289
|
-
hooks?: (HookParameters<
|
289
|
+
hooks?: (HookParameters<HookType> | string)[];
|
290
290
|
campaignType: CampaignType;
|
291
291
|
poolAddress: string;
|
292
292
|
isOutOfRangeIncentivized: boolean;
|
@@ -299,7 +299,7 @@ export type partialConfigCLAMM = {
|
|
299
299
|
};
|
300
300
|
export type partialConfigIonic = {
|
301
301
|
computeChainId?: MerklChainId;
|
302
|
-
hooks?: (HookParameters<
|
302
|
+
hooks?: (HookParameters<HookType> | string)[];
|
303
303
|
campaignType: CampaignType;
|
304
304
|
endTimestamp: number;
|
305
305
|
subCampaignType: CompoundSubCampaignType;
|
@@ -313,13 +313,13 @@ export type partialConfigAirdrop = {
|
|
313
313
|
jsonUrl: string;
|
314
314
|
url?: string;
|
315
315
|
computeChainId?: MerklChainId;
|
316
|
-
hooks?: (HookParameters<
|
316
|
+
hooks?: (HookParameters<HookType> | string)[];
|
317
317
|
campaignType: CampaignType;
|
318
318
|
};
|
319
319
|
export type partialConfigLocker = {
|
320
320
|
url?: string;
|
321
321
|
computeChainId?: MerklChainId;
|
322
|
-
hooks?: (HookParameters<
|
322
|
+
hooks?: (HookParameters<HookType> | string)[];
|
323
323
|
campaignType: CampaignType;
|
324
324
|
lockerContract: string;
|
325
325
|
whitelist: string[];
|
@@ -339,7 +339,7 @@ export type partialConfigStakingVault = {
|
|
339
339
|
blacklist: string[];
|
340
340
|
computeScoreParameters: ComputeScoreParameters<ComputeScoreMethod> | string;
|
341
341
|
distributionMethodParameters: DistributionParameters<DistributionMethod>;
|
342
|
-
hooks?: (HookParameters<
|
342
|
+
hooks?: (HookParameters<HookType> | string)[];
|
343
343
|
url?: string;
|
344
344
|
};
|
345
345
|
export type partialConfig = partialConfigERC20 | partialConfigMorpho | partialConfigCLAMM | partialConfigIonic | partialConfigCompoundV3 | partialConfigMultiLog | partialConfigLocker | partialConfigAirdrop | partialConfigERC20FixedAPR | partialConfigMORPHOBORROW | partialConfigMORPHOSUPPLY | partialConfigMORPHOVAULT | partialConfigEULER | partialCongigERC20LOGPROCESSOR | partialConfigTermFinance | partialConfigStakingVault;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BorrowBLProtocols, CampaignType, ChainId, ComposedType, CompoundV3SubCampaignType, ComputeScoreMethod, DistributionMethod, EulerSubCampaignType,
|
1
|
+
import { BorrowBLProtocols, CampaignType, ChainId, ComposedType, CompoundV3SubCampaignType, ComputeScoreMethod, DistributionMethod, EulerSubCampaignType, HookType, WhitelistCampaignProtocols, boostingReferralFunction, contractStateBoost, defaultReferralBoost } from "@package/sdk";
|
2
2
|
import type { partialConfig } from "./programPayload.model";
|
3
3
|
import { BakerDaoSubPayloads } from "./subPayloads/bakerdao";
|
4
4
|
import { BancorSubPayloads } from "./subPayloads/bancor";
|
@@ -56,6 +56,12 @@ export declare enum MorphoCampaigns {
|
|
56
56
|
Borrow_vbUSDC_to_any_market_Katana = "Borrow vbUSDC 0x203A662b0BD271A6ed5a60EdFbd04bFce608FD36 to any market Katana",
|
57
57
|
Borrow_vbETH_to_any_market_Katana = "Borrow vbETH 0xEE7D8BCFb72bC1880D0Cf19822eB0A2e6577aB62 to any market Katana",
|
58
58
|
Borrow_AUSD_to_any_market_Katana = "Borrow AUSD 0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a to any market Katana",
|
59
|
+
Supply_vbWBTC_to_any_market_Katana = "Supply vbWBTC 0x0913DA6Da4b42f538B445599b46Bb4622342Cf52 to any market Katana",
|
60
|
+
Supply_vbUSDT_to_any_market_Katana = "Supply vbUSDT 0x2DCa96907fde857dd3D816880A0df407eeB2D2F2 to any market Katana",
|
61
|
+
Supply_uSOL_to_any_market_Katana = "Supply uSOL 0x9B8Df6E244526ab5F6e6400d331DB28C8fdDdb55 to any market Katana",
|
62
|
+
Borrow_vbWBTC_to_any_market_Katana = "Borrow vbWBTC 0x0913DA6Da4b42f538B445599b46Bb4622342Cf52 to any market Katana",
|
63
|
+
Borrow_vbUSDT_to_any_market_Katana = "Borrow vbUSDT 0x2DCa96907fde857dd3D816880A0df407eeB2D2F2 to any market Katana",
|
64
|
+
Borrow_uSOL_to_any_market_Katana = "Borrow uSOL 0x9B8Df6E244526ab5F6e6400d331DB28C8fdDdb55 to any market Katana",
|
59
65
|
Supply_USDC_to_any_market_Unichain = "Supply USDC 0x078D782b760474a361dDA0AF3839290b0EF57AD6 to any market Unichain",
|
60
66
|
Supply_WETH_to_any_market_Unichain = "Supply WETH 0x4200000000000000000000000000000000000006 to any market Unichain",
|
61
67
|
Supply_USDT0_to_any_market_Unichain = "Supply USDT0 0x9151434b16b9763660705744891fA906F660EcC5 to any market Unichain",
|
@@ -2293,6 +2299,54 @@ declare const MorphoCampaignsInterface: {
|
|
2293
2299
|
blacklist: never[];
|
2294
2300
|
hooks: never[];
|
2295
2301
|
};
|
2302
|
+
"Supply vbWBTC 0x0913DA6Da4b42f538B445599b46Bb4622342Cf52 to any market Katana": {
|
2303
|
+
computeChainId: ChainId;
|
2304
|
+
campaignType: CampaignType;
|
2305
|
+
targetToken: string;
|
2306
|
+
whitelist: never[];
|
2307
|
+
blacklist: never[];
|
2308
|
+
hooks: never[];
|
2309
|
+
};
|
2310
|
+
"Borrow vbWBTC 0x0913DA6Da4b42f538B445599b46Bb4622342Cf52 to any market Katana": {
|
2311
|
+
computeChainId: ChainId;
|
2312
|
+
campaignType: CampaignType;
|
2313
|
+
targetToken: string;
|
2314
|
+
whitelist: never[];
|
2315
|
+
blacklist: never[];
|
2316
|
+
hooks: never[];
|
2317
|
+
};
|
2318
|
+
"Supply vbUSDT 0x2DCa96907fde857dd3D816880A0df407eeB2D2F2 to any market Katana": {
|
2319
|
+
computeChainId: ChainId;
|
2320
|
+
campaignType: CampaignType;
|
2321
|
+
targetToken: string;
|
2322
|
+
whitelist: never[];
|
2323
|
+
blacklist: never[];
|
2324
|
+
hooks: never[];
|
2325
|
+
};
|
2326
|
+
"Borrow vbUSDT 0x2DCa96907fde857dd3D816880A0df407eeB2D2F2 to any market Katana": {
|
2327
|
+
computeChainId: ChainId;
|
2328
|
+
campaignType: CampaignType;
|
2329
|
+
targetToken: string;
|
2330
|
+
whitelist: never[];
|
2331
|
+
blacklist: never[];
|
2332
|
+
hooks: never[];
|
2333
|
+
};
|
2334
|
+
"Supply uSOL 0x9B8Df6E244526ab5F6e6400d331DB28C8fdDdb55 to any market Katana": {
|
2335
|
+
computeChainId: ChainId;
|
2336
|
+
campaignType: CampaignType;
|
2337
|
+
targetToken: string;
|
2338
|
+
whitelist: never[];
|
2339
|
+
blacklist: never[];
|
2340
|
+
hooks: never[];
|
2341
|
+
};
|
2342
|
+
"Borrow uSOL 0x9B8Df6E244526ab5F6e6400d331DB28C8fdDdb55 to any market Katana": {
|
2343
|
+
computeChainId: ChainId;
|
2344
|
+
campaignType: CampaignType;
|
2345
|
+
targetToken: string;
|
2346
|
+
whitelist: never[];
|
2347
|
+
blacklist: never[];
|
2348
|
+
hooks: never[];
|
2349
|
+
};
|
2296
2350
|
"Supply vbUSDC 0x203A662b0BD271A6ed5a60EdFbd04bFce608FD36 to any market Katana": {
|
2297
2351
|
computeChainId: ChainId;
|
2298
2352
|
campaignType: CampaignType;
|
@@ -2539,7 +2593,7 @@ declare const MorphoCampaignsInterface: {
|
|
2539
2593
|
whitelist: never[];
|
2540
2594
|
blacklist: never[];
|
2541
2595
|
hooks: {
|
2542
|
-
hookType:
|
2596
|
+
hookType: HookType;
|
2543
2597
|
protocol: WhitelistCampaignProtocols;
|
2544
2598
|
bytesLike: string[];
|
2545
2599
|
computeChainId: ChainId;
|
@@ -2567,7 +2621,7 @@ declare const MorphoCampaignsInterface: {
|
|
2567
2621
|
blacklist: never[];
|
2568
2622
|
forwarders: never[];
|
2569
2623
|
hooks: {
|
2570
|
-
hookType:
|
2624
|
+
hookType: HookType;
|
2571
2625
|
protocol: WhitelistCampaignProtocols;
|
2572
2626
|
bytesLike: string[];
|
2573
2627
|
computeChainId: ChainId;
|
@@ -3515,7 +3569,7 @@ declare const EthenaCampaigns: {
|
|
3515
3569
|
whitelist: never[];
|
3516
3570
|
blacklist: string[];
|
3517
3571
|
hooks: {
|
3518
|
-
hookType:
|
3572
|
+
hookType: HookType;
|
3519
3573
|
protocol: BorrowBLProtocols;
|
3520
3574
|
borrowBytesLike: string[];
|
3521
3575
|
computeChainId: ChainId;
|
@@ -3540,7 +3594,7 @@ declare const EthenaCampaigns: {
|
|
3540
3594
|
whitelist: never[];
|
3541
3595
|
blacklist: never[];
|
3542
3596
|
hooks: {
|
3543
|
-
hookType:
|
3597
|
+
hookType: HookType;
|
3544
3598
|
protocol: BorrowBLProtocols;
|
3545
3599
|
borrowBytesLike: string[];
|
3546
3600
|
computeChainId: ChainId;
|
@@ -3565,7 +3619,7 @@ declare const EthenaCampaigns: {
|
|
3565
3619
|
whitelist: never[];
|
3566
3620
|
blacklist: never[];
|
3567
3621
|
hooks: {
|
3568
|
-
hookType:
|
3622
|
+
hookType: HookType;
|
3569
3623
|
protocol: BorrowBLProtocols;
|
3570
3624
|
borrowBytesLike: string[];
|
3571
3625
|
computeChainId: ChainId;
|
@@ -3589,7 +3643,7 @@ declare const EthenaCampaigns: {
|
|
3589
3643
|
whitelist: never[];
|
3590
3644
|
blacklist: never[];
|
3591
3645
|
hooks: {
|
3592
|
-
hookType:
|
3646
|
+
hookType: HookType;
|
3593
3647
|
protocol: BorrowBLProtocols;
|
3594
3648
|
borrowBytesLike: string[];
|
3595
3649
|
computeChainId: ChainId;
|
@@ -3613,7 +3667,7 @@ declare const EthenaCampaigns: {
|
|
3613
3667
|
whitelist: never[];
|
3614
3668
|
blacklist: never[];
|
3615
3669
|
hooks: {
|
3616
|
-
hookType:
|
3670
|
+
hookType: HookType;
|
3617
3671
|
protocol: BorrowBLProtocols;
|
3618
3672
|
borrowBytesLike: string[];
|
3619
3673
|
computeChainId: ChainId;
|
@@ -3637,7 +3691,7 @@ declare const EthenaCampaigns: {
|
|
3637
3691
|
whitelist: never[];
|
3638
3692
|
blacklist: never[];
|
3639
3693
|
hooks: {
|
3640
|
-
hookType:
|
3694
|
+
hookType: HookType;
|
3641
3695
|
protocol: BorrowBLProtocols;
|
3642
3696
|
borrowBytesLike: string[];
|
3643
3697
|
computeChainId: ChainId;
|
@@ -3661,7 +3715,7 @@ declare const EthenaCampaigns: {
|
|
3661
3715
|
whitelist: never[];
|
3662
3716
|
blacklist: never[];
|
3663
3717
|
hooks: {
|
3664
|
-
hookType:
|
3718
|
+
hookType: HookType;
|
3665
3719
|
protocol: BorrowBLProtocols;
|
3666
3720
|
borrowBytesLike: string[];
|
3667
3721
|
computeChainId: ChainId;
|
@@ -3685,7 +3739,7 @@ declare const EthenaCampaigns: {
|
|
3685
3739
|
whitelist: never[];
|
3686
3740
|
blacklist: never[];
|
3687
3741
|
hooks: {
|
3688
|
-
hookType:
|
3742
|
+
hookType: HookType;
|
3689
3743
|
protocol: BorrowBLProtocols;
|
3690
3744
|
borrowBytesLike: string[];
|
3691
3745
|
computeChainId: ChainId;
|
@@ -3818,7 +3872,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3818
3872
|
campaignType: CampaignType;
|
3819
3873
|
computeChainId: ChainId;
|
3820
3874
|
hooks: {
|
3821
|
-
hookType:
|
3875
|
+
hookType: HookType;
|
3822
3876
|
key: string;
|
3823
3877
|
chainId: ChainId;
|
3824
3878
|
contractAddress: string;
|
@@ -3842,7 +3896,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3842
3896
|
campaignType: CampaignType;
|
3843
3897
|
computeChainId: ChainId;
|
3844
3898
|
hooks: {
|
3845
|
-
hookType:
|
3899
|
+
hookType: HookType;
|
3846
3900
|
key: string;
|
3847
3901
|
chainId: ChainId;
|
3848
3902
|
contractAddress: string;
|
@@ -3866,7 +3920,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3866
3920
|
campaignType: CampaignType;
|
3867
3921
|
computeChainId: ChainId;
|
3868
3922
|
hooks: {
|
3869
|
-
hookType:
|
3923
|
+
hookType: HookType;
|
3870
3924
|
key: string;
|
3871
3925
|
chainId: ChainId;
|
3872
3926
|
contractAddress: string;
|
@@ -3890,7 +3944,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3890
3944
|
campaignType: CampaignType;
|
3891
3945
|
computeChainId: ChainId;
|
3892
3946
|
hooks: {
|
3893
|
-
hookType:
|
3947
|
+
hookType: HookType;
|
3894
3948
|
key: string;
|
3895
3949
|
chainId: ChainId;
|
3896
3950
|
contractAddress: string;
|
@@ -3914,7 +3968,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3914
3968
|
campaignType: CampaignType;
|
3915
3969
|
computeChainId: ChainId;
|
3916
3970
|
hooks: {
|
3917
|
-
hookType:
|
3971
|
+
hookType: HookType;
|
3918
3972
|
key: string;
|
3919
3973
|
chainId: ChainId;
|
3920
3974
|
contractAddress: string;
|
@@ -3939,7 +3993,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3939
3993
|
computeChainId: ChainId;
|
3940
3994
|
targetToken: string;
|
3941
3995
|
hooks: {
|
3942
|
-
hookType:
|
3996
|
+
hookType: HookType;
|
3943
3997
|
key: string;
|
3944
3998
|
chainId: ChainId;
|
3945
3999
|
contractAddress: string;
|
@@ -3962,7 +4016,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3962
4016
|
campaignType: CampaignType;
|
3963
4017
|
computeChainId: ChainId;
|
3964
4018
|
hooks: {
|
3965
|
-
hookType:
|
4019
|
+
hookType: HookType;
|
3966
4020
|
key: string;
|
3967
4021
|
chainId: ChainId;
|
3968
4022
|
contractAddress: string;
|
@@ -3986,7 +4040,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3986
4040
|
campaignType: CampaignType;
|
3987
4041
|
computeChainId: ChainId;
|
3988
4042
|
hooks: {
|
3989
|
-
hookType:
|
4043
|
+
hookType: HookType;
|
3990
4044
|
key: string;
|
3991
4045
|
chainId: ChainId;
|
3992
4046
|
contractAddress: string;
|
@@ -4014,7 +4068,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4014
4068
|
whitelist: never[];
|
4015
4069
|
blacklist: string[];
|
4016
4070
|
hooks: {
|
4017
|
-
hookType:
|
4071
|
+
hookType: HookType;
|
4018
4072
|
key: string;
|
4019
4073
|
chainId: ChainId;
|
4020
4074
|
contractAddress: string;
|
@@ -4053,7 +4107,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4053
4107
|
whitelist: never[];
|
4054
4108
|
blacklist: string[];
|
4055
4109
|
hooks: {
|
4056
|
-
hookType:
|
4110
|
+
hookType: HookType;
|
4057
4111
|
key: string;
|
4058
4112
|
chainId: ChainId;
|
4059
4113
|
contractAddress: string;
|
@@ -4092,7 +4146,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4092
4146
|
whitelist: never[];
|
4093
4147
|
blacklist: string[];
|
4094
4148
|
hooks: {
|
4095
|
-
hookType:
|
4149
|
+
hookType: HookType;
|
4096
4150
|
key: string;
|
4097
4151
|
chainId: ChainId;
|
4098
4152
|
contractAddress: string;
|
@@ -4131,7 +4185,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4131
4185
|
whitelist: never[];
|
4132
4186
|
blacklist: string[];
|
4133
4187
|
hooks: {
|
4134
|
-
hookType:
|
4188
|
+
hookType: HookType;
|
4135
4189
|
key: string;
|
4136
4190
|
chainId: ChainId;
|
4137
4191
|
contractAddress: string;
|
@@ -4170,7 +4224,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4170
4224
|
whitelist: never[];
|
4171
4225
|
blacklist: string[];
|
4172
4226
|
hooks: {
|
4173
|
-
hookType:
|
4227
|
+
hookType: HookType;
|
4174
4228
|
key: string;
|
4175
4229
|
chainId: ChainId;
|
4176
4230
|
contractAddress: string;
|
@@ -4209,7 +4263,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4209
4263
|
whitelist: never[];
|
4210
4264
|
blacklist: string[];
|
4211
4265
|
hooks: {
|
4212
|
-
hookType:
|
4266
|
+
hookType: HookType;
|
4213
4267
|
key: string;
|
4214
4268
|
chainId: ChainId;
|
4215
4269
|
contractAddress: string;
|
@@ -4244,7 +4298,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4244
4298
|
campaignType: CampaignType;
|
4245
4299
|
computeChainId: ChainId;
|
4246
4300
|
hooks: {
|
4247
|
-
hookType:
|
4301
|
+
hookType: HookType;
|
4248
4302
|
key: string;
|
4249
4303
|
chainId: ChainId;
|
4250
4304
|
contractAddress: string;
|
@@ -4268,7 +4322,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4268
4322
|
campaignType: CampaignType;
|
4269
4323
|
computeChainId: ChainId;
|
4270
4324
|
hooks: {
|
4271
|
-
hookType:
|
4325
|
+
hookType: HookType;
|
4272
4326
|
key: string;
|
4273
4327
|
chainId: ChainId;
|
4274
4328
|
contractAddress: string;
|
@@ -4292,7 +4346,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4292
4346
|
campaignType: CampaignType;
|
4293
4347
|
computeChainId: ChainId;
|
4294
4348
|
hooks: {
|
4295
|
-
hookType:
|
4349
|
+
hookType: HookType;
|
4296
4350
|
key: string;
|
4297
4351
|
chainId: ChainId;
|
4298
4352
|
contractAddress: string;
|
@@ -4316,7 +4370,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4316
4370
|
campaignType: CampaignType;
|
4317
4371
|
computeChainId: ChainId;
|
4318
4372
|
hooks: {
|
4319
|
-
hookType:
|
4373
|
+
hookType: HookType;
|
4320
4374
|
key: string;
|
4321
4375
|
chainId: ChainId;
|
4322
4376
|
contractAddress: string;
|
@@ -4340,7 +4394,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4340
4394
|
campaignType: CampaignType;
|
4341
4395
|
computeChainId: ChainId;
|
4342
4396
|
hooks: {
|
4343
|
-
hookType:
|
4397
|
+
hookType: HookType;
|
4344
4398
|
key: string;
|
4345
4399
|
chainId: ChainId;
|
4346
4400
|
contractAddress: string;
|
@@ -4364,7 +4418,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4364
4418
|
campaignType: CampaignType;
|
4365
4419
|
computeChainId: ChainId;
|
4366
4420
|
hooks: {
|
4367
|
-
hookType:
|
4421
|
+
hookType: HookType;
|
4368
4422
|
key: string;
|
4369
4423
|
chainId: ChainId;
|
4370
4424
|
contractAddress: string;
|
@@ -4388,7 +4442,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4388
4442
|
campaignType: CampaignType;
|
4389
4443
|
computeChainId: ChainId;
|
4390
4444
|
hooks: {
|
4391
|
-
hookType:
|
4445
|
+
hookType: HookType;
|
4392
4446
|
key: string;
|
4393
4447
|
chainId: ChainId;
|
4394
4448
|
contractAddress: string;
|
@@ -4416,7 +4470,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4416
4470
|
campaignType: CampaignType;
|
4417
4471
|
computeChainId: ChainId;
|
4418
4472
|
hooks: {
|
4419
|
-
hookType:
|
4473
|
+
hookType: HookType;
|
4420
4474
|
key: string;
|
4421
4475
|
chainId: ChainId;
|
4422
4476
|
contractAddress: string;
|
@@ -4444,7 +4498,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4444
4498
|
campaignType: CampaignType;
|
4445
4499
|
computeChainId: ChainId;
|
4446
4500
|
hooks: {
|
4447
|
-
hookType:
|
4501
|
+
hookType: HookType;
|
4448
4502
|
key: string;
|
4449
4503
|
chainId: ChainId;
|
4450
4504
|
contractAddress: string;
|
@@ -4472,7 +4526,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4472
4526
|
campaignType: CampaignType;
|
4473
4527
|
computeChainId: ChainId;
|
4474
4528
|
hooks: {
|
4475
|
-
hookType:
|
4529
|
+
hookType: HookType;
|
4476
4530
|
key: string;
|
4477
4531
|
chainId: ChainId;
|
4478
4532
|
contractAddress: string;
|
@@ -4500,7 +4554,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4500
4554
|
campaignType: CampaignType;
|
4501
4555
|
computeChainId: ChainId;
|
4502
4556
|
hooks: {
|
4503
|
-
hookType:
|
4557
|
+
hookType: HookType;
|
4504
4558
|
key: string;
|
4505
4559
|
chainId: ChainId;
|
4506
4560
|
contractAddress: string;
|
@@ -4528,7 +4582,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4528
4582
|
campaignType: CampaignType;
|
4529
4583
|
computeChainId: ChainId;
|
4530
4584
|
hooks: {
|
4531
|
-
hookType:
|
4585
|
+
hookType: HookType;
|
4532
4586
|
key: string;
|
4533
4587
|
chainId: ChainId;
|
4534
4588
|
contractAddress: string;
|
@@ -4556,7 +4610,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4556
4610
|
campaignType: CampaignType;
|
4557
4611
|
computeChainId: ChainId;
|
4558
4612
|
hooks: {
|
4559
|
-
hookType:
|
4613
|
+
hookType: HookType;
|
4560
4614
|
key: string;
|
4561
4615
|
chainId: ChainId;
|
4562
4616
|
contractAddress: string;
|
@@ -4584,7 +4638,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4584
4638
|
campaignType: CampaignType;
|
4585
4639
|
computeChainId: ChainId;
|
4586
4640
|
hooks: {
|
4587
|
-
hookType:
|
4641
|
+
hookType: HookType;
|
4588
4642
|
key: string;
|
4589
4643
|
chainId: ChainId;
|
4590
4644
|
contractAddress: string;
|
@@ -4628,7 +4682,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4628
4682
|
blacklist: string[];
|
4629
4683
|
forwarders: never[];
|
4630
4684
|
hooks: {
|
4631
|
-
hookType:
|
4685
|
+
hookType: HookType;
|
4632
4686
|
key: string;
|
4633
4687
|
chainId: ChainId;
|
4634
4688
|
contractAddress: string;
|
@@ -4668,7 +4722,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4668
4722
|
blacklist: string[];
|
4669
4723
|
forwarders: never[];
|
4670
4724
|
hooks: {
|
4671
|
-
hookType:
|
4725
|
+
hookType: HookType;
|
4672
4726
|
key: string;
|
4673
4727
|
chainId: ChainId;
|
4674
4728
|
contractAddress: string;
|
@@ -4708,7 +4762,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4708
4762
|
blacklist: string[];
|
4709
4763
|
forwarders: never[];
|
4710
4764
|
hooks: {
|
4711
|
-
hookType:
|
4765
|
+
hookType: HookType;
|
4712
4766
|
key: string;
|
4713
4767
|
chainId: ChainId;
|
4714
4768
|
contractAddress: string;
|
@@ -4728,7 +4782,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4728
4782
|
campaignType: CampaignType;
|
4729
4783
|
computeChainId: ChainId;
|
4730
4784
|
hooks: {
|
4731
|
-
hookType:
|
4785
|
+
hookType: HookType;
|
4732
4786
|
key: string;
|
4733
4787
|
chainId: ChainId;
|
4734
4788
|
contractAddress: string;
|
@@ -4756,7 +4810,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4756
4810
|
campaignType: CampaignType;
|
4757
4811
|
computeChainId: ChainId;
|
4758
4812
|
hooks: {
|
4759
|
-
hookType:
|
4813
|
+
hookType: HookType;
|
4760
4814
|
key: string;
|
4761
4815
|
chainId: ChainId;
|
4762
4816
|
contractAddress: string;
|
@@ -4784,7 +4838,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4784
4838
|
campaignType: CampaignType;
|
4785
4839
|
computeChainId: ChainId;
|
4786
4840
|
hooks: {
|
4787
|
-
hookType:
|
4841
|
+
hookType: HookType;
|
4788
4842
|
key: string;
|
4789
4843
|
chainId: ChainId;
|
4790
4844
|
contractAddress: string;
|
@@ -4812,7 +4866,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4812
4866
|
campaignType: CampaignType;
|
4813
4867
|
computeChainId: ChainId;
|
4814
4868
|
hooks: {
|
4815
|
-
hookType:
|
4869
|
+
hookType: HookType;
|
4816
4870
|
key: string;
|
4817
4871
|
chainId: ChainId;
|
4818
4872
|
contractAddress: string;
|
@@ -4840,7 +4894,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4840
4894
|
campaignType: CampaignType;
|
4841
4895
|
computeChainId: ChainId;
|
4842
4896
|
hooks: {
|
4843
|
-
hookType:
|
4897
|
+
hookType: HookType;
|
4844
4898
|
key: string;
|
4845
4899
|
chainId: ChainId;
|
4846
4900
|
contractAddress: string;
|