@merkl/api 0.20.114 → 0.20.116
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/database/api/.generated/drizzle/schema.d.ts +17 -0
- package/dist/database/api/.generated/drizzle/schema.js +1 -0
- package/dist/database/api/.generated/drizzle/schema.ts +1 -0
- package/dist/database/api/.generated/edge.js +4 -3
- package/dist/database/api/.generated/index-browser.js +1 -0
- package/dist/database/api/.generated/index.d.ts +58 -1
- package/dist/database/api/.generated/index.js +4 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -0
- package/dist/database/api/.generated/wasm.js +1 -0
- package/dist/src/eden/index.d.ts +121 -3
- package/dist/src/engine/deprecated/dynamicData/factory.js +1 -0
- package/dist/src/engine/deprecated/dynamicData/implementations/ERC721.js +4 -2
- package/dist/src/engine/deprecated/dynamicData/implementations/ERCMultiToken.js +4 -2
- package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.js +4 -2
- package/dist/src/engine/deprecated/dynamicData/implementations/EventBased.js +1 -1
- package/dist/src/engine/deprecated/dynamicData/utils/getFixedApr.d.ts +0 -1
- package/dist/src/engine/deprecated/dynamicData/utils/getFixedApr.js +0 -8
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/subtypesRound1.js +3 -8
- package/dist/src/engine/implementations/EigenLayer/tvl.d.ts +7 -0
- package/dist/src/engine/implementations/EigenLayer/tvl.js +60 -0
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js +6 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/gearbox/tvl.js +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/superlend/metadata.d.ts +17 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/superlend/metadata.js +29 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/superlend/tvl.d.ts +6 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/superlend/tvl.js +48 -0
- package/dist/src/engine/implementations/Erc20/tvl.js +1 -1
- package/dist/src/engine/metadata/factory.js +1 -0
- package/dist/src/engine/tvl/factory.js +2 -0
- package/dist/src/index.d.ts +41 -1
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +4 -0
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +4 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +9 -0
- package/dist/src/modules/v4/campaign/campaign.service.js +4 -2
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +3 -1
- package/dist/src/modules/v4/campaign/campaign.test.controller.js +14 -3
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +7 -7
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +21 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +10 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +13 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +25 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +4 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +14 -0
- package/dist/src/modules/v4/router.d.ts +41 -1
- package/dist/src/modules/v4/token/token.controller.d.ts +9 -0
- package/dist/src/modules/v4/token/token.model.d.ts +3 -0
- package/dist/src/modules/v4/token/token.model.js +3 -0
- package/dist/src/modules/v4/token/token.repository.d.ts +4 -0
- package/dist/src/modules/v4/token/token.service.d.ts +33 -0
- package/dist/src/modules/v4/token/token.service.js +20 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
- package/dist/src/utils/parseDistributionType.d.ts +1 -0
- package/dist/src/utils/parseDistributionType.js +16 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -178,6 +178,7 @@ declare const eden: {
|
|
178
178
|
verified: boolean;
|
179
179
|
isTest: boolean;
|
180
180
|
isPoint: boolean;
|
181
|
+
isPreTGE: boolean;
|
181
182
|
isNative: boolean;
|
182
183
|
} & {
|
183
184
|
price?: number | null | undefined;
|
@@ -232,6 +233,7 @@ declare const eden: {
|
|
232
233
|
verified: boolean;
|
233
234
|
isTest: boolean;
|
234
235
|
isPoint: boolean;
|
236
|
+
isPreTGE: boolean;
|
235
237
|
isNative: boolean;
|
236
238
|
} & {
|
237
239
|
price?: number | null | undefined;
|
@@ -301,6 +303,8 @@ declare const eden: {
|
|
301
303
|
decimals: number;
|
302
304
|
verified: boolean;
|
303
305
|
isTest: boolean;
|
306
|
+
isPoint: boolean;
|
307
|
+
isPreTGE: boolean;
|
304
308
|
};
|
305
309
|
value: number;
|
306
310
|
campaignId: string;
|
@@ -323,6 +327,8 @@ declare const eden: {
|
|
323
327
|
decimals: number;
|
324
328
|
verified: boolean;
|
325
329
|
isTest: boolean;
|
330
|
+
isPoint: boolean;
|
331
|
+
isPreTGE: boolean;
|
326
332
|
}[];
|
327
333
|
tags: string[];
|
328
334
|
identifier: string;
|
@@ -408,6 +414,8 @@ declare const eden: {
|
|
408
414
|
decimals: number;
|
409
415
|
verified: boolean;
|
410
416
|
isTest: boolean;
|
417
|
+
isPoint: boolean;
|
418
|
+
isPreTGE: boolean;
|
411
419
|
};
|
412
420
|
value: number;
|
413
421
|
campaignId: string;
|
@@ -430,6 +438,8 @@ declare const eden: {
|
|
430
438
|
decimals: number;
|
431
439
|
verified: boolean;
|
432
440
|
isTest: boolean;
|
441
|
+
isPoint: boolean;
|
442
|
+
isPreTGE: boolean;
|
433
443
|
}[];
|
434
444
|
tags: string[];
|
435
445
|
identifier: string;
|
@@ -493,6 +503,8 @@ declare const eden: {
|
|
493
503
|
decimals: number;
|
494
504
|
verified: boolean;
|
495
505
|
isTest: boolean;
|
506
|
+
isPoint: boolean;
|
507
|
+
isPreTGE: boolean;
|
496
508
|
};
|
497
509
|
}[];
|
498
510
|
};
|
@@ -624,6 +636,7 @@ declare const eden: {
|
|
624
636
|
verified: boolean;
|
625
637
|
isTest: boolean;
|
626
638
|
isPoint: boolean;
|
639
|
+
isPreTGE: boolean;
|
627
640
|
isNative: boolean;
|
628
641
|
price: number | null;
|
629
642
|
};
|
@@ -651,6 +664,7 @@ declare const eden: {
|
|
651
664
|
verified: boolean;
|
652
665
|
isTest: boolean;
|
653
666
|
isPoint: boolean;
|
667
|
+
isPreTGE: boolean;
|
654
668
|
isNative: boolean;
|
655
669
|
} & {
|
656
670
|
price?: number | null | undefined;
|
@@ -719,6 +733,7 @@ declare const eden: {
|
|
719
733
|
verified: boolean;
|
720
734
|
isTest: boolean;
|
721
735
|
isPoint: boolean;
|
736
|
+
isPreTGE: boolean;
|
722
737
|
isNative: boolean;
|
723
738
|
} & {
|
724
739
|
price?: number | null | undefined;
|
@@ -859,6 +874,8 @@ declare const eden: {
|
|
859
874
|
decimals: number;
|
860
875
|
verified: boolean;
|
861
876
|
isTest: boolean;
|
877
|
+
isPoint: boolean;
|
878
|
+
isPreTGE: boolean;
|
862
879
|
};
|
863
880
|
value: number;
|
864
881
|
campaignId: string;
|
@@ -881,6 +898,8 @@ declare const eden: {
|
|
881
898
|
decimals: number;
|
882
899
|
verified: boolean;
|
883
900
|
isTest: boolean;
|
901
|
+
isPoint: boolean;
|
902
|
+
isPreTGE: boolean;
|
884
903
|
}[];
|
885
904
|
tags: string[];
|
886
905
|
identifier: string;
|
@@ -944,6 +963,8 @@ declare const eden: {
|
|
944
963
|
decimals: number;
|
945
964
|
verified: boolean;
|
946
965
|
isTest: boolean;
|
966
|
+
isPoint: boolean;
|
967
|
+
isPreTGE: boolean;
|
947
968
|
};
|
948
969
|
}[];
|
949
970
|
}[];
|
@@ -1094,6 +1115,7 @@ declare const eden: {
|
|
1094
1115
|
verified: boolean;
|
1095
1116
|
isTest: boolean;
|
1096
1117
|
isPoint: boolean;
|
1118
|
+
isPreTGE: boolean;
|
1097
1119
|
isNative: boolean;
|
1098
1120
|
} & {
|
1099
1121
|
price?: number | null | undefined;
|
@@ -1220,6 +1242,7 @@ declare const eden: {
|
|
1220
1242
|
verified: boolean;
|
1221
1243
|
isTest: boolean;
|
1222
1244
|
isPoint: boolean;
|
1245
|
+
isPreTGE: boolean;
|
1223
1246
|
isNative: boolean;
|
1224
1247
|
} & {
|
1225
1248
|
price?: number | null | undefined;
|
@@ -1357,6 +1380,7 @@ declare const eden: {
|
|
1357
1380
|
verified: boolean;
|
1358
1381
|
isTest: boolean;
|
1359
1382
|
isPoint: boolean;
|
1383
|
+
isPreTGE: boolean;
|
1360
1384
|
isNative: boolean;
|
1361
1385
|
} & {
|
1362
1386
|
price?: number | null | undefined;
|
@@ -1719,6 +1743,7 @@ declare const eden: {
|
|
1719
1743
|
verified: boolean;
|
1720
1744
|
isTest: boolean;
|
1721
1745
|
isPoint: boolean;
|
1746
|
+
isPreTGE: boolean;
|
1722
1747
|
isNative: boolean;
|
1723
1748
|
} & {
|
1724
1749
|
price?: number | null | undefined;
|
@@ -1734,8 +1759,8 @@ declare const eden: {
|
|
1734
1759
|
authorization: string;
|
1735
1760
|
};
|
1736
1761
|
query: {
|
1762
|
+
distributionChain?: number | undefined;
|
1737
1763
|
campaignId: string;
|
1738
|
-
distributionChain: number;
|
1739
1764
|
};
|
1740
1765
|
fetch?: RequestInit | undefined;
|
1741
1766
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -1775,6 +1800,7 @@ declare const eden: {
|
|
1775
1800
|
verified: boolean;
|
1776
1801
|
isTest: boolean;
|
1777
1802
|
isPoint: boolean;
|
1803
|
+
isPreTGE: boolean;
|
1778
1804
|
isNative: boolean;
|
1779
1805
|
} & {
|
1780
1806
|
price?: number | null | undefined;
|
@@ -2046,6 +2072,7 @@ declare const eden: {
|
|
2046
2072
|
verified: boolean;
|
2047
2073
|
isTest: boolean;
|
2048
2074
|
isPoint: boolean;
|
2075
|
+
isPreTGE: boolean;
|
2049
2076
|
isNative: boolean;
|
2050
2077
|
price?: number | null | undefined;
|
2051
2078
|
} | undefined;
|
@@ -2072,6 +2099,7 @@ declare const eden: {
|
|
2072
2099
|
verified: boolean;
|
2073
2100
|
isTest: boolean;
|
2074
2101
|
isPoint: boolean;
|
2102
|
+
isPreTGE: boolean;
|
2075
2103
|
isNative: boolean;
|
2076
2104
|
price?: number | null | undefined;
|
2077
2105
|
} | undefined;
|
@@ -2084,6 +2112,7 @@ declare const eden: {
|
|
2084
2112
|
verified?: boolean | undefined;
|
2085
2113
|
isTest?: boolean | undefined;
|
2086
2114
|
isPoint?: boolean | undefined;
|
2115
|
+
isPreTGE?: boolean | undefined;
|
2087
2116
|
}, options: {
|
2088
2117
|
headers: {
|
2089
2118
|
authorization: string;
|
@@ -2103,6 +2132,7 @@ declare const eden: {
|
|
2103
2132
|
verified: boolean;
|
2104
2133
|
isTest: boolean;
|
2105
2134
|
isPoint: boolean;
|
2135
|
+
isPreTGE: boolean;
|
2106
2136
|
isNative: boolean;
|
2107
2137
|
price: number | null;
|
2108
2138
|
};
|
@@ -2129,6 +2159,7 @@ declare const eden: {
|
|
2129
2159
|
verified: boolean;
|
2130
2160
|
isTest: boolean;
|
2131
2161
|
isPoint: boolean;
|
2162
|
+
isPreTGE: boolean;
|
2132
2163
|
isNative: boolean;
|
2133
2164
|
price: number | null;
|
2134
2165
|
}[];
|
@@ -2157,6 +2188,7 @@ declare const eden: {
|
|
2157
2188
|
verified: boolean;
|
2158
2189
|
isTest: boolean;
|
2159
2190
|
isPoint: boolean;
|
2191
|
+
isPreTGE: boolean;
|
2160
2192
|
isNative: boolean;
|
2161
2193
|
} & {
|
2162
2194
|
price?: number | null | undefined;
|
@@ -2197,6 +2229,7 @@ declare const eden: {
|
|
2197
2229
|
verified: boolean;
|
2198
2230
|
isTest: boolean;
|
2199
2231
|
isPoint: boolean;
|
2232
|
+
isPreTGE: boolean;
|
2200
2233
|
isNative: boolean;
|
2201
2234
|
} & {
|
2202
2235
|
price?: number | null | undefined;
|
@@ -2227,6 +2260,7 @@ declare const eden: {
|
|
2227
2260
|
verified: boolean;
|
2228
2261
|
isTest: boolean;
|
2229
2262
|
isPoint: boolean;
|
2263
|
+
isPreTGE: boolean;
|
2230
2264
|
isNative: boolean;
|
2231
2265
|
price: number | null;
|
2232
2266
|
};
|
@@ -2311,6 +2345,7 @@ declare const eden: {
|
|
2311
2345
|
verified: boolean;
|
2312
2346
|
isTest: boolean;
|
2313
2347
|
isPoint: boolean;
|
2348
|
+
isPreTGE: boolean;
|
2314
2349
|
isNative: boolean;
|
2315
2350
|
price: number | null;
|
2316
2351
|
};
|
@@ -2969,6 +3004,7 @@ declare const eden: {
|
|
2969
3004
|
verified: boolean;
|
2970
3005
|
isTest: boolean;
|
2971
3006
|
isPoint: boolean;
|
3007
|
+
isPreTGE: boolean;
|
2972
3008
|
isNative: boolean;
|
2973
3009
|
price: number | null;
|
2974
3010
|
};
|
@@ -2992,6 +3028,7 @@ declare const eden: {
|
|
2992
3028
|
verified: boolean;
|
2993
3029
|
isTest: boolean;
|
2994
3030
|
isPoint: boolean;
|
3031
|
+
isPreTGE: boolean;
|
2995
3032
|
isNative: boolean;
|
2996
3033
|
price: number | null;
|
2997
3034
|
}[];
|
@@ -3079,6 +3116,7 @@ declare const eden: {
|
|
3079
3116
|
verified: boolean;
|
3080
3117
|
isTest: boolean;
|
3081
3118
|
isPoint: boolean;
|
3119
|
+
isPreTGE: boolean;
|
3082
3120
|
isNative: boolean;
|
3083
3121
|
price: number | null;
|
3084
3122
|
};
|
@@ -3102,6 +3140,7 @@ declare const eden: {
|
|
3102
3140
|
verified: boolean;
|
3103
3141
|
isTest: boolean;
|
3104
3142
|
isPoint: boolean;
|
3143
|
+
isPreTGE: boolean;
|
3105
3144
|
isNative: boolean;
|
3106
3145
|
price: number | null;
|
3107
3146
|
}[];
|
@@ -5263,6 +5302,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5263
5302
|
verified: boolean;
|
5264
5303
|
isTest: boolean;
|
5265
5304
|
isPoint: boolean;
|
5305
|
+
isPreTGE: boolean;
|
5266
5306
|
isNative: boolean;
|
5267
5307
|
} & {
|
5268
5308
|
price?: number | null | undefined;
|
@@ -5327,6 +5367,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5327
5367
|
verified: boolean;
|
5328
5368
|
isTest: boolean;
|
5329
5369
|
isPoint: boolean;
|
5370
|
+
isPreTGE: boolean;
|
5330
5371
|
isNative: boolean;
|
5331
5372
|
} & {
|
5332
5373
|
price?: number | null | undefined;
|
@@ -5417,6 +5458,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5417
5458
|
verified: boolean;
|
5418
5459
|
isTest: boolean;
|
5419
5460
|
isPoint: boolean;
|
5461
|
+
isPreTGE: boolean;
|
5420
5462
|
isNative: boolean;
|
5421
5463
|
price: number | null;
|
5422
5464
|
};
|
@@ -5444,6 +5486,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5444
5486
|
verified: boolean;
|
5445
5487
|
isTest: boolean;
|
5446
5488
|
isPoint: boolean;
|
5489
|
+
isPreTGE: boolean;
|
5447
5490
|
isNative: boolean;
|
5448
5491
|
} & {
|
5449
5492
|
price?: number | null | undefined;
|
@@ -5512,6 +5555,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5512
5555
|
verified: boolean;
|
5513
5556
|
isTest: boolean;
|
5514
5557
|
isPoint: boolean;
|
5558
|
+
isPreTGE: boolean;
|
5515
5559
|
isNative: boolean;
|
5516
5560
|
} & {
|
5517
5561
|
price?: number | null | undefined;
|
@@ -5644,6 +5688,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5644
5688
|
decimals: number;
|
5645
5689
|
verified: boolean;
|
5646
5690
|
isTest: boolean;
|
5691
|
+
isPoint: boolean;
|
5692
|
+
isPreTGE: boolean;
|
5647
5693
|
};
|
5648
5694
|
value: number;
|
5649
5695
|
campaignId: string;
|
@@ -5666,6 +5712,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5666
5712
|
decimals: number;
|
5667
5713
|
verified: boolean;
|
5668
5714
|
isTest: boolean;
|
5715
|
+
isPoint: boolean;
|
5716
|
+
isPreTGE: boolean;
|
5669
5717
|
}[];
|
5670
5718
|
tags: string[];
|
5671
5719
|
identifier: string;
|
@@ -5777,6 +5825,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5777
5825
|
decimals: number;
|
5778
5826
|
verified: boolean;
|
5779
5827
|
isTest: boolean;
|
5828
|
+
isPoint: boolean;
|
5829
|
+
isPreTGE: boolean;
|
5780
5830
|
};
|
5781
5831
|
value: number;
|
5782
5832
|
campaignId: string;
|
@@ -5799,6 +5849,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5799
5849
|
decimals: number;
|
5800
5850
|
verified: boolean;
|
5801
5851
|
isTest: boolean;
|
5852
|
+
isPoint: boolean;
|
5853
|
+
isPreTGE: boolean;
|
5802
5854
|
}[];
|
5803
5855
|
tags: string[];
|
5804
5856
|
identifier: string;
|
@@ -5862,6 +5914,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5862
5914
|
decimals: number;
|
5863
5915
|
verified: boolean;
|
5864
5916
|
isTest: boolean;
|
5917
|
+
isPoint: boolean;
|
5918
|
+
isPreTGE: boolean;
|
5865
5919
|
};
|
5866
5920
|
}[];
|
5867
5921
|
}[];
|
@@ -5944,6 +5998,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5944
5998
|
decimals: number;
|
5945
5999
|
verified: boolean;
|
5946
6000
|
isTest: boolean;
|
6001
|
+
isPoint: boolean;
|
6002
|
+
isPreTGE: boolean;
|
5947
6003
|
};
|
5948
6004
|
value: number;
|
5949
6005
|
campaignId: string;
|
@@ -5966,6 +6022,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5966
6022
|
decimals: number;
|
5967
6023
|
verified: boolean;
|
5968
6024
|
isTest: boolean;
|
6025
|
+
isPoint: boolean;
|
6026
|
+
isPreTGE: boolean;
|
5969
6027
|
}[];
|
5970
6028
|
tags: string[];
|
5971
6029
|
identifier: string;
|
@@ -6029,6 +6087,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6029
6087
|
decimals: number;
|
6030
6088
|
verified: boolean;
|
6031
6089
|
isTest: boolean;
|
6090
|
+
isPoint: boolean;
|
6091
|
+
isPreTGE: boolean;
|
6032
6092
|
};
|
6033
6093
|
}[];
|
6034
6094
|
};
|
@@ -6240,6 +6300,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6240
6300
|
verified: boolean;
|
6241
6301
|
isTest: boolean;
|
6242
6302
|
isPoint: boolean;
|
6303
|
+
isPreTGE: boolean;
|
6243
6304
|
isNative: boolean;
|
6244
6305
|
} & {
|
6245
6306
|
price?: number | null | undefined;
|
@@ -6410,6 +6471,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6410
6471
|
verified: boolean;
|
6411
6472
|
isTest: boolean;
|
6412
6473
|
isPoint: boolean;
|
6474
|
+
isPreTGE: boolean;
|
6413
6475
|
isNative: boolean;
|
6414
6476
|
} & {
|
6415
6477
|
price?: number | null | undefined;
|
@@ -6496,6 +6558,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6496
6558
|
verified: boolean;
|
6497
6559
|
isTest: boolean;
|
6498
6560
|
isPoint: boolean;
|
6561
|
+
isPreTGE: boolean;
|
6499
6562
|
isNative: boolean;
|
6500
6563
|
} & {
|
6501
6564
|
price?: number | null | undefined;
|
@@ -6683,6 +6746,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6683
6746
|
verified: boolean;
|
6684
6747
|
isTest: boolean;
|
6685
6748
|
isPoint: boolean;
|
6749
|
+
isPreTGE: boolean;
|
6686
6750
|
isNative: boolean;
|
6687
6751
|
} & {
|
6688
6752
|
price?: number | null | undefined;
|
@@ -7079,6 +7143,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7079
7143
|
verified: boolean;
|
7080
7144
|
isTest: boolean;
|
7081
7145
|
isPoint: boolean;
|
7146
|
+
isPreTGE: boolean;
|
7082
7147
|
isNative: boolean;
|
7083
7148
|
} & {
|
7084
7149
|
price?: number | null | undefined;
|
@@ -7099,8 +7164,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7099
7164
|
body: unknown;
|
7100
7165
|
params: {};
|
7101
7166
|
query: {
|
7167
|
+
distributionChain?: number | undefined;
|
7102
7168
|
campaignId: string;
|
7103
|
-
distributionChain: number;
|
7104
7169
|
};
|
7105
7170
|
headers: {
|
7106
7171
|
authorization: string;
|
@@ -7142,6 +7207,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7142
7207
|
verified: boolean;
|
7143
7208
|
isTest: boolean;
|
7144
7209
|
isPoint: boolean;
|
7210
|
+
isPreTGE: boolean;
|
7145
7211
|
isNative: boolean;
|
7146
7212
|
} & {
|
7147
7213
|
price?: number | null | undefined;
|
@@ -7413,6 +7479,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7413
7479
|
verified: boolean;
|
7414
7480
|
isTest: boolean;
|
7415
7481
|
isPoint: boolean;
|
7482
|
+
isPreTGE: boolean;
|
7416
7483
|
isNative: boolean;
|
7417
7484
|
price?: number | null | undefined;
|
7418
7485
|
} | undefined;
|
@@ -7446,6 +7513,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7446
7513
|
verified: boolean;
|
7447
7514
|
isTest: boolean;
|
7448
7515
|
isPoint: boolean;
|
7516
|
+
isPreTGE: boolean;
|
7449
7517
|
isNative: boolean;
|
7450
7518
|
price?: number | null | undefined;
|
7451
7519
|
} | undefined;
|
@@ -7479,6 +7547,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7479
7547
|
verified: boolean;
|
7480
7548
|
isTest: boolean;
|
7481
7549
|
isPoint: boolean;
|
7550
|
+
isPreTGE: boolean;
|
7482
7551
|
isNative: boolean;
|
7483
7552
|
price: number | null;
|
7484
7553
|
}[];
|
@@ -7511,6 +7580,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7511
7580
|
verified: boolean;
|
7512
7581
|
isTest: boolean;
|
7513
7582
|
isPoint: boolean;
|
7583
|
+
isPreTGE: boolean;
|
7514
7584
|
isNative: boolean;
|
7515
7585
|
} & {
|
7516
7586
|
price?: number | null | undefined;
|
@@ -7554,6 +7624,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7554
7624
|
verified: boolean;
|
7555
7625
|
isTest: boolean;
|
7556
7626
|
isPoint: boolean;
|
7627
|
+
isPreTGE: boolean;
|
7557
7628
|
isNative: boolean;
|
7558
7629
|
} & {
|
7559
7630
|
price?: number | null | undefined;
|
@@ -7616,6 +7687,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7616
7687
|
verified: boolean;
|
7617
7688
|
isTest: boolean;
|
7618
7689
|
isPoint: boolean;
|
7690
|
+
isPreTGE: boolean;
|
7619
7691
|
isNative: boolean;
|
7620
7692
|
price: number | null;
|
7621
7693
|
};
|
@@ -7632,6 +7704,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7632
7704
|
verified?: boolean | undefined;
|
7633
7705
|
isTest?: boolean | undefined;
|
7634
7706
|
isPoint?: boolean | undefined;
|
7707
|
+
isPreTGE?: boolean | undefined;
|
7635
7708
|
};
|
7636
7709
|
params: {
|
7637
7710
|
id: string;
|
@@ -7653,6 +7726,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7653
7726
|
verified: boolean;
|
7654
7727
|
isTest: boolean;
|
7655
7728
|
isPoint: boolean;
|
7729
|
+
isPreTGE: boolean;
|
7656
7730
|
isNative: boolean;
|
7657
7731
|
price: number | null;
|
7658
7732
|
};
|
@@ -7716,6 +7790,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7716
7790
|
verified: boolean;
|
7717
7791
|
isTest: boolean;
|
7718
7792
|
isPoint: boolean;
|
7793
|
+
isPreTGE: boolean;
|
7719
7794
|
isNative: boolean;
|
7720
7795
|
price: number | null;
|
7721
7796
|
};
|
@@ -8652,6 +8727,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8652
8727
|
verified: boolean;
|
8653
8728
|
isTest: boolean;
|
8654
8729
|
isPoint: boolean;
|
8730
|
+
isPreTGE: boolean;
|
8655
8731
|
isNative: boolean;
|
8656
8732
|
price: number | null;
|
8657
8733
|
};
|
@@ -8675,6 +8751,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8675
8751
|
verified: boolean;
|
8676
8752
|
isTest: boolean;
|
8677
8753
|
isPoint: boolean;
|
8754
|
+
isPreTGE: boolean;
|
8678
8755
|
isNative: boolean;
|
8679
8756
|
price: number | null;
|
8680
8757
|
}[];
|
@@ -8773,6 +8850,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8773
8850
|
verified: boolean;
|
8774
8851
|
isTest: boolean;
|
8775
8852
|
isPoint: boolean;
|
8853
|
+
isPreTGE: boolean;
|
8776
8854
|
isNative: boolean;
|
8777
8855
|
price: number | null;
|
8778
8856
|
};
|
@@ -8796,6 +8874,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8796
8874
|
verified: boolean;
|
8797
8875
|
isTest: boolean;
|
8798
8876
|
isPoint: boolean;
|
8877
|
+
isPreTGE: boolean;
|
8799
8878
|
isNative: boolean;
|
8800
8879
|
price: number | null;
|
8801
8880
|
}[];
|
@@ -11336,6 +11415,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11336
11415
|
verified: boolean;
|
11337
11416
|
isTest: boolean;
|
11338
11417
|
isPoint: boolean;
|
11418
|
+
isPreTGE: boolean;
|
11339
11419
|
isNative: boolean;
|
11340
11420
|
} & {
|
11341
11421
|
price?: number | null | undefined;
|
@@ -11390,6 +11470,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11390
11470
|
verified: boolean;
|
11391
11471
|
isTest: boolean;
|
11392
11472
|
isPoint: boolean;
|
11473
|
+
isPreTGE: boolean;
|
11393
11474
|
isNative: boolean;
|
11394
11475
|
} & {
|
11395
11476
|
price?: number | null | undefined;
|
@@ -11459,6 +11540,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11459
11540
|
decimals: number;
|
11460
11541
|
verified: boolean;
|
11461
11542
|
isTest: boolean;
|
11543
|
+
isPoint: boolean;
|
11544
|
+
isPreTGE: boolean;
|
11462
11545
|
};
|
11463
11546
|
value: number;
|
11464
11547
|
campaignId: string;
|
@@ -11481,6 +11564,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11481
11564
|
decimals: number;
|
11482
11565
|
verified: boolean;
|
11483
11566
|
isTest: boolean;
|
11567
|
+
isPoint: boolean;
|
11568
|
+
isPreTGE: boolean;
|
11484
11569
|
}[];
|
11485
11570
|
tags: string[];
|
11486
11571
|
identifier: string;
|
@@ -11566,6 +11651,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11566
11651
|
decimals: number;
|
11567
11652
|
verified: boolean;
|
11568
11653
|
isTest: boolean;
|
11654
|
+
isPoint: boolean;
|
11655
|
+
isPreTGE: boolean;
|
11569
11656
|
};
|
11570
11657
|
value: number;
|
11571
11658
|
campaignId: string;
|
@@ -11588,6 +11675,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11588
11675
|
decimals: number;
|
11589
11676
|
verified: boolean;
|
11590
11677
|
isTest: boolean;
|
11678
|
+
isPoint: boolean;
|
11679
|
+
isPreTGE: boolean;
|
11591
11680
|
}[];
|
11592
11681
|
tags: string[];
|
11593
11682
|
identifier: string;
|
@@ -11651,6 +11740,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11651
11740
|
decimals: number;
|
11652
11741
|
verified: boolean;
|
11653
11742
|
isTest: boolean;
|
11743
|
+
isPoint: boolean;
|
11744
|
+
isPreTGE: boolean;
|
11654
11745
|
};
|
11655
11746
|
}[];
|
11656
11747
|
};
|
@@ -11782,6 +11873,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11782
11873
|
verified: boolean;
|
11783
11874
|
isTest: boolean;
|
11784
11875
|
isPoint: boolean;
|
11876
|
+
isPreTGE: boolean;
|
11785
11877
|
isNative: boolean;
|
11786
11878
|
price: number | null;
|
11787
11879
|
};
|
@@ -11809,6 +11901,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11809
11901
|
verified: boolean;
|
11810
11902
|
isTest: boolean;
|
11811
11903
|
isPoint: boolean;
|
11904
|
+
isPreTGE: boolean;
|
11812
11905
|
isNative: boolean;
|
11813
11906
|
} & {
|
11814
11907
|
price?: number | null | undefined;
|
@@ -11877,6 +11970,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11877
11970
|
verified: boolean;
|
11878
11971
|
isTest: boolean;
|
11879
11972
|
isPoint: boolean;
|
11973
|
+
isPreTGE: boolean;
|
11880
11974
|
isNative: boolean;
|
11881
11975
|
} & {
|
11882
11976
|
price?: number | null | undefined;
|
@@ -12017,6 +12111,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12017
12111
|
decimals: number;
|
12018
12112
|
verified: boolean;
|
12019
12113
|
isTest: boolean;
|
12114
|
+
isPoint: boolean;
|
12115
|
+
isPreTGE: boolean;
|
12020
12116
|
};
|
12021
12117
|
value: number;
|
12022
12118
|
campaignId: string;
|
@@ -12039,6 +12135,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12039
12135
|
decimals: number;
|
12040
12136
|
verified: boolean;
|
12041
12137
|
isTest: boolean;
|
12138
|
+
isPoint: boolean;
|
12139
|
+
isPreTGE: boolean;
|
12042
12140
|
}[];
|
12043
12141
|
tags: string[];
|
12044
12142
|
identifier: string;
|
@@ -12102,6 +12200,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12102
12200
|
decimals: number;
|
12103
12201
|
verified: boolean;
|
12104
12202
|
isTest: boolean;
|
12203
|
+
isPoint: boolean;
|
12204
|
+
isPreTGE: boolean;
|
12105
12205
|
};
|
12106
12206
|
}[];
|
12107
12207
|
}[];
|
@@ -12252,6 +12352,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12252
12352
|
verified: boolean;
|
12253
12353
|
isTest: boolean;
|
12254
12354
|
isPoint: boolean;
|
12355
|
+
isPreTGE: boolean;
|
12255
12356
|
isNative: boolean;
|
12256
12357
|
} & {
|
12257
12358
|
price?: number | null | undefined;
|
@@ -12378,6 +12479,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12378
12479
|
verified: boolean;
|
12379
12480
|
isTest: boolean;
|
12380
12481
|
isPoint: boolean;
|
12482
|
+
isPreTGE: boolean;
|
12381
12483
|
isNative: boolean;
|
12382
12484
|
} & {
|
12383
12485
|
price?: number | null | undefined;
|
@@ -12515,6 +12617,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12515
12617
|
verified: boolean;
|
12516
12618
|
isTest: boolean;
|
12517
12619
|
isPoint: boolean;
|
12620
|
+
isPreTGE: boolean;
|
12518
12621
|
isNative: boolean;
|
12519
12622
|
} & {
|
12520
12623
|
price?: number | null | undefined;
|
@@ -12877,6 +12980,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12877
12980
|
verified: boolean;
|
12878
12981
|
isTest: boolean;
|
12879
12982
|
isPoint: boolean;
|
12983
|
+
isPreTGE: boolean;
|
12880
12984
|
isNative: boolean;
|
12881
12985
|
} & {
|
12882
12986
|
price?: number | null | undefined;
|
@@ -12892,8 +12996,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12892
12996
|
authorization: string;
|
12893
12997
|
};
|
12894
12998
|
query: {
|
12999
|
+
distributionChain?: number | undefined;
|
12895
13000
|
campaignId: string;
|
12896
|
-
distributionChain: number;
|
12897
13001
|
};
|
12898
13002
|
fetch?: RequestInit | undefined;
|
12899
13003
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -12933,6 +13037,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12933
13037
|
verified: boolean;
|
12934
13038
|
isTest: boolean;
|
12935
13039
|
isPoint: boolean;
|
13040
|
+
isPreTGE: boolean;
|
12936
13041
|
isNative: boolean;
|
12937
13042
|
} & {
|
12938
13043
|
price?: number | null | undefined;
|
@@ -13204,6 +13309,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13204
13309
|
verified: boolean;
|
13205
13310
|
isTest: boolean;
|
13206
13311
|
isPoint: boolean;
|
13312
|
+
isPreTGE: boolean;
|
13207
13313
|
isNative: boolean;
|
13208
13314
|
price?: number | null | undefined;
|
13209
13315
|
} | undefined;
|
@@ -13230,6 +13336,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13230
13336
|
verified: boolean;
|
13231
13337
|
isTest: boolean;
|
13232
13338
|
isPoint: boolean;
|
13339
|
+
isPreTGE: boolean;
|
13233
13340
|
isNative: boolean;
|
13234
13341
|
price?: number | null | undefined;
|
13235
13342
|
} | undefined;
|
@@ -13242,6 +13349,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13242
13349
|
verified?: boolean | undefined;
|
13243
13350
|
isTest?: boolean | undefined;
|
13244
13351
|
isPoint?: boolean | undefined;
|
13352
|
+
isPreTGE?: boolean | undefined;
|
13245
13353
|
}, options: {
|
13246
13354
|
headers: {
|
13247
13355
|
authorization: string;
|
@@ -13261,6 +13369,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13261
13369
|
verified: boolean;
|
13262
13370
|
isTest: boolean;
|
13263
13371
|
isPoint: boolean;
|
13372
|
+
isPreTGE: boolean;
|
13264
13373
|
isNative: boolean;
|
13265
13374
|
price: number | null;
|
13266
13375
|
};
|
@@ -13287,6 +13396,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13287
13396
|
verified: boolean;
|
13288
13397
|
isTest: boolean;
|
13289
13398
|
isPoint: boolean;
|
13399
|
+
isPreTGE: boolean;
|
13290
13400
|
isNative: boolean;
|
13291
13401
|
price: number | null;
|
13292
13402
|
}[];
|
@@ -13315,6 +13425,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13315
13425
|
verified: boolean;
|
13316
13426
|
isTest: boolean;
|
13317
13427
|
isPoint: boolean;
|
13428
|
+
isPreTGE: boolean;
|
13318
13429
|
isNative: boolean;
|
13319
13430
|
} & {
|
13320
13431
|
price?: number | null | undefined;
|
@@ -13355,6 +13466,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13355
13466
|
verified: boolean;
|
13356
13467
|
isTest: boolean;
|
13357
13468
|
isPoint: boolean;
|
13469
|
+
isPreTGE: boolean;
|
13358
13470
|
isNative: boolean;
|
13359
13471
|
} & {
|
13360
13472
|
price?: number | null | undefined;
|
@@ -13385,6 +13497,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13385
13497
|
verified: boolean;
|
13386
13498
|
isTest: boolean;
|
13387
13499
|
isPoint: boolean;
|
13500
|
+
isPreTGE: boolean;
|
13388
13501
|
isNative: boolean;
|
13389
13502
|
price: number | null;
|
13390
13503
|
};
|
@@ -13469,6 +13582,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13469
13582
|
verified: boolean;
|
13470
13583
|
isTest: boolean;
|
13471
13584
|
isPoint: boolean;
|
13585
|
+
isPreTGE: boolean;
|
13472
13586
|
isNative: boolean;
|
13473
13587
|
price: number | null;
|
13474
13588
|
};
|
@@ -14127,6 +14241,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14127
14241
|
verified: boolean;
|
14128
14242
|
isTest: boolean;
|
14129
14243
|
isPoint: boolean;
|
14244
|
+
isPreTGE: boolean;
|
14130
14245
|
isNative: boolean;
|
14131
14246
|
price: number | null;
|
14132
14247
|
};
|
@@ -14150,6 +14265,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14150
14265
|
verified: boolean;
|
14151
14266
|
isTest: boolean;
|
14152
14267
|
isPoint: boolean;
|
14268
|
+
isPreTGE: boolean;
|
14153
14269
|
isNative: boolean;
|
14154
14270
|
price: number | null;
|
14155
14271
|
}[];
|
@@ -14237,6 +14353,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14237
14353
|
verified: boolean;
|
14238
14354
|
isTest: boolean;
|
14239
14355
|
isPoint: boolean;
|
14356
|
+
isPreTGE: boolean;
|
14240
14357
|
isNative: boolean;
|
14241
14358
|
price: number | null;
|
14242
14359
|
};
|
@@ -14260,6 +14377,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14260
14377
|
verified: boolean;
|
14261
14378
|
isTest: boolean;
|
14262
14379
|
isPoint: boolean;
|
14380
|
+
isPreTGE: boolean;
|
14263
14381
|
isNative: boolean;
|
14264
14382
|
price: number | null;
|
14265
14383
|
}[];
|