@merkl/api 0.10.168 → 0.10.170

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 (97) hide show
  1. package/dist/database/api/.generated/edge.js +6 -3
  2. package/dist/database/api/.generated/index-browser.js +3 -0
  3. package/dist/database/api/.generated/index.d.ts +113 -0
  4. package/dist/database/api/.generated/index.js +6 -3
  5. package/dist/database/api/.generated/package.json +1 -1
  6. package/dist/database/api/.generated/schema.prisma +17 -15
  7. package/dist/database/api/.generated/wasm.js +3 -0
  8. package/dist/src/cache/declaration.d.ts +0 -30
  9. package/dist/src/cache/declaration.js +0 -30
  10. package/dist/src/eden/index.d.ts +167 -15
  11. package/dist/src/index.d.ts +59 -5
  12. package/dist/src/libs/campaigns/campaignTypes/CLAMMDynamicData.js +2 -2
  13. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.js +2 -0
  14. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +3 -1
  15. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +8 -0
  16. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleYTProcessor.d.ts +29 -0
  17. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleYTProcessor.js +31 -0
  18. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +3 -0
  19. package/dist/src/libs/positions/clamm/index.d.ts +1 -2
  20. package/dist/src/libs/positions/clamm/index.js +322 -330
  21. package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.d.ts +1 -1
  22. package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.js +1 -1
  23. package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.d.ts +1 -1
  24. package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.js +2 -2
  25. package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.d.ts +1 -2
  26. package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.js +1 -4
  27. package/dist/src/libs/positions/euler/index.js +2 -3
  28. package/dist/src/libs/positions/index.js +1 -1
  29. package/dist/src/modules/v4/campaign/campaign.controller.d.ts +6 -2
  30. package/dist/src/modules/v4/campaign/campaign.model.d.ts +1 -0
  31. package/dist/src/modules/v4/campaign/campaign.model.js +1 -0
  32. package/dist/src/modules/v4/campaign/campaign.repository.d.ts +2 -0
  33. package/dist/src/modules/v4/campaign/campaign.repository.js +2 -1
  34. package/dist/src/modules/v4/campaign/campaign.service.d.ts +10 -5
  35. package/dist/src/modules/v4/campaign/campaign.service.js +10 -2
  36. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +20 -3
  37. package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +2 -1
  38. package/dist/src/modules/v4/opportunity/opportunity.model.js +1 -0
  39. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +83 -5
  40. package/dist/src/modules/v4/opportunity/opportunity.repository.js +31 -0
  41. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +162 -8
  42. package/dist/src/modules/v4/opportunity/opportunity.service.js +11 -0
  43. package/dist/src/modules/v4/position/implementations/AjnaPositionFetcher.d.ts +6 -0
  44. package/dist/src/modules/v4/position/implementations/AjnaPositionFetcher.js +90 -0
  45. package/dist/src/modules/v4/position/implementations/BadgerPositionFetcher.d.ts +6 -0
  46. package/dist/src/modules/v4/position/implementations/BadgerPositionFetcher.js +69 -0
  47. package/dist/src/modules/v4/position/implementations/ClammPositionFetcher.d.ts +6 -0
  48. package/dist/src/modules/v4/position/implementations/ClammPositionFetcher.js +71 -0
  49. package/dist/src/modules/v4/position/implementations/DolomitePositionFetcher.d.ts +6 -0
  50. package/dist/src/modules/v4/position/implementations/DolomitePositionFetcher.js +45 -0
  51. package/dist/src/modules/v4/position/implementations/ERC20PositionFetcher.d.ts +6 -0
  52. package/dist/src/modules/v4/position/implementations/ERC20PositionFetcher.js +47 -0
  53. package/dist/src/modules/v4/position/implementations/EulerPositionFetcher.d.ts +6 -0
  54. package/dist/src/modules/v4/position/implementations/EulerPositionFetcher.js +40 -0
  55. package/dist/src/modules/v4/position/index.d.ts +2 -0
  56. package/dist/src/modules/v4/position/index.js +2 -0
  57. package/dist/src/modules/v4/position/position.controller.d.ts +39 -0
  58. package/dist/src/modules/v4/position/position.controller.js +16 -0
  59. package/dist/src/modules/v4/position/position.model.d.ts +25 -0
  60. package/dist/src/modules/v4/position/position.model.js +5 -0
  61. package/dist/src/modules/v4/position/position.repository.d.ts +14 -0
  62. package/dist/src/modules/v4/position/position.repository.js +6 -0
  63. package/dist/src/modules/v4/position/position.service.d.ts +5 -0
  64. package/dist/src/modules/v4/position/position.service.js +34 -0
  65. package/dist/src/modules/v4/price/price.controller.js +1 -1
  66. package/dist/src/modules/v4/price/price.service.d.ts +1 -1
  67. package/dist/src/modules/v4/price/price.service.js +3 -3
  68. package/dist/src/modules/v4/reward/reward.repository.d.ts +4 -0
  69. package/dist/src/modules/v4/reward/reward.service.d.ts +27 -0
  70. package/dist/src/modules/v4/reward/reward.service.js +5 -2
  71. package/dist/src/modules/v4/router.d.ts +59 -5
  72. package/dist/src/modules/v4/router.js +3 -1
  73. package/dist/src/modules/v4/token/token.controller.d.ts +6 -0
  74. package/dist/src/modules/v4/token/token.service.d.ts +12 -0
  75. package/dist/src/modules/v4/user/user.controller.d.ts +8 -0
  76. package/dist/src/routes/v1/prices.js +2 -4
  77. package/dist/src/routes/v3/blacklist.d.ts +59 -5
  78. package/dist/src/routes/v3/campaigns.d.ts +60 -6
  79. package/dist/src/routes/v3/campaignsInfo.d.ts +59 -5
  80. package/dist/src/routes/v3/multiChainPositions.d.ts +59 -5
  81. package/dist/src/routes/v3/opportunity.d.ts +59 -5
  82. package/dist/src/routes/v3/positions.d.ts +59 -5
  83. package/dist/src/routes/v3/recipients.d.ts +6 -2
  84. package/dist/src/routes/v3/recipients.js +14 -8
  85. package/dist/src/routes/v3/rewards.d.ts +59 -5
  86. package/dist/src/routes/v3/updates.d.ts +59 -5
  87. package/dist/src/routes/v3/userRewards.d.ts +59 -5
  88. package/dist/src/utils/decodeCalls.js +4 -1
  89. package/dist/src/utils/encodeCalls.js +4 -1
  90. package/dist/src/utils/generateCardName.js +2 -0
  91. package/dist/src/utils/prices/services/erc4626Service.js +10 -4
  92. package/dist/tsconfig.package.tsbuildinfo +1 -1
  93. package/package.json +1 -1
  94. package/dist/src/libs/reports/campaignReport.d.ts +0 -9
  95. package/dist/src/libs/reports/campaignReport.js +0 -37
  96. package/dist/src/libs/reports/mainParameterRewards.d.ts +0 -3
  97. package/dist/src/libs/reports/mainParameterRewards.js +0 -48
@@ -119,7 +119,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
119
119
  address: string;
120
120
  icon: string;
121
121
  decimals: number;
122
+ displaySymbol: string;
122
123
  verified: boolean;
124
+ isTest: boolean;
123
125
  price: number | null;
124
126
  };
125
127
  amount: bigint;
@@ -134,7 +136,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
134
136
  address: string;
135
137
  icon: string;
136
138
  decimals: number;
139
+ displaySymbol: string;
137
140
  verified: boolean;
141
+ isTest: boolean;
138
142
  price: number | null;
139
143
  }[];
140
144
  chain: {
@@ -218,7 +222,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
218
222
  address: string;
219
223
  icon: string;
220
224
  decimals: number;
225
+ displaySymbol: string;
221
226
  verified: boolean;
227
+ isTest: boolean;
222
228
  price: number | null;
223
229
  };
224
230
  amount: bigint;
@@ -233,7 +239,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
233
239
  address: string;
234
240
  icon: string;
235
241
  decimals: number;
242
+ displaySymbol: string;
236
243
  verified: boolean;
244
+ isTest: boolean;
237
245
  price: number | null;
238
246
  }[];
239
247
  chain: {
@@ -259,7 +267,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
259
267
  tvl: number;
260
268
  apr: number;
261
269
  dailyRewards: number;
262
- campaigns: ({
270
+ campaigns: {
263
271
  params: any;
264
272
  chain: {
265
273
  name: string;
@@ -274,7 +282,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
274
282
  address: string;
275
283
  icon: string;
276
284
  decimals: number;
285
+ displaySymbol: string;
277
286
  verified: boolean;
287
+ isTest: boolean;
278
288
  price: number | null;
279
289
  };
280
290
  distributionChain: {
@@ -302,7 +312,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
302
312
  amount: string;
303
313
  opportunityId: string;
304
314
  creatorAddress: string;
305
- } | null)[];
315
+ }[];
306
316
  } | null | undefined;
307
317
  };
308
318
  };
@@ -327,6 +337,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
327
337
  action?: string | undefined;
328
338
  mainProtocolId?: string | undefined;
329
339
  order?: undefined;
340
+ test?: boolean | undefined;
330
341
  minimumTvl?: number | undefined;
331
342
  };
332
343
  headers: unknown;
@@ -372,7 +383,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
372
383
  address: string;
373
384
  icon: string;
374
385
  decimals: number;
386
+ displaySymbol: string;
375
387
  verified: boolean;
388
+ isTest: boolean;
376
389
  price: number | null;
377
390
  };
378
391
  amount: bigint;
@@ -387,7 +400,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
387
400
  address: string;
388
401
  icon: string;
389
402
  decimals: number;
403
+ displaySymbol: string;
390
404
  verified: boolean;
405
+ isTest: boolean;
391
406
  price: number | null;
392
407
  }[];
393
408
  chain: {
@@ -436,6 +451,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
436
451
  action?: string | undefined;
437
452
  mainProtocolId?: string | undefined;
438
453
  order?: undefined;
454
+ test?: boolean | undefined;
439
455
  minimumTvl?: number | undefined;
440
456
  };
441
457
  headers: unknown;
@@ -466,12 +482,13 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
466
482
  action?: string | undefined;
467
483
  mainProtocolId?: string | undefined;
468
484
  order?: undefined;
485
+ test?: boolean | undefined;
469
486
  minimumTvl?: number | undefined;
470
487
  };
471
488
  headers: unknown;
472
489
  response: {
473
490
  200: {
474
- sum: File;
491
+ sum: number | null;
475
492
  };
476
493
  };
477
494
  };
@@ -541,10 +558,11 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
541
558
  campaignId?: string | undefined;
542
559
  opportunityId?: string | undefined;
543
560
  tokenSymbol?: string | undefined;
561
+ test?: boolean | undefined;
544
562
  };
545
563
  headers: unknown;
546
564
  response: {
547
- 200: ({
565
+ 200: {
548
566
  params: any;
549
567
  chain: {
550
568
  name: string;
@@ -559,7 +577,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
559
577
  address: string;
560
578
  icon: string;
561
579
  decimals: number;
580
+ displaySymbol: string;
562
581
  verified: boolean;
582
+ isTest: boolean;
563
583
  price: number | null;
564
584
  };
565
585
  distributionChain: {
@@ -587,7 +607,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
587
607
  amount: string;
588
608
  opportunityId: string;
589
609
  creatorAddress: string;
590
- } | null)[];
610
+ }[];
591
611
  };
592
612
  };
593
613
  };
@@ -609,6 +629,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
609
629
  campaignId?: string | undefined;
610
630
  opportunityId?: string | undefined;
611
631
  tokenSymbol?: string | undefined;
632
+ test?: boolean | undefined;
612
633
  };
613
634
  headers: unknown;
614
635
  response: {
@@ -762,7 +783,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
762
783
  address: string;
763
784
  icon: string;
764
785
  decimals: number;
786
+ displaySymbol: string;
765
787
  verified: boolean;
788
+ isTest: boolean;
766
789
  price?: number | null | undefined;
767
790
  } | undefined;
768
791
  };
@@ -791,7 +814,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
791
814
  address: string;
792
815
  icon: string;
793
816
  decimals: number;
817
+ displaySymbol: string;
794
818
  verified: boolean;
819
+ isTest: boolean;
795
820
  } & {
796
821
  price?: number | null | undefined;
797
822
  } & {
@@ -824,7 +849,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
824
849
  address: string;
825
850
  icon: string;
826
851
  decimals: number;
852
+ displaySymbol: string;
827
853
  verified: boolean;
854
+ isTest: boolean;
828
855
  } & {
829
856
  price?: number | null | undefined;
830
857
  })[];
@@ -1487,7 +1514,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1487
1514
  address: string;
1488
1515
  icon: string;
1489
1516
  decimals: number;
1517
+ displaySymbol: string;
1490
1518
  verified: boolean;
1519
+ isTest: boolean;
1491
1520
  price: number | null;
1492
1521
  };
1493
1522
  breakdowns: {
@@ -1506,7 +1535,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1506
1535
  address: string;
1507
1536
  icon: string;
1508
1537
  decimals: number;
1538
+ displaySymbol: string;
1509
1539
  verified: boolean;
1540
+ isTest: boolean;
1510
1541
  price: number | null;
1511
1542
  }[];
1512
1543
  Protocols: {
@@ -1597,7 +1628,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1597
1628
  address: string;
1598
1629
  icon: string;
1599
1630
  decimals: number;
1631
+ displaySymbol: string;
1600
1632
  verified: boolean;
1633
+ isTest: boolean;
1601
1634
  price: number | null;
1602
1635
  };
1603
1636
  breakdowns: {
@@ -1616,7 +1649,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1616
1649
  address: string;
1617
1650
  icon: string;
1618
1651
  decimals: number;
1652
+ displaySymbol: string;
1619
1653
  verified: boolean;
1654
+ isTest: boolean;
1620
1655
  price: number | null;
1621
1656
  }[];
1622
1657
  Protocols: {
@@ -2212,6 +2247,25 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
2212
2247
  };
2213
2248
  };
2214
2249
  };
2250
+ } & {
2251
+ v4: {
2252
+ positions: {
2253
+ index: {
2254
+ get: {
2255
+ body: unknown;
2256
+ params: {};
2257
+ query: {
2258
+ chainId: number;
2259
+ address: string;
2260
+ };
2261
+ headers: unknown;
2262
+ response: {
2263
+ 200: any[];
2264
+ };
2265
+ };
2266
+ };
2267
+ };
2268
+ };
2215
2269
  } & {
2216
2270
  index: {
2217
2271
  post: {
@@ -124,7 +124,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
124
124
  address: string;
125
125
  icon: string;
126
126
  decimals: number;
127
+ displaySymbol: string;
127
128
  verified: boolean;
129
+ isTest: boolean;
128
130
  price: number | null;
129
131
  };
130
132
  amount: bigint;
@@ -139,7 +141,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
139
141
  address: string;
140
142
  icon: string;
141
143
  decimals: number;
144
+ displaySymbol: string;
142
145
  verified: boolean;
146
+ isTest: boolean;
143
147
  price: number | null;
144
148
  }[];
145
149
  chain: {
@@ -223,7 +227,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
223
227
  address: string;
224
228
  icon: string;
225
229
  decimals: number;
230
+ displaySymbol: string;
226
231
  verified: boolean;
232
+ isTest: boolean;
227
233
  price: number | null;
228
234
  };
229
235
  amount: bigint;
@@ -238,7 +244,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
238
244
  address: string;
239
245
  icon: string;
240
246
  decimals: number;
247
+ displaySymbol: string;
241
248
  verified: boolean;
249
+ isTest: boolean;
242
250
  price: number | null;
243
251
  }[];
244
252
  chain: {
@@ -264,7 +272,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
264
272
  tvl: number;
265
273
  apr: number;
266
274
  dailyRewards: number;
267
- campaigns: ({
275
+ campaigns: {
268
276
  params: any;
269
277
  chain: {
270
278
  name: string;
@@ -279,7 +287,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
279
287
  address: string;
280
288
  icon: string;
281
289
  decimals: number;
290
+ displaySymbol: string;
282
291
  verified: boolean;
292
+ isTest: boolean;
283
293
  price: number | null;
284
294
  };
285
295
  distributionChain: {
@@ -307,7 +317,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
307
317
  amount: string;
308
318
  opportunityId: string;
309
319
  creatorAddress: string;
310
- } | null)[];
320
+ }[];
311
321
  } | null | undefined;
312
322
  };
313
323
  };
@@ -332,6 +342,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
332
342
  action?: string | undefined;
333
343
  mainProtocolId?: string | undefined;
334
344
  order?: undefined;
345
+ test?: boolean | undefined;
335
346
  minimumTvl?: number | undefined;
336
347
  };
337
348
  headers: unknown;
@@ -377,7 +388,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
377
388
  address: string;
378
389
  icon: string;
379
390
  decimals: number;
391
+ displaySymbol: string;
380
392
  verified: boolean;
393
+ isTest: boolean;
381
394
  price: number | null;
382
395
  };
383
396
  amount: bigint;
@@ -392,7 +405,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
392
405
  address: string;
393
406
  icon: string;
394
407
  decimals: number;
408
+ displaySymbol: string;
395
409
  verified: boolean;
410
+ isTest: boolean;
396
411
  price: number | null;
397
412
  }[];
398
413
  chain: {
@@ -441,6 +456,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
441
456
  action?: string | undefined;
442
457
  mainProtocolId?: string | undefined;
443
458
  order?: undefined;
459
+ test?: boolean | undefined;
444
460
  minimumTvl?: number | undefined;
445
461
  };
446
462
  headers: unknown;
@@ -471,12 +487,13 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
471
487
  action?: string | undefined;
472
488
  mainProtocolId?: string | undefined;
473
489
  order?: undefined;
490
+ test?: boolean | undefined;
474
491
  minimumTvl?: number | undefined;
475
492
  };
476
493
  headers: unknown;
477
494
  response: {
478
495
  200: {
479
- sum: File;
496
+ sum: number | null;
480
497
  };
481
498
  };
482
499
  };
@@ -546,10 +563,11 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
546
563
  campaignId?: string | undefined;
547
564
  opportunityId?: string | undefined;
548
565
  tokenSymbol?: string | undefined;
566
+ test?: boolean | undefined;
549
567
  };
550
568
  headers: unknown;
551
569
  response: {
552
- 200: ({
570
+ 200: {
553
571
  params: any;
554
572
  chain: {
555
573
  name: string;
@@ -564,7 +582,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
564
582
  address: string;
565
583
  icon: string;
566
584
  decimals: number;
585
+ displaySymbol: string;
567
586
  verified: boolean;
587
+ isTest: boolean;
568
588
  price: number | null;
569
589
  };
570
590
  distributionChain: {
@@ -592,7 +612,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
592
612
  amount: string;
593
613
  opportunityId: string;
594
614
  creatorAddress: string;
595
- } | null)[];
615
+ }[];
596
616
  };
597
617
  };
598
618
  };
@@ -614,6 +634,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
614
634
  campaignId?: string | undefined;
615
635
  opportunityId?: string | undefined;
616
636
  tokenSymbol?: string | undefined;
637
+ test?: boolean | undefined;
617
638
  };
618
639
  headers: unknown;
619
640
  response: {
@@ -767,7 +788,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
767
788
  address: string;
768
789
  icon: string;
769
790
  decimals: number;
791
+ displaySymbol: string;
770
792
  verified: boolean;
793
+ isTest: boolean;
771
794
  price?: number | null | undefined;
772
795
  } | undefined;
773
796
  };
@@ -796,7 +819,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
796
819
  address: string;
797
820
  icon: string;
798
821
  decimals: number;
822
+ displaySymbol: string;
799
823
  verified: boolean;
824
+ isTest: boolean;
800
825
  } & {
801
826
  price?: number | null | undefined;
802
827
  } & {
@@ -829,7 +854,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
829
854
  address: string;
830
855
  icon: string;
831
856
  decimals: number;
857
+ displaySymbol: string;
832
858
  verified: boolean;
859
+ isTest: boolean;
833
860
  } & {
834
861
  price?: number | null | undefined;
835
862
  })[];
@@ -1492,7 +1519,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1492
1519
  address: string;
1493
1520
  icon: string;
1494
1521
  decimals: number;
1522
+ displaySymbol: string;
1495
1523
  verified: boolean;
1524
+ isTest: boolean;
1496
1525
  price: number | null;
1497
1526
  };
1498
1527
  breakdowns: {
@@ -1511,7 +1540,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1511
1540
  address: string;
1512
1541
  icon: string;
1513
1542
  decimals: number;
1543
+ displaySymbol: string;
1514
1544
  verified: boolean;
1545
+ isTest: boolean;
1515
1546
  price: number | null;
1516
1547
  }[];
1517
1548
  Protocols: {
@@ -1602,7 +1633,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1602
1633
  address: string;
1603
1634
  icon: string;
1604
1635
  decimals: number;
1636
+ displaySymbol: string;
1605
1637
  verified: boolean;
1638
+ isTest: boolean;
1606
1639
  price: number | null;
1607
1640
  };
1608
1641
  breakdowns: {
@@ -1621,7 +1654,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1621
1654
  address: string;
1622
1655
  icon: string;
1623
1656
  decimals: number;
1657
+ displaySymbol: string;
1624
1658
  verified: boolean;
1659
+ isTest: boolean;
1625
1660
  price: number | null;
1626
1661
  }[];
1627
1662
  Protocols: {
@@ -2217,6 +2252,25 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
2217
2252
  };
2218
2253
  };
2219
2254
  };
2255
+ } & {
2256
+ v4: {
2257
+ positions: {
2258
+ index: {
2259
+ get: {
2260
+ body: unknown;
2261
+ params: {};
2262
+ query: {
2263
+ chainId: number;
2264
+ address: string;
2265
+ };
2266
+ headers: unknown;
2267
+ response: {
2268
+ 200: any[];
2269
+ };
2270
+ };
2271
+ };
2272
+ };
2273
+ };
2220
2274
  } & {
2221
2275
  index: {
2222
2276
  get: {