@merkl/api 0.10.80 → 0.10.82

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 (67) hide show
  1. package/dist/database/api/.generated/index.d.ts +8 -53
  2. package/dist/database/api/.generated/package.json +1 -1
  3. package/dist/database/api/.generated/schema.prisma +1 -2
  4. package/dist/src/cache/declaration.d.ts +5 -0
  5. package/dist/src/eden/index.d.ts +66 -316
  6. package/dist/src/index.d.ts +24 -120
  7. package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicDataRefacto.d.ts +3 -0
  8. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +16 -1
  9. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AaveProcessor.d.ts +30 -0
  10. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AssetProcessor.d.ts +35 -0
  11. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AuraProcessor.d.ts +61 -0
  12. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerGaugeProcessor.d.ts +49 -0
  13. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerPoolProcessor.d.ts +53 -0
  14. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BeefyProcessor.d.ts +48 -0
  15. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/CompoundProcessor.d.ts +44 -0
  16. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EnzymeProcessor.d.ts +40 -0
  17. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EulerBorrowProcessor.d.ts +37 -0
  18. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EulerLendProcessor.d.ts +37 -0
  19. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/FluidProcessor.d.ts +39 -0
  20. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/FraxProcessor.d.ts +33 -0
  21. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/GearboxProcessor.d.ts +40 -0
  22. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/MetamorphoProcessor.d.ts +31 -0
  23. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleProcessor.d.ts +27 -0
  24. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/RadiantProcessor.d.ts +32 -0
  25. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/SpliceProcessor.d.ts +16 -0
  26. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/SturdySiloProcessor.d.ts +39 -0
  27. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/TorosProcessor.d.ts +29 -0
  28. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/curveProcessor.d.ts +47 -0
  29. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/genericProcessor.d.ts +61 -0
  30. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.d.ts +6 -0
  31. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/templateProcessor.d.ts +32 -0
  32. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/uniswapProcessor.d.ts +42 -0
  33. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesPricesRefactoFinal.d.ts +4 -0
  34. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1RefactoFinal.d.ts +3 -0
  35. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound2RefactoFinal.d.ts +3 -0
  36. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound3RefactoFinal.d.ts +3 -0
  37. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound4RefactoFinal.d.ts +4 -0
  38. package/dist/src/libs/campaigns/campaignsDynamicDataRefacto.d.ts +3 -0
  39. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +0 -3
  40. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +0 -16
  41. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +0 -4
  42. package/dist/src/modules/v4/reward/reward.repository.d.ts +1 -0
  43. package/dist/src/modules/v4/reward/reward.service.d.ts +126 -109
  44. package/dist/src/modules/v4/router.d.ts +24 -120
  45. package/dist/src/modules/v4/testdynamicData/dynamicData.controller.d.ts +50 -0
  46. package/dist/src/modules/v4/testdynamicData/dynamicData.model.d.ts +5 -0
  47. package/dist/src/modules/v4/testdynamicData/dynamicData.repository.d.ts +0 -0
  48. package/dist/src/modules/v4/testdynamicData/dynamicData.service.d.ts +12 -0
  49. package/dist/src/modules/v4/testdynamicData/index.d.ts +3 -0
  50. package/dist/src/modules/v4/token/token.repository.d.ts +1 -1
  51. package/dist/src/modules/v4/user/user.controller.d.ts +2 -2
  52. package/dist/src/routes/v3/ERC20Campaigns.d.ts +24 -120
  53. package/dist/src/routes/v3/blacklist.d.ts +24 -120
  54. package/dist/src/routes/v3/campaigns.d.ts +24 -120
  55. package/dist/src/routes/v3/campaignsInfo.d.ts +24 -120
  56. package/dist/src/routes/v3/multiChainPositions.d.ts +24 -120
  57. package/dist/src/routes/v3/opportunity.d.ts +24 -120
  58. package/dist/src/routes/v3/positions.d.ts +24 -120
  59. package/dist/src/routes/v3/rewards.d.ts +24 -120
  60. package/dist/src/routes/v3/updates.d.ts +24 -120
  61. package/dist/src/routes/v3/userRewards.d.ts +24 -120
  62. package/dist/src/utils/decodeCalls.d.ts +2 -0
  63. package/dist/src/utils/encodeCalls.d.ts +3 -0
  64. package/dist/src/utils/generateCardName.d.ts +3 -0
  65. package/dist/src/utils/interfaces.d.ts +39 -0
  66. package/dist/tsconfig.package.tsbuildinfo +1 -1
  67. package/package.json +1 -1
@@ -80,7 +80,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
80
80
  200: {
81
81
  aprRecord: {
82
82
  cumulated: number;
83
- cummulated: number;
84
83
  timestamp: bigint;
85
84
  breakdowns: {
86
85
  id: number;
@@ -168,7 +167,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
168
167
  200: {
169
168
  aprRecord: {
170
169
  cumulated: number;
171
- cummulated: number;
172
170
  timestamp: bigint;
173
171
  breakdowns: {
174
172
  id: number;
@@ -266,7 +264,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
266
264
  200: ({
267
265
  aprRecord: {
268
266
  cumulated: number;
269
- cummulated: number;
270
267
  timestamp: bigint;
271
268
  breakdowns: {
272
269
  id: number;
@@ -1184,7 +1181,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1184
1181
  response: {
1185
1182
  200: (Omit<{
1186
1183
  chain: import("../../../database/api/.generated").Chain;
1187
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1184
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1188
1185
  }, "rewards"> & {
1189
1186
  rewards: (Omit<{
1190
1187
  token: {
@@ -1294,7 +1291,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1294
1291
  response: {
1295
1292
  200: (Omit<{
1296
1293
  chain: import("../../../database/api/.generated").Chain;
1297
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1294
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1298
1295
  }, "rewards"> & {
1299
1296
  rewards: (Omit<{
1300
1297
  token: {
@@ -1750,127 +1747,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1750
1747
  };
1751
1748
  } & {
1752
1749
  v4: {
1753
- campaignStatus: {
1754
- engine: {
1755
- post: {
1756
- body: {
1757
- status: {
1758
- value: "SUCCESS";
1759
- computedUntil: number;
1760
- } | {
1761
- value: "PROCESSING";
1762
- } | {
1763
- error: string;
1764
- details: string;
1765
- value: "SKIPPED";
1766
- } | {
1767
- error: string;
1768
- details: string;
1769
- value: "FAILED";
1770
- };
1771
- campaignId: string;
1772
- distributionChain: number;
1773
- };
1774
- params: Record<never, string>;
1775
- query: unknown;
1776
- headers: {
1777
- authorization: string;
1778
- };
1779
- response: {
1780
- 200: void;
1781
- };
1782
- };
1783
- };
1784
- };
1785
- } & {
1786
- campaignStatus: {
1787
- index: {
1788
- get: {
1789
- body: unknown;
1790
- params: Record<never, string>;
1791
- query: unknown;
1792
- headers: unknown;
1793
- response: {
1794
- 200: {
1795
- campaignId: string;
1796
- computedUntil: bigint;
1797
- processingStarted: bigint;
1798
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1799
- error: string;
1800
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1801
- }[];
1802
- };
1803
- };
1804
- };
1805
- };
1806
- } & {
1807
- campaignStatus: {
1808
- unique: {
1809
- get: {
1810
- body: unknown;
1811
- params: Record<never, string>;
1812
- query: {
1813
- identifier: string;
1814
- distributionChain: number;
1815
- };
1816
- headers: unknown;
1817
- response: {
1818
- 200: {
1819
- campaignId: string;
1820
- computedUntil: bigint;
1821
- processingStarted: bigint;
1822
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1823
- error: string;
1824
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1825
- };
1826
- };
1827
- };
1828
- };
1829
- };
1830
- } & {
1831
- campaignStatus: {
1832
- computeChain: {
1750
+ dynamicData: {
1751
+ chainId: {
1833
1752
  ":chainId": {
1834
- get: {
1835
- body: unknown;
1836
- params: {
1837
- chainId: number;
1838
- };
1839
- query: unknown;
1840
- headers: unknown;
1841
- response: {
1842
- 200: {
1843
- campaignId: string;
1844
- computedUntil: bigint;
1845
- processingStarted: bigint;
1846
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1847
- error: string;
1848
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1849
- }[];
1753
+ token: {
1754
+ ":tokenAddress": {
1755
+ get: {
1756
+ body: unknown;
1757
+ params: {
1758
+ chainId: string;
1759
+ tokenAddress: string;
1760
+ };
1761
+ query: unknown;
1762
+ headers: unknown;
1763
+ response: {
1764
+ 200: {
1765
+ tvl: number;
1766
+ totalSupply: number;
1767
+ cardName: string;
1768
+ blacklistedSupply: number;
1769
+ priceTargetToken: number;
1770
+ };
1771
+ };
1772
+ };
1850
1773
  };
1851
1774
  };
1852
1775
  };
1853
1776
  };
1854
1777
  };
1855
- } & {
1856
- campaignStatus: {
1857
- overlaps: {
1858
- get: {
1859
- body: unknown;
1860
- params: Record<never, string>;
1861
- query: {
1862
- identifier: string;
1863
- distributionChain: number;
1864
- };
1865
- headers: {
1866
- authorization: string;
1867
- };
1868
- response: {
1869
- 200: boolean;
1870
- };
1871
- };
1872
- };
1873
- };
1874
1778
  };
1875
1779
  } & {
1876
1780
  index: {
@@ -85,7 +85,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
85
85
  200: {
86
86
  aprRecord: {
87
87
  cumulated: number;
88
- cummulated: number;
89
88
  timestamp: bigint;
90
89
  breakdowns: {
91
90
  id: number;
@@ -173,7 +172,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
173
172
  200: {
174
173
  aprRecord: {
175
174
  cumulated: number;
176
- cummulated: number;
177
175
  timestamp: bigint;
178
176
  breakdowns: {
179
177
  id: number;
@@ -271,7 +269,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
271
269
  200: ({
272
270
  aprRecord: {
273
271
  cumulated: number;
274
- cummulated: number;
275
272
  timestamp: bigint;
276
273
  breakdowns: {
277
274
  id: number;
@@ -1189,7 +1186,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1189
1186
  response: {
1190
1187
  200: (Omit<{
1191
1188
  chain: import("../../../database/api/.generated").Chain;
1192
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1189
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1193
1190
  }, "rewards"> & {
1194
1191
  rewards: (Omit<{
1195
1192
  token: {
@@ -1299,7 +1296,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1299
1296
  response: {
1300
1297
  200: (Omit<{
1301
1298
  chain: import("../../../database/api/.generated").Chain;
1302
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1299
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1303
1300
  }, "rewards"> & {
1304
1301
  rewards: (Omit<{
1305
1302
  token: {
@@ -1755,127 +1752,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1755
1752
  };
1756
1753
  } & {
1757
1754
  v4: {
1758
- campaignStatus: {
1759
- engine: {
1760
- post: {
1761
- body: {
1762
- status: {
1763
- value: "SUCCESS";
1764
- computedUntil: number;
1765
- } | {
1766
- value: "PROCESSING";
1767
- } | {
1768
- error: string;
1769
- details: string;
1770
- value: "SKIPPED";
1771
- } | {
1772
- error: string;
1773
- details: string;
1774
- value: "FAILED";
1775
- };
1776
- campaignId: string;
1777
- distributionChain: number;
1778
- };
1779
- params: Record<never, string>;
1780
- query: unknown;
1781
- headers: {
1782
- authorization: string;
1783
- };
1784
- response: {
1785
- 200: void;
1786
- };
1787
- };
1788
- };
1789
- };
1790
- } & {
1791
- campaignStatus: {
1792
- index: {
1793
- get: {
1794
- body: unknown;
1795
- params: Record<never, string>;
1796
- query: unknown;
1797
- headers: unknown;
1798
- response: {
1799
- 200: {
1800
- campaignId: string;
1801
- computedUntil: bigint;
1802
- processingStarted: bigint;
1803
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1804
- error: string;
1805
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1806
- }[];
1807
- };
1808
- };
1809
- };
1810
- };
1811
- } & {
1812
- campaignStatus: {
1813
- unique: {
1814
- get: {
1815
- body: unknown;
1816
- params: Record<never, string>;
1817
- query: {
1818
- identifier: string;
1819
- distributionChain: number;
1820
- };
1821
- headers: unknown;
1822
- response: {
1823
- 200: {
1824
- campaignId: string;
1825
- computedUntil: bigint;
1826
- processingStarted: bigint;
1827
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1828
- error: string;
1829
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1830
- };
1831
- };
1832
- };
1833
- };
1834
- };
1835
- } & {
1836
- campaignStatus: {
1837
- computeChain: {
1755
+ dynamicData: {
1756
+ chainId: {
1838
1757
  ":chainId": {
1839
- get: {
1840
- body: unknown;
1841
- params: {
1842
- chainId: number;
1843
- };
1844
- query: unknown;
1845
- headers: unknown;
1846
- response: {
1847
- 200: {
1848
- campaignId: string;
1849
- computedUntil: bigint;
1850
- processingStarted: bigint;
1851
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1852
- error: string;
1853
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1854
- }[];
1758
+ token: {
1759
+ ":tokenAddress": {
1760
+ get: {
1761
+ body: unknown;
1762
+ params: {
1763
+ chainId: string;
1764
+ tokenAddress: string;
1765
+ };
1766
+ query: unknown;
1767
+ headers: unknown;
1768
+ response: {
1769
+ 200: {
1770
+ tvl: number;
1771
+ totalSupply: number;
1772
+ cardName: string;
1773
+ blacklistedSupply: number;
1774
+ priceTargetToken: number;
1775
+ };
1776
+ };
1777
+ };
1855
1778
  };
1856
1779
  };
1857
1780
  };
1858
1781
  };
1859
1782
  };
1860
- } & {
1861
- campaignStatus: {
1862
- overlaps: {
1863
- get: {
1864
- body: unknown;
1865
- params: Record<never, string>;
1866
- query: {
1867
- identifier: string;
1868
- distributionChain: number;
1869
- };
1870
- headers: {
1871
- authorization: string;
1872
- };
1873
- response: {
1874
- 200: boolean;
1875
- };
1876
- };
1877
- };
1878
- };
1879
1783
  };
1880
1784
  } & {
1881
1785
  index: {
@@ -103,7 +103,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
103
103
  200: {
104
104
  aprRecord: {
105
105
  cumulated: number;
106
- cummulated: number;
107
106
  timestamp: bigint;
108
107
  breakdowns: {
109
108
  id: number;
@@ -191,7 +190,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
191
190
  200: {
192
191
  aprRecord: {
193
192
  cumulated: number;
194
- cummulated: number;
195
193
  timestamp: bigint;
196
194
  breakdowns: {
197
195
  id: number;
@@ -289,7 +287,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
289
287
  200: ({
290
288
  aprRecord: {
291
289
  cumulated: number;
292
- cummulated: number;
293
290
  timestamp: bigint;
294
291
  breakdowns: {
295
292
  id: number;
@@ -1207,7 +1204,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1207
1204
  response: {
1208
1205
  200: (Omit<{
1209
1206
  chain: import("../../../database/api/.generated").Chain;
1210
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1207
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1211
1208
  }, "rewards"> & {
1212
1209
  rewards: (Omit<{
1213
1210
  token: {
@@ -1317,7 +1314,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1317
1314
  response: {
1318
1315
  200: (Omit<{
1319
1316
  chain: import("../../../database/api/.generated").Chain;
1320
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1317
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1321
1318
  }, "rewards"> & {
1322
1319
  rewards: (Omit<{
1323
1320
  token: {
@@ -1773,127 +1770,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1773
1770
  };
1774
1771
  } & {
1775
1772
  v4: {
1776
- campaignStatus: {
1777
- engine: {
1778
- post: {
1779
- body: {
1780
- status: {
1781
- value: "SUCCESS";
1782
- computedUntil: number;
1783
- } | {
1784
- value: "PROCESSING";
1785
- } | {
1786
- error: string;
1787
- details: string;
1788
- value: "SKIPPED";
1789
- } | {
1790
- error: string;
1791
- details: string;
1792
- value: "FAILED";
1793
- };
1794
- campaignId: string;
1795
- distributionChain: number;
1796
- };
1797
- params: Record<never, string>;
1798
- query: unknown;
1799
- headers: {
1800
- authorization: string;
1801
- };
1802
- response: {
1803
- 200: void;
1804
- };
1805
- };
1806
- };
1807
- };
1808
- } & {
1809
- campaignStatus: {
1810
- index: {
1811
- get: {
1812
- body: unknown;
1813
- params: Record<never, string>;
1814
- query: unknown;
1815
- headers: unknown;
1816
- response: {
1817
- 200: {
1818
- campaignId: string;
1819
- computedUntil: bigint;
1820
- processingStarted: bigint;
1821
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1822
- error: string;
1823
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1824
- }[];
1825
- };
1826
- };
1827
- };
1828
- };
1829
- } & {
1830
- campaignStatus: {
1831
- unique: {
1832
- get: {
1833
- body: unknown;
1834
- params: Record<never, string>;
1835
- query: {
1836
- identifier: string;
1837
- distributionChain: number;
1838
- };
1839
- headers: unknown;
1840
- response: {
1841
- 200: {
1842
- campaignId: string;
1843
- computedUntil: bigint;
1844
- processingStarted: bigint;
1845
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1846
- error: string;
1847
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1848
- };
1849
- };
1850
- };
1851
- };
1852
- };
1853
- } & {
1854
- campaignStatus: {
1855
- computeChain: {
1773
+ dynamicData: {
1774
+ chainId: {
1856
1775
  ":chainId": {
1857
- get: {
1858
- body: unknown;
1859
- params: {
1860
- chainId: number;
1861
- };
1862
- query: unknown;
1863
- headers: unknown;
1864
- response: {
1865
- 200: {
1866
- campaignId: string;
1867
- computedUntil: bigint;
1868
- processingStarted: bigint;
1869
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1870
- error: string;
1871
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1872
- }[];
1776
+ token: {
1777
+ ":tokenAddress": {
1778
+ get: {
1779
+ body: unknown;
1780
+ params: {
1781
+ chainId: string;
1782
+ tokenAddress: string;
1783
+ };
1784
+ query: unknown;
1785
+ headers: unknown;
1786
+ response: {
1787
+ 200: {
1788
+ tvl: number;
1789
+ totalSupply: number;
1790
+ cardName: string;
1791
+ blacklistedSupply: number;
1792
+ priceTargetToken: number;
1793
+ };
1794
+ };
1795
+ };
1873
1796
  };
1874
1797
  };
1875
1798
  };
1876
1799
  };
1877
1800
  };
1878
- } & {
1879
- campaignStatus: {
1880
- overlaps: {
1881
- get: {
1882
- body: unknown;
1883
- params: Record<never, string>;
1884
- query: {
1885
- identifier: string;
1886
- distributionChain: number;
1887
- };
1888
- headers: {
1889
- authorization: string;
1890
- };
1891
- response: {
1892
- 200: boolean;
1893
- };
1894
- };
1895
- };
1896
- };
1897
1801
  };
1898
1802
  } & {
1899
1803
  index: {