@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
@@ -88,7 +88,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
88
88
  200: {
89
89
  aprRecord: {
90
90
  cumulated: number;
91
- cummulated: number;
92
91
  timestamp: bigint;
93
92
  breakdowns: {
94
93
  id: number;
@@ -176,7 +175,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
176
175
  200: {
177
176
  aprRecord: {
178
177
  cumulated: number;
179
- cummulated: number;
180
178
  timestamp: bigint;
181
179
  breakdowns: {
182
180
  id: number;
@@ -274,7 +272,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
274
272
  200: ({
275
273
  aprRecord: {
276
274
  cumulated: number;
277
- cummulated: number;
278
275
  timestamp: bigint;
279
276
  breakdowns: {
280
277
  id: number;
@@ -1192,7 +1189,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1192
1189
  response: {
1193
1190
  200: (Omit<{
1194
1191
  chain: import("../../../database/api/.generated").Chain;
1195
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1192
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1196
1193
  }, "rewards"> & {
1197
1194
  rewards: (Omit<{
1198
1195
  token: {
@@ -1302,7 +1299,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1302
1299
  response: {
1303
1300
  200: (Omit<{
1304
1301
  chain: import("../../../database/api/.generated").Chain;
1305
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1302
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1306
1303
  }, "rewards"> & {
1307
1304
  rewards: (Omit<{
1308
1305
  token: {
@@ -1758,127 +1755,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1758
1755
  };
1759
1756
  } & {
1760
1757
  v4: {
1761
- campaignStatus: {
1762
- engine: {
1763
- post: {
1764
- body: {
1765
- status: {
1766
- value: "SUCCESS";
1767
- computedUntil: number;
1768
- } | {
1769
- value: "PROCESSING";
1770
- } | {
1771
- error: string;
1772
- details: string;
1773
- value: "SKIPPED";
1774
- } | {
1775
- error: string;
1776
- details: string;
1777
- value: "FAILED";
1778
- };
1779
- campaignId: string;
1780
- distributionChain: number;
1781
- };
1782
- params: Record<never, string>;
1783
- query: unknown;
1784
- headers: {
1785
- authorization: string;
1786
- };
1787
- response: {
1788
- 200: void;
1789
- };
1790
- };
1791
- };
1792
- };
1793
- } & {
1794
- campaignStatus: {
1795
- index: {
1796
- get: {
1797
- body: unknown;
1798
- params: Record<never, string>;
1799
- query: unknown;
1800
- headers: unknown;
1801
- response: {
1802
- 200: {
1803
- campaignId: string;
1804
- computedUntil: bigint;
1805
- processingStarted: bigint;
1806
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1807
- error: string;
1808
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1809
- }[];
1810
- };
1811
- };
1812
- };
1813
- };
1814
- } & {
1815
- campaignStatus: {
1816
- unique: {
1817
- get: {
1818
- body: unknown;
1819
- params: Record<never, string>;
1820
- query: {
1821
- identifier: string;
1822
- distributionChain: number;
1823
- };
1824
- headers: unknown;
1825
- response: {
1826
- 200: {
1827
- campaignId: string;
1828
- computedUntil: bigint;
1829
- processingStarted: bigint;
1830
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1831
- error: string;
1832
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1833
- };
1834
- };
1835
- };
1836
- };
1837
- };
1838
- } & {
1839
- campaignStatus: {
1840
- computeChain: {
1758
+ dynamicData: {
1759
+ chainId: {
1841
1760
  ":chainId": {
1842
- get: {
1843
- body: unknown;
1844
- params: {
1845
- chainId: number;
1846
- };
1847
- query: unknown;
1848
- headers: unknown;
1849
- response: {
1850
- 200: {
1851
- campaignId: string;
1852
- computedUntil: bigint;
1853
- processingStarted: bigint;
1854
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1855
- error: string;
1856
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1857
- }[];
1761
+ token: {
1762
+ ":tokenAddress": {
1763
+ get: {
1764
+ body: unknown;
1765
+ params: {
1766
+ chainId: string;
1767
+ tokenAddress: string;
1768
+ };
1769
+ query: unknown;
1770
+ headers: unknown;
1771
+ response: {
1772
+ 200: {
1773
+ tvl: number;
1774
+ totalSupply: number;
1775
+ cardName: string;
1776
+ blacklistedSupply: number;
1777
+ priceTargetToken: number;
1778
+ };
1779
+ };
1780
+ };
1858
1781
  };
1859
1782
  };
1860
1783
  };
1861
1784
  };
1862
1785
  };
1863
- } & {
1864
- campaignStatus: {
1865
- overlaps: {
1866
- get: {
1867
- body: unknown;
1868
- params: Record<never, string>;
1869
- query: {
1870
- identifier: string;
1871
- distributionChain: number;
1872
- };
1873
- headers: {
1874
- authorization: string;
1875
- };
1876
- response: {
1877
- 200: boolean;
1878
- };
1879
- };
1880
- };
1881
- };
1882
1786
  };
1883
1787
  } & {
1884
1788
  index: {
@@ -86,7 +86,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
86
86
  200: {
87
87
  aprRecord: {
88
88
  cumulated: number;
89
- cummulated: number;
90
89
  timestamp: bigint;
91
90
  breakdowns: {
92
91
  id: number;
@@ -174,7 +173,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
174
173
  200: {
175
174
  aprRecord: {
176
175
  cumulated: number;
177
- cummulated: number;
178
176
  timestamp: bigint;
179
177
  breakdowns: {
180
178
  id: number;
@@ -272,7 +270,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
272
270
  200: ({
273
271
  aprRecord: {
274
272
  cumulated: number;
275
- cummulated: number;
276
273
  timestamp: bigint;
277
274
  breakdowns: {
278
275
  id: number;
@@ -1190,7 +1187,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1190
1187
  response: {
1191
1188
  200: (Omit<{
1192
1189
  chain: import("../../../database/api/.generated").Chain;
1193
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1190
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1194
1191
  }, "rewards"> & {
1195
1192
  rewards: (Omit<{
1196
1193
  token: {
@@ -1300,7 +1297,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1300
1297
  response: {
1301
1298
  200: (Omit<{
1302
1299
  chain: import("../../../database/api/.generated").Chain;
1303
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1300
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1304
1301
  }, "rewards"> & {
1305
1302
  rewards: (Omit<{
1306
1303
  token: {
@@ -1756,127 +1753,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1756
1753
  };
1757
1754
  } & {
1758
1755
  v4: {
1759
- campaignStatus: {
1760
- engine: {
1761
- post: {
1762
- body: {
1763
- status: {
1764
- value: "SUCCESS";
1765
- computedUntil: number;
1766
- } | {
1767
- value: "PROCESSING";
1768
- } | {
1769
- error: string;
1770
- details: string;
1771
- value: "SKIPPED";
1772
- } | {
1773
- error: string;
1774
- details: string;
1775
- value: "FAILED";
1776
- };
1777
- campaignId: string;
1778
- distributionChain: number;
1779
- };
1780
- params: Record<never, string>;
1781
- query: unknown;
1782
- headers: {
1783
- authorization: string;
1784
- };
1785
- response: {
1786
- 200: void;
1787
- };
1788
- };
1789
- };
1790
- };
1791
- } & {
1792
- campaignStatus: {
1793
- index: {
1794
- get: {
1795
- body: unknown;
1796
- params: Record<never, string>;
1797
- query: unknown;
1798
- headers: unknown;
1799
- response: {
1800
- 200: {
1801
- campaignId: string;
1802
- computedUntil: bigint;
1803
- processingStarted: bigint;
1804
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1805
- error: string;
1806
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1807
- }[];
1808
- };
1809
- };
1810
- };
1811
- };
1812
- } & {
1813
- campaignStatus: {
1814
- unique: {
1815
- get: {
1816
- body: unknown;
1817
- params: Record<never, string>;
1818
- query: {
1819
- identifier: string;
1820
- distributionChain: number;
1821
- };
1822
- headers: unknown;
1823
- response: {
1824
- 200: {
1825
- campaignId: string;
1826
- computedUntil: bigint;
1827
- processingStarted: bigint;
1828
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1829
- error: string;
1830
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1831
- };
1832
- };
1833
- };
1834
- };
1835
- };
1836
- } & {
1837
- campaignStatus: {
1838
- computeChain: {
1756
+ dynamicData: {
1757
+ chainId: {
1839
1758
  ":chainId": {
1840
- get: {
1841
- body: unknown;
1842
- params: {
1843
- chainId: number;
1844
- };
1845
- query: unknown;
1846
- headers: unknown;
1847
- response: {
1848
- 200: {
1849
- campaignId: string;
1850
- computedUntil: bigint;
1851
- processingStarted: bigint;
1852
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1853
- error: string;
1854
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1855
- }[];
1759
+ token: {
1760
+ ":tokenAddress": {
1761
+ get: {
1762
+ body: unknown;
1763
+ params: {
1764
+ chainId: string;
1765
+ tokenAddress: string;
1766
+ };
1767
+ query: unknown;
1768
+ headers: unknown;
1769
+ response: {
1770
+ 200: {
1771
+ tvl: number;
1772
+ totalSupply: number;
1773
+ cardName: string;
1774
+ blacklistedSupply: number;
1775
+ priceTargetToken: number;
1776
+ };
1777
+ };
1778
+ };
1856
1779
  };
1857
1780
  };
1858
1781
  };
1859
1782
  };
1860
1783
  };
1861
- } & {
1862
- campaignStatus: {
1863
- overlaps: {
1864
- get: {
1865
- body: unknown;
1866
- params: Record<never, string>;
1867
- query: {
1868
- identifier: string;
1869
- distributionChain: number;
1870
- };
1871
- headers: {
1872
- authorization: string;
1873
- };
1874
- response: {
1875
- 200: boolean;
1876
- };
1877
- };
1878
- };
1879
- };
1880
1784
  };
1881
1785
  } & {
1882
1786
  index: {
@@ -89,7 +89,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
89
89
  200: {
90
90
  aprRecord: {
91
91
  cumulated: number;
92
- cummulated: number;
93
92
  timestamp: bigint;
94
93
  breakdowns: {
95
94
  id: number;
@@ -177,7 +176,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
177
176
  200: {
178
177
  aprRecord: {
179
178
  cumulated: number;
180
- cummulated: number;
181
179
  timestamp: bigint;
182
180
  breakdowns: {
183
181
  id: number;
@@ -275,7 +273,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
275
273
  200: ({
276
274
  aprRecord: {
277
275
  cumulated: number;
278
- cummulated: number;
279
276
  timestamp: bigint;
280
277
  breakdowns: {
281
278
  id: number;
@@ -1193,7 +1190,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1193
1190
  response: {
1194
1191
  200: (Omit<{
1195
1192
  chain: import("../../../database/api/.generated").Chain;
1196
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1193
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1197
1194
  }, "rewards"> & {
1198
1195
  rewards: (Omit<{
1199
1196
  token: {
@@ -1303,7 +1300,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1303
1300
  response: {
1304
1301
  200: (Omit<{
1305
1302
  chain: import("../../../database/api/.generated").Chain;
1306
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1303
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1307
1304
  }, "rewards"> & {
1308
1305
  rewards: (Omit<{
1309
1306
  token: {
@@ -1759,127 +1756,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1759
1756
  };
1760
1757
  } & {
1761
1758
  v4: {
1762
- campaignStatus: {
1763
- engine: {
1764
- post: {
1765
- body: {
1766
- status: {
1767
- value: "SUCCESS";
1768
- computedUntil: number;
1769
- } | {
1770
- value: "PROCESSING";
1771
- } | {
1772
- error: string;
1773
- details: string;
1774
- value: "SKIPPED";
1775
- } | {
1776
- error: string;
1777
- details: string;
1778
- value: "FAILED";
1779
- };
1780
- campaignId: string;
1781
- distributionChain: number;
1782
- };
1783
- params: Record<never, string>;
1784
- query: unknown;
1785
- headers: {
1786
- authorization: string;
1787
- };
1788
- response: {
1789
- 200: void;
1790
- };
1791
- };
1792
- };
1793
- };
1794
- } & {
1795
- campaignStatus: {
1796
- index: {
1797
- get: {
1798
- body: unknown;
1799
- params: Record<never, string>;
1800
- query: unknown;
1801
- headers: unknown;
1802
- response: {
1803
- 200: {
1804
- campaignId: string;
1805
- computedUntil: bigint;
1806
- processingStarted: bigint;
1807
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1808
- error: string;
1809
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1810
- }[];
1811
- };
1812
- };
1813
- };
1814
- };
1815
- } & {
1816
- campaignStatus: {
1817
- unique: {
1818
- get: {
1819
- body: unknown;
1820
- params: Record<never, string>;
1821
- query: {
1822
- identifier: string;
1823
- distributionChain: number;
1824
- };
1825
- headers: unknown;
1826
- response: {
1827
- 200: {
1828
- campaignId: string;
1829
- computedUntil: bigint;
1830
- processingStarted: bigint;
1831
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1832
- error: string;
1833
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1834
- };
1835
- };
1836
- };
1837
- };
1838
- };
1839
- } & {
1840
- campaignStatus: {
1841
- computeChain: {
1759
+ dynamicData: {
1760
+ chainId: {
1842
1761
  ":chainId": {
1843
- get: {
1844
- body: unknown;
1845
- params: {
1846
- chainId: number;
1847
- };
1848
- query: unknown;
1849
- headers: unknown;
1850
- response: {
1851
- 200: {
1852
- campaignId: string;
1853
- computedUntil: bigint;
1854
- processingStarted: bigint;
1855
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1856
- error: string;
1857
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1858
- }[];
1762
+ token: {
1763
+ ":tokenAddress": {
1764
+ get: {
1765
+ body: unknown;
1766
+ params: {
1767
+ chainId: string;
1768
+ tokenAddress: string;
1769
+ };
1770
+ query: unknown;
1771
+ headers: unknown;
1772
+ response: {
1773
+ 200: {
1774
+ tvl: number;
1775
+ totalSupply: number;
1776
+ cardName: string;
1777
+ blacklistedSupply: number;
1778
+ priceTargetToken: number;
1779
+ };
1780
+ };
1781
+ };
1859
1782
  };
1860
1783
  };
1861
1784
  };
1862
1785
  };
1863
1786
  };
1864
- } & {
1865
- campaignStatus: {
1866
- overlaps: {
1867
- get: {
1868
- body: unknown;
1869
- params: Record<never, string>;
1870
- query: {
1871
- identifier: string;
1872
- distributionChain: number;
1873
- };
1874
- headers: {
1875
- authorization: string;
1876
- };
1877
- response: {
1878
- 200: boolean;
1879
- };
1880
- };
1881
- };
1882
- };
1883
1787
  };
1884
1788
  } & {
1885
1789
  index: {