@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
@@ -104,7 +104,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
104
104
  200: {
105
105
  aprRecord: {
106
106
  cumulated: number;
107
- cummulated: number;
108
107
  timestamp: bigint;
109
108
  breakdowns: {
110
109
  id: number;
@@ -192,7 +191,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
192
191
  200: {
193
192
  aprRecord: {
194
193
  cumulated: number;
195
- cummulated: number;
196
194
  timestamp: bigint;
197
195
  breakdowns: {
198
196
  id: number;
@@ -290,7 +288,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
290
288
  200: ({
291
289
  aprRecord: {
292
290
  cumulated: number;
293
- cummulated: number;
294
291
  timestamp: bigint;
295
292
  breakdowns: {
296
293
  id: number;
@@ -1208,7 +1205,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1208
1205
  response: {
1209
1206
  200: (Omit<{
1210
1207
  chain: import("../../../database/api/.generated").Chain;
1211
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1208
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1212
1209
  }, "rewards"> & {
1213
1210
  rewards: (Omit<{
1214
1211
  token: {
@@ -1318,7 +1315,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1318
1315
  response: {
1319
1316
  200: (Omit<{
1320
1317
  chain: import("../../../database/api/.generated").Chain;
1321
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1318
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1322
1319
  }, "rewards"> & {
1323
1320
  rewards: (Omit<{
1324
1321
  token: {
@@ -1774,127 +1771,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1774
1771
  };
1775
1772
  } & {
1776
1773
  v4: {
1777
- campaignStatus: {
1778
- engine: {
1779
- post: {
1780
- body: {
1781
- status: {
1782
- value: "SUCCESS";
1783
- computedUntil: number;
1784
- } | {
1785
- value: "PROCESSING";
1786
- } | {
1787
- error: string;
1788
- details: string;
1789
- value: "SKIPPED";
1790
- } | {
1791
- error: string;
1792
- details: string;
1793
- value: "FAILED";
1794
- };
1795
- campaignId: string;
1796
- distributionChain: number;
1797
- };
1798
- params: Record<never, string>;
1799
- query: unknown;
1800
- headers: {
1801
- authorization: string;
1802
- };
1803
- response: {
1804
- 200: void;
1805
- };
1806
- };
1807
- };
1808
- };
1809
- } & {
1810
- campaignStatus: {
1811
- index: {
1812
- get: {
1813
- body: unknown;
1814
- params: Record<never, string>;
1815
- query: unknown;
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
- unique: {
1833
- get: {
1834
- body: unknown;
1835
- params: Record<never, string>;
1836
- query: {
1837
- identifier: string;
1838
- distributionChain: number;
1839
- };
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
- };
1850
- };
1851
- };
1852
- };
1853
- };
1854
- } & {
1855
- campaignStatus: {
1856
- computeChain: {
1774
+ dynamicData: {
1775
+ chainId: {
1857
1776
  ":chainId": {
1858
- get: {
1859
- body: unknown;
1860
- params: {
1861
- chainId: number;
1862
- };
1863
- query: unknown;
1864
- headers: unknown;
1865
- response: {
1866
- 200: {
1867
- campaignId: string;
1868
- computedUntil: bigint;
1869
- processingStarted: bigint;
1870
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1871
- error: string;
1872
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1873
- }[];
1777
+ token: {
1778
+ ":tokenAddress": {
1779
+ get: {
1780
+ body: unknown;
1781
+ params: {
1782
+ chainId: string;
1783
+ tokenAddress: string;
1784
+ };
1785
+ query: unknown;
1786
+ headers: unknown;
1787
+ response: {
1788
+ 200: {
1789
+ tvl: number;
1790
+ totalSupply: number;
1791
+ cardName: string;
1792
+ blacklistedSupply: number;
1793
+ priceTargetToken: number;
1794
+ };
1795
+ };
1796
+ };
1874
1797
  };
1875
1798
  };
1876
1799
  };
1877
1800
  };
1878
1801
  };
1879
- } & {
1880
- campaignStatus: {
1881
- overlaps: {
1882
- get: {
1883
- body: unknown;
1884
- params: Record<never, string>;
1885
- query: {
1886
- identifier: string;
1887
- distributionChain: number;
1888
- };
1889
- headers: {
1890
- authorization: string;
1891
- };
1892
- response: {
1893
- 200: boolean;
1894
- };
1895
- };
1896
- };
1897
- };
1898
1802
  };
1899
1803
  } & {
1900
1804
  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 RewardService)["getByRecipient"]>>;
1190
+ rewards: Awaited<ReturnType<(typeof 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 RewardService)["getByRecipient"]>>;
1300
+ rewards: Awaited<ReturnType<(typeof 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: {
@@ -87,7 +87,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
87
87
  200: {
88
88
  aprRecord: {
89
89
  cumulated: number;
90
- cummulated: number;
91
90
  timestamp: bigint;
92
91
  breakdowns: {
93
92
  id: number;
@@ -175,7 +174,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
175
174
  200: {
176
175
  aprRecord: {
177
176
  cumulated: number;
178
- cummulated: number;
179
177
  timestamp: bigint;
180
178
  breakdowns: {
181
179
  id: number;
@@ -273,7 +271,6 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
273
271
  200: ({
274
272
  aprRecord: {
275
273
  cumulated: number;
276
- cummulated: number;
277
274
  timestamp: bigint;
278
275
  breakdowns: {
279
276
  id: number;
@@ -1191,7 +1188,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1191
1188
  response: {
1192
1189
  200: (Omit<{
1193
1190
  chain: import("../../../database/api/.generated").Chain;
1194
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1191
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1195
1192
  }, "rewards"> & {
1196
1193
  rewards: (Omit<{
1197
1194
  token: {
@@ -1301,7 +1298,7 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1301
1298
  response: {
1302
1299
  200: (Omit<{
1303
1300
  chain: import("../../../database/api/.generated").Chain;
1304
- rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["getByRecipient"]>>;
1301
+ rewards: Awaited<ReturnType<typeof import("../../modules/v4/reward").RewardService["format"]>>;
1305
1302
  }, "rewards"> & {
1306
1303
  rewards: (Omit<{
1307
1304
  token: {
@@ -1757,127 +1754,34 @@ declare const _default: (app: App) => import("elysia").default<"", false, {
1757
1754
  };
1758
1755
  } & {
1759
1756
  v4: {
1760
- campaignStatus: {
1761
- engine: {
1762
- post: {
1763
- body: {
1764
- status: {
1765
- value: "SUCCESS";
1766
- computedUntil: number;
1767
- } | {
1768
- value: "PROCESSING";
1769
- } | {
1770
- error: string;
1771
- details: string;
1772
- value: "SKIPPED";
1773
- } | {
1774
- error: string;
1775
- details: string;
1776
- value: "FAILED";
1777
- };
1778
- campaignId: string;
1779
- distributionChain: number;
1780
- };
1781
- params: Record<never, string>;
1782
- query: unknown;
1783
- headers: {
1784
- authorization: string;
1785
- };
1786
- response: {
1787
- 200: void;
1788
- };
1789
- };
1790
- };
1791
- };
1792
- } & {
1793
- campaignStatus: {
1794
- index: {
1795
- get: {
1796
- body: unknown;
1797
- params: Record<never, string>;
1798
- query: unknown;
1799
- headers: unknown;
1800
- response: {
1801
- 200: {
1802
- campaignId: string;
1803
- computedUntil: bigint;
1804
- processingStarted: bigint;
1805
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1806
- error: string;
1807
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1808
- }[];
1809
- };
1810
- };
1811
- };
1812
- };
1813
- } & {
1814
- campaignStatus: {
1815
- unique: {
1816
- get: {
1817
- body: unknown;
1818
- params: Record<never, string>;
1819
- query: {
1820
- identifier: string;
1821
- distributionChain: number;
1822
- };
1823
- headers: unknown;
1824
- response: {
1825
- 200: {
1826
- campaignId: string;
1827
- computedUntil: bigint;
1828
- processingStarted: bigint;
1829
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1830
- error: string;
1831
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1832
- };
1833
- };
1834
- };
1835
- };
1836
- };
1837
- } & {
1838
- campaignStatus: {
1839
- computeChain: {
1757
+ dynamicData: {
1758
+ chainId: {
1840
1759
  ":chainId": {
1841
- get: {
1842
- body: unknown;
1843
- params: {
1844
- chainId: number;
1845
- };
1846
- query: unknown;
1847
- headers: unknown;
1848
- response: {
1849
- 200: {
1850
- campaignId: string;
1851
- computedUntil: bigint;
1852
- processingStarted: bigint;
1853
- status: import("../../../database/api/.generated").$Enums.RunStatus;
1854
- error: string;
1855
- details: import("../../../database/api/.generated").Prisma.JsonValue;
1856
- }[];
1760
+ token: {
1761
+ ":tokenAddress": {
1762
+ get: {
1763
+ body: unknown;
1764
+ params: {
1765
+ chainId: string;
1766
+ tokenAddress: string;
1767
+ };
1768
+ query: unknown;
1769
+ headers: unknown;
1770
+ response: {
1771
+ 200: {
1772
+ tvl: number;
1773
+ totalSupply: number;
1774
+ cardName: string;
1775
+ blacklistedSupply: number;
1776
+ priceTargetToken: number;
1777
+ };
1778
+ };
1779
+ };
1857
1780
  };
1858
1781
  };
1859
1782
  };
1860
1783
  };
1861
1784
  };
1862
- } & {
1863
- campaignStatus: {
1864
- overlaps: {
1865
- get: {
1866
- body: unknown;
1867
- params: Record<never, string>;
1868
- query: {
1869
- identifier: string;
1870
- distributionChain: number;
1871
- };
1872
- headers: {
1873
- authorization: string;
1874
- };
1875
- response: {
1876
- 200: boolean;
1877
- };
1878
- };
1879
- };
1880
- };
1881
1785
  };
1882
1786
  } & {
1883
1787
  index: {