@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
@@ -125,7 +125,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
125
125
  address: string;
126
126
  icon: string;
127
127
  decimals: number;
128
+ displaySymbol: string;
128
129
  verified: boolean;
130
+ isTest: boolean;
129
131
  price: number | null;
130
132
  };
131
133
  amount: bigint;
@@ -140,7 +142,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
140
142
  address: string;
141
143
  icon: string;
142
144
  decimals: number;
145
+ displaySymbol: string;
143
146
  verified: boolean;
147
+ isTest: boolean;
144
148
  price: number | null;
145
149
  }[];
146
150
  chain: {
@@ -224,7 +228,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
224
228
  address: string;
225
229
  icon: string;
226
230
  decimals: number;
231
+ displaySymbol: string;
227
232
  verified: boolean;
233
+ isTest: boolean;
228
234
  price: number | null;
229
235
  };
230
236
  amount: bigint;
@@ -239,7 +245,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
239
245
  address: string;
240
246
  icon: string;
241
247
  decimals: number;
248
+ displaySymbol: string;
242
249
  verified: boolean;
250
+ isTest: boolean;
243
251
  price: number | null;
244
252
  }[];
245
253
  chain: {
@@ -265,7 +273,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
265
273
  tvl: number;
266
274
  apr: number;
267
275
  dailyRewards: number;
268
- campaigns: ({
276
+ campaigns: {
269
277
  params: any;
270
278
  chain: {
271
279
  name: string;
@@ -280,7 +288,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
280
288
  address: string;
281
289
  icon: string;
282
290
  decimals: number;
291
+ displaySymbol: string;
283
292
  verified: boolean;
293
+ isTest: boolean;
284
294
  price: number | null;
285
295
  };
286
296
  distributionChain: {
@@ -308,7 +318,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
308
318
  amount: string;
309
319
  opportunityId: string;
310
320
  creatorAddress: string;
311
- } | null)[];
321
+ }[];
312
322
  } | null | undefined;
313
323
  };
314
324
  };
@@ -333,6 +343,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
333
343
  action?: string | undefined;
334
344
  mainProtocolId?: string | undefined;
335
345
  order?: undefined;
346
+ test?: boolean | undefined;
336
347
  minimumTvl?: number | undefined;
337
348
  };
338
349
  headers: unknown;
@@ -378,7 +389,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
378
389
  address: string;
379
390
  icon: string;
380
391
  decimals: number;
392
+ displaySymbol: string;
381
393
  verified: boolean;
394
+ isTest: boolean;
382
395
  price: number | null;
383
396
  };
384
397
  amount: bigint;
@@ -393,7 +406,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
393
406
  address: string;
394
407
  icon: string;
395
408
  decimals: number;
409
+ displaySymbol: string;
396
410
  verified: boolean;
411
+ isTest: boolean;
397
412
  price: number | null;
398
413
  }[];
399
414
  chain: {
@@ -442,6 +457,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
442
457
  action?: string | undefined;
443
458
  mainProtocolId?: string | undefined;
444
459
  order?: undefined;
460
+ test?: boolean | undefined;
445
461
  minimumTvl?: number | undefined;
446
462
  };
447
463
  headers: unknown;
@@ -472,12 +488,13 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
472
488
  action?: string | undefined;
473
489
  mainProtocolId?: string | undefined;
474
490
  order?: undefined;
491
+ test?: boolean | undefined;
475
492
  minimumTvl?: number | undefined;
476
493
  };
477
494
  headers: unknown;
478
495
  response: {
479
496
  200: {
480
- sum: File;
497
+ sum: number | null;
481
498
  };
482
499
  };
483
500
  };
@@ -547,10 +564,11 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
547
564
  campaignId?: string | undefined;
548
565
  opportunityId?: string | undefined;
549
566
  tokenSymbol?: string | undefined;
567
+ test?: boolean | undefined;
550
568
  };
551
569
  headers: unknown;
552
570
  response: {
553
- 200: ({
571
+ 200: {
554
572
  params: any;
555
573
  chain: {
556
574
  name: string;
@@ -565,7 +583,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
565
583
  address: string;
566
584
  icon: string;
567
585
  decimals: number;
586
+ displaySymbol: string;
568
587
  verified: boolean;
588
+ isTest: boolean;
569
589
  price: number | null;
570
590
  };
571
591
  distributionChain: {
@@ -593,7 +613,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
593
613
  amount: string;
594
614
  opportunityId: string;
595
615
  creatorAddress: string;
596
- } | null)[];
616
+ }[];
597
617
  };
598
618
  };
599
619
  };
@@ -615,6 +635,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
615
635
  campaignId?: string | undefined;
616
636
  opportunityId?: string | undefined;
617
637
  tokenSymbol?: string | undefined;
638
+ test?: boolean | undefined;
618
639
  };
619
640
  headers: unknown;
620
641
  response: {
@@ -768,7 +789,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
768
789
  address: string;
769
790
  icon: string;
770
791
  decimals: number;
792
+ displaySymbol: string;
771
793
  verified: boolean;
794
+ isTest: boolean;
772
795
  price?: number | null | undefined;
773
796
  } | undefined;
774
797
  };
@@ -797,7 +820,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
797
820
  address: string;
798
821
  icon: string;
799
822
  decimals: number;
823
+ displaySymbol: string;
800
824
  verified: boolean;
825
+ isTest: boolean;
801
826
  } & {
802
827
  price?: number | null | undefined;
803
828
  } & {
@@ -830,7 +855,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
830
855
  address: string;
831
856
  icon: string;
832
857
  decimals: number;
858
+ displaySymbol: string;
833
859
  verified: boolean;
860
+ isTest: boolean;
834
861
  } & {
835
862
  price?: number | null | undefined;
836
863
  })[];
@@ -1493,7 +1520,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1493
1520
  address: string;
1494
1521
  icon: string;
1495
1522
  decimals: number;
1523
+ displaySymbol: string;
1496
1524
  verified: boolean;
1525
+ isTest: boolean;
1497
1526
  price: number | null;
1498
1527
  };
1499
1528
  breakdowns: {
@@ -1512,7 +1541,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1512
1541
  address: string;
1513
1542
  icon: string;
1514
1543
  decimals: number;
1544
+ displaySymbol: string;
1515
1545
  verified: boolean;
1546
+ isTest: boolean;
1516
1547
  price: number | null;
1517
1548
  }[];
1518
1549
  Protocols: {
@@ -1603,7 +1634,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1603
1634
  address: string;
1604
1635
  icon: string;
1605
1636
  decimals: number;
1637
+ displaySymbol: string;
1606
1638
  verified: boolean;
1639
+ isTest: boolean;
1607
1640
  price: number | null;
1608
1641
  };
1609
1642
  breakdowns: {
@@ -1622,7 +1655,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1622
1655
  address: string;
1623
1656
  icon: string;
1624
1657
  decimals: number;
1658
+ displaySymbol: string;
1625
1659
  verified: boolean;
1660
+ isTest: boolean;
1626
1661
  price: number | null;
1627
1662
  }[];
1628
1663
  Protocols: {
@@ -2218,6 +2253,25 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
2218
2253
  };
2219
2254
  };
2220
2255
  };
2256
+ } & {
2257
+ v4: {
2258
+ positions: {
2259
+ index: {
2260
+ get: {
2261
+ body: unknown;
2262
+ params: {};
2263
+ query: {
2264
+ chainId: number;
2265
+ address: string;
2266
+ };
2267
+ headers: unknown;
2268
+ response: {
2269
+ 200: any[];
2270
+ };
2271
+ };
2272
+ };
2273
+ };
2274
+ };
2221
2275
  } & {
2222
2276
  index: {
2223
2277
  get: {
@@ -126,7 +126,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
126
126
  address: string;
127
127
  icon: string;
128
128
  decimals: number;
129
+ displaySymbol: string;
129
130
  verified: boolean;
131
+ isTest: boolean;
130
132
  price: number | null;
131
133
  };
132
134
  amount: bigint;
@@ -141,7 +143,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
141
143
  address: string;
142
144
  icon: string;
143
145
  decimals: number;
146
+ displaySymbol: string;
144
147
  verified: boolean;
148
+ isTest: boolean;
145
149
  price: number | null;
146
150
  }[];
147
151
  chain: {
@@ -225,7 +229,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
225
229
  address: string;
226
230
  icon: string;
227
231
  decimals: number;
232
+ displaySymbol: string;
228
233
  verified: boolean;
234
+ isTest: boolean;
229
235
  price: number | null;
230
236
  };
231
237
  amount: bigint;
@@ -240,7 +246,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
240
246
  address: string;
241
247
  icon: string;
242
248
  decimals: number;
249
+ displaySymbol: string;
243
250
  verified: boolean;
251
+ isTest: boolean;
244
252
  price: number | null;
245
253
  }[];
246
254
  chain: {
@@ -266,7 +274,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
266
274
  tvl: number;
267
275
  apr: number;
268
276
  dailyRewards: number;
269
- campaigns: ({
277
+ campaigns: {
270
278
  params: any;
271
279
  chain: {
272
280
  name: string;
@@ -281,7 +289,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
281
289
  address: string;
282
290
  icon: string;
283
291
  decimals: number;
292
+ displaySymbol: string;
284
293
  verified: boolean;
294
+ isTest: boolean;
285
295
  price: number | null;
286
296
  };
287
297
  distributionChain: {
@@ -309,7 +319,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
309
319
  amount: string;
310
320
  opportunityId: string;
311
321
  creatorAddress: string;
312
- } | null)[];
322
+ }[];
313
323
  } | null | undefined;
314
324
  };
315
325
  };
@@ -334,6 +344,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
334
344
  action?: string | undefined;
335
345
  mainProtocolId?: string | undefined;
336
346
  order?: undefined;
347
+ test?: boolean | undefined;
337
348
  minimumTvl?: number | undefined;
338
349
  };
339
350
  headers: unknown;
@@ -379,7 +390,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
379
390
  address: string;
380
391
  icon: string;
381
392
  decimals: number;
393
+ displaySymbol: string;
382
394
  verified: boolean;
395
+ isTest: boolean;
383
396
  price: number | null;
384
397
  };
385
398
  amount: bigint;
@@ -394,7 +407,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
394
407
  address: string;
395
408
  icon: string;
396
409
  decimals: number;
410
+ displaySymbol: string;
397
411
  verified: boolean;
412
+ isTest: boolean;
398
413
  price: number | null;
399
414
  }[];
400
415
  chain: {
@@ -443,6 +458,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
443
458
  action?: string | undefined;
444
459
  mainProtocolId?: string | undefined;
445
460
  order?: undefined;
461
+ test?: boolean | undefined;
446
462
  minimumTvl?: number | undefined;
447
463
  };
448
464
  headers: unknown;
@@ -473,12 +489,13 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
473
489
  action?: string | undefined;
474
490
  mainProtocolId?: string | undefined;
475
491
  order?: undefined;
492
+ test?: boolean | undefined;
476
493
  minimumTvl?: number | undefined;
477
494
  };
478
495
  headers: unknown;
479
496
  response: {
480
497
  200: {
481
- sum: File;
498
+ sum: number | null;
482
499
  };
483
500
  };
484
501
  };
@@ -548,10 +565,11 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
548
565
  campaignId?: string | undefined;
549
566
  opportunityId?: string | undefined;
550
567
  tokenSymbol?: string | undefined;
568
+ test?: boolean | undefined;
551
569
  };
552
570
  headers: unknown;
553
571
  response: {
554
- 200: ({
572
+ 200: {
555
573
  params: any;
556
574
  chain: {
557
575
  name: string;
@@ -566,7 +584,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
566
584
  address: string;
567
585
  icon: string;
568
586
  decimals: number;
587
+ displaySymbol: string;
569
588
  verified: boolean;
589
+ isTest: boolean;
570
590
  price: number | null;
571
591
  };
572
592
  distributionChain: {
@@ -594,7 +614,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
594
614
  amount: string;
595
615
  opportunityId: string;
596
616
  creatorAddress: string;
597
- } | null)[];
617
+ }[];
598
618
  };
599
619
  };
600
620
  };
@@ -616,6 +636,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
616
636
  campaignId?: string | undefined;
617
637
  opportunityId?: string | undefined;
618
638
  tokenSymbol?: string | undefined;
639
+ test?: boolean | undefined;
619
640
  };
620
641
  headers: unknown;
621
642
  response: {
@@ -769,7 +790,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
769
790
  address: string;
770
791
  icon: string;
771
792
  decimals: number;
793
+ displaySymbol: string;
772
794
  verified: boolean;
795
+ isTest: boolean;
773
796
  price?: number | null | undefined;
774
797
  } | undefined;
775
798
  };
@@ -798,7 +821,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
798
821
  address: string;
799
822
  icon: string;
800
823
  decimals: number;
824
+ displaySymbol: string;
801
825
  verified: boolean;
826
+ isTest: boolean;
802
827
  } & {
803
828
  price?: number | null | undefined;
804
829
  } & {
@@ -831,7 +856,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
831
856
  address: string;
832
857
  icon: string;
833
858
  decimals: number;
859
+ displaySymbol: string;
834
860
  verified: boolean;
861
+ isTest: boolean;
835
862
  } & {
836
863
  price?: number | null | undefined;
837
864
  })[];
@@ -1494,7 +1521,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1494
1521
  address: string;
1495
1522
  icon: string;
1496
1523
  decimals: number;
1524
+ displaySymbol: string;
1497
1525
  verified: boolean;
1526
+ isTest: boolean;
1498
1527
  price: number | null;
1499
1528
  };
1500
1529
  breakdowns: {
@@ -1513,7 +1542,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1513
1542
  address: string;
1514
1543
  icon: string;
1515
1544
  decimals: number;
1545
+ displaySymbol: string;
1516
1546
  verified: boolean;
1547
+ isTest: boolean;
1517
1548
  price: number | null;
1518
1549
  }[];
1519
1550
  Protocols: {
@@ -1604,7 +1635,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1604
1635
  address: string;
1605
1636
  icon: string;
1606
1637
  decimals: number;
1638
+ displaySymbol: string;
1607
1639
  verified: boolean;
1640
+ isTest: boolean;
1608
1641
  price: number | null;
1609
1642
  };
1610
1643
  breakdowns: {
@@ -1623,7 +1656,9 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1623
1656
  address: string;
1624
1657
  icon: string;
1625
1658
  decimals: number;
1659
+ displaySymbol: string;
1626
1660
  verified: boolean;
1661
+ isTest: boolean;
1627
1662
  price: number | null;
1628
1663
  }[];
1629
1664
  Protocols: {
@@ -2219,6 +2254,25 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
2219
2254
  };
2220
2255
  };
2221
2256
  };
2257
+ } & {
2258
+ v4: {
2259
+ positions: {
2260
+ index: {
2261
+ get: {
2262
+ body: unknown;
2263
+ params: {};
2264
+ query: {
2265
+ chainId: number;
2266
+ address: string;
2267
+ };
2268
+ headers: unknown;
2269
+ response: {
2270
+ 200: any[];
2271
+ };
2272
+ };
2273
+ };
2274
+ };
2275
+ };
2222
2276
  } & {
2223
2277
  index: {
2224
2278
  get: {