@merkl/api 1.3.39 → 1.3.40
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/index.d.ts +313 -410
- 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/campaign.test.controller.d.ts +180 -180
- 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/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 +47 -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 +2 -1
- 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 +312 -339
- 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";
|
@@ -2539,7 +2539,7 @@ declare const MorphoCampaignsInterface: {
|
|
2539
2539
|
whitelist: never[];
|
2540
2540
|
blacklist: never[];
|
2541
2541
|
hooks: {
|
2542
|
-
hookType:
|
2542
|
+
hookType: HookType;
|
2543
2543
|
protocol: WhitelistCampaignProtocols;
|
2544
2544
|
bytesLike: string[];
|
2545
2545
|
computeChainId: ChainId;
|
@@ -2567,7 +2567,7 @@ declare const MorphoCampaignsInterface: {
|
|
2567
2567
|
blacklist: never[];
|
2568
2568
|
forwarders: never[];
|
2569
2569
|
hooks: {
|
2570
|
-
hookType:
|
2570
|
+
hookType: HookType;
|
2571
2571
|
protocol: WhitelistCampaignProtocols;
|
2572
2572
|
bytesLike: string[];
|
2573
2573
|
computeChainId: ChainId;
|
@@ -3515,7 +3515,7 @@ declare const EthenaCampaigns: {
|
|
3515
3515
|
whitelist: never[];
|
3516
3516
|
blacklist: string[];
|
3517
3517
|
hooks: {
|
3518
|
-
hookType:
|
3518
|
+
hookType: HookType;
|
3519
3519
|
protocol: BorrowBLProtocols;
|
3520
3520
|
borrowBytesLike: string[];
|
3521
3521
|
computeChainId: ChainId;
|
@@ -3540,7 +3540,7 @@ declare const EthenaCampaigns: {
|
|
3540
3540
|
whitelist: never[];
|
3541
3541
|
blacklist: never[];
|
3542
3542
|
hooks: {
|
3543
|
-
hookType:
|
3543
|
+
hookType: HookType;
|
3544
3544
|
protocol: BorrowBLProtocols;
|
3545
3545
|
borrowBytesLike: string[];
|
3546
3546
|
computeChainId: ChainId;
|
@@ -3565,7 +3565,7 @@ declare const EthenaCampaigns: {
|
|
3565
3565
|
whitelist: never[];
|
3566
3566
|
blacklist: never[];
|
3567
3567
|
hooks: {
|
3568
|
-
hookType:
|
3568
|
+
hookType: HookType;
|
3569
3569
|
protocol: BorrowBLProtocols;
|
3570
3570
|
borrowBytesLike: string[];
|
3571
3571
|
computeChainId: ChainId;
|
@@ -3589,7 +3589,7 @@ declare const EthenaCampaigns: {
|
|
3589
3589
|
whitelist: never[];
|
3590
3590
|
blacklist: never[];
|
3591
3591
|
hooks: {
|
3592
|
-
hookType:
|
3592
|
+
hookType: HookType;
|
3593
3593
|
protocol: BorrowBLProtocols;
|
3594
3594
|
borrowBytesLike: string[];
|
3595
3595
|
computeChainId: ChainId;
|
@@ -3613,7 +3613,7 @@ declare const EthenaCampaigns: {
|
|
3613
3613
|
whitelist: never[];
|
3614
3614
|
blacklist: never[];
|
3615
3615
|
hooks: {
|
3616
|
-
hookType:
|
3616
|
+
hookType: HookType;
|
3617
3617
|
protocol: BorrowBLProtocols;
|
3618
3618
|
borrowBytesLike: string[];
|
3619
3619
|
computeChainId: ChainId;
|
@@ -3637,7 +3637,7 @@ declare const EthenaCampaigns: {
|
|
3637
3637
|
whitelist: never[];
|
3638
3638
|
blacklist: never[];
|
3639
3639
|
hooks: {
|
3640
|
-
hookType:
|
3640
|
+
hookType: HookType;
|
3641
3641
|
protocol: BorrowBLProtocols;
|
3642
3642
|
borrowBytesLike: string[];
|
3643
3643
|
computeChainId: ChainId;
|
@@ -3661,7 +3661,7 @@ declare const EthenaCampaigns: {
|
|
3661
3661
|
whitelist: never[];
|
3662
3662
|
blacklist: never[];
|
3663
3663
|
hooks: {
|
3664
|
-
hookType:
|
3664
|
+
hookType: HookType;
|
3665
3665
|
protocol: BorrowBLProtocols;
|
3666
3666
|
borrowBytesLike: string[];
|
3667
3667
|
computeChainId: ChainId;
|
@@ -3685,7 +3685,7 @@ declare const EthenaCampaigns: {
|
|
3685
3685
|
whitelist: never[];
|
3686
3686
|
blacklist: never[];
|
3687
3687
|
hooks: {
|
3688
|
-
hookType:
|
3688
|
+
hookType: HookType;
|
3689
3689
|
protocol: BorrowBLProtocols;
|
3690
3690
|
borrowBytesLike: string[];
|
3691
3691
|
computeChainId: ChainId;
|
@@ -3818,7 +3818,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3818
3818
|
campaignType: CampaignType;
|
3819
3819
|
computeChainId: ChainId;
|
3820
3820
|
hooks: {
|
3821
|
-
hookType:
|
3821
|
+
hookType: HookType;
|
3822
3822
|
key: string;
|
3823
3823
|
chainId: ChainId;
|
3824
3824
|
contractAddress: string;
|
@@ -3842,7 +3842,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3842
3842
|
campaignType: CampaignType;
|
3843
3843
|
computeChainId: ChainId;
|
3844
3844
|
hooks: {
|
3845
|
-
hookType:
|
3845
|
+
hookType: HookType;
|
3846
3846
|
key: string;
|
3847
3847
|
chainId: ChainId;
|
3848
3848
|
contractAddress: string;
|
@@ -3866,7 +3866,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3866
3866
|
campaignType: CampaignType;
|
3867
3867
|
computeChainId: ChainId;
|
3868
3868
|
hooks: {
|
3869
|
-
hookType:
|
3869
|
+
hookType: HookType;
|
3870
3870
|
key: string;
|
3871
3871
|
chainId: ChainId;
|
3872
3872
|
contractAddress: string;
|
@@ -3890,7 +3890,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3890
3890
|
campaignType: CampaignType;
|
3891
3891
|
computeChainId: ChainId;
|
3892
3892
|
hooks: {
|
3893
|
-
hookType:
|
3893
|
+
hookType: HookType;
|
3894
3894
|
key: string;
|
3895
3895
|
chainId: ChainId;
|
3896
3896
|
contractAddress: string;
|
@@ -3914,7 +3914,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3914
3914
|
campaignType: CampaignType;
|
3915
3915
|
computeChainId: ChainId;
|
3916
3916
|
hooks: {
|
3917
|
-
hookType:
|
3917
|
+
hookType: HookType;
|
3918
3918
|
key: string;
|
3919
3919
|
chainId: ChainId;
|
3920
3920
|
contractAddress: string;
|
@@ -3939,7 +3939,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3939
3939
|
computeChainId: ChainId;
|
3940
3940
|
targetToken: string;
|
3941
3941
|
hooks: {
|
3942
|
-
hookType:
|
3942
|
+
hookType: HookType;
|
3943
3943
|
key: string;
|
3944
3944
|
chainId: ChainId;
|
3945
3945
|
contractAddress: string;
|
@@ -3962,7 +3962,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3962
3962
|
campaignType: CampaignType;
|
3963
3963
|
computeChainId: ChainId;
|
3964
3964
|
hooks: {
|
3965
|
-
hookType:
|
3965
|
+
hookType: HookType;
|
3966
3966
|
key: string;
|
3967
3967
|
chainId: ChainId;
|
3968
3968
|
contractAddress: string;
|
@@ -3986,7 +3986,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
3986
3986
|
campaignType: CampaignType;
|
3987
3987
|
computeChainId: ChainId;
|
3988
3988
|
hooks: {
|
3989
|
-
hookType:
|
3989
|
+
hookType: HookType;
|
3990
3990
|
key: string;
|
3991
3991
|
chainId: ChainId;
|
3992
3992
|
contractAddress: string;
|
@@ -4014,7 +4014,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4014
4014
|
whitelist: never[];
|
4015
4015
|
blacklist: string[];
|
4016
4016
|
hooks: {
|
4017
|
-
hookType:
|
4017
|
+
hookType: HookType;
|
4018
4018
|
key: string;
|
4019
4019
|
chainId: ChainId;
|
4020
4020
|
contractAddress: string;
|
@@ -4053,7 +4053,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4053
4053
|
whitelist: never[];
|
4054
4054
|
blacklist: string[];
|
4055
4055
|
hooks: {
|
4056
|
-
hookType:
|
4056
|
+
hookType: HookType;
|
4057
4057
|
key: string;
|
4058
4058
|
chainId: ChainId;
|
4059
4059
|
contractAddress: string;
|
@@ -4092,7 +4092,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4092
4092
|
whitelist: never[];
|
4093
4093
|
blacklist: string[];
|
4094
4094
|
hooks: {
|
4095
|
-
hookType:
|
4095
|
+
hookType: HookType;
|
4096
4096
|
key: string;
|
4097
4097
|
chainId: ChainId;
|
4098
4098
|
contractAddress: string;
|
@@ -4131,7 +4131,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4131
4131
|
whitelist: never[];
|
4132
4132
|
blacklist: string[];
|
4133
4133
|
hooks: {
|
4134
|
-
hookType:
|
4134
|
+
hookType: HookType;
|
4135
4135
|
key: string;
|
4136
4136
|
chainId: ChainId;
|
4137
4137
|
contractAddress: string;
|
@@ -4170,7 +4170,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4170
4170
|
whitelist: never[];
|
4171
4171
|
blacklist: string[];
|
4172
4172
|
hooks: {
|
4173
|
-
hookType:
|
4173
|
+
hookType: HookType;
|
4174
4174
|
key: string;
|
4175
4175
|
chainId: ChainId;
|
4176
4176
|
contractAddress: string;
|
@@ -4209,7 +4209,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4209
4209
|
whitelist: never[];
|
4210
4210
|
blacklist: string[];
|
4211
4211
|
hooks: {
|
4212
|
-
hookType:
|
4212
|
+
hookType: HookType;
|
4213
4213
|
key: string;
|
4214
4214
|
chainId: ChainId;
|
4215
4215
|
contractAddress: string;
|
@@ -4244,7 +4244,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4244
4244
|
campaignType: CampaignType;
|
4245
4245
|
computeChainId: ChainId;
|
4246
4246
|
hooks: {
|
4247
|
-
hookType:
|
4247
|
+
hookType: HookType;
|
4248
4248
|
key: string;
|
4249
4249
|
chainId: ChainId;
|
4250
4250
|
contractAddress: string;
|
@@ -4268,7 +4268,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4268
4268
|
campaignType: CampaignType;
|
4269
4269
|
computeChainId: ChainId;
|
4270
4270
|
hooks: {
|
4271
|
-
hookType:
|
4271
|
+
hookType: HookType;
|
4272
4272
|
key: string;
|
4273
4273
|
chainId: ChainId;
|
4274
4274
|
contractAddress: string;
|
@@ -4292,7 +4292,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4292
4292
|
campaignType: CampaignType;
|
4293
4293
|
computeChainId: ChainId;
|
4294
4294
|
hooks: {
|
4295
|
-
hookType:
|
4295
|
+
hookType: HookType;
|
4296
4296
|
key: string;
|
4297
4297
|
chainId: ChainId;
|
4298
4298
|
contractAddress: string;
|
@@ -4316,7 +4316,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4316
4316
|
campaignType: CampaignType;
|
4317
4317
|
computeChainId: ChainId;
|
4318
4318
|
hooks: {
|
4319
|
-
hookType:
|
4319
|
+
hookType: HookType;
|
4320
4320
|
key: string;
|
4321
4321
|
chainId: ChainId;
|
4322
4322
|
contractAddress: string;
|
@@ -4340,7 +4340,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4340
4340
|
campaignType: CampaignType;
|
4341
4341
|
computeChainId: ChainId;
|
4342
4342
|
hooks: {
|
4343
|
-
hookType:
|
4343
|
+
hookType: HookType;
|
4344
4344
|
key: string;
|
4345
4345
|
chainId: ChainId;
|
4346
4346
|
contractAddress: string;
|
@@ -4364,7 +4364,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4364
4364
|
campaignType: CampaignType;
|
4365
4365
|
computeChainId: ChainId;
|
4366
4366
|
hooks: {
|
4367
|
-
hookType:
|
4367
|
+
hookType: HookType;
|
4368
4368
|
key: string;
|
4369
4369
|
chainId: ChainId;
|
4370
4370
|
contractAddress: string;
|
@@ -4388,7 +4388,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4388
4388
|
campaignType: CampaignType;
|
4389
4389
|
computeChainId: ChainId;
|
4390
4390
|
hooks: {
|
4391
|
-
hookType:
|
4391
|
+
hookType: HookType;
|
4392
4392
|
key: string;
|
4393
4393
|
chainId: ChainId;
|
4394
4394
|
contractAddress: string;
|
@@ -4416,7 +4416,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4416
4416
|
campaignType: CampaignType;
|
4417
4417
|
computeChainId: ChainId;
|
4418
4418
|
hooks: {
|
4419
|
-
hookType:
|
4419
|
+
hookType: HookType;
|
4420
4420
|
key: string;
|
4421
4421
|
chainId: ChainId;
|
4422
4422
|
contractAddress: string;
|
@@ -4444,7 +4444,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4444
4444
|
campaignType: CampaignType;
|
4445
4445
|
computeChainId: ChainId;
|
4446
4446
|
hooks: {
|
4447
|
-
hookType:
|
4447
|
+
hookType: HookType;
|
4448
4448
|
key: string;
|
4449
4449
|
chainId: ChainId;
|
4450
4450
|
contractAddress: string;
|
@@ -4472,7 +4472,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4472
4472
|
campaignType: CampaignType;
|
4473
4473
|
computeChainId: ChainId;
|
4474
4474
|
hooks: {
|
4475
|
-
hookType:
|
4475
|
+
hookType: HookType;
|
4476
4476
|
key: string;
|
4477
4477
|
chainId: ChainId;
|
4478
4478
|
contractAddress: string;
|
@@ -4500,7 +4500,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4500
4500
|
campaignType: CampaignType;
|
4501
4501
|
computeChainId: ChainId;
|
4502
4502
|
hooks: {
|
4503
|
-
hookType:
|
4503
|
+
hookType: HookType;
|
4504
4504
|
key: string;
|
4505
4505
|
chainId: ChainId;
|
4506
4506
|
contractAddress: string;
|
@@ -4528,7 +4528,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4528
4528
|
campaignType: CampaignType;
|
4529
4529
|
computeChainId: ChainId;
|
4530
4530
|
hooks: {
|
4531
|
-
hookType:
|
4531
|
+
hookType: HookType;
|
4532
4532
|
key: string;
|
4533
4533
|
chainId: ChainId;
|
4534
4534
|
contractAddress: string;
|
@@ -4556,7 +4556,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4556
4556
|
campaignType: CampaignType;
|
4557
4557
|
computeChainId: ChainId;
|
4558
4558
|
hooks: {
|
4559
|
-
hookType:
|
4559
|
+
hookType: HookType;
|
4560
4560
|
key: string;
|
4561
4561
|
chainId: ChainId;
|
4562
4562
|
contractAddress: string;
|
@@ -4584,7 +4584,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4584
4584
|
campaignType: CampaignType;
|
4585
4585
|
computeChainId: ChainId;
|
4586
4586
|
hooks: {
|
4587
|
-
hookType:
|
4587
|
+
hookType: HookType;
|
4588
4588
|
key: string;
|
4589
4589
|
chainId: ChainId;
|
4590
4590
|
contractAddress: string;
|
@@ -4628,7 +4628,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4628
4628
|
blacklist: string[];
|
4629
4629
|
forwarders: never[];
|
4630
4630
|
hooks: {
|
4631
|
-
hookType:
|
4631
|
+
hookType: HookType;
|
4632
4632
|
key: string;
|
4633
4633
|
chainId: ChainId;
|
4634
4634
|
contractAddress: string;
|
@@ -4668,7 +4668,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4668
4668
|
blacklist: string[];
|
4669
4669
|
forwarders: never[];
|
4670
4670
|
hooks: {
|
4671
|
-
hookType:
|
4671
|
+
hookType: HookType;
|
4672
4672
|
key: string;
|
4673
4673
|
chainId: ChainId;
|
4674
4674
|
contractAddress: string;
|
@@ -4708,7 +4708,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4708
4708
|
blacklist: string[];
|
4709
4709
|
forwarders: never[];
|
4710
4710
|
hooks: {
|
4711
|
-
hookType:
|
4711
|
+
hookType: HookType;
|
4712
4712
|
key: string;
|
4713
4713
|
chainId: ChainId;
|
4714
4714
|
contractAddress: string;
|
@@ -4728,7 +4728,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4728
4728
|
campaignType: CampaignType;
|
4729
4729
|
computeChainId: ChainId;
|
4730
4730
|
hooks: {
|
4731
|
-
hookType:
|
4731
|
+
hookType: HookType;
|
4732
4732
|
key: string;
|
4733
4733
|
chainId: ChainId;
|
4734
4734
|
contractAddress: string;
|
@@ -4756,7 +4756,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4756
4756
|
campaignType: CampaignType;
|
4757
4757
|
computeChainId: ChainId;
|
4758
4758
|
hooks: {
|
4759
|
-
hookType:
|
4759
|
+
hookType: HookType;
|
4760
4760
|
key: string;
|
4761
4761
|
chainId: ChainId;
|
4762
4762
|
contractAddress: string;
|
@@ -4784,7 +4784,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4784
4784
|
campaignType: CampaignType;
|
4785
4785
|
computeChainId: ChainId;
|
4786
4786
|
hooks: {
|
4787
|
-
hookType:
|
4787
|
+
hookType: HookType;
|
4788
4788
|
key: string;
|
4789
4789
|
chainId: ChainId;
|
4790
4790
|
contractAddress: string;
|
@@ -4812,7 +4812,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4812
4812
|
campaignType: CampaignType;
|
4813
4813
|
computeChainId: ChainId;
|
4814
4814
|
hooks: {
|
4815
|
-
hookType:
|
4815
|
+
hookType: HookType;
|
4816
4816
|
key: string;
|
4817
4817
|
chainId: ChainId;
|
4818
4818
|
contractAddress: string;
|
@@ -4840,7 +4840,7 @@ declare const EtherlinkInterfaceCampaigns: {
|
|
4840
4840
|
campaignType: CampaignType;
|
4841
4841
|
computeChainId: ChainId;
|
4842
4842
|
hooks: {
|
4843
|
-
hookType:
|
4843
|
+
hookType: HookType;
|
4844
4844
|
key: string;
|
4845
4845
|
chainId: ChainId;
|
4846
4846
|
contractAddress: string;
|