@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
@@ -53,6 +53,7 @@ export declare const v4: Elysia<"/v4", {
|
|
53
53
|
creatorTag?: string | undefined;
|
54
54
|
distributionChainIds?: number[] | undefined;
|
55
55
|
types?: string[] | undefined;
|
56
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
56
57
|
withOpportunity?: boolean | undefined;
|
57
58
|
createdAfter?: Date | null | undefined;
|
58
59
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -106,10 +107,9 @@ export declare const v4: Elysia<"/v4", {
|
|
106
107
|
address: string;
|
107
108
|
id: string;
|
108
109
|
chainId: number;
|
110
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
109
111
|
icon: string;
|
110
112
|
isNative: boolean;
|
111
|
-
isPoint: boolean;
|
112
|
-
isPreTGE: boolean;
|
113
113
|
isTest: boolean;
|
114
114
|
verified: boolean;
|
115
115
|
};
|
@@ -128,10 +128,9 @@ export declare const v4: Elysia<"/v4", {
|
|
128
128
|
address: string;
|
129
129
|
id: string;
|
130
130
|
chainId: number;
|
131
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
131
132
|
icon: string;
|
132
133
|
isNative: boolean;
|
133
|
-
isPoint: boolean;
|
134
|
-
isPreTGE: boolean;
|
135
134
|
isTest: boolean;
|
136
135
|
verified: boolean;
|
137
136
|
}[];
|
@@ -175,10 +174,9 @@ export declare const v4: Elysia<"/v4", {
|
|
175
174
|
address: string;
|
176
175
|
id: string;
|
177
176
|
chainId: number;
|
177
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
178
178
|
icon: string;
|
179
179
|
isNative: boolean;
|
180
|
-
isPoint: boolean;
|
181
|
-
isPreTGE: boolean;
|
182
180
|
isTest: boolean;
|
183
181
|
verified: boolean;
|
184
182
|
};
|
@@ -257,6 +255,7 @@ export declare const v4: Elysia<"/v4", {
|
|
257
255
|
campaigns?: boolean | undefined;
|
258
256
|
point?: boolean | undefined;
|
259
257
|
test?: boolean | undefined;
|
258
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
260
259
|
excludeSubCampaigns?: boolean | undefined;
|
261
260
|
};
|
262
261
|
headers: unknown;
|
@@ -308,10 +307,9 @@ export declare const v4: Elysia<"/v4", {
|
|
308
307
|
address: string;
|
309
308
|
id: string;
|
310
309
|
chainId: number;
|
310
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
311
311
|
icon: string;
|
312
312
|
isNative: boolean;
|
313
|
-
isPoint: boolean;
|
314
|
-
isPreTGE: boolean;
|
315
313
|
isTest: boolean;
|
316
314
|
verified: boolean;
|
317
315
|
};
|
@@ -330,10 +328,9 @@ export declare const v4: Elysia<"/v4", {
|
|
330
328
|
address: string;
|
331
329
|
id: string;
|
332
330
|
chainId: number;
|
331
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
333
332
|
icon: string;
|
334
333
|
isNative: boolean;
|
335
|
-
isPoint: boolean;
|
336
|
-
isPreTGE: boolean;
|
337
334
|
isTest: boolean;
|
338
335
|
verified: boolean;
|
339
336
|
}[];
|
@@ -395,6 +392,7 @@ export declare const v4: Elysia<"/v4", {
|
|
395
392
|
campaigns?: boolean | undefined;
|
396
393
|
point?: boolean | undefined;
|
397
394
|
test?: boolean | undefined;
|
395
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
398
396
|
excludeSubCampaigns?: boolean | undefined;
|
399
397
|
};
|
400
398
|
headers: unknown;
|
@@ -446,10 +444,9 @@ export declare const v4: Elysia<"/v4", {
|
|
446
444
|
address: string;
|
447
445
|
id: string;
|
448
446
|
chainId: number;
|
447
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
449
448
|
icon: string;
|
450
449
|
isNative: boolean;
|
451
|
-
isPoint: boolean;
|
452
|
-
isPreTGE: boolean;
|
453
450
|
isTest: boolean;
|
454
451
|
verified: boolean;
|
455
452
|
};
|
@@ -468,10 +465,9 @@ export declare const v4: Elysia<"/v4", {
|
|
468
465
|
address: string;
|
469
466
|
id: string;
|
470
467
|
chainId: number;
|
468
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
471
469
|
icon: string;
|
472
470
|
isNative: boolean;
|
473
|
-
isPoint: boolean;
|
474
|
-
isPreTGE: boolean;
|
475
471
|
isTest: boolean;
|
476
472
|
verified: boolean;
|
477
473
|
}[];
|
@@ -515,10 +511,9 @@ export declare const v4: Elysia<"/v4", {
|
|
515
511
|
address: string;
|
516
512
|
id: string;
|
517
513
|
chainId: number;
|
514
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
518
515
|
icon: string;
|
519
516
|
isNative: boolean;
|
520
|
-
isPoint: boolean;
|
521
|
-
isPreTGE: boolean;
|
522
517
|
isTest: boolean;
|
523
518
|
verified: boolean;
|
524
519
|
};
|
@@ -611,6 +606,7 @@ export declare const v4: Elysia<"/v4", {
|
|
611
606
|
tags?: string | undefined;
|
612
607
|
test?: boolean | undefined;
|
613
608
|
page?: number | undefined;
|
609
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
614
610
|
excludeSubCampaigns?: boolean | undefined;
|
615
611
|
minimumTvl?: number | undefined;
|
616
612
|
maximumTvl?: number | undefined;
|
@@ -667,10 +663,9 @@ export declare const v4: Elysia<"/v4", {
|
|
667
663
|
address: string;
|
668
664
|
id: string;
|
669
665
|
chainId: number;
|
666
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
670
667
|
icon: string;
|
671
668
|
isNative: boolean;
|
672
|
-
isPoint: boolean;
|
673
|
-
isPreTGE: boolean;
|
674
669
|
isTest: boolean;
|
675
670
|
verified: boolean;
|
676
671
|
};
|
@@ -689,10 +684,9 @@ export declare const v4: Elysia<"/v4", {
|
|
689
684
|
address: string;
|
690
685
|
id: string;
|
691
686
|
chainId: number;
|
687
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
692
688
|
icon: string;
|
693
689
|
isNative: boolean;
|
694
|
-
isPoint: boolean;
|
695
|
-
isPreTGE: boolean;
|
696
690
|
isTest: boolean;
|
697
691
|
verified: boolean;
|
698
692
|
}[];
|
@@ -757,6 +751,7 @@ export declare const v4: Elysia<"/v4", {
|
|
757
751
|
tags?: string | undefined;
|
758
752
|
test?: boolean | undefined;
|
759
753
|
page?: number | undefined;
|
754
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
760
755
|
excludeSubCampaigns?: boolean | undefined;
|
761
756
|
minimumTvl?: number | undefined;
|
762
757
|
maximumTvl?: number | undefined;
|
@@ -807,6 +802,7 @@ export declare const v4: Elysia<"/v4", {
|
|
807
802
|
tags?: string | undefined;
|
808
803
|
test?: boolean | undefined;
|
809
804
|
page?: number | undefined;
|
805
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
810
806
|
excludeSubCampaigns?: boolean | undefined;
|
811
807
|
minimumTvl?: number | undefined;
|
812
808
|
maximumTvl?: number | undefined;
|
@@ -864,6 +860,7 @@ export declare const v4: Elysia<"/v4", {
|
|
864
860
|
tags?: string | undefined;
|
865
861
|
test?: boolean | undefined;
|
866
862
|
page?: number | undefined;
|
863
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
867
864
|
excludeSubCampaigns?: boolean | undefined;
|
868
865
|
minimumTvl?: number | undefined;
|
869
866
|
maximumTvl?: number | undefined;
|
@@ -923,6 +920,7 @@ export declare const v4: Elysia<"/v4", {
|
|
923
920
|
tags?: string | undefined;
|
924
921
|
test?: boolean | undefined;
|
925
922
|
page?: number | undefined;
|
923
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
926
924
|
excludeSubCampaigns?: boolean | undefined;
|
927
925
|
minimumTvl?: number | undefined;
|
928
926
|
maximumTvl?: number | undefined;
|
@@ -979,6 +977,7 @@ export declare const v4: Elysia<"/v4", {
|
|
979
977
|
tags?: string | undefined;
|
980
978
|
test?: boolean | undefined;
|
981
979
|
page?: number | undefined;
|
980
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
982
981
|
excludeSubCampaigns?: boolean | undefined;
|
983
982
|
minimumTvl?: number | undefined;
|
984
983
|
maximumTvl?: number | undefined;
|
@@ -1036,6 +1035,7 @@ export declare const v4: Elysia<"/v4", {
|
|
1036
1035
|
tags?: string | undefined;
|
1037
1036
|
test?: boolean | undefined;
|
1038
1037
|
page?: number | undefined;
|
1038
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1039
1039
|
excludeSubCampaigns?: boolean | undefined;
|
1040
1040
|
minimumTvl?: number | undefined;
|
1041
1041
|
maximumTvl?: number | undefined;
|
@@ -1095,8 +1095,6 @@ export declare const v4: Elysia<"/v4", {
|
|
1095
1095
|
type: import("@package/databases").TokenType;
|
1096
1096
|
icon: string;
|
1097
1097
|
isNative: boolean;
|
1098
|
-
isPoint: boolean;
|
1099
|
-
isPreTGE: boolean;
|
1100
1098
|
isTest: boolean;
|
1101
1099
|
verified: boolean;
|
1102
1100
|
} & {
|
@@ -1122,8 +1120,6 @@ export declare const v4: Elysia<"/v4", {
|
|
1122
1120
|
type: import("@package/databases").TokenType;
|
1123
1121
|
icon: string;
|
1124
1122
|
isNative: boolean;
|
1125
|
-
isPoint: boolean;
|
1126
|
-
isPreTGE: boolean;
|
1127
1123
|
isTest: boolean;
|
1128
1124
|
verified: boolean;
|
1129
1125
|
displaySymbol: string;
|
@@ -1298,8 +1294,6 @@ export declare const v4: Elysia<"/v4", {
|
|
1298
1294
|
type: import("@package/databases").TokenType;
|
1299
1295
|
icon: string;
|
1300
1296
|
isNative: boolean;
|
1301
|
-
isPoint: boolean;
|
1302
|
-
isPreTGE: boolean;
|
1303
1297
|
isTest: boolean;
|
1304
1298
|
verified: boolean;
|
1305
1299
|
} & {
|
@@ -1325,8 +1319,6 @@ export declare const v4: Elysia<"/v4", {
|
|
1325
1319
|
type: import("@package/databases").TokenType;
|
1326
1320
|
icon: string;
|
1327
1321
|
isNative: boolean;
|
1328
|
-
isPoint: boolean;
|
1329
|
-
isPreTGE: boolean;
|
1330
1322
|
isTest: boolean;
|
1331
1323
|
verified: boolean;
|
1332
1324
|
displaySymbol: string;
|
@@ -1440,8 +1432,6 @@ export declare const v4: Elysia<"/v4", {
|
|
1440
1432
|
type: import("@package/databases").TokenType;
|
1441
1433
|
icon: string;
|
1442
1434
|
isNative: boolean;
|
1443
|
-
isPoint: boolean;
|
1444
|
-
isPreTGE: boolean;
|
1445
1435
|
isTest: boolean;
|
1446
1436
|
verified: boolean;
|
1447
1437
|
} & {
|
@@ -1467,8 +1457,6 @@ export declare const v4: Elysia<"/v4", {
|
|
1467
1457
|
type: import("@package/databases").TokenType;
|
1468
1458
|
icon: string;
|
1469
1459
|
isNative: boolean;
|
1470
|
-
isPoint: boolean;
|
1471
|
-
isPreTGE: boolean;
|
1472
1460
|
isTest: boolean;
|
1473
1461
|
verified: boolean;
|
1474
1462
|
displaySymbol: string;
|
@@ -1557,10 +1545,9 @@ export declare const v4: Elysia<"/v4", {
|
|
1557
1545
|
address: string;
|
1558
1546
|
id: string;
|
1559
1547
|
chainId: number;
|
1548
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1560
1549
|
icon: string;
|
1561
1550
|
isNative: boolean;
|
1562
|
-
isPoint: boolean;
|
1563
|
-
isPreTGE: boolean;
|
1564
1551
|
isTest: boolean;
|
1565
1552
|
verified: boolean;
|
1566
1553
|
};
|
@@ -1807,6 +1794,7 @@ export declare const v4: Elysia<"/v4", {
|
|
1807
1794
|
creatorTag?: string | undefined;
|
1808
1795
|
distributionChainIds?: number[] | undefined;
|
1809
1796
|
types?: string[] | undefined;
|
1797
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1810
1798
|
withOpportunity?: boolean | undefined;
|
1811
1799
|
createdAfter?: Date | null | undefined;
|
1812
1800
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -1848,10 +1836,9 @@ export declare const v4: Elysia<"/v4", {
|
|
1848
1836
|
address: string;
|
1849
1837
|
id: string;
|
1850
1838
|
chainId: number;
|
1839
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1851
1840
|
icon: string;
|
1852
1841
|
isNative: boolean;
|
1853
|
-
isPoint: boolean;
|
1854
|
-
isPreTGE: boolean;
|
1855
1842
|
isTest: boolean;
|
1856
1843
|
verified: boolean;
|
1857
1844
|
};
|
@@ -1919,6 +1906,7 @@ export declare const v4: Elysia<"/v4", {
|
|
1919
1906
|
creatorTag?: string | undefined;
|
1920
1907
|
distributionChainIds?: number[] | undefined;
|
1921
1908
|
types?: string[] | undefined;
|
1909
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1922
1910
|
withOpportunity?: boolean | undefined;
|
1923
1911
|
createdAfter?: Date | null | undefined;
|
1924
1912
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -1969,6 +1957,7 @@ export declare const v4: Elysia<"/v4", {
|
|
1969
1957
|
creatorTag?: string | undefined;
|
1970
1958
|
distributionChainIds?: number[] | undefined;
|
1971
1959
|
types?: string[] | undefined;
|
1960
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1972
1961
|
withOpportunity?: boolean | undefined;
|
1973
1962
|
createdAfter?: Date | null | undefined;
|
1974
1963
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2024,6 +2013,7 @@ export declare const v4: Elysia<"/v4", {
|
|
2024
2013
|
creatorTag?: string | undefined;
|
2025
2014
|
distributionChainIds?: number[] | undefined;
|
2026
2015
|
types?: string[] | undefined;
|
2016
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2027
2017
|
withOpportunity?: boolean | undefined;
|
2028
2018
|
createdAfter?: Date | null | undefined;
|
2029
2019
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2082,6 +2072,7 @@ export declare const v4: Elysia<"/v4", {
|
|
2082
2072
|
creatorTag?: string | undefined;
|
2083
2073
|
distributionChainIds?: number[] | undefined;
|
2084
2074
|
types?: string[] | undefined;
|
2075
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2085
2076
|
withOpportunity?: boolean | undefined;
|
2086
2077
|
createdAfter?: Date | null | undefined;
|
2087
2078
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2137,6 +2128,7 @@ export declare const v4: Elysia<"/v4", {
|
|
2137
2128
|
creatorTag?: string | undefined;
|
2138
2129
|
distributionChainIds?: number[] | undefined;
|
2139
2130
|
types?: string[] | undefined;
|
2131
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2140
2132
|
withOpportunity?: boolean | undefined;
|
2141
2133
|
createdAfter?: Date | null | undefined;
|
2142
2134
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2192,6 +2184,7 @@ export declare const v4: Elysia<"/v4", {
|
|
2192
2184
|
creatorTag?: string | undefined;
|
2193
2185
|
distributionChainIds?: number[] | undefined;
|
2194
2186
|
types?: string[] | undefined;
|
2187
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2195
2188
|
withOpportunity?: boolean | undefined;
|
2196
2189
|
createdAfter?: Date | null | undefined;
|
2197
2190
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2246,6 +2239,7 @@ export declare const v4: Elysia<"/v4", {
|
|
2246
2239
|
creatorTag?: string | undefined;
|
2247
2240
|
distributionChainIds?: number[] | undefined;
|
2248
2241
|
types?: string[] | undefined;
|
2242
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2249
2243
|
withOpportunity?: boolean | undefined;
|
2250
2244
|
createdAfter?: Date | null | undefined;
|
2251
2245
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2299,6 +2293,7 @@ export declare const v4: Elysia<"/v4", {
|
|
2299
2293
|
creatorTag?: string | undefined;
|
2300
2294
|
distributionChainIds?: number[] | undefined;
|
2301
2295
|
types?: string[] | undefined;
|
2296
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2302
2297
|
withOpportunity?: boolean | undefined;
|
2303
2298
|
createdAfter?: Date | null | undefined;
|
2304
2299
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -2545,8 +2540,6 @@ export declare const v4: Elysia<"/v4", {
|
|
2545
2540
|
type: import("@package/databases").TokenType;
|
2546
2541
|
icon: string;
|
2547
2542
|
isNative: boolean;
|
2548
|
-
isPoint: boolean;
|
2549
|
-
isPreTGE: boolean;
|
2550
2543
|
isTest: boolean;
|
2551
2544
|
verified: boolean;
|
2552
2545
|
} & {
|
@@ -2572,8 +2565,6 @@ export declare const v4: Elysia<"/v4", {
|
|
2572
2565
|
type: import("@package/databases").TokenType;
|
2573
2566
|
icon: string;
|
2574
2567
|
isNative: boolean;
|
2575
|
-
isPoint: boolean;
|
2576
|
-
isPreTGE: boolean;
|
2577
2568
|
isTest: boolean;
|
2578
2569
|
verified: boolean;
|
2579
2570
|
displaySymbol: string;
|
@@ -2670,8 +2661,6 @@ export declare const v4: Elysia<"/v4", {
|
|
2670
2661
|
type: import("@package/databases").TokenType;
|
2671
2662
|
icon: string;
|
2672
2663
|
isNative: boolean;
|
2673
|
-
isPoint: boolean;
|
2674
|
-
isPreTGE: boolean;
|
2675
2664
|
isTest: boolean;
|
2676
2665
|
verified: boolean;
|
2677
2666
|
} & {
|
@@ -2697,8 +2686,6 @@ export declare const v4: Elysia<"/v4", {
|
|
2697
2686
|
type: import("@package/databases").TokenType;
|
2698
2687
|
icon: string;
|
2699
2688
|
isNative: boolean;
|
2700
|
-
isPoint: boolean;
|
2701
|
-
isPreTGE: boolean;
|
2702
2689
|
isTest: boolean;
|
2703
2690
|
verified: boolean;
|
2704
2691
|
displaySymbol: string;
|
@@ -2796,8 +2783,6 @@ export declare const v4: Elysia<"/v4", {
|
|
2796
2783
|
type: import("@package/databases").TokenType;
|
2797
2784
|
icon: string;
|
2798
2785
|
isNative: boolean;
|
2799
|
-
isPoint: boolean;
|
2800
|
-
isPreTGE: boolean;
|
2801
2786
|
isTest: boolean;
|
2802
2787
|
verified: boolean;
|
2803
2788
|
} & {
|
@@ -2823,8 +2808,6 @@ export declare const v4: Elysia<"/v4", {
|
|
2823
2808
|
type: import("@package/databases").TokenType;
|
2824
2809
|
icon: string;
|
2825
2810
|
isNative: boolean;
|
2826
|
-
isPoint: boolean;
|
2827
|
-
isPreTGE: boolean;
|
2828
2811
|
isTest: boolean;
|
2829
2812
|
verified: boolean;
|
2830
2813
|
displaySymbol: string;
|
@@ -3185,8 +3168,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3185
3168
|
type: import("@package/databases").TokenType;
|
3186
3169
|
icon: string;
|
3187
3170
|
isNative: boolean;
|
3188
|
-
isPoint: boolean;
|
3189
|
-
isPreTGE: boolean;
|
3190
3171
|
isTest: boolean;
|
3191
3172
|
verified: boolean;
|
3192
3173
|
price?: number | null | undefined;
|
@@ -3231,8 +3212,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3231
3212
|
type: import("@package/databases").TokenType;
|
3232
3213
|
icon: string;
|
3233
3214
|
isNative: boolean;
|
3234
|
-
isPoint: boolean;
|
3235
|
-
isPreTGE: boolean;
|
3236
3215
|
isTest: boolean;
|
3237
3216
|
verified: boolean;
|
3238
3217
|
price?: number | null | undefined;
|
@@ -3279,8 +3258,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3279
3258
|
type: import("@package/databases").TokenType;
|
3280
3259
|
icon: string;
|
3281
3260
|
isNative: boolean;
|
3282
|
-
isPoint: boolean;
|
3283
|
-
isPreTGE: boolean;
|
3284
3261
|
isTest: boolean;
|
3285
3262
|
verified: boolean;
|
3286
3263
|
displaySymbol: string;
|
@@ -3323,8 +3300,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3323
3300
|
type: import("@package/databases").TokenType;
|
3324
3301
|
icon: string;
|
3325
3302
|
isNative: boolean;
|
3326
|
-
isPoint: boolean;
|
3327
|
-
isPreTGE: boolean;
|
3328
3303
|
isTest: boolean;
|
3329
3304
|
verified: boolean;
|
3330
3305
|
displaySymbol: string;
|
@@ -3366,8 +3341,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3366
3341
|
type: import("@package/databases").TokenType;
|
3367
3342
|
icon: string;
|
3368
3343
|
isNative: boolean;
|
3369
|
-
isPoint: boolean;
|
3370
|
-
isPreTGE: boolean;
|
3371
3344
|
isTest: boolean;
|
3372
3345
|
verified: boolean;
|
3373
3346
|
} & {
|
@@ -3421,8 +3394,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3421
3394
|
type: import("@package/databases").TokenType;
|
3422
3395
|
icon: string;
|
3423
3396
|
isNative: boolean;
|
3424
|
-
isPoint: boolean;
|
3425
|
-
isPreTGE: boolean;
|
3426
3397
|
isTest: boolean;
|
3427
3398
|
verified: boolean;
|
3428
3399
|
} & {
|
@@ -3480,7 +3451,7 @@ export declare const v4: Elysia<"/v4", {
|
|
3480
3451
|
} & {
|
3481
3452
|
post: {
|
3482
3453
|
body: {
|
3483
|
-
|
3454
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
3484
3455
|
isTest?: boolean | undefined;
|
3485
3456
|
address: string;
|
3486
3457
|
chainId: number;
|
@@ -3504,8 +3475,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3504
3475
|
type: import("@package/databases").TokenType;
|
3505
3476
|
icon: string;
|
3506
3477
|
isNative: boolean;
|
3507
|
-
isPoint: boolean;
|
3508
|
-
isPreTGE: boolean;
|
3509
3478
|
isTest: boolean;
|
3510
3479
|
verified: boolean;
|
3511
3480
|
displaySymbol: string;
|
@@ -3526,9 +3495,8 @@ export declare const v4: Elysia<"/v4", {
|
|
3526
3495
|
patch: {
|
3527
3496
|
body: {
|
3528
3497
|
name?: string | undefined;
|
3498
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
3529
3499
|
icon?: string | undefined;
|
3530
|
-
isPoint?: boolean | undefined;
|
3531
|
-
isPreTGE?: boolean | undefined;
|
3532
3500
|
isTest?: boolean | undefined;
|
3533
3501
|
verified?: boolean | undefined;
|
3534
3502
|
displaySymbol?: string | undefined;
|
@@ -3552,8 +3520,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3552
3520
|
type: import("@package/databases").TokenType;
|
3553
3521
|
icon: string;
|
3554
3522
|
isNative: boolean;
|
3555
|
-
isPoint: boolean;
|
3556
|
-
isPreTGE: boolean;
|
3557
3523
|
isTest: boolean;
|
3558
3524
|
verified: boolean;
|
3559
3525
|
displaySymbol: string;
|
@@ -3626,8 +3592,6 @@ export declare const v4: Elysia<"/v4", {
|
|
3626
3592
|
type: import("@package/databases").TokenType;
|
3627
3593
|
icon: string;
|
3628
3594
|
isNative: boolean;
|
3629
|
-
isPoint: boolean;
|
3630
|
-
isPreTGE: boolean;
|
3631
3595
|
isTest: boolean;
|
3632
3596
|
verified: boolean;
|
3633
3597
|
displaySymbol: string;
|
@@ -4981,8 +4945,6 @@ export declare const v4: Elysia<"/v4", {
|
|
4981
4945
|
type: import("@package/databases").TokenType;
|
4982
4946
|
icon: string;
|
4983
4947
|
isNative: boolean;
|
4984
|
-
isPoint: boolean;
|
4985
|
-
isPreTGE: boolean;
|
4986
4948
|
isTest: boolean;
|
4987
4949
|
verified: boolean;
|
4988
4950
|
displaySymbol: string;
|
@@ -5007,8 +4969,6 @@ export declare const v4: Elysia<"/v4", {
|
|
5007
4969
|
type: import("@package/databases").TokenType;
|
5008
4970
|
icon: string;
|
5009
4971
|
isNative: boolean;
|
5010
|
-
isPoint: boolean;
|
5011
|
-
isPreTGE: boolean;
|
5012
4972
|
isTest: boolean;
|
5013
4973
|
verified: boolean;
|
5014
4974
|
displaySymbol: string;
|
@@ -7020,8 +6980,6 @@ export declare const v4: Elysia<"/v4", {
|
|
7020
6980
|
type: import("@package/databases").TokenType;
|
7021
6981
|
icon: string;
|
7022
6982
|
isNative: boolean;
|
7023
|
-
isPoint: boolean;
|
7024
|
-
isPreTGE: boolean;
|
7025
6983
|
isTest: boolean;
|
7026
6984
|
verified: boolean;
|
7027
6985
|
} & {
|
@@ -34,8 +34,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
34
34
|
type: import("@package/databases").TokenType;
|
35
35
|
icon: string;
|
36
36
|
isNative: boolean;
|
37
|
-
isPoint: boolean;
|
38
|
-
isPreTGE: boolean;
|
39
37
|
isTest: boolean;
|
40
38
|
verified: boolean;
|
41
39
|
price?: number | null | undefined;
|
@@ -80,8 +78,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
80
78
|
type: import("@package/databases").TokenType;
|
81
79
|
icon: string;
|
82
80
|
isNative: boolean;
|
83
|
-
isPoint: boolean;
|
84
|
-
isPreTGE: boolean;
|
85
81
|
isTest: boolean;
|
86
82
|
verified: boolean;
|
87
83
|
price?: number | null | undefined;
|
@@ -128,8 +124,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
128
124
|
type: import("@package/databases").TokenType;
|
129
125
|
icon: string;
|
130
126
|
isNative: boolean;
|
131
|
-
isPoint: boolean;
|
132
|
-
isPreTGE: boolean;
|
133
127
|
isTest: boolean;
|
134
128
|
verified: boolean;
|
135
129
|
displaySymbol: string;
|
@@ -172,8 +166,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
172
166
|
type: import("@package/databases").TokenType;
|
173
167
|
icon: string;
|
174
168
|
isNative: boolean;
|
175
|
-
isPoint: boolean;
|
176
|
-
isPreTGE: boolean;
|
177
169
|
isTest: boolean;
|
178
170
|
verified: boolean;
|
179
171
|
displaySymbol: string;
|
@@ -215,8 +207,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
215
207
|
type: import("@package/databases").TokenType;
|
216
208
|
icon: string;
|
217
209
|
isNative: boolean;
|
218
|
-
isPoint: boolean;
|
219
|
-
isPreTGE: boolean;
|
220
210
|
isTest: boolean;
|
221
211
|
verified: boolean;
|
222
212
|
} & {
|
@@ -270,8 +260,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
270
260
|
type: import("@package/databases").TokenType;
|
271
261
|
icon: string;
|
272
262
|
isNative: boolean;
|
273
|
-
isPoint: boolean;
|
274
|
-
isPreTGE: boolean;
|
275
263
|
isTest: boolean;
|
276
264
|
verified: boolean;
|
277
265
|
} & {
|
@@ -329,7 +317,7 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
329
317
|
} & {
|
330
318
|
post: {
|
331
319
|
body: {
|
332
|
-
|
320
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
333
321
|
isTest?: boolean | undefined;
|
334
322
|
address: string;
|
335
323
|
chainId: number;
|
@@ -353,8 +341,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
353
341
|
type: import("@package/databases").TokenType;
|
354
342
|
icon: string;
|
355
343
|
isNative: boolean;
|
356
|
-
isPoint: boolean;
|
357
|
-
isPreTGE: boolean;
|
358
344
|
isTest: boolean;
|
359
345
|
verified: boolean;
|
360
346
|
displaySymbol: string;
|
@@ -375,9 +361,8 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
375
361
|
patch: {
|
376
362
|
body: {
|
377
363
|
name?: string | undefined;
|
364
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
378
365
|
icon?: string | undefined;
|
379
|
-
isPoint?: boolean | undefined;
|
380
|
-
isPreTGE?: boolean | undefined;
|
381
366
|
isTest?: boolean | undefined;
|
382
367
|
verified?: boolean | undefined;
|
383
368
|
displaySymbol?: string | undefined;
|
@@ -401,8 +386,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
401
386
|
type: import("@package/databases").TokenType;
|
402
387
|
icon: string;
|
403
388
|
isNative: boolean;
|
404
|
-
isPoint: boolean;
|
405
|
-
isPreTGE: boolean;
|
406
389
|
isTest: boolean;
|
407
390
|
verified: boolean;
|
408
391
|
displaySymbol: string;
|
@@ -475,8 +458,6 @@ export declare const TokenController: Elysia<"/tokens", {
|
|
475
458
|
type: import("@package/databases").TokenType;
|
476
459
|
icon: string;
|
477
460
|
isNative: boolean;
|
478
|
-
isPoint: boolean;
|
479
|
-
isPreTGE: boolean;
|
480
461
|
isTest: boolean;
|
481
462
|
verified: boolean;
|
482
463
|
displaySymbol: string;
|
@@ -23,10 +23,13 @@ export declare const TokenResourceDto: import("@sinclair/typebox").TObject<{
|
|
23
23
|
verified: import("@sinclair/typebox").TBoolean;
|
24
24
|
isNative: import("@sinclair/typebox").TBoolean;
|
25
25
|
isTest: import("@sinclair/typebox").TBoolean;
|
26
|
-
isPoint: import("@sinclair/typebox").TBoolean;
|
27
|
-
isPreTGE: import("@sinclair/typebox").TBoolean;
|
28
26
|
price: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
29
27
|
symbol: import("@sinclair/typebox").TString;
|
28
|
+
type: import("@sinclair/typebox").TEnum<{
|
29
|
+
readonly TOKEN: "TOKEN";
|
30
|
+
readonly PRETGE: "PRETGE";
|
31
|
+
readonly POINT: "POINT";
|
32
|
+
}>;
|
30
33
|
}>;
|
31
34
|
export declare const FindUniqueTokenDto: import("@sinclair/typebox").TObject<{
|
32
35
|
id: import("@sinclair/typebox").TString;
|
@@ -68,8 +71,11 @@ export declare const TokenIdDto: import("@sinclair/typebox").TObject<{
|
|
68
71
|
}>;
|
69
72
|
export declare const UpdateTokenDto: import("@sinclair/typebox").TObject<{
|
70
73
|
isTest: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
71
|
-
|
72
|
-
|
74
|
+
type: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
75
|
+
readonly TOKEN: "TOKEN";
|
76
|
+
readonly PRETGE: "PRETGE";
|
77
|
+
readonly POINT: "POINT";
|
78
|
+
}>>;
|
73
79
|
verified: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
74
80
|
icon: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
75
81
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
@@ -81,7 +87,11 @@ export declare const CreateTokenDto: import("@sinclair/typebox").TObject<{
|
|
81
87
|
icon: import("@sinclair/typebox").TString;
|
82
88
|
verified: import("@sinclair/typebox").TBoolean;
|
83
89
|
isTest: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
84
|
-
|
90
|
+
type: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
91
|
+
readonly TOKEN: "TOKEN";
|
92
|
+
readonly PRETGE: "PRETGE";
|
93
|
+
readonly POINT: "POINT";
|
94
|
+
}>>;
|
85
95
|
}>;
|
86
96
|
export declare const NotionWebhookAddTokenDto: import("@sinclair/typebox").TObject<{
|
87
97
|
data: import("@sinclair/typebox").TObject<{
|