@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/eden/index.d.ts
CHANGED
@@ -1515,6 +1515,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1515
1515
|
creatorTag?: string | undefined;
|
1516
1516
|
distributionChainIds?: number[] | undefined;
|
1517
1517
|
types?: string[] | undefined;
|
1518
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1518
1519
|
withOpportunity?: boolean | undefined;
|
1519
1520
|
createdAfter?: Date | null | undefined;
|
1520
1521
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -1568,10 +1569,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1568
1569
|
address: string;
|
1569
1570
|
id: string;
|
1570
1571
|
chainId: number;
|
1572
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1571
1573
|
icon: string;
|
1572
1574
|
isNative: boolean;
|
1573
|
-
isPoint: boolean;
|
1574
|
-
isPreTGE: boolean;
|
1575
1575
|
isTest: boolean;
|
1576
1576
|
verified: boolean;
|
1577
1577
|
};
|
@@ -1590,10 +1590,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1590
1590
|
address: string;
|
1591
1591
|
id: string;
|
1592
1592
|
chainId: number;
|
1593
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1593
1594
|
icon: string;
|
1594
1595
|
isNative: boolean;
|
1595
|
-
isPoint: boolean;
|
1596
|
-
isPreTGE: boolean;
|
1597
1596
|
isTest: boolean;
|
1598
1597
|
verified: boolean;
|
1599
1598
|
}[];
|
@@ -1637,10 +1636,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1637
1636
|
address: string;
|
1638
1637
|
id: string;
|
1639
1638
|
chainId: number;
|
1639
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1640
1640
|
icon: string;
|
1641
1641
|
isNative: boolean;
|
1642
|
-
isPoint: boolean;
|
1643
|
-
isPreTGE: boolean;
|
1644
1642
|
isTest: boolean;
|
1645
1643
|
verified: boolean;
|
1646
1644
|
};
|
@@ -1719,6 +1717,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1719
1717
|
campaigns?: boolean | undefined;
|
1720
1718
|
point?: boolean | undefined;
|
1721
1719
|
test?: boolean | undefined;
|
1720
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1722
1721
|
excludeSubCampaigns?: boolean | undefined;
|
1723
1722
|
};
|
1724
1723
|
headers: unknown;
|
@@ -1770,10 +1769,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1770
1769
|
address: string;
|
1771
1770
|
id: string;
|
1772
1771
|
chainId: number;
|
1772
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1773
1773
|
icon: string;
|
1774
1774
|
isNative: boolean;
|
1775
|
-
isPoint: boolean;
|
1776
|
-
isPreTGE: boolean;
|
1777
1775
|
isTest: boolean;
|
1778
1776
|
verified: boolean;
|
1779
1777
|
};
|
@@ -1792,10 +1790,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1792
1790
|
address: string;
|
1793
1791
|
id: string;
|
1794
1792
|
chainId: number;
|
1793
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1795
1794
|
icon: string;
|
1796
1795
|
isNative: boolean;
|
1797
|
-
isPoint: boolean;
|
1798
|
-
isPreTGE: boolean;
|
1799
1796
|
isTest: boolean;
|
1800
1797
|
verified: boolean;
|
1801
1798
|
}[];
|
@@ -1857,6 +1854,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1857
1854
|
campaigns?: boolean | undefined;
|
1858
1855
|
point?: boolean | undefined;
|
1859
1856
|
test?: boolean | undefined;
|
1857
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1860
1858
|
excludeSubCampaigns?: boolean | undefined;
|
1861
1859
|
};
|
1862
1860
|
headers: unknown;
|
@@ -1908,10 +1906,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1908
1906
|
address: string;
|
1909
1907
|
id: string;
|
1910
1908
|
chainId: number;
|
1909
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1911
1910
|
icon: string;
|
1912
1911
|
isNative: boolean;
|
1913
|
-
isPoint: boolean;
|
1914
|
-
isPreTGE: boolean;
|
1915
1912
|
isTest: boolean;
|
1916
1913
|
verified: boolean;
|
1917
1914
|
};
|
@@ -1930,10 +1927,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1930
1927
|
address: string;
|
1931
1928
|
id: string;
|
1932
1929
|
chainId: number;
|
1930
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1933
1931
|
icon: string;
|
1934
1932
|
isNative: boolean;
|
1935
|
-
isPoint: boolean;
|
1936
|
-
isPreTGE: boolean;
|
1937
1933
|
isTest: boolean;
|
1938
1934
|
verified: boolean;
|
1939
1935
|
}[];
|
@@ -1977,10 +1973,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1977
1973
|
address: string;
|
1978
1974
|
id: string;
|
1979
1975
|
chainId: number;
|
1976
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
1980
1977
|
icon: string;
|
1981
1978
|
isNative: boolean;
|
1982
|
-
isPoint: boolean;
|
1983
|
-
isPreTGE: boolean;
|
1984
1979
|
isTest: boolean;
|
1985
1980
|
verified: boolean;
|
1986
1981
|
};
|
@@ -2073,6 +2068,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2073
2068
|
tags?: string | undefined;
|
2074
2069
|
test?: boolean | undefined;
|
2075
2070
|
page?: number | undefined;
|
2071
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2076
2072
|
excludeSubCampaigns?: boolean | undefined;
|
2077
2073
|
minimumTvl?: number | undefined;
|
2078
2074
|
maximumTvl?: number | undefined;
|
@@ -2129,10 +2125,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2129
2125
|
address: string;
|
2130
2126
|
id: string;
|
2131
2127
|
chainId: number;
|
2128
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
2132
2129
|
icon: string;
|
2133
2130
|
isNative: boolean;
|
2134
|
-
isPoint: boolean;
|
2135
|
-
isPreTGE: boolean;
|
2136
2131
|
isTest: boolean;
|
2137
2132
|
verified: boolean;
|
2138
2133
|
};
|
@@ -2151,10 +2146,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2151
2146
|
address: string;
|
2152
2147
|
id: string;
|
2153
2148
|
chainId: number;
|
2149
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
2154
2150
|
icon: string;
|
2155
2151
|
isNative: boolean;
|
2156
|
-
isPoint: boolean;
|
2157
|
-
isPreTGE: boolean;
|
2158
2152
|
isTest: boolean;
|
2159
2153
|
verified: boolean;
|
2160
2154
|
}[];
|
@@ -2219,6 +2213,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2219
2213
|
tags?: string | undefined;
|
2220
2214
|
test?: boolean | undefined;
|
2221
2215
|
page?: number | undefined;
|
2216
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2222
2217
|
excludeSubCampaigns?: boolean | undefined;
|
2223
2218
|
minimumTvl?: number | undefined;
|
2224
2219
|
maximumTvl?: number | undefined;
|
@@ -2269,6 +2264,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2269
2264
|
tags?: string | undefined;
|
2270
2265
|
test?: boolean | undefined;
|
2271
2266
|
page?: number | undefined;
|
2267
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2272
2268
|
excludeSubCampaigns?: boolean | undefined;
|
2273
2269
|
minimumTvl?: number | undefined;
|
2274
2270
|
maximumTvl?: number | undefined;
|
@@ -2326,6 +2322,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2326
2322
|
tags?: string | undefined;
|
2327
2323
|
test?: boolean | undefined;
|
2328
2324
|
page?: number | undefined;
|
2325
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2329
2326
|
excludeSubCampaigns?: boolean | undefined;
|
2330
2327
|
minimumTvl?: number | undefined;
|
2331
2328
|
maximumTvl?: number | undefined;
|
@@ -2385,6 +2382,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2385
2382
|
tags?: string | undefined;
|
2386
2383
|
test?: boolean | undefined;
|
2387
2384
|
page?: number | undefined;
|
2385
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2388
2386
|
excludeSubCampaigns?: boolean | undefined;
|
2389
2387
|
minimumTvl?: number | undefined;
|
2390
2388
|
maximumTvl?: number | undefined;
|
@@ -2441,6 +2439,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2441
2439
|
tags?: string | undefined;
|
2442
2440
|
test?: boolean | undefined;
|
2443
2441
|
page?: number | undefined;
|
2442
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2444
2443
|
excludeSubCampaigns?: boolean | undefined;
|
2445
2444
|
minimumTvl?: number | undefined;
|
2446
2445
|
maximumTvl?: number | undefined;
|
@@ -2498,6 +2497,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2498
2497
|
tags?: string | undefined;
|
2499
2498
|
test?: boolean | undefined;
|
2500
2499
|
page?: number | undefined;
|
2500
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
2501
2501
|
excludeSubCampaigns?: boolean | undefined;
|
2502
2502
|
minimumTvl?: number | undefined;
|
2503
2503
|
maximumTvl?: number | undefined;
|
@@ -2557,8 +2557,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2557
2557
|
type: import("@package/databases").TokenType;
|
2558
2558
|
icon: string;
|
2559
2559
|
isNative: boolean;
|
2560
|
-
isPoint: boolean;
|
2561
|
-
isPreTGE: boolean;
|
2562
2560
|
isTest: boolean;
|
2563
2561
|
verified: boolean;
|
2564
2562
|
} & {
|
@@ -2584,8 +2582,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2584
2582
|
type: import("@package/databases").TokenType;
|
2585
2583
|
icon: string;
|
2586
2584
|
isNative: boolean;
|
2587
|
-
isPoint: boolean;
|
2588
|
-
isPreTGE: boolean;
|
2589
2585
|
isTest: boolean;
|
2590
2586
|
verified: boolean;
|
2591
2587
|
displaySymbol: string;
|
@@ -2760,8 +2756,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2760
2756
|
type: import("@package/databases").TokenType;
|
2761
2757
|
icon: string;
|
2762
2758
|
isNative: boolean;
|
2763
|
-
isPoint: boolean;
|
2764
|
-
isPreTGE: boolean;
|
2765
2759
|
isTest: boolean;
|
2766
2760
|
verified: boolean;
|
2767
2761
|
} & {
|
@@ -2787,8 +2781,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2787
2781
|
type: import("@package/databases").TokenType;
|
2788
2782
|
icon: string;
|
2789
2783
|
isNative: boolean;
|
2790
|
-
isPoint: boolean;
|
2791
|
-
isPreTGE: boolean;
|
2792
2784
|
isTest: boolean;
|
2793
2785
|
verified: boolean;
|
2794
2786
|
displaySymbol: string;
|
@@ -2902,8 +2894,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2902
2894
|
type: import("@package/databases").TokenType;
|
2903
2895
|
icon: string;
|
2904
2896
|
isNative: boolean;
|
2905
|
-
isPoint: boolean;
|
2906
|
-
isPreTGE: boolean;
|
2907
2897
|
isTest: boolean;
|
2908
2898
|
verified: boolean;
|
2909
2899
|
} & {
|
@@ -2929,8 +2919,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2929
2919
|
type: import("@package/databases").TokenType;
|
2930
2920
|
icon: string;
|
2931
2921
|
isNative: boolean;
|
2932
|
-
isPoint: boolean;
|
2933
|
-
isPreTGE: boolean;
|
2934
2922
|
isTest: boolean;
|
2935
2923
|
verified: boolean;
|
2936
2924
|
displaySymbol: string;
|
@@ -3019,10 +3007,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3019
3007
|
address: string;
|
3020
3008
|
id: string;
|
3021
3009
|
chainId: number;
|
3010
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
3022
3011
|
icon: string;
|
3023
3012
|
isNative: boolean;
|
3024
|
-
isPoint: boolean;
|
3025
|
-
isPreTGE: boolean;
|
3026
3013
|
isTest: boolean;
|
3027
3014
|
verified: boolean;
|
3028
3015
|
};
|
@@ -3269,6 +3256,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3269
3256
|
creatorTag?: string | undefined;
|
3270
3257
|
distributionChainIds?: number[] | undefined;
|
3271
3258
|
types?: string[] | undefined;
|
3259
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3272
3260
|
withOpportunity?: boolean | undefined;
|
3273
3261
|
createdAfter?: Date | null | undefined;
|
3274
3262
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3310,10 +3298,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3310
3298
|
address: string;
|
3311
3299
|
id: string;
|
3312
3300
|
chainId: number;
|
3301
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
3313
3302
|
icon: string;
|
3314
3303
|
isNative: boolean;
|
3315
|
-
isPoint: boolean;
|
3316
|
-
isPreTGE: boolean;
|
3317
3304
|
isTest: boolean;
|
3318
3305
|
verified: boolean;
|
3319
3306
|
};
|
@@ -3381,6 +3368,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3381
3368
|
creatorTag?: string | undefined;
|
3382
3369
|
distributionChainIds?: number[] | undefined;
|
3383
3370
|
types?: string[] | undefined;
|
3371
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3384
3372
|
withOpportunity?: boolean | undefined;
|
3385
3373
|
createdAfter?: Date | null | undefined;
|
3386
3374
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3431,6 +3419,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3431
3419
|
creatorTag?: string | undefined;
|
3432
3420
|
distributionChainIds?: number[] | undefined;
|
3433
3421
|
types?: string[] | undefined;
|
3422
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3434
3423
|
withOpportunity?: boolean | undefined;
|
3435
3424
|
createdAfter?: Date | null | undefined;
|
3436
3425
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3486,6 +3475,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3486
3475
|
creatorTag?: string | undefined;
|
3487
3476
|
distributionChainIds?: number[] | undefined;
|
3488
3477
|
types?: string[] | undefined;
|
3478
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3489
3479
|
withOpportunity?: boolean | undefined;
|
3490
3480
|
createdAfter?: Date | null | undefined;
|
3491
3481
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3544,6 +3534,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3544
3534
|
creatorTag?: string | undefined;
|
3545
3535
|
distributionChainIds?: number[] | undefined;
|
3546
3536
|
types?: string[] | undefined;
|
3537
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3547
3538
|
withOpportunity?: boolean | undefined;
|
3548
3539
|
createdAfter?: Date | null | undefined;
|
3549
3540
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3599,6 +3590,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3599
3590
|
creatorTag?: string | undefined;
|
3600
3591
|
distributionChainIds?: number[] | undefined;
|
3601
3592
|
types?: string[] | undefined;
|
3593
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3602
3594
|
withOpportunity?: boolean | undefined;
|
3603
3595
|
createdAfter?: Date | null | undefined;
|
3604
3596
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3654,6 +3646,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3654
3646
|
creatorTag?: string | undefined;
|
3655
3647
|
distributionChainIds?: number[] | undefined;
|
3656
3648
|
types?: string[] | undefined;
|
3649
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3657
3650
|
withOpportunity?: boolean | undefined;
|
3658
3651
|
createdAfter?: Date | null | undefined;
|
3659
3652
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3708,6 +3701,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3708
3701
|
creatorTag?: string | undefined;
|
3709
3702
|
distributionChainIds?: number[] | undefined;
|
3710
3703
|
types?: string[] | undefined;
|
3704
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3711
3705
|
withOpportunity?: boolean | undefined;
|
3712
3706
|
createdAfter?: Date | null | undefined;
|
3713
3707
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -3761,6 +3755,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3761
3755
|
creatorTag?: string | undefined;
|
3762
3756
|
distributionChainIds?: number[] | undefined;
|
3763
3757
|
types?: string[] | undefined;
|
3758
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
3764
3759
|
withOpportunity?: boolean | undefined;
|
3765
3760
|
createdAfter?: Date | null | undefined;
|
3766
3761
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -4007,8 +4002,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4007
4002
|
type: import("@package/databases").TokenType;
|
4008
4003
|
icon: string;
|
4009
4004
|
isNative: boolean;
|
4010
|
-
isPoint: boolean;
|
4011
|
-
isPreTGE: boolean;
|
4012
4005
|
isTest: boolean;
|
4013
4006
|
verified: boolean;
|
4014
4007
|
} & {
|
@@ -4034,8 +4027,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4034
4027
|
type: import("@package/databases").TokenType;
|
4035
4028
|
icon: string;
|
4036
4029
|
isNative: boolean;
|
4037
|
-
isPoint: boolean;
|
4038
|
-
isPreTGE: boolean;
|
4039
4030
|
isTest: boolean;
|
4040
4031
|
verified: boolean;
|
4041
4032
|
displaySymbol: string;
|
@@ -4132,8 +4123,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4132
4123
|
type: import("@package/databases").TokenType;
|
4133
4124
|
icon: string;
|
4134
4125
|
isNative: boolean;
|
4135
|
-
isPoint: boolean;
|
4136
|
-
isPreTGE: boolean;
|
4137
4126
|
isTest: boolean;
|
4138
4127
|
verified: boolean;
|
4139
4128
|
} & {
|
@@ -4159,8 +4148,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4159
4148
|
type: import("@package/databases").TokenType;
|
4160
4149
|
icon: string;
|
4161
4150
|
isNative: boolean;
|
4162
|
-
isPoint: boolean;
|
4163
|
-
isPreTGE: boolean;
|
4164
4151
|
isTest: boolean;
|
4165
4152
|
verified: boolean;
|
4166
4153
|
displaySymbol: string;
|
@@ -4258,8 +4245,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4258
4245
|
type: import("@package/databases").TokenType;
|
4259
4246
|
icon: string;
|
4260
4247
|
isNative: boolean;
|
4261
|
-
isPoint: boolean;
|
4262
|
-
isPreTGE: boolean;
|
4263
4248
|
isTest: boolean;
|
4264
4249
|
verified: boolean;
|
4265
4250
|
} & {
|
@@ -4285,8 +4270,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4285
4270
|
type: import("@package/databases").TokenType;
|
4286
4271
|
icon: string;
|
4287
4272
|
isNative: boolean;
|
4288
|
-
isPoint: boolean;
|
4289
|
-
isPreTGE: boolean;
|
4290
4273
|
isTest: boolean;
|
4291
4274
|
verified: boolean;
|
4292
4275
|
displaySymbol: string;
|
@@ -4647,8 +4630,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4647
4630
|
type: import("@package/databases").TokenType;
|
4648
4631
|
icon: string;
|
4649
4632
|
isNative: boolean;
|
4650
|
-
isPoint: boolean;
|
4651
|
-
isPreTGE: boolean;
|
4652
4633
|
isTest: boolean;
|
4653
4634
|
verified: boolean;
|
4654
4635
|
price?: number | null | undefined;
|
@@ -4693,8 +4674,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4693
4674
|
type: import("@package/databases").TokenType;
|
4694
4675
|
icon: string;
|
4695
4676
|
isNative: boolean;
|
4696
|
-
isPoint: boolean;
|
4697
|
-
isPreTGE: boolean;
|
4698
4677
|
isTest: boolean;
|
4699
4678
|
verified: boolean;
|
4700
4679
|
price?: number | null | undefined;
|
@@ -4741,8 +4720,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4741
4720
|
type: import("@package/databases").TokenType;
|
4742
4721
|
icon: string;
|
4743
4722
|
isNative: boolean;
|
4744
|
-
isPoint: boolean;
|
4745
|
-
isPreTGE: boolean;
|
4746
4723
|
isTest: boolean;
|
4747
4724
|
verified: boolean;
|
4748
4725
|
displaySymbol: string;
|
@@ -4785,8 +4762,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4785
4762
|
type: import("@package/databases").TokenType;
|
4786
4763
|
icon: string;
|
4787
4764
|
isNative: boolean;
|
4788
|
-
isPoint: boolean;
|
4789
|
-
isPreTGE: boolean;
|
4790
4765
|
isTest: boolean;
|
4791
4766
|
verified: boolean;
|
4792
4767
|
displaySymbol: string;
|
@@ -4828,8 +4803,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4828
4803
|
type: import("@package/databases").TokenType;
|
4829
4804
|
icon: string;
|
4830
4805
|
isNative: boolean;
|
4831
|
-
isPoint: boolean;
|
4832
|
-
isPreTGE: boolean;
|
4833
4806
|
isTest: boolean;
|
4834
4807
|
verified: boolean;
|
4835
4808
|
} & {
|
@@ -4883,8 +4856,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4883
4856
|
type: import("@package/databases").TokenType;
|
4884
4857
|
icon: string;
|
4885
4858
|
isNative: boolean;
|
4886
|
-
isPoint: boolean;
|
4887
|
-
isPreTGE: boolean;
|
4888
4859
|
isTest: boolean;
|
4889
4860
|
verified: boolean;
|
4890
4861
|
} & {
|
@@ -4942,7 +4913,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4942
4913
|
} & {
|
4943
4914
|
post: {
|
4944
4915
|
body: {
|
4945
|
-
|
4916
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
4946
4917
|
isTest?: boolean | undefined;
|
4947
4918
|
address: string;
|
4948
4919
|
chainId: number;
|
@@ -4966,8 +4937,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4966
4937
|
type: import("@package/databases").TokenType;
|
4967
4938
|
icon: string;
|
4968
4939
|
isNative: boolean;
|
4969
|
-
isPoint: boolean;
|
4970
|
-
isPreTGE: boolean;
|
4971
4940
|
isTest: boolean;
|
4972
4941
|
verified: boolean;
|
4973
4942
|
displaySymbol: string;
|
@@ -4988,9 +4957,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4988
4957
|
patch: {
|
4989
4958
|
body: {
|
4990
4959
|
name?: string | undefined;
|
4960
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
4991
4961
|
icon?: string | undefined;
|
4992
|
-
isPoint?: boolean | undefined;
|
4993
|
-
isPreTGE?: boolean | undefined;
|
4994
4962
|
isTest?: boolean | undefined;
|
4995
4963
|
verified?: boolean | undefined;
|
4996
4964
|
displaySymbol?: string | undefined;
|
@@ -5014,8 +4982,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5014
4982
|
type: import("@package/databases").TokenType;
|
5015
4983
|
icon: string;
|
5016
4984
|
isNative: boolean;
|
5017
|
-
isPoint: boolean;
|
5018
|
-
isPreTGE: boolean;
|
5019
4985
|
isTest: boolean;
|
5020
4986
|
verified: boolean;
|
5021
4987
|
displaySymbol: string;
|
@@ -5088,8 +5054,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5088
5054
|
type: import("@package/databases").TokenType;
|
5089
5055
|
icon: string;
|
5090
5056
|
isNative: boolean;
|
5091
|
-
isPoint: boolean;
|
5092
|
-
isPreTGE: boolean;
|
5093
5057
|
isTest: boolean;
|
5094
5058
|
verified: boolean;
|
5095
5059
|
displaySymbol: string;
|
@@ -6443,8 +6407,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6443
6407
|
type: import("@package/databases").TokenType;
|
6444
6408
|
icon: string;
|
6445
6409
|
isNative: boolean;
|
6446
|
-
isPoint: boolean;
|
6447
|
-
isPreTGE: boolean;
|
6448
6410
|
isTest: boolean;
|
6449
6411
|
verified: boolean;
|
6450
6412
|
displaySymbol: string;
|
@@ -6469,8 +6431,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6469
6431
|
type: import("@package/databases").TokenType;
|
6470
6432
|
icon: string;
|
6471
6433
|
isNative: boolean;
|
6472
|
-
isPoint: boolean;
|
6473
|
-
isPreTGE: boolean;
|
6474
6434
|
isTest: boolean;
|
6475
6435
|
verified: boolean;
|
6476
6436
|
displaySymbol: string;
|
@@ -8482,8 +8442,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
8482
8442
|
type: import("@package/databases").TokenType;
|
8483
8443
|
icon: string;
|
8484
8444
|
isNative: boolean;
|
8485
|
-
isPoint: boolean;
|
8486
|
-
isPreTGE: boolean;
|
8487
8445
|
isTest: boolean;
|
8488
8446
|
verified: boolean;
|
8489
8447
|
} & {
|
@@ -11281,6 +11239,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11281
11239
|
campaigns?: boolean | undefined;
|
11282
11240
|
point?: boolean | undefined;
|
11283
11241
|
test?: boolean | undefined;
|
11242
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
11284
11243
|
excludeSubCampaigns?: boolean | undefined;
|
11285
11244
|
};
|
11286
11245
|
fetch?: RequestInit | undefined;
|
@@ -11332,10 +11291,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11332
11291
|
address: string;
|
11333
11292
|
id: string;
|
11334
11293
|
chainId: number;
|
11294
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11335
11295
|
icon: string;
|
11336
11296
|
isNative: boolean;
|
11337
|
-
isPoint: boolean;
|
11338
|
-
isPreTGE: boolean;
|
11339
11297
|
isTest: boolean;
|
11340
11298
|
verified: boolean;
|
11341
11299
|
};
|
@@ -11354,10 +11312,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11354
11312
|
address: string;
|
11355
11313
|
id: string;
|
11356
11314
|
chainId: number;
|
11315
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11357
11316
|
icon: string;
|
11358
11317
|
isNative: boolean;
|
11359
|
-
isPoint: boolean;
|
11360
|
-
isPreTGE: boolean;
|
11361
11318
|
isTest: boolean;
|
11362
11319
|
verified: boolean;
|
11363
11320
|
}[];
|
@@ -11410,6 +11367,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11410
11367
|
campaigns?: boolean | undefined;
|
11411
11368
|
point?: boolean | undefined;
|
11412
11369
|
test?: boolean | undefined;
|
11370
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
11413
11371
|
excludeSubCampaigns?: boolean | undefined;
|
11414
11372
|
};
|
11415
11373
|
fetch?: RequestInit | undefined;
|
@@ -11461,10 +11419,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11461
11419
|
address: string;
|
11462
11420
|
id: string;
|
11463
11421
|
chainId: number;
|
11422
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11464
11423
|
icon: string;
|
11465
11424
|
isNative: boolean;
|
11466
|
-
isPoint: boolean;
|
11467
|
-
isPreTGE: boolean;
|
11468
11425
|
isTest: boolean;
|
11469
11426
|
verified: boolean;
|
11470
11427
|
};
|
@@ -11483,10 +11440,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11483
11440
|
address: string;
|
11484
11441
|
id: string;
|
11485
11442
|
chainId: number;
|
11443
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11486
11444
|
icon: string;
|
11487
11445
|
isNative: boolean;
|
11488
|
-
isPoint: boolean;
|
11489
|
-
isPreTGE: boolean;
|
11490
11446
|
isTest: boolean;
|
11491
11447
|
verified: boolean;
|
11492
11448
|
}[];
|
@@ -11530,10 +11486,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11530
11486
|
address: string;
|
11531
11487
|
id: string;
|
11532
11488
|
chainId: number;
|
11489
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11533
11490
|
icon: string;
|
11534
11491
|
isNative: boolean;
|
11535
|
-
isPoint: boolean;
|
11536
|
-
isPreTGE: boolean;
|
11537
11492
|
isTest: boolean;
|
11538
11493
|
verified: boolean;
|
11539
11494
|
};
|
@@ -11623,8 +11578,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11623
11578
|
type: import("@package/databases").TokenType;
|
11624
11579
|
icon: string;
|
11625
11580
|
isNative: boolean;
|
11626
|
-
isPoint: boolean;
|
11627
|
-
isPreTGE: boolean;
|
11628
11581
|
isTest: boolean;
|
11629
11582
|
verified: boolean;
|
11630
11583
|
} & {
|
@@ -11650,8 +11603,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11650
11603
|
type: import("@package/databases").TokenType;
|
11651
11604
|
icon: string;
|
11652
11605
|
isNative: boolean;
|
11653
|
-
isPoint: boolean;
|
11654
|
-
isPreTGE: boolean;
|
11655
11606
|
isTest: boolean;
|
11656
11607
|
verified: boolean;
|
11657
11608
|
displaySymbol: string;
|
@@ -11797,8 +11748,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11797
11748
|
type: import("@package/databases").TokenType;
|
11798
11749
|
icon: string;
|
11799
11750
|
isNative: boolean;
|
11800
|
-
isPoint: boolean;
|
11801
|
-
isPreTGE: boolean;
|
11802
11751
|
isTest: boolean;
|
11803
11752
|
verified: boolean;
|
11804
11753
|
} & {
|
@@ -11824,8 +11773,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11824
11773
|
type: import("@package/databases").TokenType;
|
11825
11774
|
icon: string;
|
11826
11775
|
isNative: boolean;
|
11827
|
-
isPoint: boolean;
|
11828
|
-
isPreTGE: boolean;
|
11829
11776
|
isTest: boolean;
|
11830
11777
|
verified: boolean;
|
11831
11778
|
displaySymbol: string;
|
@@ -11897,6 +11844,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11897
11844
|
creatorTag?: string | undefined;
|
11898
11845
|
distributionChainIds?: number[] | undefined;
|
11899
11846
|
types?: string[] | undefined;
|
11847
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
11900
11848
|
withOpportunity?: boolean | undefined;
|
11901
11849
|
createdAfter?: Date | null | undefined;
|
11902
11850
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -11950,10 +11898,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11950
11898
|
address: string;
|
11951
11899
|
id: string;
|
11952
11900
|
chainId: number;
|
11901
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11953
11902
|
icon: string;
|
11954
11903
|
isNative: boolean;
|
11955
|
-
isPoint: boolean;
|
11956
|
-
isPreTGE: boolean;
|
11957
11904
|
isTest: boolean;
|
11958
11905
|
verified: boolean;
|
11959
11906
|
};
|
@@ -11972,10 +11919,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11972
11919
|
address: string;
|
11973
11920
|
id: string;
|
11974
11921
|
chainId: number;
|
11922
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
11975
11923
|
icon: string;
|
11976
11924
|
isNative: boolean;
|
11977
|
-
isPoint: boolean;
|
11978
|
-
isPreTGE: boolean;
|
11979
11925
|
isTest: boolean;
|
11980
11926
|
verified: boolean;
|
11981
11927
|
}[];
|
@@ -12019,10 +11965,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12019
11965
|
address: string;
|
12020
11966
|
id: string;
|
12021
11967
|
chainId: number;
|
11968
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
12022
11969
|
icon: string;
|
12023
11970
|
isNative: boolean;
|
12024
|
-
isPoint: boolean;
|
12025
|
-
isPreTGE: boolean;
|
12026
11971
|
isTest: boolean;
|
12027
11972
|
verified: boolean;
|
12028
11973
|
};
|
@@ -12109,6 +12054,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12109
12054
|
tags?: string | undefined;
|
12110
12055
|
test?: boolean | undefined;
|
12111
12056
|
page?: number | undefined;
|
12057
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12112
12058
|
excludeSubCampaigns?: boolean | undefined;
|
12113
12059
|
minimumTvl?: number | undefined;
|
12114
12060
|
maximumTvl?: number | undefined;
|
@@ -12165,10 +12111,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12165
12111
|
address: string;
|
12166
12112
|
id: string;
|
12167
12113
|
chainId: number;
|
12114
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
12168
12115
|
icon: string;
|
12169
12116
|
isNative: boolean;
|
12170
|
-
isPoint: boolean;
|
12171
|
-
isPreTGE: boolean;
|
12172
12117
|
isTest: boolean;
|
12173
12118
|
verified: boolean;
|
12174
12119
|
};
|
@@ -12187,10 +12132,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12187
12132
|
address: string;
|
12188
12133
|
id: string;
|
12189
12134
|
chainId: number;
|
12135
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
12190
12136
|
icon: string;
|
12191
12137
|
isNative: boolean;
|
12192
|
-
isPoint: boolean;
|
12193
|
-
isPreTGE: boolean;
|
12194
12138
|
isTest: boolean;
|
12195
12139
|
verified: boolean;
|
12196
12140
|
}[];
|
@@ -12250,6 +12194,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12250
12194
|
tags?: string | undefined;
|
12251
12195
|
test?: boolean | undefined;
|
12252
12196
|
page?: number | undefined;
|
12197
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12253
12198
|
excludeSubCampaigns?: boolean | undefined;
|
12254
12199
|
minimumTvl?: number | undefined;
|
12255
12200
|
maximumTvl?: number | undefined;
|
@@ -12295,6 +12240,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12295
12240
|
tags?: string | undefined;
|
12296
12241
|
test?: boolean | undefined;
|
12297
12242
|
page?: number | undefined;
|
12243
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12298
12244
|
excludeSubCampaigns?: boolean | undefined;
|
12299
12245
|
minimumTvl?: number | undefined;
|
12300
12246
|
maximumTvl?: number | undefined;
|
@@ -12345,6 +12291,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12345
12291
|
tags?: string | undefined;
|
12346
12292
|
test?: boolean | undefined;
|
12347
12293
|
page?: number | undefined;
|
12294
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12348
12295
|
excludeSubCampaigns?: boolean | undefined;
|
12349
12296
|
minimumTvl?: number | undefined;
|
12350
12297
|
maximumTvl?: number | undefined;
|
@@ -12398,6 +12345,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12398
12345
|
tags?: string | undefined;
|
12399
12346
|
test?: boolean | undefined;
|
12400
12347
|
page?: number | undefined;
|
12348
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12401
12349
|
excludeSubCampaigns?: boolean | undefined;
|
12402
12350
|
minimumTvl?: number | undefined;
|
12403
12351
|
maximumTvl?: number | undefined;
|
@@ -12446,6 +12394,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12446
12394
|
tags?: string | undefined;
|
12447
12395
|
test?: boolean | undefined;
|
12448
12396
|
page?: number | undefined;
|
12397
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12449
12398
|
excludeSubCampaigns?: boolean | undefined;
|
12450
12399
|
minimumTvl?: number | undefined;
|
12451
12400
|
maximumTvl?: number | undefined;
|
@@ -12494,6 +12443,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12494
12443
|
tags?: string | undefined;
|
12495
12444
|
test?: boolean | undefined;
|
12496
12445
|
page?: number | undefined;
|
12446
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12497
12447
|
excludeSubCampaigns?: boolean | undefined;
|
12498
12448
|
minimumTvl?: number | undefined;
|
12499
12449
|
maximumTvl?: number | undefined;
|
@@ -12562,10 +12512,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12562
12512
|
address: string;
|
12563
12513
|
id: string;
|
12564
12514
|
chainId: number;
|
12515
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
12565
12516
|
icon: string;
|
12566
12517
|
isNative: boolean;
|
12567
|
-
isPoint: boolean;
|
12568
|
-
isPreTGE: boolean;
|
12569
12518
|
isTest: boolean;
|
12570
12519
|
verified: boolean;
|
12571
12520
|
};
|
@@ -12702,8 +12651,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12702
12651
|
type: import("@package/databases").TokenType;
|
12703
12652
|
icon: string;
|
12704
12653
|
isNative: boolean;
|
12705
|
-
isPoint: boolean;
|
12706
|
-
isPreTGE: boolean;
|
12707
12654
|
isTest: boolean;
|
12708
12655
|
verified: boolean;
|
12709
12656
|
} & {
|
@@ -12729,8 +12676,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12729
12676
|
type: import("@package/databases").TokenType;
|
12730
12677
|
icon: string;
|
12731
12678
|
isNative: boolean;
|
12732
|
-
isPoint: boolean;
|
12733
|
-
isPreTGE: boolean;
|
12734
12679
|
isTest: boolean;
|
12735
12680
|
verified: boolean;
|
12736
12681
|
displaySymbol: string;
|
@@ -12915,6 +12860,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12915
12860
|
creatorTag?: string | undefined;
|
12916
12861
|
distributionChainIds?: number[] | undefined;
|
12917
12862
|
types?: string[] | undefined;
|
12863
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
12918
12864
|
withOpportunity?: boolean | undefined;
|
12919
12865
|
createdAfter?: Date | null | undefined;
|
12920
12866
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -12956,10 +12902,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12956
12902
|
address: string;
|
12957
12903
|
id: string;
|
12958
12904
|
chainId: number;
|
12905
|
+
type: "TOKEN" | "PRETGE" | "POINT";
|
12959
12906
|
icon: string;
|
12960
12907
|
isNative: boolean;
|
12961
|
-
isPoint: boolean;
|
12962
|
-
isPreTGE: boolean;
|
12963
12908
|
isTest: boolean;
|
12964
12909
|
verified: boolean;
|
12965
12910
|
};
|
@@ -13024,6 +12969,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13024
12969
|
creatorTag?: string | undefined;
|
13025
12970
|
distributionChainIds?: number[] | undefined;
|
13026
12971
|
types?: string[] | undefined;
|
12972
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13027
12973
|
withOpportunity?: boolean | undefined;
|
13028
12974
|
createdAfter?: Date | null | undefined;
|
13029
12975
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13071,6 +13017,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13071
13017
|
creatorTag?: string | undefined;
|
13072
13018
|
distributionChainIds?: number[] | undefined;
|
13073
13019
|
types?: string[] | undefined;
|
13020
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13074
13021
|
withOpportunity?: boolean | undefined;
|
13075
13022
|
createdAfter?: Date | null | undefined;
|
13076
13023
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13121,6 +13068,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13121
13068
|
creatorTag?: string | undefined;
|
13122
13069
|
distributionChainIds?: number[] | undefined;
|
13123
13070
|
types?: string[] | undefined;
|
13071
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13124
13072
|
withOpportunity?: boolean | undefined;
|
13125
13073
|
createdAfter?: Date | null | undefined;
|
13126
13074
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13176,6 +13124,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13176
13124
|
creatorTag?: string | undefined;
|
13177
13125
|
distributionChainIds?: number[] | undefined;
|
13178
13126
|
types?: string[] | undefined;
|
13127
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13179
13128
|
withOpportunity?: boolean | undefined;
|
13180
13129
|
createdAfter?: Date | null | undefined;
|
13181
13130
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13228,6 +13177,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13228
13177
|
creatorTag?: string | undefined;
|
13229
13178
|
distributionChainIds?: number[] | undefined;
|
13230
13179
|
types?: string[] | undefined;
|
13180
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13231
13181
|
withOpportunity?: boolean | undefined;
|
13232
13182
|
createdAfter?: Date | null | undefined;
|
13233
13183
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13280,6 +13230,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13280
13230
|
creatorTag?: string | undefined;
|
13281
13231
|
distributionChainIds?: number[] | undefined;
|
13282
13232
|
types?: string[] | undefined;
|
13233
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13283
13234
|
withOpportunity?: boolean | undefined;
|
13284
13235
|
createdAfter?: Date | null | undefined;
|
13285
13236
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13330,6 +13281,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13330
13281
|
creatorTag?: string | undefined;
|
13331
13282
|
distributionChainIds?: number[] | undefined;
|
13332
13283
|
types?: string[] | undefined;
|
13284
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13333
13285
|
withOpportunity?: boolean | undefined;
|
13334
13286
|
createdAfter?: Date | null | undefined;
|
13335
13287
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -13528,8 +13480,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13528
13480
|
type: import("@package/databases").TokenType;
|
13529
13481
|
icon: string;
|
13530
13482
|
isNative: boolean;
|
13531
|
-
isPoint: boolean;
|
13532
|
-
isPreTGE: boolean;
|
13533
13483
|
isTest: boolean;
|
13534
13484
|
verified: boolean;
|
13535
13485
|
} & {
|
@@ -13555,8 +13505,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13555
13505
|
type: import("@package/databases").TokenType;
|
13556
13506
|
icon: string;
|
13557
13507
|
isNative: boolean;
|
13558
|
-
isPoint: boolean;
|
13559
|
-
isPreTGE: boolean;
|
13560
13508
|
isTest: boolean;
|
13561
13509
|
verified: boolean;
|
13562
13510
|
displaySymbol: string;
|
@@ -13646,8 +13594,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13646
13594
|
type: import("@package/databases").TokenType;
|
13647
13595
|
icon: string;
|
13648
13596
|
isNative: boolean;
|
13649
|
-
isPoint: boolean;
|
13650
|
-
isPreTGE: boolean;
|
13651
13597
|
isTest: boolean;
|
13652
13598
|
verified: boolean;
|
13653
13599
|
} & {
|
@@ -13673,8 +13619,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13673
13619
|
type: import("@package/databases").TokenType;
|
13674
13620
|
icon: string;
|
13675
13621
|
isNative: boolean;
|
13676
|
-
isPoint: boolean;
|
13677
|
-
isPreTGE: boolean;
|
13678
13622
|
isTest: boolean;
|
13679
13623
|
verified: boolean;
|
13680
13624
|
displaySymbol: string;
|
@@ -13765,8 +13709,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13765
13709
|
type: import("@package/databases").TokenType;
|
13766
13710
|
icon: string;
|
13767
13711
|
isNative: boolean;
|
13768
|
-
isPoint: boolean;
|
13769
|
-
isPreTGE: boolean;
|
13770
13712
|
isTest: boolean;
|
13771
13713
|
verified: boolean;
|
13772
13714
|
} & {
|
@@ -13792,8 +13734,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13792
13734
|
type: import("@package/databases").TokenType;
|
13793
13735
|
icon: string;
|
13794
13736
|
isNative: boolean;
|
13795
|
-
isPoint: boolean;
|
13796
|
-
isPreTGE: boolean;
|
13797
13737
|
isTest: boolean;
|
13798
13738
|
verified: boolean;
|
13799
13739
|
displaySymbol: string;
|
@@ -13870,6 +13810,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13870
13810
|
creatorTag?: string | undefined;
|
13871
13811
|
distributionChainIds?: number[] | undefined;
|
13872
13812
|
types?: string[] | undefined;
|
13813
|
+
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
13873
13814
|
withOpportunity?: boolean | undefined;
|
13874
13815
|
createdAfter?: Date | null | undefined;
|
13875
13816
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -14170,8 +14111,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14170
14111
|
type: import("@package/databases").TokenType;
|
14171
14112
|
icon: string;
|
14172
14113
|
isNative: boolean;
|
14173
|
-
isPoint: boolean;
|
14174
|
-
isPreTGE: boolean;
|
14175
14114
|
isTest: boolean;
|
14176
14115
|
verified: boolean;
|
14177
14116
|
price?: number | null | undefined;
|
@@ -14209,8 +14148,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14209
14148
|
type: import("@package/databases").TokenType;
|
14210
14149
|
icon: string;
|
14211
14150
|
isNative: boolean;
|
14212
|
-
isPoint: boolean;
|
14213
|
-
isPreTGE: boolean;
|
14214
14151
|
isTest: boolean;
|
14215
14152
|
verified: boolean;
|
14216
14153
|
price?: number | null | undefined;
|
@@ -14230,9 +14167,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14230
14167
|
})) & {};
|
14231
14168
|
patch: (body: {
|
14232
14169
|
name?: string | undefined;
|
14170
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
14233
14171
|
icon?: string | undefined;
|
14234
|
-
isPoint?: boolean | undefined;
|
14235
|
-
isPreTGE?: boolean | undefined;
|
14236
14172
|
isTest?: boolean | undefined;
|
14237
14173
|
verified?: boolean | undefined;
|
14238
14174
|
displaySymbol?: string | undefined;
|
@@ -14254,8 +14190,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14254
14190
|
type: import("@package/databases").TokenType;
|
14255
14191
|
icon: string;
|
14256
14192
|
isNative: boolean;
|
14257
|
-
isPoint: boolean;
|
14258
|
-
isPreTGE: boolean;
|
14259
14193
|
isTest: boolean;
|
14260
14194
|
verified: boolean;
|
14261
14195
|
displaySymbol: string;
|
@@ -14293,8 +14227,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14293
14227
|
type: import("@package/databases").TokenType;
|
14294
14228
|
icon: string;
|
14295
14229
|
isNative: boolean;
|
14296
|
-
isPoint: boolean;
|
14297
|
-
isPreTGE: boolean;
|
14298
14230
|
isTest: boolean;
|
14299
14231
|
verified: boolean;
|
14300
14232
|
displaySymbol: string;
|
@@ -14332,8 +14264,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14332
14264
|
type: import("@package/databases").TokenType;
|
14333
14265
|
icon: string;
|
14334
14266
|
isNative: boolean;
|
14335
|
-
isPoint: boolean;
|
14336
|
-
isPreTGE: boolean;
|
14337
14267
|
isTest: boolean;
|
14338
14268
|
verified: boolean;
|
14339
14269
|
displaySymbol: string;
|
@@ -14372,8 +14302,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14372
14302
|
type: import("@package/databases").TokenType;
|
14373
14303
|
icon: string;
|
14374
14304
|
isNative: boolean;
|
14375
|
-
isPoint: boolean;
|
14376
|
-
isPreTGE: boolean;
|
14377
14305
|
isTest: boolean;
|
14378
14306
|
verified: boolean;
|
14379
14307
|
} & {
|
@@ -14424,8 +14352,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14424
14352
|
type: import("@package/databases").TokenType;
|
14425
14353
|
icon: string;
|
14426
14354
|
isNative: boolean;
|
14427
|
-
isPoint: boolean;
|
14428
|
-
isPreTGE: boolean;
|
14429
14355
|
isTest: boolean;
|
14430
14356
|
verified: boolean;
|
14431
14357
|
} & {
|
@@ -14477,7 +14403,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14477
14403
|
}>>;
|
14478
14404
|
};
|
14479
14405
|
post: (body: {
|
14480
|
-
|
14406
|
+
type?: "TOKEN" | "PRETGE" | "POINT" | undefined;
|
14481
14407
|
isTest?: boolean | undefined;
|
14482
14408
|
address: string;
|
14483
14409
|
chainId: number;
|
@@ -14501,8 +14427,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14501
14427
|
type: import("@package/databases").TokenType;
|
14502
14428
|
icon: string;
|
14503
14429
|
isNative: boolean;
|
14504
|
-
isPoint: boolean;
|
14505
|
-
isPreTGE: boolean;
|
14506
14430
|
isTest: boolean;
|
14507
14431
|
verified: boolean;
|
14508
14432
|
displaySymbol: string;
|
@@ -14571,8 +14495,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14571
14495
|
type: import("@package/databases").TokenType;
|
14572
14496
|
icon: string;
|
14573
14497
|
isNative: boolean;
|
14574
|
-
isPoint: boolean;
|
14575
|
-
isPreTGE: boolean;
|
14576
14498
|
isTest: boolean;
|
14577
14499
|
verified: boolean;
|
14578
14500
|
displaySymbol: string;
|
@@ -15595,8 +15517,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15595
15517
|
type: import("@package/databases").TokenType;
|
15596
15518
|
icon: string;
|
15597
15519
|
isNative: boolean;
|
15598
|
-
isPoint: boolean;
|
15599
|
-
isPreTGE: boolean;
|
15600
15520
|
isTest: boolean;
|
15601
15521
|
verified: boolean;
|
15602
15522
|
displaySymbol: string;
|
@@ -15621,8 +15541,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15621
15541
|
type: import("@package/databases").TokenType;
|
15622
15542
|
icon: string;
|
15623
15543
|
isNative: boolean;
|
15624
|
-
isPoint: boolean;
|
15625
|
-
isPreTGE: boolean;
|
15626
15544
|
isTest: boolean;
|
15627
15545
|
verified: boolean;
|
15628
15546
|
displaySymbol: string;
|
@@ -17524,8 +17442,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17524
17442
|
type: import("@package/databases").TokenType;
|
17525
17443
|
icon: string;
|
17526
17444
|
isNative: boolean;
|
17527
|
-
isPoint: boolean;
|
17528
|
-
isPreTGE: boolean;
|
17529
17445
|
isTest: boolean;
|
17530
17446
|
verified: boolean;
|
17531
17447
|
} & {
|