@merkl/api 0.20.115 → 0.20.117

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.
Files changed (47) hide show
  1. package/dist/database/api/.generated/drizzle/schema.d.ts +17 -0
  2. package/dist/database/api/.generated/drizzle/schema.js +1 -0
  3. package/dist/database/api/.generated/drizzle/schema.ts +1 -0
  4. package/dist/database/api/.generated/edge.js +4 -3
  5. package/dist/database/api/.generated/index-browser.js +1 -0
  6. package/dist/database/api/.generated/index.d.ts +58 -1
  7. package/dist/database/api/.generated/index.js +4 -3
  8. package/dist/database/api/.generated/package.json +1 -1
  9. package/dist/database/api/.generated/schema.prisma +1 -0
  10. package/dist/database/api/.generated/wasm.js +1 -0
  11. package/dist/src/eden/index.d.ts +568 -18
  12. package/dist/src/engine/deprecated/dynamicData/implementations/ERC721.js +4 -2
  13. package/dist/src/engine/deprecated/dynamicData/implementations/ERCMultiToken.js +4 -2
  14. package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.js +4 -2
  15. package/dist/src/engine/deprecated/dynamicData/utils/getFixedApr.d.ts +0 -1
  16. package/dist/src/engine/deprecated/dynamicData/utils/getFixedApr.js +0 -8
  17. package/dist/src/engine/deprecated/erc20SubTypeProcessors/implementations/NoLinkVaultProcessor.js +1 -1
  18. package/dist/src/index.d.ts +190 -6
  19. package/dist/src/modules/v4/campaign/campaign.controller.d.ts +29 -1
  20. package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
  21. package/dist/src/modules/v4/campaign/campaign.repository.d.ts +4 -0
  22. package/dist/src/modules/v4/campaign/campaign.service.d.ts +37 -3
  23. package/dist/src/modules/v4/campaign/campaign.service.js +4 -2
  24. package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +52 -2
  25. package/dist/src/modules/v4/dynamicData/dynamicData.service.js +7 -7
  26. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +96 -3
  27. package/dist/src/modules/v4/opportunity/opportunity.controller.js +2 -0
  28. package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +10 -0
  29. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +39 -1
  30. package/dist/src/modules/v4/opportunity/opportunity.repository.js +1 -1
  31. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +135 -10
  32. package/dist/src/modules/v4/opportunity/opportunity.service.js +1 -1
  33. package/dist/src/modules/v4/reward/reward.model.d.ts +4 -0
  34. package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
  35. package/dist/src/modules/v4/reward/reward.service.d.ts +14 -0
  36. package/dist/src/modules/v4/router.d.ts +190 -6
  37. package/dist/src/modules/v4/token/token.controller.d.ts +9 -0
  38. package/dist/src/modules/v4/token/token.model.d.ts +3 -0
  39. package/dist/src/modules/v4/token/token.model.js +3 -0
  40. package/dist/src/modules/v4/token/token.repository.d.ts +4 -0
  41. package/dist/src/modules/v4/token/token.service.d.ts +13 -0
  42. package/dist/src/modules/v4/token/token.service.js +1 -0
  43. package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
  44. package/dist/src/utils/parseDistributionType.d.ts +1 -0
  45. package/dist/src/utils/parseDistributionType.js +16 -0
  46. package/dist/tsconfig.package.tsbuildinfo +1 -1
  47. package/package.json +1 -1
@@ -143,6 +143,30 @@ declare const eden: {
143
143
  fetch?: RequestInit | undefined;
144
144
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
145
145
  200: {
146
+ Tokens: {
147
+ symbol: string;
148
+ id: string;
149
+ name: string | null;
150
+ icon: string;
151
+ address: string;
152
+ chainId: number;
153
+ decimals: number;
154
+ displaySymbol: string;
155
+ verified: boolean;
156
+ isTest: boolean;
157
+ isPoint: boolean;
158
+ isPreTGE: boolean;
159
+ isNative: boolean;
160
+ price: number | null;
161
+ }[];
162
+ Protocols: {
163
+ id: string;
164
+ name: string;
165
+ url: string;
166
+ description: string;
167
+ tags: string[];
168
+ icon: string;
169
+ }[];
146
170
  id: string;
147
171
  name: string;
148
172
  type: string;
@@ -178,6 +202,7 @@ declare const eden: {
178
202
  verified: boolean;
179
203
  isTest: boolean;
180
204
  isPoint: boolean;
205
+ isPreTGE: boolean;
181
206
  isNative: boolean;
182
207
  } & {
183
208
  price?: number | null | undefined;
@@ -186,7 +211,7 @@ declare const eden: {
186
211
  depositUrl: string | undefined;
187
212
  explorerAddress: string | undefined;
188
213
  tags: string[];
189
- } | null;
214
+ };
190
215
  }>>;
191
216
  };
192
217
  post: (body: unknown, options: {
@@ -197,6 +222,30 @@ declare const eden: {
197
222
  fetch?: RequestInit | undefined;
198
223
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
199
224
  200: {
225
+ Tokens: {
226
+ symbol: string;
227
+ id: string;
228
+ name: string | null;
229
+ icon: string;
230
+ address: string;
231
+ chainId: number;
232
+ decimals: number;
233
+ displaySymbol: string;
234
+ verified: boolean;
235
+ isTest: boolean;
236
+ isPoint: boolean;
237
+ isPreTGE: boolean;
238
+ isNative: boolean;
239
+ price: number | null;
240
+ }[];
241
+ Protocols: {
242
+ id: string;
243
+ name: string;
244
+ url: string;
245
+ description: string;
246
+ tags: string[];
247
+ icon: string;
248
+ }[];
200
249
  id: string;
201
250
  name: string;
202
251
  type: string;
@@ -232,6 +281,7 @@ declare const eden: {
232
281
  verified: boolean;
233
282
  isTest: boolean;
234
283
  isPoint: boolean;
284
+ isPreTGE: boolean;
235
285
  isNative: boolean;
236
286
  } & {
237
287
  price?: number | null | undefined;
@@ -240,7 +290,7 @@ declare const eden: {
240
290
  depositUrl: string | undefined;
241
291
  explorerAddress: string | undefined;
242
292
  tags: string[];
243
- } | null;
293
+ };
244
294
  }>>;
245
295
  get: (options: {
246
296
  headers?: Record<string, unknown> | undefined;
@@ -301,6 +351,8 @@ declare const eden: {
301
351
  decimals: number;
302
352
  verified: boolean;
303
353
  isTest: boolean;
354
+ isPoint: boolean;
355
+ isPreTGE: boolean;
304
356
  };
305
357
  value: number;
306
358
  campaignId: string;
@@ -323,6 +375,8 @@ declare const eden: {
323
375
  decimals: number;
324
376
  verified: boolean;
325
377
  isTest: boolean;
378
+ isPoint: boolean;
379
+ isPreTGE: boolean;
326
380
  }[];
327
381
  tags: string[];
328
382
  identifier: string;
@@ -408,6 +462,8 @@ declare const eden: {
408
462
  decimals: number;
409
463
  verified: boolean;
410
464
  isTest: boolean;
465
+ isPoint: boolean;
466
+ isPreTGE: boolean;
411
467
  };
412
468
  value: number;
413
469
  campaignId: string;
@@ -430,6 +486,8 @@ declare const eden: {
430
486
  decimals: number;
431
487
  verified: boolean;
432
488
  isTest: boolean;
489
+ isPoint: boolean;
490
+ isPreTGE: boolean;
433
491
  }[];
434
492
  tags: string[];
435
493
  identifier: string;
@@ -493,6 +551,8 @@ declare const eden: {
493
551
  decimals: number;
494
552
  verified: boolean;
495
553
  isTest: boolean;
554
+ isPoint: boolean;
555
+ isPreTGE: boolean;
496
556
  };
497
557
  }[];
498
558
  };
@@ -533,6 +593,30 @@ declare const eden: {
533
593
  fetch?: RequestInit | undefined;
534
594
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
535
595
  200: {
596
+ Tokens: {
597
+ symbol: string;
598
+ id: string;
599
+ name: string | null;
600
+ icon: string;
601
+ address: string;
602
+ chainId: number;
603
+ decimals: number;
604
+ displaySymbol: string;
605
+ verified: boolean;
606
+ isTest: boolean;
607
+ isPoint: boolean;
608
+ isPreTGE: boolean;
609
+ isNative: boolean;
610
+ price: number | null;
611
+ }[];
612
+ Protocols: {
613
+ id: string;
614
+ name: string;
615
+ url: string;
616
+ description: string;
617
+ tags: string[];
618
+ icon: string;
619
+ }[];
536
620
  id: string;
537
621
  name: string;
538
622
  type: string;
@@ -549,7 +633,7 @@ declare const eden: {
549
633
  apr: number;
550
634
  dailyRewards: number;
551
635
  lastCampaignCreatedAt: Date;
552
- } | null;
636
+ };
553
637
  }>>;
554
638
  get: (options: {
555
639
  headers?: Record<string, unknown> | undefined;
@@ -624,6 +708,7 @@ declare const eden: {
624
708
  verified: boolean;
625
709
  isTest: boolean;
626
710
  isPoint: boolean;
711
+ isPreTGE: boolean;
627
712
  isNative: boolean;
628
713
  price: number | null;
629
714
  };
@@ -651,6 +736,7 @@ declare const eden: {
651
736
  verified: boolean;
652
737
  isTest: boolean;
653
738
  isPoint: boolean;
739
+ isPreTGE: boolean;
654
740
  isNative: boolean;
655
741
  } & {
656
742
  price?: number | null | undefined;
@@ -719,6 +805,7 @@ declare const eden: {
719
805
  verified: boolean;
720
806
  isTest: boolean;
721
807
  isPoint: boolean;
808
+ isPreTGE: boolean;
722
809
  isNative: boolean;
723
810
  } & {
724
811
  price?: number | null | undefined;
@@ -859,6 +946,8 @@ declare const eden: {
859
946
  decimals: number;
860
947
  verified: boolean;
861
948
  isTest: boolean;
949
+ isPoint: boolean;
950
+ isPreTGE: boolean;
862
951
  };
863
952
  value: number;
864
953
  campaignId: string;
@@ -881,6 +970,8 @@ declare const eden: {
881
970
  decimals: number;
882
971
  verified: boolean;
883
972
  isTest: boolean;
973
+ isPoint: boolean;
974
+ isPreTGE: boolean;
884
975
  }[];
885
976
  tags: string[];
886
977
  identifier: string;
@@ -944,6 +1035,8 @@ declare const eden: {
944
1035
  decimals: number;
945
1036
  verified: boolean;
946
1037
  isTest: boolean;
1038
+ isPoint: boolean;
1039
+ isPreTGE: boolean;
947
1040
  };
948
1041
  }[];
949
1042
  }[];
@@ -1094,6 +1187,7 @@ declare const eden: {
1094
1187
  verified: boolean;
1095
1188
  isTest: boolean;
1096
1189
  isPoint: boolean;
1190
+ isPreTGE: boolean;
1097
1191
  isNative: boolean;
1098
1192
  } & {
1099
1193
  price?: number | null | undefined;
@@ -1185,6 +1279,30 @@ declare const eden: {
1185
1279
  fetch?: RequestInit | undefined;
1186
1280
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
1187
1281
  200: {
1282
+ Tokens: {
1283
+ symbol: string;
1284
+ id: string;
1285
+ name: string | null;
1286
+ icon: string;
1287
+ address: string;
1288
+ chainId: number;
1289
+ decimals: number;
1290
+ displaySymbol: string;
1291
+ verified: boolean;
1292
+ isTest: boolean;
1293
+ isPoint: boolean;
1294
+ isPreTGE: boolean;
1295
+ isNative: boolean;
1296
+ price: number | null;
1297
+ }[];
1298
+ Protocols: {
1299
+ id: string;
1300
+ name: string;
1301
+ url: string;
1302
+ description: string;
1303
+ tags: string[];
1304
+ icon: string;
1305
+ }[];
1188
1306
  id: string;
1189
1307
  name: string;
1190
1308
  type: string;
@@ -1220,6 +1338,7 @@ declare const eden: {
1220
1338
  verified: boolean;
1221
1339
  isTest: boolean;
1222
1340
  isPoint: boolean;
1341
+ isPreTGE: boolean;
1223
1342
  isNative: boolean;
1224
1343
  } & {
1225
1344
  price?: number | null | undefined;
@@ -1228,7 +1347,7 @@ declare const eden: {
1228
1347
  depositUrl: string | undefined;
1229
1348
  explorerAddress: string | undefined;
1230
1349
  tags: string[];
1231
- } | null | undefined;
1350
+ } | undefined;
1232
1351
  }>>;
1233
1352
  };
1234
1353
  opportunity: {
@@ -1357,6 +1476,7 @@ declare const eden: {
1357
1476
  verified: boolean;
1358
1477
  isTest: boolean;
1359
1478
  isPoint: boolean;
1479
+ isPreTGE: boolean;
1360
1480
  isNative: boolean;
1361
1481
  } & {
1362
1482
  price?: number | null | undefined;
@@ -1684,6 +1804,30 @@ declare const eden: {
1684
1804
  fetch?: RequestInit | undefined;
1685
1805
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
1686
1806
  200: {
1807
+ Tokens: {
1808
+ symbol: string;
1809
+ id: string;
1810
+ name: string | null;
1811
+ icon: string;
1812
+ address: string;
1813
+ chainId: number;
1814
+ decimals: number;
1815
+ displaySymbol: string;
1816
+ verified: boolean;
1817
+ isTest: boolean;
1818
+ isPoint: boolean;
1819
+ isPreTGE: boolean;
1820
+ isNative: boolean;
1821
+ price: number | null;
1822
+ }[];
1823
+ Protocols: {
1824
+ id: string;
1825
+ name: string;
1826
+ url: string;
1827
+ description: string;
1828
+ tags: string[];
1829
+ icon: string;
1830
+ }[];
1687
1831
  id: string;
1688
1832
  name: string;
1689
1833
  type: string;
@@ -1719,6 +1863,7 @@ declare const eden: {
1719
1863
  verified: boolean;
1720
1864
  isTest: boolean;
1721
1865
  isPoint: boolean;
1866
+ isPreTGE: boolean;
1722
1867
  isNative: boolean;
1723
1868
  } & {
1724
1869
  price?: number | null | undefined;
@@ -1727,7 +1872,7 @@ declare const eden: {
1727
1872
  depositUrl: string | undefined;
1728
1873
  explorerAddress: string | undefined;
1729
1874
  tags: string[];
1730
- } | null | undefined;
1875
+ } | undefined;
1731
1876
  }>>;
1732
1877
  get: (options: {
1733
1878
  headers: {
@@ -1740,6 +1885,30 @@ declare const eden: {
1740
1885
  fetch?: RequestInit | undefined;
1741
1886
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
1742
1887
  200: {
1888
+ Tokens: {
1889
+ symbol: string;
1890
+ id: string;
1891
+ name: string | null;
1892
+ icon: string;
1893
+ address: string;
1894
+ chainId: number;
1895
+ decimals: number;
1896
+ displaySymbol: string;
1897
+ verified: boolean;
1898
+ isTest: boolean;
1899
+ isPoint: boolean;
1900
+ isPreTGE: boolean;
1901
+ isNative: boolean;
1902
+ price: number | null;
1903
+ }[];
1904
+ Protocols: {
1905
+ id: string;
1906
+ name: string;
1907
+ url: string;
1908
+ description: string;
1909
+ tags: string[];
1910
+ icon: string;
1911
+ }[];
1743
1912
  id: string;
1744
1913
  name: string;
1745
1914
  type: string;
@@ -1775,6 +1944,7 @@ declare const eden: {
1775
1944
  verified: boolean;
1776
1945
  isTest: boolean;
1777
1946
  isPoint: boolean;
1947
+ isPreTGE: boolean;
1778
1948
  isNative: boolean;
1779
1949
  } & {
1780
1950
  price?: number | null | undefined;
@@ -1783,7 +1953,7 @@ declare const eden: {
1783
1953
  depositUrl: string | undefined;
1784
1954
  explorerAddress: string | undefined;
1785
1955
  tags: string[];
1786
- } | null | undefined;
1956
+ } | undefined;
1787
1957
  }>>;
1788
1958
  };
1789
1959
  };
@@ -2046,6 +2216,7 @@ declare const eden: {
2046
2216
  verified: boolean;
2047
2217
  isTest: boolean;
2048
2218
  isPoint: boolean;
2219
+ isPreTGE: boolean;
2049
2220
  isNative: boolean;
2050
2221
  price?: number | null | undefined;
2051
2222
  } | undefined;
@@ -2072,6 +2243,7 @@ declare const eden: {
2072
2243
  verified: boolean;
2073
2244
  isTest: boolean;
2074
2245
  isPoint: boolean;
2246
+ isPreTGE: boolean;
2075
2247
  isNative: boolean;
2076
2248
  price?: number | null | undefined;
2077
2249
  } | undefined;
@@ -2084,6 +2256,7 @@ declare const eden: {
2084
2256
  verified?: boolean | undefined;
2085
2257
  isTest?: boolean | undefined;
2086
2258
  isPoint?: boolean | undefined;
2259
+ isPreTGE?: boolean | undefined;
2087
2260
  }, options: {
2088
2261
  headers: {
2089
2262
  authorization: string;
@@ -2103,6 +2276,7 @@ declare const eden: {
2103
2276
  verified: boolean;
2104
2277
  isTest: boolean;
2105
2278
  isPoint: boolean;
2279
+ isPreTGE: boolean;
2106
2280
  isNative: boolean;
2107
2281
  price: number | null;
2108
2282
  };
@@ -2129,6 +2303,7 @@ declare const eden: {
2129
2303
  verified: boolean;
2130
2304
  isTest: boolean;
2131
2305
  isPoint: boolean;
2306
+ isPreTGE: boolean;
2132
2307
  isNative: boolean;
2133
2308
  price: number | null;
2134
2309
  }[];
@@ -2157,6 +2332,7 @@ declare const eden: {
2157
2332
  verified: boolean;
2158
2333
  isTest: boolean;
2159
2334
  isPoint: boolean;
2335
+ isPreTGE: boolean;
2160
2336
  isNative: boolean;
2161
2337
  } & {
2162
2338
  price?: number | null | undefined;
@@ -2197,6 +2373,7 @@ declare const eden: {
2197
2373
  verified: boolean;
2198
2374
  isTest: boolean;
2199
2375
  isPoint: boolean;
2376
+ isPreTGE: boolean;
2200
2377
  isNative: boolean;
2201
2378
  } & {
2202
2379
  price?: number | null | undefined;
@@ -2227,6 +2404,7 @@ declare const eden: {
2227
2404
  verified: boolean;
2228
2405
  isTest: boolean;
2229
2406
  isPoint: boolean;
2407
+ isPreTGE: boolean;
2230
2408
  isNative: boolean;
2231
2409
  price: number | null;
2232
2410
  };
@@ -2311,6 +2489,7 @@ declare const eden: {
2311
2489
  verified: boolean;
2312
2490
  isTest: boolean;
2313
2491
  isPoint: boolean;
2492
+ isPreTGE: boolean;
2314
2493
  isNative: boolean;
2315
2494
  price: number | null;
2316
2495
  };
@@ -2969,6 +3148,7 @@ declare const eden: {
2969
3148
  verified: boolean;
2970
3149
  isTest: boolean;
2971
3150
  isPoint: boolean;
3151
+ isPreTGE: boolean;
2972
3152
  isNative: boolean;
2973
3153
  price: number | null;
2974
3154
  };
@@ -2992,6 +3172,7 @@ declare const eden: {
2992
3172
  verified: boolean;
2993
3173
  isTest: boolean;
2994
3174
  isPoint: boolean;
3175
+ isPreTGE: boolean;
2995
3176
  isNative: boolean;
2996
3177
  price: number | null;
2997
3178
  }[];
@@ -3079,6 +3260,7 @@ declare const eden: {
3079
3260
  verified: boolean;
3080
3261
  isTest: boolean;
3081
3262
  isPoint: boolean;
3263
+ isPreTGE: boolean;
3082
3264
  isNative: boolean;
3083
3265
  price: number | null;
3084
3266
  };
@@ -3102,6 +3284,7 @@ declare const eden: {
3102
3284
  verified: boolean;
3103
3285
  isTest: boolean;
3104
3286
  isPoint: boolean;
3287
+ isPreTGE: boolean;
3105
3288
  isNative: boolean;
3106
3289
  price: number | null;
3107
3290
  }[];
@@ -5150,6 +5333,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5150
5333
  };
5151
5334
  response: {
5152
5335
  200: {
5336
+ Tokens: {
5337
+ symbol: string;
5338
+ id: string;
5339
+ name: string | null;
5340
+ icon: string;
5341
+ address: string;
5342
+ chainId: number;
5343
+ decimals: number;
5344
+ displaySymbol: string;
5345
+ verified: boolean;
5346
+ isTest: boolean;
5347
+ isPoint: boolean;
5348
+ isPreTGE: boolean;
5349
+ isNative: boolean;
5350
+ price: number | null;
5351
+ }[];
5352
+ Protocols: {
5353
+ id: string;
5354
+ name: string;
5355
+ url: string;
5356
+ description: string;
5357
+ tags: string[];
5358
+ icon: string;
5359
+ }[];
5153
5360
  id: string;
5154
5361
  name: string;
5155
5362
  type: string;
@@ -5166,7 +5373,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5166
5373
  apr: number;
5167
5374
  dailyRewards: number;
5168
5375
  lastCampaignCreatedAt: Date;
5169
- } | null;
5376
+ };
5170
5377
  };
5171
5378
  };
5172
5379
  };
@@ -5228,6 +5435,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5228
5435
  };
5229
5436
  response: {
5230
5437
  200: {
5438
+ Tokens: {
5439
+ symbol: string;
5440
+ id: string;
5441
+ name: string | null;
5442
+ icon: string;
5443
+ address: string;
5444
+ chainId: number;
5445
+ decimals: number;
5446
+ displaySymbol: string;
5447
+ verified: boolean;
5448
+ isTest: boolean;
5449
+ isPoint: boolean;
5450
+ isPreTGE: boolean;
5451
+ isNative: boolean;
5452
+ price: number | null;
5453
+ }[];
5454
+ Protocols: {
5455
+ id: string;
5456
+ name: string;
5457
+ url: string;
5458
+ description: string;
5459
+ tags: string[];
5460
+ icon: string;
5461
+ }[];
5231
5462
  id: string;
5232
5463
  name: string;
5233
5464
  type: string;
@@ -5263,6 +5494,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5263
5494
  verified: boolean;
5264
5495
  isTest: boolean;
5265
5496
  isPoint: boolean;
5497
+ isPreTGE: boolean;
5266
5498
  isNative: boolean;
5267
5499
  } & {
5268
5500
  price?: number | null | undefined;
@@ -5271,7 +5503,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5271
5503
  depositUrl: string | undefined;
5272
5504
  explorerAddress: string | undefined;
5273
5505
  tags: string[];
5274
- } | null;
5506
+ };
5275
5507
  };
5276
5508
  };
5277
5509
  };
@@ -5292,6 +5524,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5292
5524
  };
5293
5525
  response: {
5294
5526
  200: {
5527
+ Tokens: {
5528
+ symbol: string;
5529
+ id: string;
5530
+ name: string | null;
5531
+ icon: string;
5532
+ address: string;
5533
+ chainId: number;
5534
+ decimals: number;
5535
+ displaySymbol: string;
5536
+ verified: boolean;
5537
+ isTest: boolean;
5538
+ isPoint: boolean;
5539
+ isPreTGE: boolean;
5540
+ isNative: boolean;
5541
+ price: number | null;
5542
+ }[];
5543
+ Protocols: {
5544
+ id: string;
5545
+ name: string;
5546
+ url: string;
5547
+ description: string;
5548
+ tags: string[];
5549
+ icon: string;
5550
+ }[];
5295
5551
  id: string;
5296
5552
  name: string;
5297
5553
  type: string;
@@ -5327,6 +5583,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5327
5583
  verified: boolean;
5328
5584
  isTest: boolean;
5329
5585
  isPoint: boolean;
5586
+ isPreTGE: boolean;
5330
5587
  isNative: boolean;
5331
5588
  } & {
5332
5589
  price?: number | null | undefined;
@@ -5335,7 +5592,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5335
5592
  depositUrl: string | undefined;
5336
5593
  explorerAddress: string | undefined;
5337
5594
  tags: string[];
5338
- } | null;
5595
+ };
5339
5596
  };
5340
5597
  };
5341
5598
  };
@@ -5417,6 +5674,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5417
5674
  verified: boolean;
5418
5675
  isTest: boolean;
5419
5676
  isPoint: boolean;
5677
+ isPreTGE: boolean;
5420
5678
  isNative: boolean;
5421
5679
  price: number | null;
5422
5680
  };
@@ -5444,6 +5702,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5444
5702
  verified: boolean;
5445
5703
  isTest: boolean;
5446
5704
  isPoint: boolean;
5705
+ isPreTGE: boolean;
5447
5706
  isNative: boolean;
5448
5707
  } & {
5449
5708
  price?: number | null | undefined;
@@ -5512,6 +5771,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5512
5771
  verified: boolean;
5513
5772
  isTest: boolean;
5514
5773
  isPoint: boolean;
5774
+ isPreTGE: boolean;
5515
5775
  isNative: boolean;
5516
5776
  } & {
5517
5777
  price?: number | null | undefined;
@@ -5644,6 +5904,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5644
5904
  decimals: number;
5645
5905
  verified: boolean;
5646
5906
  isTest: boolean;
5907
+ isPoint: boolean;
5908
+ isPreTGE: boolean;
5647
5909
  };
5648
5910
  value: number;
5649
5911
  campaignId: string;
@@ -5666,6 +5928,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5666
5928
  decimals: number;
5667
5929
  verified: boolean;
5668
5930
  isTest: boolean;
5931
+ isPoint: boolean;
5932
+ isPreTGE: boolean;
5669
5933
  }[];
5670
5934
  tags: string[];
5671
5935
  identifier: string;
@@ -5777,6 +6041,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5777
6041
  decimals: number;
5778
6042
  verified: boolean;
5779
6043
  isTest: boolean;
6044
+ isPoint: boolean;
6045
+ isPreTGE: boolean;
5780
6046
  };
5781
6047
  value: number;
5782
6048
  campaignId: string;
@@ -5799,6 +6065,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5799
6065
  decimals: number;
5800
6066
  verified: boolean;
5801
6067
  isTest: boolean;
6068
+ isPoint: boolean;
6069
+ isPreTGE: boolean;
5802
6070
  }[];
5803
6071
  tags: string[];
5804
6072
  identifier: string;
@@ -5862,6 +6130,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5862
6130
  decimals: number;
5863
6131
  verified: boolean;
5864
6132
  isTest: boolean;
6133
+ isPoint: boolean;
6134
+ isPreTGE: boolean;
5865
6135
  };
5866
6136
  }[];
5867
6137
  }[];
@@ -5944,6 +6214,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5944
6214
  decimals: number;
5945
6215
  verified: boolean;
5946
6216
  isTest: boolean;
6217
+ isPoint: boolean;
6218
+ isPreTGE: boolean;
5947
6219
  };
5948
6220
  value: number;
5949
6221
  campaignId: string;
@@ -5966,6 +6238,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
5966
6238
  decimals: number;
5967
6239
  verified: boolean;
5968
6240
  isTest: boolean;
6241
+ isPoint: boolean;
6242
+ isPreTGE: boolean;
5969
6243
  }[];
5970
6244
  tags: string[];
5971
6245
  identifier: string;
@@ -6029,6 +6303,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6029
6303
  decimals: number;
6030
6304
  verified: boolean;
6031
6305
  isTest: boolean;
6306
+ isPoint: boolean;
6307
+ isPreTGE: boolean;
6032
6308
  };
6033
6309
  }[];
6034
6310
  };
@@ -6205,6 +6481,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6205
6481
  };
6206
6482
  response: {
6207
6483
  200: {
6484
+ Tokens: {
6485
+ symbol: string;
6486
+ id: string;
6487
+ name: string | null;
6488
+ icon: string;
6489
+ address: string;
6490
+ chainId: number;
6491
+ decimals: number;
6492
+ displaySymbol: string;
6493
+ verified: boolean;
6494
+ isTest: boolean;
6495
+ isPoint: boolean;
6496
+ isPreTGE: boolean;
6497
+ isNative: boolean;
6498
+ price: number | null;
6499
+ }[];
6500
+ Protocols: {
6501
+ id: string;
6502
+ name: string;
6503
+ url: string;
6504
+ description: string;
6505
+ tags: string[];
6506
+ icon: string;
6507
+ }[];
6208
6508
  id: string;
6209
6509
  name: string;
6210
6510
  type: string;
@@ -6240,6 +6540,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6240
6540
  verified: boolean;
6241
6541
  isTest: boolean;
6242
6542
  isPoint: boolean;
6543
+ isPreTGE: boolean;
6243
6544
  isNative: boolean;
6244
6545
  } & {
6245
6546
  price?: number | null | undefined;
@@ -6248,7 +6549,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6248
6549
  depositUrl: string | undefined;
6249
6550
  explorerAddress: string | undefined;
6250
6551
  tags: string[];
6251
- } | null | undefined;
6552
+ } | undefined;
6252
6553
  };
6253
6554
  };
6254
6555
  };
@@ -6410,6 +6711,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6410
6711
  verified: boolean;
6411
6712
  isTest: boolean;
6412
6713
  isPoint: boolean;
6714
+ isPreTGE: boolean;
6413
6715
  isNative: boolean;
6414
6716
  } & {
6415
6717
  price?: number | null | undefined;
@@ -6496,6 +6798,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6496
6798
  verified: boolean;
6497
6799
  isTest: boolean;
6498
6800
  isPoint: boolean;
6801
+ isPreTGE: boolean;
6499
6802
  isNative: boolean;
6500
6803
  } & {
6501
6804
  price?: number | null | undefined;
@@ -6683,6 +6986,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
6683
6986
  verified: boolean;
6684
6987
  isTest: boolean;
6685
6988
  isPoint: boolean;
6989
+ isPreTGE: boolean;
6686
6990
  isNative: boolean;
6687
6991
  } & {
6688
6992
  price?: number | null | undefined;
@@ -7044,6 +7348,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7044
7348
  };
7045
7349
  response: {
7046
7350
  200: {
7351
+ Tokens: {
7352
+ symbol: string;
7353
+ id: string;
7354
+ name: string | null;
7355
+ icon: string;
7356
+ address: string;
7357
+ chainId: number;
7358
+ decimals: number;
7359
+ displaySymbol: string;
7360
+ verified: boolean;
7361
+ isTest: boolean;
7362
+ isPoint: boolean;
7363
+ isPreTGE: boolean;
7364
+ isNative: boolean;
7365
+ price: number | null;
7366
+ }[];
7367
+ Protocols: {
7368
+ id: string;
7369
+ name: string;
7370
+ url: string;
7371
+ description: string;
7372
+ tags: string[];
7373
+ icon: string;
7374
+ }[];
7047
7375
  id: string;
7048
7376
  name: string;
7049
7377
  type: string;
@@ -7079,6 +7407,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7079
7407
  verified: boolean;
7080
7408
  isTest: boolean;
7081
7409
  isPoint: boolean;
7410
+ isPreTGE: boolean;
7082
7411
  isNative: boolean;
7083
7412
  } & {
7084
7413
  price?: number | null | undefined;
@@ -7087,7 +7416,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7087
7416
  depositUrl: string | undefined;
7088
7417
  explorerAddress: string | undefined;
7089
7418
  tags: string[];
7090
- } | null | undefined;
7419
+ } | undefined;
7091
7420
  };
7092
7421
  };
7093
7422
  };
@@ -7107,6 +7436,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7107
7436
  };
7108
7437
  response: {
7109
7438
  200: {
7439
+ Tokens: {
7440
+ symbol: string;
7441
+ id: string;
7442
+ name: string | null;
7443
+ icon: string;
7444
+ address: string;
7445
+ chainId: number;
7446
+ decimals: number;
7447
+ displaySymbol: string;
7448
+ verified: boolean;
7449
+ isTest: boolean;
7450
+ isPoint: boolean;
7451
+ isPreTGE: boolean;
7452
+ isNative: boolean;
7453
+ price: number | null;
7454
+ }[];
7455
+ Protocols: {
7456
+ id: string;
7457
+ name: string;
7458
+ url: string;
7459
+ description: string;
7460
+ tags: string[];
7461
+ icon: string;
7462
+ }[];
7110
7463
  id: string;
7111
7464
  name: string;
7112
7465
  type: string;
@@ -7142,6 +7495,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7142
7495
  verified: boolean;
7143
7496
  isTest: boolean;
7144
7497
  isPoint: boolean;
7498
+ isPreTGE: boolean;
7145
7499
  isNative: boolean;
7146
7500
  } & {
7147
7501
  price?: number | null | undefined;
@@ -7150,7 +7504,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7150
7504
  depositUrl: string | undefined;
7151
7505
  explorerAddress: string | undefined;
7152
7506
  tags: string[];
7153
- } | null | undefined;
7507
+ } | undefined;
7154
7508
  };
7155
7509
  };
7156
7510
  };
@@ -7413,6 +7767,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7413
7767
  verified: boolean;
7414
7768
  isTest: boolean;
7415
7769
  isPoint: boolean;
7770
+ isPreTGE: boolean;
7416
7771
  isNative: boolean;
7417
7772
  price?: number | null | undefined;
7418
7773
  } | undefined;
@@ -7446,6 +7801,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7446
7801
  verified: boolean;
7447
7802
  isTest: boolean;
7448
7803
  isPoint: boolean;
7804
+ isPreTGE: boolean;
7449
7805
  isNative: boolean;
7450
7806
  price?: number | null | undefined;
7451
7807
  } | undefined;
@@ -7479,6 +7835,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7479
7835
  verified: boolean;
7480
7836
  isTest: boolean;
7481
7837
  isPoint: boolean;
7838
+ isPreTGE: boolean;
7482
7839
  isNative: boolean;
7483
7840
  price: number | null;
7484
7841
  }[];
@@ -7511,6 +7868,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7511
7868
  verified: boolean;
7512
7869
  isTest: boolean;
7513
7870
  isPoint: boolean;
7871
+ isPreTGE: boolean;
7514
7872
  isNative: boolean;
7515
7873
  } & {
7516
7874
  price?: number | null | undefined;
@@ -7554,6 +7912,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7554
7912
  verified: boolean;
7555
7913
  isTest: boolean;
7556
7914
  isPoint: boolean;
7915
+ isPreTGE: boolean;
7557
7916
  isNative: boolean;
7558
7917
  } & {
7559
7918
  price?: number | null | undefined;
@@ -7616,6 +7975,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7616
7975
  verified: boolean;
7617
7976
  isTest: boolean;
7618
7977
  isPoint: boolean;
7978
+ isPreTGE: boolean;
7619
7979
  isNative: boolean;
7620
7980
  price: number | null;
7621
7981
  };
@@ -7632,6 +7992,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7632
7992
  verified?: boolean | undefined;
7633
7993
  isTest?: boolean | undefined;
7634
7994
  isPoint?: boolean | undefined;
7995
+ isPreTGE?: boolean | undefined;
7635
7996
  };
7636
7997
  params: {
7637
7998
  id: string;
@@ -7653,6 +8014,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7653
8014
  verified: boolean;
7654
8015
  isTest: boolean;
7655
8016
  isPoint: boolean;
8017
+ isPreTGE: boolean;
7656
8018
  isNative: boolean;
7657
8019
  price: number | null;
7658
8020
  };
@@ -7716,6 +8078,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7716
8078
  verified: boolean;
7717
8079
  isTest: boolean;
7718
8080
  isPoint: boolean;
8081
+ isPreTGE: boolean;
7719
8082
  isNative: boolean;
7720
8083
  price: number | null;
7721
8084
  };
@@ -8652,6 +9015,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8652
9015
  verified: boolean;
8653
9016
  isTest: boolean;
8654
9017
  isPoint: boolean;
9018
+ isPreTGE: boolean;
8655
9019
  isNative: boolean;
8656
9020
  price: number | null;
8657
9021
  };
@@ -8675,6 +9039,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8675
9039
  verified: boolean;
8676
9040
  isTest: boolean;
8677
9041
  isPoint: boolean;
9042
+ isPreTGE: boolean;
8678
9043
  isNative: boolean;
8679
9044
  price: number | null;
8680
9045
  }[];
@@ -8773,6 +9138,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8773
9138
  verified: boolean;
8774
9139
  isTest: boolean;
8775
9140
  isPoint: boolean;
9141
+ isPreTGE: boolean;
8776
9142
  isNative: boolean;
8777
9143
  price: number | null;
8778
9144
  };
@@ -8796,6 +9162,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8796
9162
  verified: boolean;
8797
9163
  isTest: boolean;
8798
9164
  isPoint: boolean;
9165
+ isPreTGE: boolean;
8799
9166
  isNative: boolean;
8800
9167
  price: number | null;
8801
9168
  }[];
@@ -11301,6 +11668,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11301
11668
  fetch?: RequestInit | undefined;
11302
11669
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
11303
11670
  200: {
11671
+ Tokens: {
11672
+ symbol: string;
11673
+ id: string;
11674
+ name: string | null;
11675
+ icon: string;
11676
+ address: string;
11677
+ chainId: number;
11678
+ decimals: number;
11679
+ displaySymbol: string;
11680
+ verified: boolean;
11681
+ isTest: boolean;
11682
+ isPoint: boolean;
11683
+ isPreTGE: boolean;
11684
+ isNative: boolean;
11685
+ price: number | null;
11686
+ }[];
11687
+ Protocols: {
11688
+ id: string;
11689
+ name: string;
11690
+ url: string;
11691
+ description: string;
11692
+ tags: string[];
11693
+ icon: string;
11694
+ }[];
11304
11695
  id: string;
11305
11696
  name: string;
11306
11697
  type: string;
@@ -11336,6 +11727,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11336
11727
  verified: boolean;
11337
11728
  isTest: boolean;
11338
11729
  isPoint: boolean;
11730
+ isPreTGE: boolean;
11339
11731
  isNative: boolean;
11340
11732
  } & {
11341
11733
  price?: number | null | undefined;
@@ -11344,7 +11736,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11344
11736
  depositUrl: string | undefined;
11345
11737
  explorerAddress: string | undefined;
11346
11738
  tags: string[];
11347
- } | null;
11739
+ };
11348
11740
  }>>;
11349
11741
  };
11350
11742
  post: (body: unknown, options: {
@@ -11355,6 +11747,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11355
11747
  fetch?: RequestInit | undefined;
11356
11748
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
11357
11749
  200: {
11750
+ Tokens: {
11751
+ symbol: string;
11752
+ id: string;
11753
+ name: string | null;
11754
+ icon: string;
11755
+ address: string;
11756
+ chainId: number;
11757
+ decimals: number;
11758
+ displaySymbol: string;
11759
+ verified: boolean;
11760
+ isTest: boolean;
11761
+ isPoint: boolean;
11762
+ isPreTGE: boolean;
11763
+ isNative: boolean;
11764
+ price: number | null;
11765
+ }[];
11766
+ Protocols: {
11767
+ id: string;
11768
+ name: string;
11769
+ url: string;
11770
+ description: string;
11771
+ tags: string[];
11772
+ icon: string;
11773
+ }[];
11358
11774
  id: string;
11359
11775
  name: string;
11360
11776
  type: string;
@@ -11390,6 +11806,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11390
11806
  verified: boolean;
11391
11807
  isTest: boolean;
11392
11808
  isPoint: boolean;
11809
+ isPreTGE: boolean;
11393
11810
  isNative: boolean;
11394
11811
  } & {
11395
11812
  price?: number | null | undefined;
@@ -11398,7 +11815,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11398
11815
  depositUrl: string | undefined;
11399
11816
  explorerAddress: string | undefined;
11400
11817
  tags: string[];
11401
- } | null;
11818
+ };
11402
11819
  }>>;
11403
11820
  get: (options: {
11404
11821
  headers?: Record<string, unknown> | undefined;
@@ -11459,6 +11876,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11459
11876
  decimals: number;
11460
11877
  verified: boolean;
11461
11878
  isTest: boolean;
11879
+ isPoint: boolean;
11880
+ isPreTGE: boolean;
11462
11881
  };
11463
11882
  value: number;
11464
11883
  campaignId: string;
@@ -11481,6 +11900,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11481
11900
  decimals: number;
11482
11901
  verified: boolean;
11483
11902
  isTest: boolean;
11903
+ isPoint: boolean;
11904
+ isPreTGE: boolean;
11484
11905
  }[];
11485
11906
  tags: string[];
11486
11907
  identifier: string;
@@ -11566,6 +11987,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11566
11987
  decimals: number;
11567
11988
  verified: boolean;
11568
11989
  isTest: boolean;
11990
+ isPoint: boolean;
11991
+ isPreTGE: boolean;
11569
11992
  };
11570
11993
  value: number;
11571
11994
  campaignId: string;
@@ -11588,6 +12011,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11588
12011
  decimals: number;
11589
12012
  verified: boolean;
11590
12013
  isTest: boolean;
12014
+ isPoint: boolean;
12015
+ isPreTGE: boolean;
11591
12016
  }[];
11592
12017
  tags: string[];
11593
12018
  identifier: string;
@@ -11651,6 +12076,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11651
12076
  decimals: number;
11652
12077
  verified: boolean;
11653
12078
  isTest: boolean;
12079
+ isPoint: boolean;
12080
+ isPreTGE: boolean;
11654
12081
  };
11655
12082
  }[];
11656
12083
  };
@@ -11691,6 +12118,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11691
12118
  fetch?: RequestInit | undefined;
11692
12119
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
11693
12120
  200: {
12121
+ Tokens: {
12122
+ symbol: string;
12123
+ id: string;
12124
+ name: string | null;
12125
+ icon: string;
12126
+ address: string;
12127
+ chainId: number;
12128
+ decimals: number;
12129
+ displaySymbol: string;
12130
+ verified: boolean;
12131
+ isTest: boolean;
12132
+ isPoint: boolean;
12133
+ isPreTGE: boolean;
12134
+ isNative: boolean;
12135
+ price: number | null;
12136
+ }[];
12137
+ Protocols: {
12138
+ id: string;
12139
+ name: string;
12140
+ url: string;
12141
+ description: string;
12142
+ tags: string[];
12143
+ icon: string;
12144
+ }[];
11694
12145
  id: string;
11695
12146
  name: string;
11696
12147
  type: string;
@@ -11707,7 +12158,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11707
12158
  apr: number;
11708
12159
  dailyRewards: number;
11709
12160
  lastCampaignCreatedAt: Date;
11710
- } | null;
12161
+ };
11711
12162
  }>>;
11712
12163
  get: (options: {
11713
12164
  headers?: Record<string, unknown> | undefined;
@@ -11782,6 +12233,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11782
12233
  verified: boolean;
11783
12234
  isTest: boolean;
11784
12235
  isPoint: boolean;
12236
+ isPreTGE: boolean;
11785
12237
  isNative: boolean;
11786
12238
  price: number | null;
11787
12239
  };
@@ -11809,6 +12261,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11809
12261
  verified: boolean;
11810
12262
  isTest: boolean;
11811
12263
  isPoint: boolean;
12264
+ isPreTGE: boolean;
11812
12265
  isNative: boolean;
11813
12266
  } & {
11814
12267
  price?: number | null | undefined;
@@ -11877,6 +12330,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
11877
12330
  verified: boolean;
11878
12331
  isTest: boolean;
11879
12332
  isPoint: boolean;
12333
+ isPreTGE: boolean;
11880
12334
  isNative: boolean;
11881
12335
  } & {
11882
12336
  price?: number | null | undefined;
@@ -12017,6 +12471,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12017
12471
  decimals: number;
12018
12472
  verified: boolean;
12019
12473
  isTest: boolean;
12474
+ isPoint: boolean;
12475
+ isPreTGE: boolean;
12020
12476
  };
12021
12477
  value: number;
12022
12478
  campaignId: string;
@@ -12039,6 +12495,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12039
12495
  decimals: number;
12040
12496
  verified: boolean;
12041
12497
  isTest: boolean;
12498
+ isPoint: boolean;
12499
+ isPreTGE: boolean;
12042
12500
  }[];
12043
12501
  tags: string[];
12044
12502
  identifier: string;
@@ -12102,6 +12560,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12102
12560
  decimals: number;
12103
12561
  verified: boolean;
12104
12562
  isTest: boolean;
12563
+ isPoint: boolean;
12564
+ isPreTGE: boolean;
12105
12565
  };
12106
12566
  }[];
12107
12567
  }[];
@@ -12252,6 +12712,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12252
12712
  verified: boolean;
12253
12713
  isTest: boolean;
12254
12714
  isPoint: boolean;
12715
+ isPreTGE: boolean;
12255
12716
  isNative: boolean;
12256
12717
  } & {
12257
12718
  price?: number | null | undefined;
@@ -12343,6 +12804,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12343
12804
  fetch?: RequestInit | undefined;
12344
12805
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
12345
12806
  200: {
12807
+ Tokens: {
12808
+ symbol: string;
12809
+ id: string;
12810
+ name: string | null;
12811
+ icon: string;
12812
+ address: string;
12813
+ chainId: number;
12814
+ decimals: number;
12815
+ displaySymbol: string;
12816
+ verified: boolean;
12817
+ isTest: boolean;
12818
+ isPoint: boolean;
12819
+ isPreTGE: boolean;
12820
+ isNative: boolean;
12821
+ price: number | null;
12822
+ }[];
12823
+ Protocols: {
12824
+ id: string;
12825
+ name: string;
12826
+ url: string;
12827
+ description: string;
12828
+ tags: string[];
12829
+ icon: string;
12830
+ }[];
12346
12831
  id: string;
12347
12832
  name: string;
12348
12833
  type: string;
@@ -12378,6 +12863,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12378
12863
  verified: boolean;
12379
12864
  isTest: boolean;
12380
12865
  isPoint: boolean;
12866
+ isPreTGE: boolean;
12381
12867
  isNative: boolean;
12382
12868
  } & {
12383
12869
  price?: number | null | undefined;
@@ -12386,7 +12872,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12386
12872
  depositUrl: string | undefined;
12387
12873
  explorerAddress: string | undefined;
12388
12874
  tags: string[];
12389
- } | null | undefined;
12875
+ } | undefined;
12390
12876
  }>>;
12391
12877
  };
12392
12878
  opportunity: {
@@ -12515,6 +13001,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12515
13001
  verified: boolean;
12516
13002
  isTest: boolean;
12517
13003
  isPoint: boolean;
13004
+ isPreTGE: boolean;
12518
13005
  isNative: boolean;
12519
13006
  } & {
12520
13007
  price?: number | null | undefined;
@@ -12842,6 +13329,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12842
13329
  fetch?: RequestInit | undefined;
12843
13330
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
12844
13331
  200: {
13332
+ Tokens: {
13333
+ symbol: string;
13334
+ id: string;
13335
+ name: string | null;
13336
+ icon: string;
13337
+ address: string;
13338
+ chainId: number;
13339
+ decimals: number;
13340
+ displaySymbol: string;
13341
+ verified: boolean;
13342
+ isTest: boolean;
13343
+ isPoint: boolean;
13344
+ isPreTGE: boolean;
13345
+ isNative: boolean;
13346
+ price: number | null;
13347
+ }[];
13348
+ Protocols: {
13349
+ id: string;
13350
+ name: string;
13351
+ url: string;
13352
+ description: string;
13353
+ tags: string[];
13354
+ icon: string;
13355
+ }[];
12845
13356
  id: string;
12846
13357
  name: string;
12847
13358
  type: string;
@@ -12877,6 +13388,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12877
13388
  verified: boolean;
12878
13389
  isTest: boolean;
12879
13390
  isPoint: boolean;
13391
+ isPreTGE: boolean;
12880
13392
  isNative: boolean;
12881
13393
  } & {
12882
13394
  price?: number | null | undefined;
@@ -12885,7 +13397,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12885
13397
  depositUrl: string | undefined;
12886
13398
  explorerAddress: string | undefined;
12887
13399
  tags: string[];
12888
- } | null | undefined;
13400
+ } | undefined;
12889
13401
  }>>;
12890
13402
  get: (options: {
12891
13403
  headers: {
@@ -12898,6 +13410,30 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12898
13410
  fetch?: RequestInit | undefined;
12899
13411
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
12900
13412
  200: {
13413
+ Tokens: {
13414
+ symbol: string;
13415
+ id: string;
13416
+ name: string | null;
13417
+ icon: string;
13418
+ address: string;
13419
+ chainId: number;
13420
+ decimals: number;
13421
+ displaySymbol: string;
13422
+ verified: boolean;
13423
+ isTest: boolean;
13424
+ isPoint: boolean;
13425
+ isPreTGE: boolean;
13426
+ isNative: boolean;
13427
+ price: number | null;
13428
+ }[];
13429
+ Protocols: {
13430
+ id: string;
13431
+ name: string;
13432
+ url: string;
13433
+ description: string;
13434
+ tags: string[];
13435
+ icon: string;
13436
+ }[];
12901
13437
  id: string;
12902
13438
  name: string;
12903
13439
  type: string;
@@ -12933,6 +13469,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12933
13469
  verified: boolean;
12934
13470
  isTest: boolean;
12935
13471
  isPoint: boolean;
13472
+ isPreTGE: boolean;
12936
13473
  isNative: boolean;
12937
13474
  } & {
12938
13475
  price?: number | null | undefined;
@@ -12941,7 +13478,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12941
13478
  depositUrl: string | undefined;
12942
13479
  explorerAddress: string | undefined;
12943
13480
  tags: string[];
12944
- } | null | undefined;
13481
+ } | undefined;
12945
13482
  }>>;
12946
13483
  };
12947
13484
  };
@@ -13204,6 +13741,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13204
13741
  verified: boolean;
13205
13742
  isTest: boolean;
13206
13743
  isPoint: boolean;
13744
+ isPreTGE: boolean;
13207
13745
  isNative: boolean;
13208
13746
  price?: number | null | undefined;
13209
13747
  } | undefined;
@@ -13230,6 +13768,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13230
13768
  verified: boolean;
13231
13769
  isTest: boolean;
13232
13770
  isPoint: boolean;
13771
+ isPreTGE: boolean;
13233
13772
  isNative: boolean;
13234
13773
  price?: number | null | undefined;
13235
13774
  } | undefined;
@@ -13242,6 +13781,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13242
13781
  verified?: boolean | undefined;
13243
13782
  isTest?: boolean | undefined;
13244
13783
  isPoint?: boolean | undefined;
13784
+ isPreTGE?: boolean | undefined;
13245
13785
  }, options: {
13246
13786
  headers: {
13247
13787
  authorization: string;
@@ -13261,6 +13801,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13261
13801
  verified: boolean;
13262
13802
  isTest: boolean;
13263
13803
  isPoint: boolean;
13804
+ isPreTGE: boolean;
13264
13805
  isNative: boolean;
13265
13806
  price: number | null;
13266
13807
  };
@@ -13287,6 +13828,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13287
13828
  verified: boolean;
13288
13829
  isTest: boolean;
13289
13830
  isPoint: boolean;
13831
+ isPreTGE: boolean;
13290
13832
  isNative: boolean;
13291
13833
  price: number | null;
13292
13834
  }[];
@@ -13315,6 +13857,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13315
13857
  verified: boolean;
13316
13858
  isTest: boolean;
13317
13859
  isPoint: boolean;
13860
+ isPreTGE: boolean;
13318
13861
  isNative: boolean;
13319
13862
  } & {
13320
13863
  price?: number | null | undefined;
@@ -13355,6 +13898,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13355
13898
  verified: boolean;
13356
13899
  isTest: boolean;
13357
13900
  isPoint: boolean;
13901
+ isPreTGE: boolean;
13358
13902
  isNative: boolean;
13359
13903
  } & {
13360
13904
  price?: number | null | undefined;
@@ -13385,6 +13929,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13385
13929
  verified: boolean;
13386
13930
  isTest: boolean;
13387
13931
  isPoint: boolean;
13932
+ isPreTGE: boolean;
13388
13933
  isNative: boolean;
13389
13934
  price: number | null;
13390
13935
  };
@@ -13469,6 +14014,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13469
14014
  verified: boolean;
13470
14015
  isTest: boolean;
13471
14016
  isPoint: boolean;
14017
+ isPreTGE: boolean;
13472
14018
  isNative: boolean;
13473
14019
  price: number | null;
13474
14020
  };
@@ -14127,6 +14673,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14127
14673
  verified: boolean;
14128
14674
  isTest: boolean;
14129
14675
  isPoint: boolean;
14676
+ isPreTGE: boolean;
14130
14677
  isNative: boolean;
14131
14678
  price: number | null;
14132
14679
  };
@@ -14150,6 +14697,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14150
14697
  verified: boolean;
14151
14698
  isTest: boolean;
14152
14699
  isPoint: boolean;
14700
+ isPreTGE: boolean;
14153
14701
  isNative: boolean;
14154
14702
  price: number | null;
14155
14703
  }[];
@@ -14237,6 +14785,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14237
14785
  verified: boolean;
14238
14786
  isTest: boolean;
14239
14787
  isPoint: boolean;
14788
+ isPreTGE: boolean;
14240
14789
  isNative: boolean;
14241
14790
  price: number | null;
14242
14791
  };
@@ -14260,6 +14809,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14260
14809
  verified: boolean;
14261
14810
  isTest: boolean;
14262
14811
  isPoint: boolean;
14812
+ isPreTGE: boolean;
14263
14813
  isNative: boolean;
14264
14814
  price: number | null;
14265
14815
  }[];