@merkl/api 1.0.95 → 1.0.97
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 +66 -150
- package/dist/src/index.d.ts +33 -75
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +12 -8
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +10 -2
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +53 -55
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +41 -6
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +0 -12
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +20 -28
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +0 -6
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +36 -11
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +15 -42
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +12 -27
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +0 -2
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +3 -2
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +0 -2
- package/dist/src/modules/v4/reward/reward.model.d.ts +10 -4
- package/dist/src/modules/v4/reward/reward.repository.d.ts +0 -4
- package/dist/src/modules/v4/reward/reward.service.d.ts +0 -26
- package/dist/src/modules/v4/router.d.ts +33 -75
- package/dist/src/modules/v4/token/token.controller.d.ts +2 -21
- package/dist/src/modules/v4/token/token.model.d.ts +15 -5
- package/dist/src/modules/v4/token/token.repository.d.ts +0 -10
- package/dist/src/modules/v4/token/token.service.d.ts +0 -28
- package/dist/src/modules/v4/user/user.controller.d.ts +0 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
@@ -1516,6 +1516,7 @@ declare const app: Elysia<"", {
|
|
1516
1516
|
creatorTag?: string | undefined;
|
1517
1517
|
distributionChainIds?: number[] | undefined;
|
1518
1518
|
types?: string[] | undefined;
|
1519
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1519
1520
|
withOpportunity?: boolean | undefined;
|
1520
1521
|
createdAfter?: Date | null | undefined;
|
1521
1522
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -1569,10 +1570,9 @@ declare const app: Elysia<"", {
|
|
1569
1570
|
address: string;
|
1570
1571
|
id: string;
|
1571
1572
|
chainId: number;
|
1573
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1572
1574
|
icon: string;
|
1573
1575
|
isNative: boolean;
|
1574
|
-
isPoint: boolean;
|
1575
|
-
isPreTGE: boolean;
|
1576
1576
|
isTest: boolean;
|
1577
1577
|
verified: boolean;
|
1578
1578
|
};
|
@@ -1591,10 +1591,9 @@ declare const app: Elysia<"", {
|
|
1591
1591
|
address: string;
|
1592
1592
|
id: string;
|
1593
1593
|
chainId: number;
|
1594
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1594
1595
|
icon: string;
|
1595
1596
|
isNative: boolean;
|
1596
|
-
isPoint: boolean;
|
1597
|
-
isPreTGE: boolean;
|
1598
1597
|
isTest: boolean;
|
1599
1598
|
verified: boolean;
|
1600
1599
|
}[];
|
@@ -1638,10 +1637,9 @@ declare const app: Elysia<"", {
|
|
1638
1637
|
address: string;
|
1639
1638
|
id: string;
|
1640
1639
|
chainId: number;
|
1640
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1641
1641
|
icon: string;
|
1642
1642
|
isNative: boolean;
|
1643
|
-
isPoint: boolean;
|
1644
|
-
isPreTGE: boolean;
|
1645
1643
|
isTest: boolean;
|
1646
1644
|
verified: boolean;
|
1647
1645
|
};
|
@@ -1720,6 +1718,7 @@ declare const app: Elysia<"", {
|
|
1720
1718
|
campaigns?: boolean | undefined;
|
1721
1719
|
point?: boolean | undefined;
|
1722
1720
|
test?: boolean | undefined;
|
1721
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1723
1722
|
excludeSubCampaigns?: boolean | undefined;
|
1724
1723
|
};
|
1725
1724
|
headers: unknown;
|
@@ -1771,10 +1770,9 @@ declare const app: Elysia<"", {
|
|
1771
1770
|
address: string;
|
1772
1771
|
id: string;
|
1773
1772
|
chainId: number;
|
1773
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1774
1774
|
icon: string;
|
1775
1775
|
isNative: boolean;
|
1776
|
-
isPoint: boolean;
|
1777
|
-
isPreTGE: boolean;
|
1778
1776
|
isTest: boolean;
|
1779
1777
|
verified: boolean;
|
1780
1778
|
};
|
@@ -1793,10 +1791,9 @@ declare const app: Elysia<"", {
|
|
1793
1791
|
address: string;
|
1794
1792
|
id: string;
|
1795
1793
|
chainId: number;
|
1794
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1796
1795
|
icon: string;
|
1797
1796
|
isNative: boolean;
|
1798
|
-
isPoint: boolean;
|
1799
|
-
isPreTGE: boolean;
|
1800
1797
|
isTest: boolean;
|
1801
1798
|
verified: boolean;
|
1802
1799
|
}[];
|
@@ -1858,6 +1855,7 @@ declare const app: Elysia<"", {
|
|
1858
1855
|
campaigns?: boolean | undefined;
|
1859
1856
|
point?: boolean | undefined;
|
1860
1857
|
test?: boolean | undefined;
|
1858
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1861
1859
|
excludeSubCampaigns?: boolean | undefined;
|
1862
1860
|
};
|
1863
1861
|
headers: unknown;
|
@@ -1909,10 +1907,9 @@ declare const app: Elysia<"", {
|
|
1909
1907
|
address: string;
|
1910
1908
|
id: string;
|
1911
1909
|
chainId: number;
|
1910
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1912
1911
|
icon: string;
|
1913
1912
|
isNative: boolean;
|
1914
|
-
isPoint: boolean;
|
1915
|
-
isPreTGE: boolean;
|
1916
1913
|
isTest: boolean;
|
1917
1914
|
verified: boolean;
|
1918
1915
|
};
|
@@ -1931,10 +1928,9 @@ declare const app: Elysia<"", {
|
|
1931
1928
|
address: string;
|
1932
1929
|
id: string;
|
1933
1930
|
chainId: number;
|
1931
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1934
1932
|
icon: string;
|
1935
1933
|
isNative: boolean;
|
1936
|
-
isPoint: boolean;
|
1937
|
-
isPreTGE: boolean;
|
1938
1934
|
isTest: boolean;
|
1939
1935
|
verified: boolean;
|
1940
1936
|
}[];
|
@@ -1978,10 +1974,9 @@ declare const app: Elysia<"", {
|
|
1978
1974
|
address: string;
|
1979
1975
|
id: string;
|
1980
1976
|
chainId: number;
|
1977
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1981
1978
|
icon: string;
|
1982
1979
|
isNative: boolean;
|
1983
|
-
isPoint: boolean;
|
1984
|
-
isPreTGE: boolean;
|
1985
1980
|
isTest: boolean;
|
1986
1981
|
verified: boolean;
|
1987
1982
|
};
|
@@ -2074,6 +2069,7 @@ declare const app: Elysia<"", {
|
|
2074
2069
|
tags?: string | undefined;
|
2075
2070
|
test?: boolean | undefined;
|
2076
2071
|
page?: number | undefined;
|
2072
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2077
2073
|
excludeSubCampaigns?: boolean | undefined;
|
2078
2074
|
minimumTvl?: number | undefined;
|
2079
2075
|
maximumTvl?: number | undefined;
|
@@ -2130,10 +2126,9 @@ declare const app: Elysia<"", {
|
|
2130
2126
|
address: string;
|
2131
2127
|
id: string;
|
2132
2128
|
chainId: number;
|
2129
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
2133
2130
|
icon: string;
|
2134
2131
|
isNative: boolean;
|
2135
|
-
isPoint: boolean;
|
2136
|
-
isPreTGE: boolean;
|
2137
2132
|
isTest: boolean;
|
2138
2133
|
verified: boolean;
|
2139
2134
|
};
|
@@ -2152,10 +2147,9 @@ declare const app: Elysia<"", {
|
|
2152
2147
|
address: string;
|
2153
2148
|
id: string;
|
2154
2149
|
chainId: number;
|
2150
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
2155
2151
|
icon: string;
|
2156
2152
|
isNative: boolean;
|
2157
|
-
isPoint: boolean;
|
2158
|
-
isPreTGE: boolean;
|
2159
2153
|
isTest: boolean;
|
2160
2154
|
verified: boolean;
|
2161
2155
|
}[];
|
@@ -2220,6 +2214,7 @@ declare const app: Elysia<"", {
|
|
2220
2214
|
tags?: string | undefined;
|
2221
2215
|
test?: boolean | undefined;
|
2222
2216
|
page?: number | undefined;
|
2217
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2223
2218
|
excludeSubCampaigns?: boolean | undefined;
|
2224
2219
|
minimumTvl?: number | undefined;
|
2225
2220
|
maximumTvl?: number | undefined;
|
@@ -2270,6 +2265,7 @@ declare const app: Elysia<"", {
|
|
2270
2265
|
tags?: string | undefined;
|
2271
2266
|
test?: boolean | undefined;
|
2272
2267
|
page?: number | undefined;
|
2268
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2273
2269
|
excludeSubCampaigns?: boolean | undefined;
|
2274
2270
|
minimumTvl?: number | undefined;
|
2275
2271
|
maximumTvl?: number | undefined;
|
@@ -2327,6 +2323,7 @@ declare const app: Elysia<"", {
|
|
2327
2323
|
tags?: string | undefined;
|
2328
2324
|
test?: boolean | undefined;
|
2329
2325
|
page?: number | undefined;
|
2326
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2330
2327
|
excludeSubCampaigns?: boolean | undefined;
|
2331
2328
|
minimumTvl?: number | undefined;
|
2332
2329
|
maximumTvl?: number | undefined;
|
@@ -2386,6 +2383,7 @@ declare const app: Elysia<"", {
|
|
2386
2383
|
tags?: string | undefined;
|
2387
2384
|
test?: boolean | undefined;
|
2388
2385
|
page?: number | undefined;
|
2386
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2389
2387
|
excludeSubCampaigns?: boolean | undefined;
|
2390
2388
|
minimumTvl?: number | undefined;
|
2391
2389
|
maximumTvl?: number | undefined;
|
@@ -2442,6 +2440,7 @@ declare const app: Elysia<"", {
|
|
2442
2440
|
tags?: string | undefined;
|
2443
2441
|
test?: boolean | undefined;
|
2444
2442
|
page?: number | undefined;
|
2443
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2445
2444
|
excludeSubCampaigns?: boolean | undefined;
|
2446
2445
|
minimumTvl?: number | undefined;
|
2447
2446
|
maximumTvl?: number | undefined;
|
@@ -2499,6 +2498,7 @@ declare const app: Elysia<"", {
|
|
2499
2498
|
tags?: string | undefined;
|
2500
2499
|
test?: boolean | undefined;
|
2501
2500
|
page?: number | undefined;
|
2501
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2502
2502
|
excludeSubCampaigns?: boolean | undefined;
|
2503
2503
|
minimumTvl?: number | undefined;
|
2504
2504
|
maximumTvl?: number | undefined;
|
@@ -2558,8 +2558,6 @@ declare const app: Elysia<"", {
|
|
2558
2558
|
type: import("@package/databases").TokenType;
|
2559
2559
|
icon: string;
|
2560
2560
|
isNative: boolean;
|
2561
|
-
isPoint: boolean;
|
2562
|
-
isPreTGE: boolean;
|
2563
2561
|
isTest: boolean;
|
2564
2562
|
verified: boolean;
|
2565
2563
|
} & {
|
@@ -2585,8 +2583,6 @@ declare const app: Elysia<"", {
|
|
2585
2583
|
type: import("@package/databases").TokenType;
|
2586
2584
|
icon: string;
|
2587
2585
|
isNative: boolean;
|
2588
|
-
isPoint: boolean;
|
2589
|
-
isPreTGE: boolean;
|
2590
2586
|
isTest: boolean;
|
2591
2587
|
verified: boolean;
|
2592
2588
|
displaySymbol: string;
|
@@ -2761,8 +2757,6 @@ declare const app: Elysia<"", {
|
|
2761
2757
|
type: import("@package/databases").TokenType;
|
2762
2758
|
icon: string;
|
2763
2759
|
isNative: boolean;
|
2764
|
-
isPoint: boolean;
|
2765
|
-
isPreTGE: boolean;
|
2766
2760
|
isTest: boolean;
|
2767
2761
|
verified: boolean;
|
2768
2762
|
} & {
|
@@ -2788,8 +2782,6 @@ declare const app: Elysia<"", {
|
|
2788
2782
|
type: import("@package/databases").TokenType;
|
2789
2783
|
icon: string;
|
2790
2784
|
isNative: boolean;
|
2791
|
-
isPoint: boolean;
|
2792
|
-
isPreTGE: boolean;
|
2793
2785
|
isTest: boolean;
|
2794
2786
|
verified: boolean;
|
2795
2787
|
displaySymbol: string;
|
@@ -2903,8 +2895,6 @@ declare const app: Elysia<"", {
|
|
2903
2895
|
type: import("@package/databases").TokenType;
|
2904
2896
|
icon: string;
|
2905
2897
|
isNative: boolean;
|
2906
|
-
isPoint: boolean;
|
2907
|
-
isPreTGE: boolean;
|
2908
2898
|
isTest: boolean;
|
2909
2899
|
verified: boolean;
|
2910
2900
|
} & {
|
@@ -2930,8 +2920,6 @@ declare const app: Elysia<"", {
|
|
2930
2920
|
type: import("@package/databases").TokenType;
|
2931
2921
|
icon: string;
|
2932
2922
|
isNative: boolean;
|
2933
|
-
isPoint: boolean;
|
2934
|
-
isPreTGE: boolean;
|
2935
2923
|
isTest: boolean;
|
2936
2924
|
verified: boolean;
|
2937
2925
|
displaySymbol: string;
|
@@ -3020,10 +3008,9 @@ declare const app: Elysia<"", {
|
|
3020
3008
|
address: string;
|
3021
3009
|
id: string;
|
3022
3010
|
chainId: number;
|
3011
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
3023
3012
|
icon: string;
|
3024
3013
|
isNative: boolean;
|
3025
|
-
isPoint: boolean;
|
3026
|
-
isPreTGE: boolean;
|
3027
3014
|
isTest: boolean;
|
3028
3015
|
verified: boolean;
|
3029
3016
|
};
|
@@ -3270,6 +3257,7 @@ declare const app: Elysia<"", {
|
|
3270
3257
|
creatorTag?: string | undefined;
|
3271
3258
|
distributionChainIds?: number[] | undefined;
|
3272
3259
|
types?: string[] | undefined;
|
3260
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3273
3261
|
withOpportunity?: boolean | undefined;
|
3274
3262
|
createdAfter?: Date | null | undefined;
|
3275
3263
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3311,10 +3299,9 @@ declare const app: Elysia<"", {
|
|
3311
3299
|
address: string;
|
3312
3300
|
id: string;
|
3313
3301
|
chainId: number;
|
3302
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
3314
3303
|
icon: string;
|
3315
3304
|
isNative: boolean;
|
3316
|
-
isPoint: boolean;
|
3317
|
-
isPreTGE: boolean;
|
3318
3305
|
isTest: boolean;
|
3319
3306
|
verified: boolean;
|
3320
3307
|
};
|
@@ -3382,6 +3369,7 @@ declare const app: Elysia<"", {
|
|
3382
3369
|
creatorTag?: string | undefined;
|
3383
3370
|
distributionChainIds?: number[] | undefined;
|
3384
3371
|
types?: string[] | undefined;
|
3372
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3385
3373
|
withOpportunity?: boolean | undefined;
|
3386
3374
|
createdAfter?: Date | null | undefined;
|
3387
3375
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3432,6 +3420,7 @@ declare const app: Elysia<"", {
|
|
3432
3420
|
creatorTag?: string | undefined;
|
3433
3421
|
distributionChainIds?: number[] | undefined;
|
3434
3422
|
types?: string[] | undefined;
|
3423
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3435
3424
|
withOpportunity?: boolean | undefined;
|
3436
3425
|
createdAfter?: Date | null | undefined;
|
3437
3426
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3487,6 +3476,7 @@ declare const app: Elysia<"", {
|
|
3487
3476
|
creatorTag?: string | undefined;
|
3488
3477
|
distributionChainIds?: number[] | undefined;
|
3489
3478
|
types?: string[] | undefined;
|
3479
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3490
3480
|
withOpportunity?: boolean | undefined;
|
3491
3481
|
createdAfter?: Date | null | undefined;
|
3492
3482
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3545,6 +3535,7 @@ declare const app: Elysia<"", {
|
|
3545
3535
|
creatorTag?: string | undefined;
|
3546
3536
|
distributionChainIds?: number[] | undefined;
|
3547
3537
|
types?: string[] | undefined;
|
3538
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3548
3539
|
withOpportunity?: boolean | undefined;
|
3549
3540
|
createdAfter?: Date | null | undefined;
|
3550
3541
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3600,6 +3591,7 @@ declare const app: Elysia<"", {
|
|
3600
3591
|
creatorTag?: string | undefined;
|
3601
3592
|
distributionChainIds?: number[] | undefined;
|
3602
3593
|
types?: string[] | undefined;
|
3594
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3603
3595
|
withOpportunity?: boolean | undefined;
|
3604
3596
|
createdAfter?: Date | null | undefined;
|
3605
3597
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3655,6 +3647,7 @@ declare const app: Elysia<"", {
|
|
3655
3647
|
creatorTag?: string | undefined;
|
3656
3648
|
distributionChainIds?: number[] | undefined;
|
3657
3649
|
types?: string[] | undefined;
|
3650
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3658
3651
|
withOpportunity?: boolean | undefined;
|
3659
3652
|
createdAfter?: Date | null | undefined;
|
3660
3653
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3709,6 +3702,7 @@ declare const app: Elysia<"", {
|
|
3709
3702
|
creatorTag?: string | undefined;
|
3710
3703
|
distributionChainIds?: number[] | undefined;
|
3711
3704
|
types?: string[] | undefined;
|
3705
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3712
3706
|
withOpportunity?: boolean | undefined;
|
3713
3707
|
createdAfter?: Date | null | undefined;
|
3714
3708
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3762,6 +3756,7 @@ declare const app: Elysia<"", {
|
|
3762
3756
|
creatorTag?: string | undefined;
|
3763
3757
|
distributionChainIds?: number[] | undefined;
|
3764
3758
|
types?: string[] | undefined;
|
3759
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3765
3760
|
withOpportunity?: boolean | undefined;
|
3766
3761
|
createdAfter?: Date | null | undefined;
|
3767
3762
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -4008,8 +4003,6 @@ declare const app: Elysia<"", {
|
|
4008
4003
|
type: import("@package/databases").TokenType;
|
4009
4004
|
icon: string;
|
4010
4005
|
isNative: boolean;
|
4011
|
-
isPoint: boolean;
|
4012
|
-
isPreTGE: boolean;
|
4013
4006
|
isTest: boolean;
|
4014
4007
|
verified: boolean;
|
4015
4008
|
} & {
|
@@ -4035,8 +4028,6 @@ declare const app: Elysia<"", {
|
|
4035
4028
|
type: import("@package/databases").TokenType;
|
4036
4029
|
icon: string;
|
4037
4030
|
isNative: boolean;
|
4038
|
-
isPoint: boolean;
|
4039
|
-
isPreTGE: boolean;
|
4040
4031
|
isTest: boolean;
|
4041
4032
|
verified: boolean;
|
4042
4033
|
displaySymbol: string;
|
@@ -4133,8 +4124,6 @@ declare const app: Elysia<"", {
|
|
4133
4124
|
type: import("@package/databases").TokenType;
|
4134
4125
|
icon: string;
|
4135
4126
|
isNative: boolean;
|
4136
|
-
isPoint: boolean;
|
4137
|
-
isPreTGE: boolean;
|
4138
4127
|
isTest: boolean;
|
4139
4128
|
verified: boolean;
|
4140
4129
|
} & {
|
@@ -4160,8 +4149,6 @@ declare const app: Elysia<"", {
|
|
4160
4149
|
type: import("@package/databases").TokenType;
|
4161
4150
|
icon: string;
|
4162
4151
|
isNative: boolean;
|
4163
|
-
isPoint: boolean;
|
4164
|
-
isPreTGE: boolean;
|
4165
4152
|
isTest: boolean;
|
4166
4153
|
verified: boolean;
|
4167
4154
|
displaySymbol: string;
|
@@ -4259,8 +4246,6 @@ declare const app: Elysia<"", {
|
|
4259
4246
|
type: import("@package/databases").TokenType;
|
4260
4247
|
icon: string;
|
4261
4248
|
isNative: boolean;
|
4262
|
-
isPoint: boolean;
|
4263
|
-
isPreTGE: boolean;
|
4264
4249
|
isTest: boolean;
|
4265
4250
|
verified: boolean;
|
4266
4251
|
} & {
|
@@ -4286,8 +4271,6 @@ declare const app: Elysia<"", {
|
|
4286
4271
|
type: import("@package/databases").TokenType;
|
4287
4272
|
icon: string;
|
4288
4273
|
isNative: boolean;
|
4289
|
-
isPoint: boolean;
|
4290
|
-
isPreTGE: boolean;
|
4291
4274
|
isTest: boolean;
|
4292
4275
|
verified: boolean;
|
4293
4276
|
displaySymbol: string;
|
@@ -4648,8 +4631,6 @@ declare const app: Elysia<"", {
|
|
4648
4631
|
type: import("@package/databases").TokenType;
|
4649
4632
|
icon: string;
|
4650
4633
|
isNative: boolean;
|
4651
|
-
isPoint: boolean;
|
4652
|
-
isPreTGE: boolean;
|
4653
4634
|
isTest: boolean;
|
4654
4635
|
verified: boolean;
|
4655
4636
|
price?: number | null | undefined;
|
@@ -4694,8 +4675,6 @@ declare const app: Elysia<"", {
|
|
4694
4675
|
type: import("@package/databases").TokenType;
|
4695
4676
|
icon: string;
|
4696
4677
|
isNative: boolean;
|
4697
|
-
isPoint: boolean;
|
4698
|
-
isPreTGE: boolean;
|
4699
4678
|
isTest: boolean;
|
4700
4679
|
verified: boolean;
|
4701
4680
|
price?: number | null | undefined;
|
@@ -4742,8 +4721,6 @@ declare const app: Elysia<"", {
|
|
4742
4721
|
type: import("@package/databases").TokenType;
|
4743
4722
|
icon: string;
|
4744
4723
|
isNative: boolean;
|
4745
|
-
isPoint: boolean;
|
4746
|
-
isPreTGE: boolean;
|
4747
4724
|
isTest: boolean;
|
4748
4725
|
verified: boolean;
|
4749
4726
|
displaySymbol: string;
|
@@ -4786,8 +4763,6 @@ declare const app: Elysia<"", {
|
|
4786
4763
|
type: import("@package/databases").TokenType;
|
4787
4764
|
icon: string;
|
4788
4765
|
isNative: boolean;
|
4789
|
-
isPoint: boolean;
|
4790
|
-
isPreTGE: boolean;
|
4791
4766
|
isTest: boolean;
|
4792
4767
|
verified: boolean;
|
4793
4768
|
displaySymbol: string;
|
@@ -4829,8 +4804,6 @@ declare const app: Elysia<"", {
|
|
4829
4804
|
type: import("@package/databases").TokenType;
|
4830
4805
|
icon: string;
|
4831
4806
|
isNative: boolean;
|
4832
|
-
isPoint: boolean;
|
4833
|
-
isPreTGE: boolean;
|
4834
4807
|
isTest: boolean;
|
4835
4808
|
verified: boolean;
|
4836
4809
|
} & {
|
@@ -4884,8 +4857,6 @@ declare const app: Elysia<"", {
|
|
4884
4857
|
type: import("@package/databases").TokenType;
|
4885
4858
|
icon: string;
|
4886
4859
|
isNative: boolean;
|
4887
|
-
isPoint: boolean;
|
4888
|
-
isPreTGE: boolean;
|
4889
4860
|
isTest: boolean;
|
4890
4861
|
verified: boolean;
|
4891
4862
|
} & {
|
@@ -4943,7 +4914,7 @@ declare const app: Elysia<"", {
|
|
4943
4914
|
} & {
|
4944
4915
|
post: {
|
4945
4916
|
body: {
|
4946
|
-
|
4917
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
4947
4918
|
isTest?: boolean | undefined;
|
4948
4919
|
address: string;
|
4949
4920
|
chainId: number;
|
@@ -4967,8 +4938,6 @@ declare const app: Elysia<"", {
|
|
4967
4938
|
type: import("@package/databases").TokenType;
|
4968
4939
|
icon: string;
|
4969
4940
|
isNative: boolean;
|
4970
|
-
isPoint: boolean;
|
4971
|
-
isPreTGE: boolean;
|
4972
4941
|
isTest: boolean;
|
4973
4942
|
verified: boolean;
|
4974
4943
|
displaySymbol: string;
|
@@ -4989,9 +4958,8 @@ declare const app: Elysia<"", {
|
|
4989
4958
|
patch: {
|
4990
4959
|
body: {
|
4991
4960
|
name?: string | undefined;
|
4961
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
4992
4962
|
icon?: string | undefined;
|
4993
|
-
isPoint?: boolean | undefined;
|
4994
|
-
isPreTGE?: boolean | undefined;
|
4995
4963
|
isTest?: boolean | undefined;
|
4996
4964
|
verified?: boolean | undefined;
|
4997
4965
|
displaySymbol?: string | undefined;
|
@@ -5015,8 +4983,6 @@ declare const app: Elysia<"", {
|
|
5015
4983
|
type: import("@package/databases").TokenType;
|
5016
4984
|
icon: string;
|
5017
4985
|
isNative: boolean;
|
5018
|
-
isPoint: boolean;
|
5019
|
-
isPreTGE: boolean;
|
5020
4986
|
isTest: boolean;
|
5021
4987
|
verified: boolean;
|
5022
4988
|
displaySymbol: string;
|
@@ -5089,8 +5055,6 @@ declare const app: Elysia<"", {
|
|
5089
5055
|
type: import("@package/databases").TokenType;
|
5090
5056
|
icon: string;
|
5091
5057
|
isNative: boolean;
|
5092
|
-
isPoint: boolean;
|
5093
|
-
isPreTGE: boolean;
|
5094
5058
|
isTest: boolean;
|
5095
5059
|
verified: boolean;
|
5096
5060
|
displaySymbol: string;
|
@@ -6444,8 +6408,6 @@ declare const app: Elysia<"", {
|
|
6444
6408
|
type: import("@package/databases").TokenType;
|
6445
6409
|
icon: string;
|
6446
6410
|
isNative: boolean;
|
6447
|
-
isPoint: boolean;
|
6448
|
-
isPreTGE: boolean;
|
6449
6411
|
isTest: boolean;
|
6450
6412
|
verified: boolean;
|
6451
6413
|
displaySymbol: string;
|
@@ -6470,8 +6432,6 @@ declare const app: Elysia<"", {
|
|
6470
6432
|
type: import("@package/databases").TokenType;
|
6471
6433
|
icon: string;
|
6472
6434
|
isNative: boolean;
|
6473
|
-
isPoint: boolean;
|
6474
|
-
isPreTGE: boolean;
|
6475
6435
|
isTest: boolean;
|
6476
6436
|
verified: boolean;
|
6477
6437
|
displaySymbol: string;
|
@@ -8483,8 +8443,6 @@ declare const app: Elysia<"", {
|
|
8483
8443
|
type: import("@package/databases").TokenType;
|
8484
8444
|
icon: string;
|
8485
8445
|
isNative: boolean;
|
8486
|
-
isPoint: boolean;
|
8487
|
-
isPreTGE: boolean;
|
8488
8446
|
isTest: boolean;
|
8489
8447
|
verified: boolean;
|
8490
8448
|
} & {
|
@@ -79,8 +79,6 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
79
79
|
type: import("@package/databases").TokenType;
|
80
80
|
icon: string;
|
81
81
|
isNative: boolean;
|
82
|
-
isPoint: boolean;
|
83
|
-
isPreTGE: boolean;
|
84
82
|
isTest: boolean;
|
85
83
|
verified: boolean;
|
86
84
|
} & {
|
@@ -106,8 +104,6 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
106
104
|
type: import("@package/databases").TokenType;
|
107
105
|
icon: string;
|
108
106
|
isNative: boolean;
|
109
|
-
isPoint: boolean;
|
110
|
-
isPreTGE: boolean;
|
111
107
|
isTest: boolean;
|
112
108
|
verified: boolean;
|
113
109
|
displaySymbol: string;
|
@@ -196,10 +192,9 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
196
192
|
address: string;
|
197
193
|
id: string;
|
198
194
|
chainId: number;
|
195
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
199
196
|
icon: string;
|
200
197
|
isNative: boolean;
|
201
|
-
isPoint: boolean;
|
202
|
-
isPreTGE: boolean;
|
203
198
|
isTest: boolean;
|
204
199
|
verified: boolean;
|
205
200
|
};
|
@@ -446,6 +441,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
446
441
|
creatorTag?: string | undefined;
|
447
442
|
distributionChainIds?: number[] | undefined;
|
448
443
|
types?: string[] | undefined;
|
444
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
449
445
|
withOpportunity?: boolean | undefined;
|
450
446
|
createdAfter?: Date | null | undefined;
|
451
447
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -487,10 +483,9 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
487
483
|
address: string;
|
488
484
|
id: string;
|
489
485
|
chainId: number;
|
486
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
490
487
|
icon: string;
|
491
488
|
isNative: boolean;
|
492
|
-
isPoint: boolean;
|
493
|
-
isPreTGE: boolean;
|
494
489
|
isTest: boolean;
|
495
490
|
verified: boolean;
|
496
491
|
};
|
@@ -558,6 +553,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
558
553
|
creatorTag?: string | undefined;
|
559
554
|
distributionChainIds?: number[] | undefined;
|
560
555
|
types?: string[] | undefined;
|
556
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
561
557
|
withOpportunity?: boolean | undefined;
|
562
558
|
createdAfter?: Date | null | undefined;
|
563
559
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -608,6 +604,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
608
604
|
creatorTag?: string | undefined;
|
609
605
|
distributionChainIds?: number[] | undefined;
|
610
606
|
types?: string[] | undefined;
|
607
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
611
608
|
withOpportunity?: boolean | undefined;
|
612
609
|
createdAfter?: Date | null | undefined;
|
613
610
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -663,6 +660,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
663
660
|
creatorTag?: string | undefined;
|
664
661
|
distributionChainIds?: number[] | undefined;
|
665
662
|
types?: string[] | undefined;
|
663
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
666
664
|
withOpportunity?: boolean | undefined;
|
667
665
|
createdAfter?: Date | null | undefined;
|
668
666
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -721,6 +719,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
721
719
|
creatorTag?: string | undefined;
|
722
720
|
distributionChainIds?: number[] | undefined;
|
723
721
|
types?: string[] | undefined;
|
722
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
724
723
|
withOpportunity?: boolean | undefined;
|
725
724
|
createdAfter?: Date | null | undefined;
|
726
725
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -776,6 +775,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
776
775
|
creatorTag?: string | undefined;
|
777
776
|
distributionChainIds?: number[] | undefined;
|
778
777
|
types?: string[] | undefined;
|
778
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
779
779
|
withOpportunity?: boolean | undefined;
|
780
780
|
createdAfter?: Date | null | undefined;
|
781
781
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -831,6 +831,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
831
831
|
creatorTag?: string | undefined;
|
832
832
|
distributionChainIds?: number[] | undefined;
|
833
833
|
types?: string[] | undefined;
|
834
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
834
835
|
withOpportunity?: boolean | undefined;
|
835
836
|
createdAfter?: Date | null | undefined;
|
836
837
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -885,6 +886,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
885
886
|
creatorTag?: string | undefined;
|
886
887
|
distributionChainIds?: number[] | undefined;
|
887
888
|
types?: string[] | undefined;
|
889
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
888
890
|
withOpportunity?: boolean | undefined;
|
889
891
|
createdAfter?: Date | null | undefined;
|
890
892
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -938,6 +940,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
938
940
|
creatorTag?: string | undefined;
|
939
941
|
distributionChainIds?: number[] | undefined;
|
940
942
|
types?: string[] | undefined;
|
943
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
941
944
|
withOpportunity?: boolean | undefined;
|
942
945
|
createdAfter?: Date | null | undefined;
|
943
946
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -998,6 +1001,7 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
998
1001
|
creatorTag?: string | undefined;
|
999
1002
|
distributionChainIds?: number[] | undefined;
|
1000
1003
|
types?: string[] | undefined;
|
1004
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1001
1005
|
withOpportunity?: boolean | undefined;
|
1002
1006
|
createdAfter?: Date | null | undefined;
|
1003
1007
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -76,10 +76,13 @@ export declare const CampaignResourceDto: import("@sinclair/typebox").TObject<{
|
|
76
76
|
verified: import("@sinclair/typebox").TBoolean;
|
77
77
|
isNative: import("@sinclair/typebox").TBoolean;
|
78
78
|
isTest: import("@sinclair/typebox").TBoolean;
|
79
|
-
isPoint: import("@sinclair/typebox").TBoolean;
|
80
|
-
isPreTGE: import("@sinclair/typebox").TBoolean;
|
81
79
|
price: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
82
80
|
symbol: import("@sinclair/typebox").TString;
|
81
|
+
type: import("@sinclair/typebox").TEnum<{
|
82
|
+
readonly TOKEN: "TOKEN";
|
83
|
+
readonly PRETGE: "PRETGE";
|
84
|
+
readonly POINT: "POINT";
|
85
|
+
}>;
|
83
86
|
}>;
|
84
87
|
distributionChain: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
85
88
|
id: import("@sinclair/typebox").TNumber;
|
@@ -186,6 +189,11 @@ export declare const FindCampaignDto: import("@sinclair/typebox").TObject<{
|
|
186
189
|
tokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
187
190
|
tokenAddress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
188
191
|
test: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
192
|
+
tokenTypes: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TEnum<{
|
193
|
+
readonly TOKEN: "TOKEN";
|
194
|
+
readonly PRETGE: "PRETGE";
|
195
|
+
readonly POINT: "POINT";
|
196
|
+
}>>>;
|
189
197
|
point: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
190
198
|
opportunityId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
191
199
|
status: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|