@merkl/api 1.18.40 → 1.19.2
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 +324 -66
- package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.d.ts +38 -38
- package/dist/src/guards/KeyStoreAuth.guard.d.ts +26 -0
- package/dist/src/guards/KeyStoreAuth.guard.js.map +1 -0
- package/dist/src/index.d.ts +403 -66
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +20 -20
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.query-transformer.d.ts +90 -90
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +5 -5
- package/dist/src/modules/v4/carousel/carousel.controller.d.ts +9 -9
- package/dist/src/modules/v4/carousel/carousel.service.d.ts +6 -6
- package/dist/src/modules/v4/chain/chain.controller.d.ts +5 -5
- package/dist/src/modules/v4/chain/chain.model.d.ts +2 -0
- package/dist/src/modules/v4/creator/creator.controller.d.ts +3 -3
- package/dist/src/modules/v4/explorer/explorer.controller.d.ts +2 -2
- package/dist/src/modules/v4/explorer/explorer.model.d.ts +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.controller.d.ts +372 -0
- package/dist/src/modules/v4/keyStore/keyStore.controller.js.map +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.model.d.ts +63 -0
- package/dist/src/modules/v4/keyStore/keyStore.model.js.map +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.repository.d.ts +148 -0
- package/dist/src/modules/v4/keyStore/keyStore.repository.js.map +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.service.d.ts +131 -0
- package/dist/src/modules/v4/keyStore/keyStore.service.js.map +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +18 -18
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +3 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +8 -0
- package/dist/src/modules/v4/opportunity/opportunity.query-transformer.d.ts +62 -61
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +10 -10
- package/dist/src/modules/v4/program/program.controller.d.ts +4 -4
- package/dist/src/modules/v4/program/program.service.d.ts +4 -4
- package/dist/src/modules/v4/reward/reward.service.d.ts +4 -4
- package/dist/src/modules/v4/router.d.ts +403 -66
- package/dist/src/modules/v4/router.js.map +1 -1
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +12406 -12406
- package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +2 -2
- package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +1 -1
- package/dist/src/modules/v4/user/user.controller.d.ts +3 -3
- package/dist/src/modules/v4/user/user.model.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -209,10 +209,10 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
209
209
|
tags?: undefined;
|
|
210
210
|
} | {
|
|
211
211
|
OR?: undefined;
|
|
212
|
+
tags?: undefined;
|
|
212
213
|
Creator: {
|
|
213
214
|
id: string;
|
|
214
215
|
};
|
|
215
|
-
tags?: undefined;
|
|
216
216
|
} | {
|
|
217
217
|
OR?: undefined;
|
|
218
218
|
Creator?: undefined;
|
|
@@ -250,29 +250,30 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
250
250
|
contains: string;
|
|
251
251
|
mode: "insensitive";
|
|
252
252
|
};
|
|
253
|
-
Opportunity?: undefined;
|
|
254
|
-
campaignId?: undefined;
|
|
255
253
|
creatorAddress?: undefined;
|
|
254
|
+
Opportunity?: undefined;
|
|
256
255
|
RewardToken?: undefined;
|
|
256
|
+
campaignId?: undefined;
|
|
257
257
|
} | {
|
|
258
258
|
campaignId: {
|
|
259
259
|
contains: string;
|
|
260
260
|
mode: "insensitive";
|
|
261
261
|
};
|
|
262
|
-
Opportunity?: undefined;
|
|
263
|
-
id?: undefined;
|
|
264
262
|
creatorAddress?: undefined;
|
|
263
|
+
Opportunity?: undefined;
|
|
265
264
|
RewardToken?: undefined;
|
|
265
|
+
id?: undefined;
|
|
266
266
|
} | {
|
|
267
267
|
creatorAddress: {
|
|
268
268
|
contains: string;
|
|
269
269
|
mode: "insensitive";
|
|
270
270
|
};
|
|
271
271
|
Opportunity?: undefined;
|
|
272
|
-
id?: undefined;
|
|
273
|
-
campaignId?: undefined;
|
|
274
272
|
RewardToken?: undefined;
|
|
273
|
+
campaignId?: undefined;
|
|
274
|
+
id?: undefined;
|
|
275
275
|
} | {
|
|
276
|
+
creatorAddress?: undefined;
|
|
276
277
|
Opportunity: {
|
|
277
278
|
identifier: {
|
|
278
279
|
contains: string;
|
|
@@ -280,23 +281,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
280
281
|
};
|
|
281
282
|
mainProtocolId?: undefined;
|
|
282
283
|
};
|
|
283
|
-
id?: undefined;
|
|
284
|
-
campaignId?: undefined;
|
|
285
|
-
creatorAddress?: undefined;
|
|
286
284
|
RewardToken?: undefined;
|
|
285
|
+
campaignId?: undefined;
|
|
286
|
+
id?: undefined;
|
|
287
287
|
} | {
|
|
288
|
+
creatorAddress?: undefined;
|
|
288
289
|
Opportunity: {
|
|
290
|
+
identifier?: undefined;
|
|
289
291
|
mainProtocolId: {
|
|
290
292
|
contains: string;
|
|
291
293
|
mode: "insensitive";
|
|
292
294
|
};
|
|
293
|
-
identifier?: undefined;
|
|
294
295
|
};
|
|
295
|
-
id?: undefined;
|
|
296
|
-
campaignId?: undefined;
|
|
297
|
-
creatorAddress?: undefined;
|
|
298
296
|
RewardToken?: undefined;
|
|
297
|
+
campaignId?: undefined;
|
|
298
|
+
id?: undefined;
|
|
299
299
|
} | {
|
|
300
|
+
creatorAddress?: undefined;
|
|
300
301
|
Opportunity?: undefined;
|
|
301
302
|
RewardToken: {
|
|
302
303
|
OR: ({
|
|
@@ -307,24 +308,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
307
308
|
displaySymbol?: undefined;
|
|
308
309
|
address?: undefined;
|
|
309
310
|
} | {
|
|
311
|
+
symbol?: undefined;
|
|
310
312
|
displaySymbol: {
|
|
311
313
|
contains: string;
|
|
312
314
|
mode: "insensitive";
|
|
313
315
|
};
|
|
314
|
-
symbol?: undefined;
|
|
315
316
|
address?: undefined;
|
|
316
317
|
} | {
|
|
318
|
+
symbol?: undefined;
|
|
317
319
|
displaySymbol?: undefined;
|
|
318
320
|
address: {
|
|
319
321
|
contains: string;
|
|
320
322
|
mode: "insensitive";
|
|
321
323
|
};
|
|
322
|
-
symbol?: undefined;
|
|
323
324
|
})[];
|
|
324
325
|
};
|
|
325
|
-
id?: undefined;
|
|
326
326
|
campaignId?: undefined;
|
|
327
|
-
|
|
327
|
+
id?: undefined;
|
|
328
328
|
})[];
|
|
329
329
|
}[] | undefined;
|
|
330
330
|
} | {
|
|
@@ -427,10 +427,10 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
427
427
|
tags?: undefined;
|
|
428
428
|
} | {
|
|
429
429
|
OR?: undefined;
|
|
430
|
+
tags?: undefined;
|
|
430
431
|
Creator: {
|
|
431
432
|
id: string;
|
|
432
433
|
};
|
|
433
|
-
tags?: undefined;
|
|
434
434
|
} | {
|
|
435
435
|
OR?: undefined;
|
|
436
436
|
Creator?: undefined;
|
|
@@ -468,29 +468,30 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
468
468
|
contains: string;
|
|
469
469
|
mode: "insensitive";
|
|
470
470
|
};
|
|
471
|
-
Opportunity?: undefined;
|
|
472
|
-
campaignId?: undefined;
|
|
473
471
|
creatorAddress?: undefined;
|
|
472
|
+
Opportunity?: undefined;
|
|
474
473
|
RewardToken?: undefined;
|
|
474
|
+
campaignId?: undefined;
|
|
475
475
|
} | {
|
|
476
476
|
campaignId: {
|
|
477
477
|
contains: string;
|
|
478
478
|
mode: "insensitive";
|
|
479
479
|
};
|
|
480
|
-
Opportunity?: undefined;
|
|
481
|
-
id?: undefined;
|
|
482
480
|
creatorAddress?: undefined;
|
|
481
|
+
Opportunity?: undefined;
|
|
483
482
|
RewardToken?: undefined;
|
|
483
|
+
id?: undefined;
|
|
484
484
|
} | {
|
|
485
485
|
creatorAddress: {
|
|
486
486
|
contains: string;
|
|
487
487
|
mode: "insensitive";
|
|
488
488
|
};
|
|
489
489
|
Opportunity?: undefined;
|
|
490
|
-
id?: undefined;
|
|
491
|
-
campaignId?: undefined;
|
|
492
490
|
RewardToken?: undefined;
|
|
491
|
+
campaignId?: undefined;
|
|
492
|
+
id?: undefined;
|
|
493
493
|
} | {
|
|
494
|
+
creatorAddress?: undefined;
|
|
494
495
|
Opportunity: {
|
|
495
496
|
identifier: {
|
|
496
497
|
contains: string;
|
|
@@ -498,23 +499,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
498
499
|
};
|
|
499
500
|
mainProtocolId?: undefined;
|
|
500
501
|
};
|
|
501
|
-
id?: undefined;
|
|
502
|
-
campaignId?: undefined;
|
|
503
|
-
creatorAddress?: undefined;
|
|
504
502
|
RewardToken?: undefined;
|
|
503
|
+
campaignId?: undefined;
|
|
504
|
+
id?: undefined;
|
|
505
505
|
} | {
|
|
506
|
+
creatorAddress?: undefined;
|
|
506
507
|
Opportunity: {
|
|
508
|
+
identifier?: undefined;
|
|
507
509
|
mainProtocolId: {
|
|
508
510
|
contains: string;
|
|
509
511
|
mode: "insensitive";
|
|
510
512
|
};
|
|
511
|
-
identifier?: undefined;
|
|
512
513
|
};
|
|
513
|
-
id?: undefined;
|
|
514
|
-
campaignId?: undefined;
|
|
515
|
-
creatorAddress?: undefined;
|
|
516
514
|
RewardToken?: undefined;
|
|
515
|
+
campaignId?: undefined;
|
|
516
|
+
id?: undefined;
|
|
517
517
|
} | {
|
|
518
|
+
creatorAddress?: undefined;
|
|
518
519
|
Opportunity?: undefined;
|
|
519
520
|
RewardToken: {
|
|
520
521
|
OR: ({
|
|
@@ -525,24 +526,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
525
526
|
displaySymbol?: undefined;
|
|
526
527
|
address?: undefined;
|
|
527
528
|
} | {
|
|
529
|
+
symbol?: undefined;
|
|
528
530
|
displaySymbol: {
|
|
529
531
|
contains: string;
|
|
530
532
|
mode: "insensitive";
|
|
531
533
|
};
|
|
532
|
-
symbol?: undefined;
|
|
533
534
|
address?: undefined;
|
|
534
535
|
} | {
|
|
536
|
+
symbol?: undefined;
|
|
535
537
|
displaySymbol?: undefined;
|
|
536
538
|
address: {
|
|
537
539
|
contains: string;
|
|
538
540
|
mode: "insensitive";
|
|
539
541
|
};
|
|
540
|
-
symbol?: undefined;
|
|
541
542
|
})[];
|
|
542
543
|
};
|
|
543
|
-
id?: undefined;
|
|
544
544
|
campaignId?: undefined;
|
|
545
|
-
|
|
545
|
+
id?: undefined;
|
|
546
546
|
})[];
|
|
547
547
|
}[] | undefined;
|
|
548
548
|
endTimestamp: {
|
|
@@ -655,10 +655,10 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
655
655
|
tags?: undefined;
|
|
656
656
|
} | {
|
|
657
657
|
OR?: undefined;
|
|
658
|
+
tags?: undefined;
|
|
658
659
|
Creator: {
|
|
659
660
|
id: string;
|
|
660
661
|
};
|
|
661
|
-
tags?: undefined;
|
|
662
662
|
} | {
|
|
663
663
|
OR?: undefined;
|
|
664
664
|
Creator?: undefined;
|
|
@@ -696,29 +696,30 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
696
696
|
contains: string;
|
|
697
697
|
mode: "insensitive";
|
|
698
698
|
};
|
|
699
|
-
Opportunity?: undefined;
|
|
700
|
-
campaignId?: undefined;
|
|
701
699
|
creatorAddress?: undefined;
|
|
700
|
+
Opportunity?: undefined;
|
|
702
701
|
RewardToken?: undefined;
|
|
702
|
+
campaignId?: undefined;
|
|
703
703
|
} | {
|
|
704
704
|
campaignId: {
|
|
705
705
|
contains: string;
|
|
706
706
|
mode: "insensitive";
|
|
707
707
|
};
|
|
708
|
-
Opportunity?: undefined;
|
|
709
|
-
id?: undefined;
|
|
710
708
|
creatorAddress?: undefined;
|
|
709
|
+
Opportunity?: undefined;
|
|
711
710
|
RewardToken?: undefined;
|
|
711
|
+
id?: undefined;
|
|
712
712
|
} | {
|
|
713
713
|
creatorAddress: {
|
|
714
714
|
contains: string;
|
|
715
715
|
mode: "insensitive";
|
|
716
716
|
};
|
|
717
717
|
Opportunity?: undefined;
|
|
718
|
-
id?: undefined;
|
|
719
|
-
campaignId?: undefined;
|
|
720
718
|
RewardToken?: undefined;
|
|
719
|
+
campaignId?: undefined;
|
|
720
|
+
id?: undefined;
|
|
721
721
|
} | {
|
|
722
|
+
creatorAddress?: undefined;
|
|
722
723
|
Opportunity: {
|
|
723
724
|
identifier: {
|
|
724
725
|
contains: string;
|
|
@@ -726,23 +727,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
726
727
|
};
|
|
727
728
|
mainProtocolId?: undefined;
|
|
728
729
|
};
|
|
729
|
-
id?: undefined;
|
|
730
|
-
campaignId?: undefined;
|
|
731
|
-
creatorAddress?: undefined;
|
|
732
730
|
RewardToken?: undefined;
|
|
731
|
+
campaignId?: undefined;
|
|
732
|
+
id?: undefined;
|
|
733
733
|
} | {
|
|
734
|
+
creatorAddress?: undefined;
|
|
734
735
|
Opportunity: {
|
|
736
|
+
identifier?: undefined;
|
|
735
737
|
mainProtocolId: {
|
|
736
738
|
contains: string;
|
|
737
739
|
mode: "insensitive";
|
|
738
740
|
};
|
|
739
|
-
identifier?: undefined;
|
|
740
741
|
};
|
|
741
|
-
id?: undefined;
|
|
742
|
-
campaignId?: undefined;
|
|
743
|
-
creatorAddress?: undefined;
|
|
744
742
|
RewardToken?: undefined;
|
|
743
|
+
campaignId?: undefined;
|
|
744
|
+
id?: undefined;
|
|
745
745
|
} | {
|
|
746
|
+
creatorAddress?: undefined;
|
|
746
747
|
Opportunity?: undefined;
|
|
747
748
|
RewardToken: {
|
|
748
749
|
OR: ({
|
|
@@ -753,24 +754,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
753
754
|
displaySymbol?: undefined;
|
|
754
755
|
address?: undefined;
|
|
755
756
|
} | {
|
|
757
|
+
symbol?: undefined;
|
|
756
758
|
displaySymbol: {
|
|
757
759
|
contains: string;
|
|
758
760
|
mode: "insensitive";
|
|
759
761
|
};
|
|
760
|
-
symbol?: undefined;
|
|
761
762
|
address?: undefined;
|
|
762
763
|
} | {
|
|
764
|
+
symbol?: undefined;
|
|
763
765
|
displaySymbol?: undefined;
|
|
764
766
|
address: {
|
|
765
767
|
contains: string;
|
|
766
768
|
mode: "insensitive";
|
|
767
769
|
};
|
|
768
|
-
symbol?: undefined;
|
|
769
770
|
})[];
|
|
770
771
|
};
|
|
771
|
-
id?: undefined;
|
|
772
772
|
campaignId?: undefined;
|
|
773
|
-
|
|
773
|
+
id?: undefined;
|
|
774
774
|
})[];
|
|
775
775
|
}[] | undefined;
|
|
776
776
|
endTimestamp: {
|
|
@@ -879,10 +879,10 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
879
879
|
tags?: undefined;
|
|
880
880
|
} | {
|
|
881
881
|
OR?: undefined;
|
|
882
|
+
tags?: undefined;
|
|
882
883
|
Creator: {
|
|
883
884
|
id: string;
|
|
884
885
|
};
|
|
885
|
-
tags?: undefined;
|
|
886
886
|
} | {
|
|
887
887
|
OR?: undefined;
|
|
888
888
|
Creator?: undefined;
|
|
@@ -920,29 +920,30 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
920
920
|
contains: string;
|
|
921
921
|
mode: "insensitive";
|
|
922
922
|
};
|
|
923
|
-
Opportunity?: undefined;
|
|
924
|
-
campaignId?: undefined;
|
|
925
923
|
creatorAddress?: undefined;
|
|
924
|
+
Opportunity?: undefined;
|
|
926
925
|
RewardToken?: undefined;
|
|
926
|
+
campaignId?: undefined;
|
|
927
927
|
} | {
|
|
928
928
|
campaignId: {
|
|
929
929
|
contains: string;
|
|
930
930
|
mode: "insensitive";
|
|
931
931
|
};
|
|
932
|
-
Opportunity?: undefined;
|
|
933
|
-
id?: undefined;
|
|
934
932
|
creatorAddress?: undefined;
|
|
933
|
+
Opportunity?: undefined;
|
|
935
934
|
RewardToken?: undefined;
|
|
935
|
+
id?: undefined;
|
|
936
936
|
} | {
|
|
937
937
|
creatorAddress: {
|
|
938
938
|
contains: string;
|
|
939
939
|
mode: "insensitive";
|
|
940
940
|
};
|
|
941
941
|
Opportunity?: undefined;
|
|
942
|
-
id?: undefined;
|
|
943
|
-
campaignId?: undefined;
|
|
944
942
|
RewardToken?: undefined;
|
|
943
|
+
campaignId?: undefined;
|
|
944
|
+
id?: undefined;
|
|
945
945
|
} | {
|
|
946
|
+
creatorAddress?: undefined;
|
|
946
947
|
Opportunity: {
|
|
947
948
|
identifier: {
|
|
948
949
|
contains: string;
|
|
@@ -950,23 +951,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
950
951
|
};
|
|
951
952
|
mainProtocolId?: undefined;
|
|
952
953
|
};
|
|
953
|
-
id?: undefined;
|
|
954
|
-
campaignId?: undefined;
|
|
955
|
-
creatorAddress?: undefined;
|
|
956
954
|
RewardToken?: undefined;
|
|
955
|
+
campaignId?: undefined;
|
|
956
|
+
id?: undefined;
|
|
957
957
|
} | {
|
|
958
|
+
creatorAddress?: undefined;
|
|
958
959
|
Opportunity: {
|
|
960
|
+
identifier?: undefined;
|
|
959
961
|
mainProtocolId: {
|
|
960
962
|
contains: string;
|
|
961
963
|
mode: "insensitive";
|
|
962
964
|
};
|
|
963
|
-
identifier?: undefined;
|
|
964
965
|
};
|
|
965
|
-
id?: undefined;
|
|
966
|
-
campaignId?: undefined;
|
|
967
|
-
creatorAddress?: undefined;
|
|
968
966
|
RewardToken?: undefined;
|
|
967
|
+
campaignId?: undefined;
|
|
968
|
+
id?: undefined;
|
|
969
969
|
} | {
|
|
970
|
+
creatorAddress?: undefined;
|
|
970
971
|
Opportunity?: undefined;
|
|
971
972
|
RewardToken: {
|
|
972
973
|
OR: ({
|
|
@@ -977,24 +978,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
977
978
|
displaySymbol?: undefined;
|
|
978
979
|
address?: undefined;
|
|
979
980
|
} | {
|
|
981
|
+
symbol?: undefined;
|
|
980
982
|
displaySymbol: {
|
|
981
983
|
contains: string;
|
|
982
984
|
mode: "insensitive";
|
|
983
985
|
};
|
|
984
|
-
symbol?: undefined;
|
|
985
986
|
address?: undefined;
|
|
986
987
|
} | {
|
|
988
|
+
symbol?: undefined;
|
|
987
989
|
displaySymbol?: undefined;
|
|
988
990
|
address: {
|
|
989
991
|
contains: string;
|
|
990
992
|
mode: "insensitive";
|
|
991
993
|
};
|
|
992
|
-
symbol?: undefined;
|
|
993
994
|
})[];
|
|
994
995
|
};
|
|
995
|
-
id?: undefined;
|
|
996
996
|
campaignId?: undefined;
|
|
997
|
-
|
|
997
|
+
id?: undefined;
|
|
998
998
|
})[];
|
|
999
999
|
}[] | undefined;
|
|
1000
1000
|
startTimestamp: {
|
|
@@ -1103,10 +1103,10 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
1103
1103
|
tags?: undefined;
|
|
1104
1104
|
} | {
|
|
1105
1105
|
OR?: undefined;
|
|
1106
|
+
tags?: undefined;
|
|
1106
1107
|
Creator: {
|
|
1107
1108
|
id: string;
|
|
1108
1109
|
};
|
|
1109
|
-
tags?: undefined;
|
|
1110
1110
|
} | {
|
|
1111
1111
|
OR?: undefined;
|
|
1112
1112
|
Creator?: undefined;
|
|
@@ -1144,29 +1144,30 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
1144
1144
|
contains: string;
|
|
1145
1145
|
mode: "insensitive";
|
|
1146
1146
|
};
|
|
1147
|
-
Opportunity?: undefined;
|
|
1148
|
-
campaignId?: undefined;
|
|
1149
1147
|
creatorAddress?: undefined;
|
|
1148
|
+
Opportunity?: undefined;
|
|
1150
1149
|
RewardToken?: undefined;
|
|
1150
|
+
campaignId?: undefined;
|
|
1151
1151
|
} | {
|
|
1152
1152
|
campaignId: {
|
|
1153
1153
|
contains: string;
|
|
1154
1154
|
mode: "insensitive";
|
|
1155
1155
|
};
|
|
1156
|
-
Opportunity?: undefined;
|
|
1157
|
-
id?: undefined;
|
|
1158
1156
|
creatorAddress?: undefined;
|
|
1157
|
+
Opportunity?: undefined;
|
|
1159
1158
|
RewardToken?: undefined;
|
|
1159
|
+
id?: undefined;
|
|
1160
1160
|
} | {
|
|
1161
1161
|
creatorAddress: {
|
|
1162
1162
|
contains: string;
|
|
1163
1163
|
mode: "insensitive";
|
|
1164
1164
|
};
|
|
1165
1165
|
Opportunity?: undefined;
|
|
1166
|
-
id?: undefined;
|
|
1167
|
-
campaignId?: undefined;
|
|
1168
1166
|
RewardToken?: undefined;
|
|
1167
|
+
campaignId?: undefined;
|
|
1168
|
+
id?: undefined;
|
|
1169
1169
|
} | {
|
|
1170
|
+
creatorAddress?: undefined;
|
|
1170
1171
|
Opportunity: {
|
|
1171
1172
|
identifier: {
|
|
1172
1173
|
contains: string;
|
|
@@ -1174,23 +1175,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
1174
1175
|
};
|
|
1175
1176
|
mainProtocolId?: undefined;
|
|
1176
1177
|
};
|
|
1177
|
-
id?: undefined;
|
|
1178
|
-
campaignId?: undefined;
|
|
1179
|
-
creatorAddress?: undefined;
|
|
1180
1178
|
RewardToken?: undefined;
|
|
1179
|
+
campaignId?: undefined;
|
|
1180
|
+
id?: undefined;
|
|
1181
1181
|
} | {
|
|
1182
|
+
creatorAddress?: undefined;
|
|
1182
1183
|
Opportunity: {
|
|
1184
|
+
identifier?: undefined;
|
|
1183
1185
|
mainProtocolId: {
|
|
1184
1186
|
contains: string;
|
|
1185
1187
|
mode: "insensitive";
|
|
1186
1188
|
};
|
|
1187
|
-
identifier?: undefined;
|
|
1188
1189
|
};
|
|
1189
|
-
id?: undefined;
|
|
1190
|
-
campaignId?: undefined;
|
|
1191
|
-
creatorAddress?: undefined;
|
|
1192
1190
|
RewardToken?: undefined;
|
|
1191
|
+
campaignId?: undefined;
|
|
1192
|
+
id?: undefined;
|
|
1193
1193
|
} | {
|
|
1194
|
+
creatorAddress?: undefined;
|
|
1194
1195
|
Opportunity?: undefined;
|
|
1195
1196
|
RewardToken: {
|
|
1196
1197
|
OR: ({
|
|
@@ -1201,24 +1202,23 @@ export declare function transformQueryToPrismaFilters(query: Omit<FindCampaignMo
|
|
|
1201
1202
|
displaySymbol?: undefined;
|
|
1202
1203
|
address?: undefined;
|
|
1203
1204
|
} | {
|
|
1205
|
+
symbol?: undefined;
|
|
1204
1206
|
displaySymbol: {
|
|
1205
1207
|
contains: string;
|
|
1206
1208
|
mode: "insensitive";
|
|
1207
1209
|
};
|
|
1208
|
-
symbol?: undefined;
|
|
1209
1210
|
address?: undefined;
|
|
1210
1211
|
} | {
|
|
1212
|
+
symbol?: undefined;
|
|
1211
1213
|
displaySymbol?: undefined;
|
|
1212
1214
|
address: {
|
|
1213
1215
|
contains: string;
|
|
1214
1216
|
mode: "insensitive";
|
|
1215
1217
|
};
|
|
1216
|
-
symbol?: undefined;
|
|
1217
1218
|
})[];
|
|
1218
1219
|
};
|
|
1219
|
-
id?: undefined;
|
|
1220
1220
|
campaignId?: undefined;
|
|
1221
|
-
|
|
1221
|
+
id?: undefined;
|
|
1222
1222
|
})[];
|
|
1223
1223
|
}[] | undefined;
|
|
1224
1224
|
endTimestamp: {
|
|
@@ -336,7 +336,7 @@ export declare abstract class CampaignService {
|
|
|
336
336
|
liveCampaigns: number;
|
|
337
337
|
endOfDisputePeriod: number;
|
|
338
338
|
explorers?: {
|
|
339
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
339
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
340
340
|
url: string;
|
|
341
341
|
chainId: number;
|
|
342
342
|
}[] | undefined;
|
|
@@ -442,7 +442,7 @@ export declare abstract class CampaignService {
|
|
|
442
442
|
liveCampaigns: number;
|
|
443
443
|
endOfDisputePeriod: number;
|
|
444
444
|
explorers?: {
|
|
445
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
445
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
446
446
|
url: string;
|
|
447
447
|
chainId: number;
|
|
448
448
|
}[] | undefined;
|
|
@@ -588,7 +588,7 @@ export declare abstract class CampaignService {
|
|
|
588
588
|
liveCampaigns: number;
|
|
589
589
|
endOfDisputePeriod: number;
|
|
590
590
|
explorers?: {
|
|
591
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
591
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
592
592
|
url: string;
|
|
593
593
|
chainId: number;
|
|
594
594
|
}[] | undefined;
|
|
@@ -749,7 +749,7 @@ export declare abstract class CampaignService {
|
|
|
749
749
|
liveCampaigns: number;
|
|
750
750
|
endOfDisputePeriod: number;
|
|
751
751
|
explorers?: {
|
|
752
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
752
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
753
753
|
url: string;
|
|
754
754
|
chainId: number;
|
|
755
755
|
}[] | undefined;
|
|
@@ -845,7 +845,7 @@ export declare abstract class CampaignService {
|
|
|
845
845
|
liveCampaigns: number;
|
|
846
846
|
endOfDisputePeriod: number;
|
|
847
847
|
explorers?: {
|
|
848
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
848
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
849
849
|
url: string;
|
|
850
850
|
chainId: number;
|
|
851
851
|
}[] | undefined;
|
|
@@ -100,7 +100,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
100
100
|
liveCampaigns: number;
|
|
101
101
|
endOfDisputePeriod: number;
|
|
102
102
|
explorers?: {
|
|
103
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
103
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
104
104
|
url: string;
|
|
105
105
|
chainId: number;
|
|
106
106
|
}[] | undefined;
|
|
@@ -276,7 +276,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
276
276
|
liveCampaigns: number;
|
|
277
277
|
endOfDisputePeriod: number;
|
|
278
278
|
explorers?: {
|
|
279
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
279
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
280
280
|
url: string;
|
|
281
281
|
chainId: number;
|
|
282
282
|
}[] | undefined;
|
|
@@ -388,7 +388,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
388
388
|
liveCampaigns: number;
|
|
389
389
|
endOfDisputePeriod: number;
|
|
390
390
|
explorers?: {
|
|
391
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
391
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
392
392
|
url: string;
|
|
393
393
|
chainId: number;
|
|
394
394
|
}[] | undefined;
|
|
@@ -510,7 +510,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
510
510
|
liveCampaigns: number;
|
|
511
511
|
endOfDisputePeriod: number;
|
|
512
512
|
explorers?: {
|
|
513
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
513
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
514
514
|
url: string;
|
|
515
515
|
chainId: number;
|
|
516
516
|
}[] | undefined;
|
|
@@ -686,7 +686,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
686
686
|
liveCampaigns: number;
|
|
687
687
|
endOfDisputePeriod: number;
|
|
688
688
|
explorers?: {
|
|
689
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
689
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
690
690
|
url: string;
|
|
691
691
|
chainId: number;
|
|
692
692
|
}[] | undefined;
|
|
@@ -798,7 +798,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
798
798
|
liveCampaigns: number;
|
|
799
799
|
endOfDisputePeriod: number;
|
|
800
800
|
explorers?: {
|
|
801
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
801
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
802
802
|
url: string;
|
|
803
803
|
chainId: number;
|
|
804
804
|
}[] | undefined;
|
|
@@ -1192,7 +1192,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
1192
1192
|
liveCampaigns: number;
|
|
1193
1193
|
endOfDisputePeriod: number;
|
|
1194
1194
|
explorers?: {
|
|
1195
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
1195
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
1196
1196
|
url: string;
|
|
1197
1197
|
chainId: number;
|
|
1198
1198
|
}[] | undefined;
|
|
@@ -1368,7 +1368,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
1368
1368
|
liveCampaigns: number;
|
|
1369
1369
|
endOfDisputePeriod: number;
|
|
1370
1370
|
explorers?: {
|
|
1371
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
1371
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
1372
1372
|
url: string;
|
|
1373
1373
|
chainId: number;
|
|
1374
1374
|
}[] | undefined;
|
|
@@ -1480,7 +1480,7 @@ export declare const CarouselController: Elysia<"/carousels", {
|
|
|
1480
1480
|
liveCampaigns: number;
|
|
1481
1481
|
endOfDisputePeriod: number;
|
|
1482
1482
|
explorers?: {
|
|
1483
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
1483
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
1484
1484
|
url: string;
|
|
1485
1485
|
chainId: number;
|
|
1486
1486
|
}[] | undefined;
|