@merkl/api 1.0.67 → 1.0.69

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 (43) hide show
  1. package/dist/src/eden/index.d.ts +430 -418
  2. package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
  3. package/dist/src/index.d.ts +215 -209
  4. package/dist/src/modules/v4/blacklist/blacklist.controller.d.ts +2 -2
  5. package/dist/src/modules/v4/blacklist/blacklist.repository.d.ts +2 -2
  6. package/dist/src/modules/v4/blacklist/blacklist.service.d.ts +2 -2
  7. package/dist/src/modules/v4/campaign/campaign.controller.d.ts +41 -41
  8. package/dist/src/modules/v4/campaign/campaign.repository.d.ts +180 -180
  9. package/dist/src/modules/v4/campaign/campaign.service.d.ts +50 -50
  10. package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +44 -44
  11. package/dist/src/modules/v4/creator/creator.controller.d.ts +12 -12
  12. package/dist/src/modules/v4/creator/creator.repository.d.ts +6 -6
  13. package/dist/src/modules/v4/creator/creator.service.d.ts +12 -12
  14. package/dist/src/modules/v4/node/node.controller.d.ts +1 -1
  15. package/dist/src/modules/v4/node/node.repository.d.ts +2 -2
  16. package/dist/src/modules/v4/node/node.service.d.ts +2 -2
  17. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +80 -80
  18. package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +3 -3
  19. package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +13 -13
  20. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +192 -192
  21. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +54 -54
  22. package/dist/src/modules/v4/price/price.controller.d.ts +4 -4
  23. package/dist/src/modules/v4/price/price.repository.d.ts +5 -5
  24. package/dist/src/modules/v4/price/price.service.d.ts +4 -4
  25. package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +19 -1
  26. package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +25 -2
  27. package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.d.ts +9 -1
  28. package/dist/src/modules/v4/protocol/protocol.repository.d.ts +6 -6
  29. package/dist/src/modules/v4/reward/reward.repository.d.ts +11 -11
  30. package/dist/src/modules/v4/reward/reward.service.d.ts +67 -67
  31. package/dist/src/modules/v4/router.d.ts +212 -209
  32. package/dist/src/modules/v4/status/status.controller.d.ts +14 -14
  33. package/dist/src/modules/v4/status/status.repository.d.ts +20 -20
  34. package/dist/src/modules/v4/status/status.service.d.ts +16 -16
  35. package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +3 -0
  36. package/dist/src/modules/v4/uniswap/uniswap.repository.d.ts +2 -2
  37. package/dist/src/modules/v4/user/user.controller.d.ts +11 -11
  38. package/dist/src/routes/v3/router.d.ts +3 -0
  39. package/dist/src/routes/v3/uniswapv4.d.ts +3 -0
  40. package/dist/src/utils/providers.d.ts +2 -0
  41. package/dist/src/utils/queries/allCampaigns.d.ts +1 -1
  42. package/dist/tsconfig.tsbuildinfo +1 -1
  43. package/package.json +1 -1
@@ -1526,6 +1526,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1526
1526
  747474?: {
1527
1527
  [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
1528
1528
  } | undefined;
1529
+ 151?: {
1530
+ [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
1531
+ } | undefined;
1529
1532
  } | null;
1530
1533
  };
1531
1534
  };
@@ -1602,16 +1605,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1602
1605
  tokenSymbol?: string | undefined;
1603
1606
  type?: string | undefined;
1604
1607
  endTimestamp?: string | undefined;
1608
+ subType?: number | undefined;
1605
1609
  opportunityId?: string | undefined;
1606
1610
  creatorAddress?: string | undefined;
1607
- mainProtocolId?: string | undefined;
1608
- subType?: number | undefined;
1609
1611
  rootCampaignId?: string | undefined;
1610
1612
  parentCampaignId?: string | undefined;
1613
+ mainProtocolId?: string | undefined;
1611
1614
  creatorId?: string | undefined;
1612
- mainParameter?: string | undefined;
1613
1615
  test?: boolean | undefined;
1614
1616
  page?: number | undefined;
1617
+ mainParameter?: string | undefined;
1615
1618
  creatorTag?: string | undefined;
1616
1619
  distributionChainIds?: number[] | undefined;
1617
1620
  types?: string[] | undefined;
@@ -1634,8 +1637,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1634
1637
  tags: string[];
1635
1638
  } | null | undefined;
1636
1639
  depositUrl?: string | undefined;
1637
- explorerAddress?: string | undefined;
1638
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1639
1640
  aprRecord?: {
1640
1641
  timestamp: string | bigint;
1641
1642
  cumulated: number;
@@ -1646,6 +1647,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1646
1647
  identifier: string;
1647
1648
  }[];
1648
1649
  } | undefined;
1650
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1651
+ explorerAddress?: string | undefined;
1649
1652
  tvlRecord?: {
1650
1653
  timestamp: string | bigint;
1651
1654
  total: number;
@@ -1709,9 +1712,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1709
1712
  creatorId?: string | null | undefined;
1710
1713
  address: string;
1711
1714
  } | undefined;
1712
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1713
- rootCampaignId?: string | undefined;
1714
- parentCampaignId?: string | undefined;
1715
1715
  campaignStatus?: {
1716
1716
  error?: string | undefined;
1717
1717
  details?: any;
@@ -1719,6 +1719,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1719
1719
  computedUntil: string | number;
1720
1720
  processingStarted: string | number;
1721
1721
  } | undefined;
1722
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1723
+ rootCampaignId?: string | undefined;
1724
+ parentCampaignId?: string | undefined;
1722
1725
  distributionChain?: {
1723
1726
  explorers?: {
1724
1727
  chainId: number;
@@ -1753,9 +1756,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1753
1756
  computeChainId: number;
1754
1757
  distributionChainId: number;
1755
1758
  endTimestamp: string | number;
1756
- creatorAddress: string;
1757
- subType: number | null;
1758
- createdAt: string;
1759
1759
  chain: {
1760
1760
  explorers?: {
1761
1761
  chainId: number;
@@ -1766,14 +1766,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1766
1766
  id: number;
1767
1767
  icon: string;
1768
1768
  };
1769
+ subType: number | null;
1770
+ creatorAddress: string;
1771
+ createdAt: string;
1769
1772
  }[];
1770
1773
  action: string;
1771
1774
  type: string;
1772
- howToSteps: string[];
1773
- identifier: string;
1774
- dailyRewards: number;
1775
- tags: string[];
1776
- lastCampaignCreatedAt: number;
1777
1775
  chain: {
1778
1776
  explorers?: {
1779
1777
  chainId: number;
@@ -1784,6 +1782,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1784
1782
  id: number;
1785
1783
  icon: string;
1786
1784
  };
1785
+ identifier: string;
1786
+ howToSteps: string[];
1787
+ dailyRewards: number;
1788
+ tags: string[];
1789
+ lastCampaignCreatedAt: number;
1787
1790
  }[];
1788
1791
  readonly 500: {
1789
1792
  info: string;
@@ -1836,8 +1839,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1836
1839
  tags: string[];
1837
1840
  } | null | undefined;
1838
1841
  depositUrl?: string | undefined;
1839
- explorerAddress?: string | undefined;
1840
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1841
1842
  aprRecord?: {
1842
1843
  timestamp: string | bigint;
1843
1844
  cumulated: number;
@@ -1848,6 +1849,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1848
1849
  identifier: string;
1849
1850
  }[];
1850
1851
  } | undefined;
1852
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1853
+ explorerAddress?: string | undefined;
1851
1854
  tvlRecord?: {
1852
1855
  timestamp: string | bigint;
1853
1856
  total: number;
@@ -1906,11 +1909,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1906
1909
  chainId: number;
1907
1910
  action: string;
1908
1911
  type: string;
1909
- howToSteps: string[];
1910
- identifier: string;
1911
- dailyRewards: number;
1912
- tags: string[];
1913
- lastCampaignCreatedAt: number;
1914
1912
  chain: {
1915
1913
  explorers?: {
1916
1914
  chainId: number;
@@ -1921,6 +1919,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1921
1919
  id: number;
1922
1920
  icon: string;
1923
1921
  };
1922
+ identifier: string;
1923
+ howToSteps: string[];
1924
+ dailyRewards: number;
1925
+ tags: string[];
1926
+ lastCampaignCreatedAt: number;
1924
1927
  };
1925
1928
  readonly 500: {
1926
1929
  info: string;
@@ -1974,8 +1977,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1974
1977
  tags: string[];
1975
1978
  } | null | undefined;
1976
1979
  depositUrl?: string | undefined;
1977
- explorerAddress?: string | undefined;
1978
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1979
1980
  aprRecord?: {
1980
1981
  timestamp: string | bigint;
1981
1982
  cumulated: number;
@@ -1986,6 +1987,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1986
1987
  identifier: string;
1987
1988
  }[];
1988
1989
  } | undefined;
1990
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
1991
+ explorerAddress?: string | undefined;
1989
1992
  tvlRecord?: {
1990
1993
  timestamp: string | bigint;
1991
1994
  total: number;
@@ -2049,9 +2052,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2049
2052
  creatorId?: string | null | undefined;
2050
2053
  address: string;
2051
2054
  } | undefined;
2052
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
2053
- rootCampaignId?: string | undefined;
2054
- parentCampaignId?: string | undefined;
2055
2055
  campaignStatus?: {
2056
2056
  error?: string | undefined;
2057
2057
  details?: any;
@@ -2059,6 +2059,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2059
2059
  computedUntil: string | number;
2060
2060
  processingStarted: string | number;
2061
2061
  } | undefined;
2062
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
2063
+ rootCampaignId?: string | undefined;
2064
+ parentCampaignId?: string | undefined;
2062
2065
  distributionChain?: {
2063
2066
  explorers?: {
2064
2067
  chainId: number;
@@ -2093,9 +2096,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2093
2096
  computeChainId: number;
2094
2097
  distributionChainId: number;
2095
2098
  endTimestamp: string | number;
2096
- creatorAddress: string;
2097
- subType: number | null;
2098
- createdAt: string;
2099
2099
  chain: {
2100
2100
  explorers?: {
2101
2101
  chainId: number;
@@ -2106,14 +2106,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2106
2106
  id: number;
2107
2107
  icon: string;
2108
2108
  };
2109
+ subType: number | null;
2110
+ creatorAddress: string;
2111
+ createdAt: string;
2109
2112
  }[];
2110
2113
  action: string;
2111
2114
  type: string;
2112
- howToSteps: string[];
2113
- identifier: string;
2114
- dailyRewards: number;
2115
- tags: string[];
2116
- lastCampaignCreatedAt: number;
2117
2115
  chain: {
2118
2116
  explorers?: {
2119
2117
  chainId: number;
@@ -2124,6 +2122,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2124
2122
  id: number;
2125
2123
  icon: string;
2126
2124
  };
2125
+ identifier: string;
2126
+ howToSteps: string[];
2127
+ dailyRewards: number;
2128
+ tags: string[];
2129
+ lastCampaignCreatedAt: number;
2127
2130
  };
2128
2131
  readonly 500: {
2129
2132
  info: string;
@@ -2168,8 +2171,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2168
2171
  type?: string | undefined;
2169
2172
  search?: string | undefined;
2170
2173
  creatorAddress?: string | undefined;
2171
- mainProtocolId?: string | undefined;
2172
2174
  identifier?: string | undefined;
2175
+ mainProtocolId?: string | undefined;
2173
2176
  tags?: string | undefined;
2174
2177
  test?: boolean | undefined;
2175
2178
  page?: number | undefined;
@@ -2195,8 +2198,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2195
2198
  tags: string[];
2196
2199
  } | null | undefined;
2197
2200
  depositUrl?: string | undefined;
2198
- explorerAddress?: string | undefined;
2199
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
2200
2201
  aprRecord?: {
2201
2202
  timestamp: string | bigint;
2202
2203
  cumulated: number;
@@ -2207,6 +2208,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2207
2208
  identifier: string;
2208
2209
  }[];
2209
2210
  } | undefined;
2211
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
2212
+ explorerAddress?: string | undefined;
2210
2213
  tvlRecord?: {
2211
2214
  timestamp: string | bigint;
2212
2215
  total: number;
@@ -2265,11 +2268,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2265
2268
  chainId: number;
2266
2269
  action: string;
2267
2270
  type: string;
2268
- howToSteps: string[];
2269
- identifier: string;
2270
- dailyRewards: number;
2271
- tags: string[];
2272
- lastCampaignCreatedAt: number;
2273
2271
  chain: {
2274
2272
  explorers?: {
2275
2273
  chainId: number;
@@ -2280,6 +2278,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2280
2278
  id: number;
2281
2279
  icon: string;
2282
2280
  };
2281
+ identifier: string;
2282
+ howToSteps: string[];
2283
+ dailyRewards: number;
2284
+ tags: string[];
2285
+ lastCampaignCreatedAt: number;
2283
2286
  } | null)[];
2284
2287
  422: {
2285
2288
  type: "validation";
@@ -2314,8 +2317,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2314
2317
  type?: string | undefined;
2315
2318
  search?: string | undefined;
2316
2319
  creatorAddress?: string | undefined;
2317
- mainProtocolId?: string | undefined;
2318
2320
  identifier?: string | undefined;
2321
+ mainProtocolId?: string | undefined;
2319
2322
  tags?: string | undefined;
2320
2323
  test?: boolean | undefined;
2321
2324
  page?: number | undefined;
@@ -2364,8 +2367,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2364
2367
  type?: string | undefined;
2365
2368
  search?: string | undefined;
2366
2369
  creatorAddress?: string | undefined;
2367
- mainProtocolId?: string | undefined;
2368
2370
  identifier?: string | undefined;
2371
+ mainProtocolId?: string | undefined;
2369
2372
  tags?: string | undefined;
2370
2373
  test?: boolean | undefined;
2371
2374
  page?: number | undefined;
@@ -2424,8 +2427,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2424
2427
  type?: string | undefined;
2425
2428
  search?: string | undefined;
2426
2429
  creatorAddress?: string | undefined;
2427
- mainProtocolId?: string | undefined;
2428
2430
  identifier?: string | undefined;
2431
+ mainProtocolId?: string | undefined;
2429
2432
  tags?: string | undefined;
2430
2433
  test?: boolean | undefined;
2431
2434
  page?: number | undefined;
@@ -2486,8 +2489,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2486
2489
  type?: string | undefined;
2487
2490
  search?: string | undefined;
2488
2491
  creatorAddress?: string | undefined;
2489
- mainProtocolId?: string | undefined;
2490
2492
  identifier?: string | undefined;
2493
+ mainProtocolId?: string | undefined;
2491
2494
  tags?: string | undefined;
2492
2495
  test?: boolean | undefined;
2493
2496
  page?: number | undefined;
@@ -2542,8 +2545,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2542
2545
  type?: string | undefined;
2543
2546
  search?: string | undefined;
2544
2547
  creatorAddress?: string | undefined;
2545
- mainProtocolId?: string | undefined;
2546
2548
  identifier?: string | undefined;
2549
+ mainProtocolId?: string | undefined;
2547
2550
  tags?: string | undefined;
2548
2551
  test?: boolean | undefined;
2549
2552
  page?: number | undefined;
@@ -2599,8 +2602,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2599
2602
  type?: string | undefined;
2600
2603
  search?: string | undefined;
2601
2604
  creatorAddress?: string | undefined;
2602
- mainProtocolId?: string | undefined;
2603
2605
  identifier?: string | undefined;
2606
+ mainProtocolId?: string | undefined;
2604
2607
  tags?: string | undefined;
2605
2608
  test?: boolean | undefined;
2606
2609
  page?: number | undefined;
@@ -2678,6 +2681,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2678
2681
  explorerAddress: string | undefined;
2679
2682
  tags: string[];
2680
2683
  } | {
2684
+ Protocols: {
2685
+ name: string;
2686
+ description: string;
2687
+ id: string;
2688
+ url: string;
2689
+ icon: string;
2690
+ tags: string[];
2691
+ }[];
2681
2692
  Tokens: {
2682
2693
  symbol: string;
2683
2694
  name: string | null;
@@ -2694,14 +2705,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2694
2705
  verified: boolean;
2695
2706
  displaySymbol: string;
2696
2707
  }[];
2697
- Protocols: {
2698
- name: string;
2699
- description: string;
2700
- id: string;
2701
- url: string;
2702
- icon: string;
2703
- tags: string[];
2704
- }[];
2705
2708
  name: string;
2706
2709
  apr: number;
2707
2710
  tvl: number;
@@ -2712,11 +2715,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2712
2715
  action: import("@package/databases").OpportunityAction;
2713
2716
  type: string;
2714
2717
  depositUrl: string | null;
2715
- explorerAddress: string | null;
2716
- howToSteps: string[];
2717
- mainProtocolId: string | null;
2718
2718
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
2719
2719
  identifier: string;
2720
+ howToSteps: string[];
2721
+ explorerAddress: string | null;
2722
+ mainProtocolId: string | null;
2720
2723
  dailyRewards: number;
2721
2724
  tags: string[];
2722
2725
  lastCampaignCreatedAt: Date;
@@ -2758,11 +2761,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2758
2761
  action: import("@package/databases").OpportunityAction;
2759
2762
  type: string;
2760
2763
  depositUrl: string | null;
2761
- explorerAddress: string | null;
2762
- howToSteps: string[];
2763
- mainProtocolId: string | null;
2764
2764
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
2765
2765
  identifier: string;
2766
+ howToSteps: string[];
2767
+ explorerAddress: string | null;
2768
+ mainProtocolId: string | null;
2766
2769
  dailyRewards: number;
2767
2770
  tags: string[];
2768
2771
  lastCampaignCreatedAt: Date;
@@ -2790,8 +2793,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2790
2793
  description?: string | undefined;
2791
2794
  action?: "POOL" | "INVALID" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | undefined;
2792
2795
  depositUrl?: string | undefined;
2793
- explorerAddress?: string | undefined;
2794
2796
  howToSteps?: string[] | undefined;
2797
+ explorerAddress?: string | undefined;
2795
2798
  mainProtocolId?: string | undefined;
2796
2799
  };
2797
2800
  params: {
@@ -2811,11 +2814,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2811
2814
  action: import("@package/databases").OpportunityAction;
2812
2815
  type: string;
2813
2816
  depositUrl: string | null;
2814
- explorerAddress: string | null;
2815
- howToSteps: string[];
2816
- mainProtocolId: string | null;
2817
2817
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
2818
2818
  identifier: string;
2819
+ howToSteps: string[];
2820
+ explorerAddress: string | null;
2821
+ mainProtocolId: string | null;
2819
2822
  dailyRewards: number;
2820
2823
  tags: string[];
2821
2824
  lastCampaignCreatedAt: Date;
@@ -2839,7 +2842,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2839
2842
  ":id": {
2840
2843
  override: {
2841
2844
  delete: {
2842
- body: ("name" | "description" | "action" | "depositUrl" | "explorerAddress" | "howToSteps" | "mainProtocolId")[];
2845
+ body: ("name" | "description" | "action" | "depositUrl" | "howToSteps" | "explorerAddress" | "mainProtocolId")[];
2843
2846
  params: {
2844
2847
  id: string;
2845
2848
  };
@@ -2879,6 +2882,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2879
2882
  explorerAddress: string | undefined;
2880
2883
  tags: string[];
2881
2884
  } | {
2885
+ Protocols: {
2886
+ name: string;
2887
+ description: string;
2888
+ id: string;
2889
+ url: string;
2890
+ icon: string;
2891
+ tags: string[];
2892
+ }[];
2882
2893
  Tokens: {
2883
2894
  symbol: string;
2884
2895
  name: string | null;
@@ -2895,14 +2906,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2895
2906
  verified: boolean;
2896
2907
  displaySymbol: string;
2897
2908
  }[];
2898
- Protocols: {
2899
- name: string;
2900
- description: string;
2901
- id: string;
2902
- url: string;
2903
- icon: string;
2904
- tags: string[];
2905
- }[];
2906
2909
  name: string;
2907
2910
  apr: number;
2908
2911
  tvl: number;
@@ -2913,11 +2916,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2913
2916
  action: import("@package/databases").OpportunityAction;
2914
2917
  type: string;
2915
2918
  depositUrl: string | null;
2916
- explorerAddress: string | null;
2917
- howToSteps: string[];
2918
- mainProtocolId: string | null;
2919
2919
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
2920
2920
  identifier: string;
2921
+ howToSteps: string[];
2922
+ explorerAddress: string | null;
2923
+ mainProtocolId: string | null;
2921
2924
  dailyRewards: number;
2922
2925
  tags: string[];
2923
2926
  lastCampaignCreatedAt: Date;
@@ -2970,18 +2973,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
2970
2973
  campaignId: string;
2971
2974
  description: string | null;
2972
2975
  id: string;
2973
- params: import("@prisma/client/runtime/library").JsonValue;
2976
+ params: import("@prisma/client/runtime/client").JsonValue;
2974
2977
  amount: string;
2975
2978
  startTimestamp: bigint;
2976
2979
  type: string;
2977
2980
  computeChainId: number;
2978
2981
  distributionChainId: number;
2979
2982
  endTimestamp: bigint;
2980
- opportunityId: string;
2981
- creatorAddress: string;
2982
2983
  distributionType: import("@package/databases").DistributionType;
2983
2984
  subType: number | null;
2984
2985
  rewardTokenId: string;
2986
+ opportunityId: string;
2987
+ creatorAddress: string;
2985
2988
  manualOverrides: import("@package/databases").CampaignManualOverride[];
2986
2989
  createdAt: Date;
2987
2990
  rootCampaignId: string | null;
@@ -3019,6 +3022,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3019
3022
  explorerAddress: string | undefined;
3020
3023
  tags: string[];
3021
3024
  } | {
3025
+ Protocols: {
3026
+ name: string;
3027
+ description: string;
3028
+ id: string;
3029
+ url: string;
3030
+ icon: string;
3031
+ tags: string[];
3032
+ }[];
3022
3033
  Tokens: {
3023
3034
  symbol: string;
3024
3035
  name: string | null;
@@ -3035,14 +3046,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3035
3046
  verified: boolean;
3036
3047
  displaySymbol: string;
3037
3048
  }[];
3038
- Protocols: {
3039
- name: string;
3040
- description: string;
3041
- id: string;
3042
- url: string;
3043
- icon: string;
3044
- tags: string[];
3045
- }[];
3046
3049
  name: string;
3047
3050
  apr: number;
3048
3051
  tvl: number;
@@ -3053,11 +3056,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3053
3056
  action: import("@package/databases").OpportunityAction;
3054
3057
  type: string;
3055
3058
  depositUrl: string | null;
3056
- explorerAddress: string | null;
3057
- howToSteps: string[];
3058
- mainProtocolId: string | null;
3059
3059
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
3060
3060
  identifier: string;
3061
+ howToSteps: string[];
3062
+ explorerAddress: string | null;
3063
+ mainProtocolId: string | null;
3061
3064
  dailyRewards: number;
3062
3065
  tags: string[];
3063
3066
  lastCampaignCreatedAt: Date;
@@ -3093,9 +3096,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3093
3096
  creatorId?: string | null | undefined;
3094
3097
  address: string;
3095
3098
  } | undefined;
3096
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
3097
- rootCampaignId?: string | undefined;
3098
- parentCampaignId?: string | undefined;
3099
3099
  campaignStatus?: {
3100
3100
  error?: string | undefined;
3101
3101
  details?: any;
@@ -3103,6 +3103,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3103
3103
  computedUntil: string | number;
3104
3104
  processingStarted: string | number;
3105
3105
  } | undefined;
3106
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
3107
+ rootCampaignId?: string | undefined;
3108
+ parentCampaignId?: string | undefined;
3106
3109
  distributionChain?: {
3107
3110
  explorers?: {
3108
3111
  chainId: number;
@@ -3137,9 +3140,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3137
3140
  computeChainId: number;
3138
3141
  distributionChainId: number;
3139
3142
  endTimestamp: string | number;
3140
- creatorAddress: string;
3141
- subType: number | null;
3142
- createdAt: string;
3143
3143
  chain: {
3144
3144
  explorers?: {
3145
3145
  chainId: number;
@@ -3150,6 +3150,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3150
3150
  id: number;
3151
3151
  icon: string;
3152
3152
  };
3153
+ subType: number | null;
3154
+ creatorAddress: string;
3155
+ createdAt: string;
3153
3156
  };
3154
3157
  422: {
3155
3158
  type: "validation";
@@ -3372,16 +3375,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3372
3375
  tokenSymbol?: string | undefined;
3373
3376
  type?: string | undefined;
3374
3377
  endTimestamp?: string | undefined;
3378
+ subType?: number | undefined;
3375
3379
  opportunityId?: string | undefined;
3376
3380
  creatorAddress?: string | undefined;
3377
- mainProtocolId?: string | undefined;
3378
- subType?: number | undefined;
3379
3381
  rootCampaignId?: string | undefined;
3380
3382
  parentCampaignId?: string | undefined;
3383
+ mainProtocolId?: string | undefined;
3381
3384
  creatorId?: string | undefined;
3382
- mainParameter?: string | undefined;
3383
3385
  test?: boolean | undefined;
3384
3386
  page?: number | undefined;
3387
+ mainParameter?: string | undefined;
3385
3388
  creatorTag?: string | undefined;
3386
3389
  distributionChainIds?: number[] | undefined;
3387
3390
  types?: string[] | undefined;
@@ -3398,9 +3401,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3398
3401
  creatorId?: string | null | undefined;
3399
3402
  address: string;
3400
3403
  } | undefined;
3401
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
3402
- rootCampaignId?: string | undefined;
3403
- parentCampaignId?: string | undefined;
3404
3404
  campaignStatus?: {
3405
3405
  error?: string | undefined;
3406
3406
  details?: any;
@@ -3408,6 +3408,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3408
3408
  computedUntil: string | number;
3409
3409
  processingStarted: string | number;
3410
3410
  } | undefined;
3411
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
3412
+ rootCampaignId?: string | undefined;
3413
+ parentCampaignId?: string | undefined;
3411
3414
  distributionChain?: {
3412
3415
  explorers?: {
3413
3416
  chainId: number;
@@ -3442,9 +3445,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3442
3445
  computeChainId: number;
3443
3446
  distributionChainId: number;
3444
3447
  endTimestamp: string | number;
3445
- creatorAddress: string;
3446
- subType: number | null;
3447
- createdAt: string;
3448
3448
  chain: {
3449
3449
  explorers?: {
3450
3450
  chainId: number;
@@ -3455,6 +3455,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3455
3455
  id: number;
3456
3456
  icon: string;
3457
3457
  };
3458
+ subType: number | null;
3459
+ creatorAddress: string;
3460
+ createdAt: string;
3458
3461
  }[];
3459
3462
  422: {
3460
3463
  type: "validation";
@@ -3486,16 +3489,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3486
3489
  tokenSymbol?: string | undefined;
3487
3490
  type?: string | undefined;
3488
3491
  endTimestamp?: string | undefined;
3492
+ subType?: number | undefined;
3489
3493
  opportunityId?: string | undefined;
3490
3494
  creatorAddress?: string | undefined;
3491
- mainProtocolId?: string | undefined;
3492
- subType?: number | undefined;
3493
3495
  rootCampaignId?: string | undefined;
3494
3496
  parentCampaignId?: string | undefined;
3497
+ mainProtocolId?: string | undefined;
3495
3498
  creatorId?: string | undefined;
3496
- mainParameter?: string | undefined;
3497
3499
  test?: boolean | undefined;
3498
3500
  page?: number | undefined;
3501
+ mainParameter?: string | undefined;
3499
3502
  creatorTag?: string | undefined;
3500
3503
  distributionChainIds?: number[] | undefined;
3501
3504
  types?: string[] | undefined;
@@ -3537,16 +3540,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3537
3540
  tokenSymbol?: string | undefined;
3538
3541
  type?: string | undefined;
3539
3542
  endTimestamp?: string | undefined;
3543
+ subType?: number | undefined;
3540
3544
  opportunityId?: string | undefined;
3541
3545
  creatorAddress?: string | undefined;
3542
- mainProtocolId?: string | undefined;
3543
- subType?: number | undefined;
3544
3546
  rootCampaignId?: string | undefined;
3545
3547
  parentCampaignId?: string | undefined;
3548
+ mainProtocolId?: string | undefined;
3546
3549
  creatorId?: string | undefined;
3547
- mainParameter?: string | undefined;
3548
3550
  test?: boolean | undefined;
3549
3551
  page?: number | undefined;
3552
+ mainParameter?: string | undefined;
3550
3553
  creatorTag?: string | undefined;
3551
3554
  distributionChainIds?: number[] | undefined;
3552
3555
  types?: string[] | undefined;
@@ -3593,16 +3596,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3593
3596
  tokenSymbol?: string | undefined;
3594
3597
  type?: string | undefined;
3595
3598
  endTimestamp?: string | undefined;
3599
+ subType?: number | undefined;
3596
3600
  opportunityId?: string | undefined;
3597
3601
  creatorAddress?: string | undefined;
3598
- mainProtocolId?: string | undefined;
3599
- subType?: number | undefined;
3600
3602
  rootCampaignId?: string | undefined;
3601
3603
  parentCampaignId?: string | undefined;
3604
+ mainProtocolId?: string | undefined;
3602
3605
  creatorId?: string | undefined;
3603
- mainParameter?: string | undefined;
3604
3606
  test?: boolean | undefined;
3605
3607
  page?: number | undefined;
3608
+ mainParameter?: string | undefined;
3606
3609
  creatorTag?: string | undefined;
3607
3610
  distributionChainIds?: number[] | undefined;
3608
3611
  types?: string[] | undefined;
@@ -3650,16 +3653,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3650
3653
  tokenSymbol?: string | undefined;
3651
3654
  type?: string | undefined;
3652
3655
  endTimestamp?: string | undefined;
3656
+ subType?: number | undefined;
3653
3657
  opportunityId?: string | undefined;
3654
3658
  creatorAddress?: string | undefined;
3655
- mainProtocolId?: string | undefined;
3656
- subType?: number | undefined;
3657
3659
  rootCampaignId?: string | undefined;
3658
3660
  parentCampaignId?: string | undefined;
3661
+ mainProtocolId?: string | undefined;
3659
3662
  creatorId?: string | undefined;
3660
- mainParameter?: string | undefined;
3661
3663
  test?: boolean | undefined;
3662
3664
  page?: number | undefined;
3665
+ mainParameter?: string | undefined;
3663
3666
  creatorTag?: string | undefined;
3664
3667
  distributionChainIds?: number[] | undefined;
3665
3668
  types?: string[] | undefined;
@@ -3934,8 +3937,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3934
3937
  campaignId?: string | undefined;
3935
3938
  id?: string | undefined;
3936
3939
  amount?: string | undefined;
3937
- creatorAddress?: string | undefined;
3938
3940
  subType?: number | undefined;
3941
+ creatorAddress?: string | undefined;
3939
3942
  rewardToken: string;
3940
3943
  params: any;
3941
3944
  startTimestamp: number;
@@ -3972,8 +3975,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3972
3975
  campaignId?: string | undefined;
3973
3976
  id?: string | undefined;
3974
3977
  amount?: string | undefined;
3975
- creatorAddress?: string | undefined;
3976
3978
  subType?: number | undefined;
3979
+ creatorAddress?: string | undefined;
3977
3980
  rewardToken: string;
3978
3981
  params: any;
3979
3982
  startTimestamp: number;
@@ -3992,18 +3995,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
3992
3995
  campaignId: string;
3993
3996
  description: string | null;
3994
3997
  id: string;
3995
- params: import("@prisma/client/runtime/library").JsonValue;
3998
+ params: import("@prisma/client/runtime/client").JsonValue;
3996
3999
  amount: string;
3997
4000
  startTimestamp: bigint;
3998
4001
  type: string;
3999
4002
  computeChainId: number;
4000
4003
  distributionChainId: number;
4001
4004
  endTimestamp: bigint;
4002
- opportunityId: string;
4003
- creatorAddress: string;
4004
4005
  distributionType: import("@package/databases").DistributionType;
4005
4006
  subType: number | null;
4006
4007
  rewardTokenId: string;
4008
+ opportunityId: string;
4009
+ creatorAddress: string;
4007
4010
  manualOverrides: import("@package/databases").CampaignManualOverride[];
4008
4011
  createdAt: Date;
4009
4012
  rootCampaignId: string | null;
@@ -4041,6 +4044,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4041
4044
  explorerAddress: string | undefined;
4042
4045
  tags: string[];
4043
4046
  } | {
4047
+ Protocols: {
4048
+ name: string;
4049
+ description: string;
4050
+ id: string;
4051
+ url: string;
4052
+ icon: string;
4053
+ tags: string[];
4054
+ }[];
4044
4055
  Tokens: {
4045
4056
  symbol: string;
4046
4057
  name: string | null;
@@ -4057,14 +4068,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4057
4068
  verified: boolean;
4058
4069
  displaySymbol: string;
4059
4070
  }[];
4060
- Protocols: {
4061
- name: string;
4062
- description: string;
4063
- id: string;
4064
- url: string;
4065
- icon: string;
4066
- tags: string[];
4067
- }[];
4068
4071
  name: string;
4069
4072
  apr: number;
4070
4073
  tvl: number;
@@ -4075,11 +4078,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4075
4078
  action: import("@package/databases").OpportunityAction;
4076
4079
  type: string;
4077
4080
  depositUrl: string | null;
4078
- explorerAddress: string | null;
4079
- howToSteps: string[];
4080
- mainProtocolId: string | null;
4081
4081
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
4082
4082
  identifier: string;
4083
+ howToSteps: string[];
4084
+ explorerAddress: string | null;
4085
+ mainProtocolId: string | null;
4083
4086
  dailyRewards: number;
4084
4087
  tags: string[];
4085
4088
  lastCampaignCreatedAt: Date;
@@ -4115,18 +4118,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4115
4118
  campaignId: string;
4116
4119
  description: string | null;
4117
4120
  id: string;
4118
- params: import("@prisma/client/runtime/library").JsonValue;
4121
+ params: import("@prisma/client/runtime/client").JsonValue;
4119
4122
  amount: string;
4120
4123
  startTimestamp: bigint;
4121
4124
  type: string;
4122
4125
  computeChainId: number;
4123
4126
  distributionChainId: number;
4124
4127
  endTimestamp: bigint;
4125
- opportunityId: string;
4126
- creatorAddress: string;
4127
4128
  distributionType: import("@package/databases").DistributionType;
4128
4129
  subType: number | null;
4129
4130
  rewardTokenId: string;
4131
+ opportunityId: string;
4132
+ creatorAddress: string;
4130
4133
  manualOverrides: import("@package/databases").CampaignManualOverride[];
4131
4134
  createdAt: Date;
4132
4135
  rootCampaignId: string | null;
@@ -4164,6 +4167,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4164
4167
  explorerAddress: string | undefined;
4165
4168
  tags: string[];
4166
4169
  } | {
4170
+ Protocols: {
4171
+ name: string;
4172
+ description: string;
4173
+ id: string;
4174
+ url: string;
4175
+ icon: string;
4176
+ tags: string[];
4177
+ }[];
4167
4178
  Tokens: {
4168
4179
  symbol: string;
4169
4180
  name: string | null;
@@ -4180,14 +4191,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4180
4191
  verified: boolean;
4181
4192
  displaySymbol: string;
4182
4193
  }[];
4183
- Protocols: {
4184
- name: string;
4185
- description: string;
4186
- id: string;
4187
- url: string;
4188
- icon: string;
4189
- tags: string[];
4190
- }[];
4191
4194
  name: string;
4192
4195
  apr: number;
4193
4196
  tvl: number;
@@ -4198,11 +4201,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4198
4201
  action: import("@package/databases").OpportunityAction;
4199
4202
  type: string;
4200
4203
  depositUrl: string | null;
4201
- explorerAddress: string | null;
4202
- howToSteps: string[];
4203
- mainProtocolId: string | null;
4204
4204
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
4205
4205
  identifier: string;
4206
+ howToSteps: string[];
4207
+ explorerAddress: string | null;
4208
+ mainProtocolId: string | null;
4206
4209
  dailyRewards: number;
4207
4210
  tags: string[];
4208
4211
  lastCampaignCreatedAt: Date;
@@ -4239,18 +4242,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4239
4242
  campaignId: string;
4240
4243
  description: string | null;
4241
4244
  id: string;
4242
- params: import("@prisma/client/runtime/library").JsonValue;
4245
+ params: import("@prisma/client/runtime/client").JsonValue;
4243
4246
  amount: string;
4244
4247
  startTimestamp: bigint;
4245
4248
  type: string;
4246
4249
  computeChainId: number;
4247
4250
  distributionChainId: number;
4248
4251
  endTimestamp: bigint;
4249
- opportunityId: string;
4250
- creatorAddress: string;
4251
4252
  distributionType: import("@package/databases").DistributionType;
4252
4253
  subType: number | null;
4253
4254
  rewardTokenId: string;
4255
+ opportunityId: string;
4256
+ creatorAddress: string;
4254
4257
  manualOverrides: import("@package/databases").CampaignManualOverride[];
4255
4258
  createdAt: Date;
4256
4259
  rootCampaignId: string | null;
@@ -4288,6 +4291,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4288
4291
  explorerAddress: string | undefined;
4289
4292
  tags: string[];
4290
4293
  } | {
4294
+ Protocols: {
4295
+ name: string;
4296
+ description: string;
4297
+ id: string;
4298
+ url: string;
4299
+ icon: string;
4300
+ tags: string[];
4301
+ }[];
4291
4302
  Tokens: {
4292
4303
  symbol: string;
4293
4304
  name: string | null;
@@ -4304,14 +4315,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4304
4315
  verified: boolean;
4305
4316
  displaySymbol: string;
4306
4317
  }[];
4307
- Protocols: {
4308
- name: string;
4309
- description: string;
4310
- id: string;
4311
- url: string;
4312
- icon: string;
4313
- tags: string[];
4314
- }[];
4315
4318
  name: string;
4316
4319
  apr: number;
4317
4320
  tvl: number;
@@ -4322,11 +4325,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
4322
4325
  action: import("@package/databases").OpportunityAction;
4323
4326
  type: string;
4324
4327
  depositUrl: string | null;
4325
- explorerAddress: string | null;
4326
- howToSteps: string[];
4327
- mainProtocolId: string | null;
4328
4328
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
4329
4329
  identifier: string;
4330
+ howToSteps: string[];
4331
+ explorerAddress: string | null;
4332
+ mainProtocolId: string | null;
4330
4333
  dailyRewards: number;
4331
4334
  tags: string[];
4332
4335
  lastCampaignCreatedAt: Date;
@@ -5911,7 +5914,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
5911
5914
  200: {
5912
5915
  symbol: string;
5913
5916
  id: number;
5914
- args: import("@prisma/client/runtime/library").JsonValue | null;
5917
+ args: import("@prisma/client/runtime/client").JsonValue | null;
5915
5918
  method: import("@package/databases").PriceSourceMethod;
5916
5919
  }[];
5917
5920
  };
@@ -5932,7 +5935,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
5932
5935
  200: {
5933
5936
  symbol: string;
5934
5937
  id: number;
5935
- args: import("@prisma/client/runtime/library").JsonValue | null;
5938
+ args: import("@prisma/client/runtime/client").JsonValue | null;
5936
5939
  method: import("@package/databases").PriceSourceMethod;
5937
5940
  };
5938
5941
  422: {
@@ -5997,7 +6000,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
5997
6000
  200: {
5998
6001
  symbol: string;
5999
6002
  id: number;
6000
- args: import("@prisma/client/runtime/library").JsonValue | null;
6003
+ args: import("@prisma/client/runtime/client").JsonValue | null;
6001
6004
  method: import("@package/databases").PriceSourceMethod;
6002
6005
  };
6003
6006
  422: {
@@ -6031,7 +6034,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
6031
6034
  200: {
6032
6035
  symbol: string;
6033
6036
  id: number;
6034
- args: import("@prisma/client/runtime/library").JsonValue | null;
6037
+ args: import("@prisma/client/runtime/client").JsonValue | null;
6035
6038
  method: import("@package/databases").PriceSourceMethod;
6036
6039
  };
6037
6040
  422: {
@@ -6065,7 +6068,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
6065
6068
  chainId: number;
6066
6069
  userAddress: string;
6067
6070
  arrestTimestamp: bigint;
6068
- arrestDetails: import("@prisma/client/runtime/library").JsonValue;
6071
+ arrestDetails: import("@prisma/client/runtime/client").JsonValue;
6069
6072
  }[];
6070
6073
  };
6071
6074
  };
@@ -6132,7 +6135,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
6132
6135
  chainId: number;
6133
6136
  userAddress: string;
6134
6137
  arrestTimestamp: bigint;
6135
- arrestDetails: import("@prisma/client/runtime/library").JsonValue;
6138
+ arrestDetails: import("@prisma/client/runtime/client").JsonValue;
6136
6139
  };
6137
6140
  422: {
6138
6141
  type: "validation";
@@ -6379,6 +6382,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
6379
6382
  id: number;
6380
6383
  icon: string;
6381
6384
  };
6385
+ Protocols: {
6386
+ name: string;
6387
+ description: string;
6388
+ id: string;
6389
+ url: string;
6390
+ icon: string;
6391
+ tags: string[];
6392
+ }[];
6382
6393
  Tokens: {
6383
6394
  symbol: string;
6384
6395
  name: string | null;
@@ -6395,14 +6406,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
6395
6406
  verified: boolean;
6396
6407
  displaySymbol: string;
6397
6408
  }[];
6398
- Protocols: {
6399
- name: string;
6400
- description: string;
6401
- id: string;
6402
- url: string;
6403
- icon: string;
6404
- tags: string[];
6405
- }[];
6406
6409
  MainProtocol: {
6407
6410
  name: string;
6408
6411
  description: string;
@@ -6422,11 +6425,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
6422
6425
  action: import("@package/databases").OpportunityAction;
6423
6426
  type: string;
6424
6427
  depositUrl: string | null;
6425
- explorerAddress: string | null;
6426
- howToSteps: string[];
6427
- mainProtocolId: string | null;
6428
6428
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
6429
6429
  identifier: string;
6430
+ howToSteps: string[];
6431
+ explorerAddress: string | null;
6432
+ mainProtocolId: string | null;
6430
6433
  dailyRewards: number;
6431
6434
  tags: string[];
6432
6435
  lastCampaignCreatedAt: Date;
@@ -7184,7 +7187,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
7184
7187
  campaignId: string;
7185
7188
  error: string;
7186
7189
  status: import("@package/databases").RunStatus;
7187
- details: import("@prisma/client/runtime/library").JsonValue;
7190
+ details: import("@prisma/client/runtime/client").JsonValue;
7188
7191
  computedUntil: bigint;
7189
7192
  processingStarted: bigint;
7190
7193
  }[];
@@ -7213,14 +7216,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
7213
7216
  campaignId: string;
7214
7217
  error: string;
7215
7218
  status: import("@package/databases").RunStatus;
7216
- details: import("@prisma/client/runtime/library").JsonValue;
7219
+ details: import("@prisma/client/runtime/client").JsonValue;
7217
7220
  computedUntil: bigint;
7218
7221
  processingStarted: bigint;
7219
7222
  }[] | {
7220
7223
  campaignId: string;
7221
7224
  error: string;
7222
7225
  status: import("@package/databases").RunStatus;
7223
- details: import("@prisma/client/runtime/library").JsonValue;
7226
+ details: import("@prisma/client/runtime/client").JsonValue;
7224
7227
  computedUntil: bigint;
7225
7228
  processingStarted: bigint;
7226
7229
  };
@@ -7257,24 +7260,24 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
7257
7260
  computeChainId: number;
7258
7261
  distributionChainId: number;
7259
7262
  endTimestamp: bigint;
7260
- RewardToken: {
7261
- symbol: string;
7262
- address: string;
7263
- isTest: boolean;
7264
- };
7265
- Opportunity: {
7266
- name: string;
7267
- type: string;
7268
- identifier: string;
7269
- };
7270
7263
  CampaignStatus: {
7271
7264
  campaignId: string;
7272
7265
  error: string;
7273
7266
  status: import("@package/databases").RunStatus;
7274
- details: import("@prisma/client/runtime/library").JsonValue;
7267
+ details: import("@prisma/client/runtime/client").JsonValue;
7275
7268
  computedUntil: bigint;
7276
7269
  processingStarted: bigint;
7277
7270
  }[];
7271
+ Opportunity: {
7272
+ name: string;
7273
+ type: string;
7274
+ identifier: string;
7275
+ };
7276
+ RewardToken: {
7277
+ symbol: string;
7278
+ address: string;
7279
+ isTest: boolean;
7280
+ };
7278
7281
  }[];
7279
7282
  422: {
7280
7283
  type: "validation";
@@ -9022,11 +9025,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
9022
9025
  action: import("@package/databases").OpportunityAction;
9023
9026
  type: string;
9024
9027
  depositUrl: string | null;
9025
- explorerAddress: string | null;
9026
- howToSteps: string[];
9027
- mainProtocolId: string | null;
9028
9028
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
9029
9029
  identifier: string;
9030
+ howToSteps: string[];
9031
+ explorerAddress: string | null;
9032
+ mainProtocolId: string | null;
9030
9033
  dailyRewards: number;
9031
9034
  tags: string[];
9032
9035
  lastCampaignCreatedAt: Date;
@@ -9035,18 +9038,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
9035
9038
  campaignId: string;
9036
9039
  description: string | null;
9037
9040
  id: string;
9038
- params: import("@prisma/client/runtime/library").JsonValue;
9041
+ params: import("@prisma/client/runtime/client").JsonValue;
9039
9042
  amount: string;
9040
9043
  startTimestamp: bigint;
9041
9044
  type: string;
9042
9045
  computeChainId: number;
9043
9046
  distributionChainId: number;
9044
9047
  endTimestamp: bigint;
9045
- opportunityId: string;
9046
- creatorAddress: string;
9047
9048
  distributionType: import("@package/databases").DistributionType;
9048
9049
  subType: number | null;
9049
9050
  rewardTokenId: string;
9051
+ opportunityId: string;
9052
+ creatorAddress: string;
9050
9053
  manualOverrides: import("@package/databases").CampaignManualOverride[];
9051
9054
  createdAt: Date;
9052
9055
  rootCampaignId: string | null;
@@ -9093,11 +9096,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
9093
9096
  action: import("@package/databases").OpportunityAction;
9094
9097
  type: string;
9095
9098
  depositUrl: string | null;
9096
- explorerAddress: string | null;
9097
- howToSteps: string[];
9098
- mainProtocolId: string | null;
9099
9099
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
9100
9100
  identifier: string;
9101
+ howToSteps: string[];
9102
+ explorerAddress: string | null;
9103
+ mainProtocolId: string | null;
9101
9104
  dailyRewards: number;
9102
9105
  tags: string[];
9103
9106
  lastCampaignCreatedAt: Date;
@@ -9106,18 +9109,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
9106
9109
  campaignId: string;
9107
9110
  description: string | null;
9108
9111
  id: string;
9109
- params: import("@prisma/client/runtime/library").JsonValue;
9112
+ params: import("@prisma/client/runtime/client").JsonValue;
9110
9113
  amount: string;
9111
9114
  startTimestamp: bigint;
9112
9115
  type: string;
9113
9116
  computeChainId: number;
9114
9117
  distributionChainId: number;
9115
9118
  endTimestamp: bigint;
9116
- opportunityId: string;
9117
- creatorAddress: string;
9118
9119
  distributionType: import("@package/databases").DistributionType;
9119
9120
  subType: number | null;
9120
9121
  rewardTokenId: string;
9122
+ opportunityId: string;
9123
+ creatorAddress: string;
9121
9124
  manualOverrides: import("@package/databases").CampaignManualOverride[];
9122
9125
  createdAt: Date;
9123
9126
  rootCampaignId: string | null;
@@ -9511,6 +9514,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
9511
9514
  747474?: {
9512
9515
  [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
9513
9516
  } | undefined;
9517
+ 151?: {
9518
+ [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
9519
+ } | undefined;
9514
9520
  };
9515
9521
  };
9516
9522
  };
@@ -9967,8 +9973,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
9967
9973
  NodesSources: {
9968
9974
  id: string;
9969
9975
  chainId: number;
9970
- lastFetchedBlockNumber: number;
9971
9976
  source: string;
9977
+ lastFetchedBlockNumber: number;
9972
9978
  topics: string[];
9973
9979
  };
9974
9980
  }[];
@@ -11311,6 +11317,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11311
11317
  747474?: {
11312
11318
  [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
11313
11319
  } | undefined;
11320
+ 151?: {
11321
+ [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
11322
+ } | undefined;
11314
11323
  } | null;
11315
11324
  }>>;
11316
11325
  pool: ((params: {
@@ -11362,8 +11371,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11362
11371
  tags: string[];
11363
11372
  } | null | undefined;
11364
11373
  depositUrl?: string | undefined;
11365
- explorerAddress?: string | undefined;
11366
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11367
11374
  aprRecord?: {
11368
11375
  timestamp: string | bigint;
11369
11376
  cumulated: number;
@@ -11374,6 +11381,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11374
11381
  identifier: string;
11375
11382
  }[];
11376
11383
  } | undefined;
11384
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11385
+ explorerAddress?: string | undefined;
11377
11386
  tvlRecord?: {
11378
11387
  timestamp: string | bigint;
11379
11388
  total: number;
@@ -11432,11 +11441,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11432
11441
  chainId: number;
11433
11442
  action: string;
11434
11443
  type: string;
11435
- howToSteps: string[];
11436
- identifier: string;
11437
- dailyRewards: number;
11438
- tags: string[];
11439
- lastCampaignCreatedAt: number;
11440
11444
  chain: {
11441
11445
  explorers?: {
11442
11446
  chainId: number;
@@ -11447,6 +11451,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11447
11451
  id: number;
11448
11452
  icon: string;
11449
11453
  };
11454
+ identifier: string;
11455
+ howToSteps: string[];
11456
+ dailyRewards: number;
11457
+ tags: string[];
11458
+ lastCampaignCreatedAt: number;
11450
11459
  };
11451
11460
  readonly 500: {
11452
11461
  info: string;
@@ -11491,8 +11500,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11491
11500
  tags: string[];
11492
11501
  } | null | undefined;
11493
11502
  depositUrl?: string | undefined;
11494
- explorerAddress?: string | undefined;
11495
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11496
11503
  aprRecord?: {
11497
11504
  timestamp: string | bigint;
11498
11505
  cumulated: number;
@@ -11503,6 +11510,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11503
11510
  identifier: string;
11504
11511
  }[];
11505
11512
  } | undefined;
11513
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11514
+ explorerAddress?: string | undefined;
11506
11515
  tvlRecord?: {
11507
11516
  timestamp: string | bigint;
11508
11517
  total: number;
@@ -11566,9 +11575,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11566
11575
  creatorId?: string | null | undefined;
11567
11576
  address: string;
11568
11577
  } | undefined;
11569
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11570
- rootCampaignId?: string | undefined;
11571
- parentCampaignId?: string | undefined;
11572
11578
  campaignStatus?: {
11573
11579
  error?: string | undefined;
11574
11580
  details?: any;
@@ -11576,6 +11582,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11576
11582
  computedUntil: string | number;
11577
11583
  processingStarted: string | number;
11578
11584
  } | undefined;
11585
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11586
+ rootCampaignId?: string | undefined;
11587
+ parentCampaignId?: string | undefined;
11579
11588
  distributionChain?: {
11580
11589
  explorers?: {
11581
11590
  chainId: number;
@@ -11610,9 +11619,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11610
11619
  computeChainId: number;
11611
11620
  distributionChainId: number;
11612
11621
  endTimestamp: string | number;
11613
- creatorAddress: string;
11614
- subType: number | null;
11615
- createdAt: string;
11616
11622
  chain: {
11617
11623
  explorers?: {
11618
11624
  chainId: number;
@@ -11623,14 +11629,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11623
11629
  id: number;
11624
11630
  icon: string;
11625
11631
  };
11632
+ subType: number | null;
11633
+ creatorAddress: string;
11634
+ createdAt: string;
11626
11635
  }[];
11627
11636
  action: string;
11628
11637
  type: string;
11629
- howToSteps: string[];
11630
- identifier: string;
11631
- dailyRewards: number;
11632
- tags: string[];
11633
- lastCampaignCreatedAt: number;
11634
11638
  chain: {
11635
11639
  explorers?: {
11636
11640
  chainId: number;
@@ -11641,6 +11645,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11641
11645
  id: number;
11642
11646
  icon: string;
11643
11647
  };
11648
+ identifier: string;
11649
+ howToSteps: string[];
11650
+ dailyRewards: number;
11651
+ tags: string[];
11652
+ lastCampaignCreatedAt: number;
11644
11653
  };
11645
11654
  readonly 500: {
11646
11655
  info: string;
@@ -11702,6 +11711,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11702
11711
  explorerAddress: string | undefined;
11703
11712
  tags: string[];
11704
11713
  } | {
11714
+ Protocols: {
11715
+ name: string;
11716
+ description: string;
11717
+ id: string;
11718
+ url: string;
11719
+ icon: string;
11720
+ tags: string[];
11721
+ }[];
11705
11722
  Tokens: {
11706
11723
  symbol: string;
11707
11724
  name: string | null;
@@ -11718,14 +11735,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11718
11735
  verified: boolean;
11719
11736
  displaySymbol: string;
11720
11737
  }[];
11721
- Protocols: {
11722
- name: string;
11723
- description: string;
11724
- id: string;
11725
- url: string;
11726
- icon: string;
11727
- tags: string[];
11728
- }[];
11729
11738
  name: string;
11730
11739
  apr: number;
11731
11740
  tvl: number;
@@ -11736,11 +11745,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11736
11745
  action: import("@package/databases").OpportunityAction;
11737
11746
  type: string;
11738
11747
  depositUrl: string | null;
11739
- explorerAddress: string | null;
11740
- howToSteps: string[];
11741
- mainProtocolId: string | null;
11742
11748
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
11743
11749
  identifier: string;
11750
+ howToSteps: string[];
11751
+ explorerAddress: string | null;
11752
+ mainProtocolId: string | null;
11744
11753
  dailyRewards: number;
11745
11754
  tags: string[];
11746
11755
  lastCampaignCreatedAt: Date;
@@ -11773,11 +11782,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11773
11782
  action: import("@package/databases").OpportunityAction;
11774
11783
  type: string;
11775
11784
  depositUrl: string | null;
11776
- explorerAddress: string | null;
11777
- howToSteps: string[];
11778
- mainProtocolId: string | null;
11779
11785
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
11780
11786
  identifier: string;
11787
+ howToSteps: string[];
11788
+ explorerAddress: string | null;
11789
+ mainProtocolId: string | null;
11781
11790
  dailyRewards: number;
11782
11791
  tags: string[];
11783
11792
  lastCampaignCreatedAt: Date;
@@ -11798,8 +11807,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11798
11807
  description?: string | undefined;
11799
11808
  action?: "POOL" | "INVALID" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | undefined;
11800
11809
  depositUrl?: string | undefined;
11801
- explorerAddress?: string | undefined;
11802
11810
  howToSteps?: string[] | undefined;
11811
+ explorerAddress?: string | undefined;
11803
11812
  mainProtocolId?: string | undefined;
11804
11813
  }, options?: {
11805
11814
  headers?: Record<string, unknown> | undefined;
@@ -11817,11 +11826,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11817
11826
  action: import("@package/databases").OpportunityAction;
11818
11827
  type: string;
11819
11828
  depositUrl: string | null;
11820
- explorerAddress: string | null;
11821
- howToSteps: string[];
11822
- mainProtocolId: string | null;
11823
11829
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
11824
11830
  identifier: string;
11831
+ howToSteps: string[];
11832
+ explorerAddress: string | null;
11833
+ mainProtocolId: string | null;
11825
11834
  dailyRewards: number;
11826
11835
  tags: string[];
11827
11836
  lastCampaignCreatedAt: Date;
@@ -11836,7 +11845,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11836
11845
  expected?: string;
11837
11846
  };
11838
11847
  }>>;
11839
- delete: (body: ("name" | "description" | "action" | "depositUrl" | "explorerAddress" | "howToSteps" | "mainProtocolId")[], options?: {
11848
+ delete: (body: ("name" | "description" | "action" | "depositUrl" | "howToSteps" | "explorerAddress" | "mainProtocolId")[], options?: {
11840
11849
  headers?: Record<string, unknown> | undefined;
11841
11850
  query?: Record<string, unknown> | undefined;
11842
11851
  fetch?: RequestInit | undefined;
@@ -11874,6 +11883,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11874
11883
  explorerAddress: string | undefined;
11875
11884
  tags: string[];
11876
11885
  } | {
11886
+ Protocols: {
11887
+ name: string;
11888
+ description: string;
11889
+ id: string;
11890
+ url: string;
11891
+ icon: string;
11892
+ tags: string[];
11893
+ }[];
11877
11894
  Tokens: {
11878
11895
  symbol: string;
11879
11896
  name: string | null;
@@ -11890,14 +11907,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11890
11907
  verified: boolean;
11891
11908
  displaySymbol: string;
11892
11909
  }[];
11893
- Protocols: {
11894
- name: string;
11895
- description: string;
11896
- id: string;
11897
- url: string;
11898
- icon: string;
11899
- tags: string[];
11900
- }[];
11901
11910
  name: string;
11902
11911
  apr: number;
11903
11912
  tvl: number;
@@ -11908,11 +11917,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11908
11917
  action: import("@package/databases").OpportunityAction;
11909
11918
  type: string;
11910
11919
  depositUrl: string | null;
11911
- explorerAddress: string | null;
11912
- howToSteps: string[];
11913
- mainProtocolId: string | null;
11914
11920
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
11915
11921
  identifier: string;
11922
+ howToSteps: string[];
11923
+ explorerAddress: string | null;
11924
+ mainProtocolId: string | null;
11916
11925
  dailyRewards: number;
11917
11926
  tags: string[];
11918
11927
  lastCampaignCreatedAt: Date;
@@ -11944,16 +11953,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11944
11953
  tokenSymbol?: string | undefined;
11945
11954
  type?: string | undefined;
11946
11955
  endTimestamp?: string | undefined;
11956
+ subType?: number | undefined;
11947
11957
  opportunityId?: string | undefined;
11948
11958
  creatorAddress?: string | undefined;
11949
- mainProtocolId?: string | undefined;
11950
- subType?: number | undefined;
11951
11959
  rootCampaignId?: string | undefined;
11952
11960
  parentCampaignId?: string | undefined;
11961
+ mainProtocolId?: string | undefined;
11953
11962
  creatorId?: string | undefined;
11954
- mainParameter?: string | undefined;
11955
11963
  test?: boolean | undefined;
11956
11964
  page?: number | undefined;
11965
+ mainParameter?: string | undefined;
11957
11966
  creatorTag?: string | undefined;
11958
11967
  distributionChainIds?: number[] | undefined;
11959
11968
  types?: string[] | undefined;
@@ -11976,8 +11985,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11976
11985
  tags: string[];
11977
11986
  } | null | undefined;
11978
11987
  depositUrl?: string | undefined;
11979
- explorerAddress?: string | undefined;
11980
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11981
11988
  aprRecord?: {
11982
11989
  timestamp: string | bigint;
11983
11990
  cumulated: number;
@@ -11988,6 +11995,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11988
11995
  identifier: string;
11989
11996
  }[];
11990
11997
  } | undefined;
11998
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
11999
+ explorerAddress?: string | undefined;
11991
12000
  tvlRecord?: {
11992
12001
  timestamp: string | bigint;
11993
12002
  total: number;
@@ -12051,9 +12060,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12051
12060
  creatorId?: string | null | undefined;
12052
12061
  address: string;
12053
12062
  } | undefined;
12054
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12055
- rootCampaignId?: string | undefined;
12056
- parentCampaignId?: string | undefined;
12057
12063
  campaignStatus?: {
12058
12064
  error?: string | undefined;
12059
12065
  details?: any;
@@ -12061,6 +12067,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12061
12067
  computedUntil: string | number;
12062
12068
  processingStarted: string | number;
12063
12069
  } | undefined;
12070
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12071
+ rootCampaignId?: string | undefined;
12072
+ parentCampaignId?: string | undefined;
12064
12073
  distributionChain?: {
12065
12074
  explorers?: {
12066
12075
  chainId: number;
@@ -12095,9 +12104,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12095
12104
  computeChainId: number;
12096
12105
  distributionChainId: number;
12097
12106
  endTimestamp: string | number;
12098
- creatorAddress: string;
12099
- subType: number | null;
12100
- createdAt: string;
12101
12107
  chain: {
12102
12108
  explorers?: {
12103
12109
  chainId: number;
@@ -12108,14 +12114,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12108
12114
  id: number;
12109
12115
  icon: string;
12110
12116
  };
12117
+ subType: number | null;
12118
+ creatorAddress: string;
12119
+ createdAt: string;
12111
12120
  }[];
12112
12121
  action: string;
12113
12122
  type: string;
12114
- howToSteps: string[];
12115
- identifier: string;
12116
- dailyRewards: number;
12117
- tags: string[];
12118
- lastCampaignCreatedAt: number;
12119
12123
  chain: {
12120
12124
  explorers?: {
12121
12125
  chainId: number;
@@ -12126,6 +12130,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12126
12130
  id: number;
12127
12131
  icon: string;
12128
12132
  };
12133
+ identifier: string;
12134
+ howToSteps: string[];
12135
+ dailyRewards: number;
12136
+ tags: string[];
12137
+ lastCampaignCreatedAt: number;
12129
12138
  }[];
12130
12139
  readonly 500: {
12131
12140
  info: string;
@@ -12164,8 +12173,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12164
12173
  type?: string | undefined;
12165
12174
  search?: string | undefined;
12166
12175
  creatorAddress?: string | undefined;
12167
- mainProtocolId?: string | undefined;
12168
12176
  identifier?: string | undefined;
12177
+ mainProtocolId?: string | undefined;
12169
12178
  tags?: string | undefined;
12170
12179
  test?: boolean | undefined;
12171
12180
  page?: number | undefined;
@@ -12191,8 +12200,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12191
12200
  tags: string[];
12192
12201
  } | null | undefined;
12193
12202
  depositUrl?: string | undefined;
12194
- explorerAddress?: string | undefined;
12195
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12196
12203
  aprRecord?: {
12197
12204
  timestamp: string | bigint;
12198
12205
  cumulated: number;
@@ -12203,6 +12210,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12203
12210
  identifier: string;
12204
12211
  }[];
12205
12212
  } | undefined;
12213
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12214
+ explorerAddress?: string | undefined;
12206
12215
  tvlRecord?: {
12207
12216
  timestamp: string | bigint;
12208
12217
  total: number;
@@ -12261,11 +12270,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12261
12270
  chainId: number;
12262
12271
  action: string;
12263
12272
  type: string;
12264
- howToSteps: string[];
12265
- identifier: string;
12266
- dailyRewards: number;
12267
- tags: string[];
12268
- lastCampaignCreatedAt: number;
12269
12273
  chain: {
12270
12274
  explorers?: {
12271
12275
  chainId: number;
@@ -12276,6 +12280,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12276
12280
  id: number;
12277
12281
  icon: string;
12278
12282
  };
12283
+ identifier: string;
12284
+ howToSteps: string[];
12285
+ dailyRewards: number;
12286
+ tags: string[];
12287
+ lastCampaignCreatedAt: number;
12279
12288
  } | null)[];
12280
12289
  422: {
12281
12290
  type: "validation";
@@ -12305,8 +12314,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12305
12314
  type?: string | undefined;
12306
12315
  search?: string | undefined;
12307
12316
  creatorAddress?: string | undefined;
12308
- mainProtocolId?: string | undefined;
12309
12317
  identifier?: string | undefined;
12318
+ mainProtocolId?: string | undefined;
12310
12319
  tags?: string | undefined;
12311
12320
  test?: boolean | undefined;
12312
12321
  page?: number | undefined;
@@ -12350,8 +12359,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12350
12359
  type?: string | undefined;
12351
12360
  search?: string | undefined;
12352
12361
  creatorAddress?: string | undefined;
12353
- mainProtocolId?: string | undefined;
12354
12362
  identifier?: string | undefined;
12363
+ mainProtocolId?: string | undefined;
12355
12364
  tags?: string | undefined;
12356
12365
  test?: boolean | undefined;
12357
12366
  page?: number | undefined;
@@ -12403,8 +12412,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12403
12412
  type?: string | undefined;
12404
12413
  search?: string | undefined;
12405
12414
  creatorAddress?: string | undefined;
12406
- mainProtocolId?: string | undefined;
12407
12415
  identifier?: string | undefined;
12416
+ mainProtocolId?: string | undefined;
12408
12417
  tags?: string | undefined;
12409
12418
  test?: boolean | undefined;
12410
12419
  page?: number | undefined;
@@ -12459,8 +12468,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12459
12468
  type?: string | undefined;
12460
12469
  search?: string | undefined;
12461
12470
  creatorAddress?: string | undefined;
12462
- mainProtocolId?: string | undefined;
12463
12471
  identifier?: string | undefined;
12472
+ mainProtocolId?: string | undefined;
12464
12473
  tags?: string | undefined;
12465
12474
  test?: boolean | undefined;
12466
12475
  page?: number | undefined;
@@ -12507,8 +12516,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12507
12516
  type?: string | undefined;
12508
12517
  search?: string | undefined;
12509
12518
  creatorAddress?: string | undefined;
12510
- mainProtocolId?: string | undefined;
12511
12519
  identifier?: string | undefined;
12520
+ mainProtocolId?: string | undefined;
12512
12521
  tags?: string | undefined;
12513
12522
  test?: boolean | undefined;
12514
12523
  page?: number | undefined;
@@ -12555,8 +12564,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12555
12564
  type?: string | undefined;
12556
12565
  search?: string | undefined;
12557
12566
  creatorAddress?: string | undefined;
12558
- mainProtocolId?: string | undefined;
12559
12567
  identifier?: string | undefined;
12568
+ mainProtocolId?: string | undefined;
12560
12569
  tags?: string | undefined;
12561
12570
  test?: boolean | undefined;
12562
12571
  page?: number | undefined;
@@ -12600,9 +12609,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12600
12609
  creatorId?: string | null | undefined;
12601
12610
  address: string;
12602
12611
  } | undefined;
12603
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12604
- rootCampaignId?: string | undefined;
12605
- parentCampaignId?: string | undefined;
12606
12612
  campaignStatus?: {
12607
12613
  error?: string | undefined;
12608
12614
  details?: any;
@@ -12610,6 +12616,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12610
12616
  computedUntil: string | number;
12611
12617
  processingStarted: string | number;
12612
12618
  } | undefined;
12619
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12620
+ rootCampaignId?: string | undefined;
12621
+ parentCampaignId?: string | undefined;
12613
12622
  distributionChain?: {
12614
12623
  explorers?: {
12615
12624
  chainId: number;
@@ -12644,9 +12653,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12644
12653
  computeChainId: number;
12645
12654
  distributionChainId: number;
12646
12655
  endTimestamp: string | number;
12647
- creatorAddress: string;
12648
- subType: number | null;
12649
- createdAt: string;
12650
12656
  chain: {
12651
12657
  explorers?: {
12652
12658
  chainId: number;
@@ -12657,6 +12663,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12657
12663
  id: number;
12658
12664
  icon: string;
12659
12665
  };
12666
+ subType: number | null;
12667
+ creatorAddress: string;
12668
+ createdAt: string;
12660
12669
  };
12661
12670
  422: {
12662
12671
  type: "validation";
@@ -12734,18 +12743,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12734
12743
  campaignId: string;
12735
12744
  description: string | null;
12736
12745
  id: string;
12737
- params: import("@prisma/client/runtime/library").JsonValue;
12746
+ params: import("@prisma/client/runtime/client").JsonValue;
12738
12747
  amount: string;
12739
12748
  startTimestamp: bigint;
12740
12749
  type: string;
12741
12750
  computeChainId: number;
12742
12751
  distributionChainId: number;
12743
12752
  endTimestamp: bigint;
12744
- opportunityId: string;
12745
- creatorAddress: string;
12746
12753
  distributionType: import("@package/databases").DistributionType;
12747
12754
  subType: number | null;
12748
12755
  rewardTokenId: string;
12756
+ opportunityId: string;
12757
+ creatorAddress: string;
12749
12758
  manualOverrides: import("@package/databases").CampaignManualOverride[];
12750
12759
  createdAt: Date;
12751
12760
  rootCampaignId: string | null;
@@ -12783,6 +12792,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12783
12792
  explorerAddress: string | undefined;
12784
12793
  tags: string[];
12785
12794
  } | {
12795
+ Protocols: {
12796
+ name: string;
12797
+ description: string;
12798
+ id: string;
12799
+ url: string;
12800
+ icon: string;
12801
+ tags: string[];
12802
+ }[];
12786
12803
  Tokens: {
12787
12804
  symbol: string;
12788
12805
  name: string | null;
@@ -12799,14 +12816,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12799
12816
  verified: boolean;
12800
12817
  displaySymbol: string;
12801
12818
  }[];
12802
- Protocols: {
12803
- name: string;
12804
- description: string;
12805
- id: string;
12806
- url: string;
12807
- icon: string;
12808
- tags: string[];
12809
- }[];
12810
12819
  name: string;
12811
12820
  apr: number;
12812
12821
  tvl: number;
@@ -12817,11 +12826,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12817
12826
  action: import("@package/databases").OpportunityAction;
12818
12827
  type: string;
12819
12828
  depositUrl: string | null;
12820
- explorerAddress: string | null;
12821
- howToSteps: string[];
12822
- mainProtocolId: string | null;
12823
12829
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
12824
12830
  identifier: string;
12831
+ howToSteps: string[];
12832
+ explorerAddress: string | null;
12833
+ mainProtocolId: string | null;
12825
12834
  dailyRewards: number;
12826
12835
  tags: string[];
12827
12836
  lastCampaignCreatedAt: Date;
@@ -12966,16 +12975,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12966
12975
  tokenSymbol?: string | undefined;
12967
12976
  type?: string | undefined;
12968
12977
  endTimestamp?: string | undefined;
12978
+ subType?: number | undefined;
12969
12979
  opportunityId?: string | undefined;
12970
12980
  creatorAddress?: string | undefined;
12971
- mainProtocolId?: string | undefined;
12972
- subType?: number | undefined;
12973
12981
  rootCampaignId?: string | undefined;
12974
12982
  parentCampaignId?: string | undefined;
12983
+ mainProtocolId?: string | undefined;
12975
12984
  creatorId?: string | undefined;
12976
- mainParameter?: string | undefined;
12977
12985
  test?: boolean | undefined;
12978
12986
  page?: number | undefined;
12987
+ mainParameter?: string | undefined;
12979
12988
  creatorTag?: string | undefined;
12980
12989
  distributionChainIds?: number[] | undefined;
12981
12990
  types?: string[] | undefined;
@@ -12992,9 +13001,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
12992
13001
  creatorId?: string | null | undefined;
12993
13002
  address: string;
12994
13003
  } | undefined;
12995
- distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
12996
- rootCampaignId?: string | undefined;
12997
- parentCampaignId?: string | undefined;
12998
13004
  campaignStatus?: {
12999
13005
  error?: string | undefined;
13000
13006
  details?: any;
@@ -13002,6 +13008,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13002
13008
  computedUntil: string | number;
13003
13009
  processingStarted: string | number;
13004
13010
  } | undefined;
13011
+ distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
13012
+ rootCampaignId?: string | undefined;
13013
+ parentCampaignId?: string | undefined;
13005
13014
  distributionChain?: {
13006
13015
  explorers?: {
13007
13016
  chainId: number;
@@ -13036,9 +13045,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13036
13045
  computeChainId: number;
13037
13046
  distributionChainId: number;
13038
13047
  endTimestamp: string | number;
13039
- creatorAddress: string;
13040
- subType: number | null;
13041
- createdAt: string;
13042
13048
  chain: {
13043
13049
  explorers?: {
13044
13050
  chainId: number;
@@ -13049,6 +13055,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13049
13055
  id: number;
13050
13056
  icon: string;
13051
13057
  };
13058
+ subType: number | null;
13059
+ creatorAddress: string;
13060
+ createdAt: string;
13052
13061
  }[];
13053
13062
  422: {
13054
13063
  type: "validation";
@@ -13075,16 +13084,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13075
13084
  tokenSymbol?: string | undefined;
13076
13085
  type?: string | undefined;
13077
13086
  endTimestamp?: string | undefined;
13087
+ subType?: number | undefined;
13078
13088
  opportunityId?: string | undefined;
13079
13089
  creatorAddress?: string | undefined;
13080
- mainProtocolId?: string | undefined;
13081
- subType?: number | undefined;
13082
13090
  rootCampaignId?: string | undefined;
13083
13091
  parentCampaignId?: string | undefined;
13092
+ mainProtocolId?: string | undefined;
13084
13093
  creatorId?: string | undefined;
13085
- mainParameter?: string | undefined;
13086
13094
  test?: boolean | undefined;
13087
13095
  page?: number | undefined;
13096
+ mainParameter?: string | undefined;
13088
13097
  creatorTag?: string | undefined;
13089
13098
  distributionChainIds?: number[] | undefined;
13090
13099
  types?: string[] | undefined;
@@ -13122,16 +13131,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13122
13131
  tokenSymbol?: string | undefined;
13123
13132
  type?: string | undefined;
13124
13133
  endTimestamp?: string | undefined;
13134
+ subType?: number | undefined;
13125
13135
  opportunityId?: string | undefined;
13126
13136
  creatorAddress?: string | undefined;
13127
- mainProtocolId?: string | undefined;
13128
- subType?: number | undefined;
13129
13137
  rootCampaignId?: string | undefined;
13130
13138
  parentCampaignId?: string | undefined;
13139
+ mainProtocolId?: string | undefined;
13131
13140
  creatorId?: string | undefined;
13132
- mainParameter?: string | undefined;
13133
13141
  test?: boolean | undefined;
13134
13142
  page?: number | undefined;
13143
+ mainParameter?: string | undefined;
13135
13144
  creatorTag?: string | undefined;
13136
13145
  distributionChainIds?: number[] | undefined;
13137
13146
  types?: string[] | undefined;
@@ -13172,16 +13181,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13172
13181
  tokenSymbol?: string | undefined;
13173
13182
  type?: string | undefined;
13174
13183
  endTimestamp?: string | undefined;
13184
+ subType?: number | undefined;
13175
13185
  opportunityId?: string | undefined;
13176
13186
  creatorAddress?: string | undefined;
13177
- mainProtocolId?: string | undefined;
13178
- subType?: number | undefined;
13179
13187
  rootCampaignId?: string | undefined;
13180
13188
  parentCampaignId?: string | undefined;
13189
+ mainProtocolId?: string | undefined;
13181
13190
  creatorId?: string | undefined;
13182
- mainParameter?: string | undefined;
13183
13191
  test?: boolean | undefined;
13184
13192
  page?: number | undefined;
13193
+ mainParameter?: string | undefined;
13185
13194
  creatorTag?: string | undefined;
13186
13195
  distributionChainIds?: number[] | undefined;
13187
13196
  types?: string[] | undefined;
@@ -13393,8 +13402,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13393
13402
  campaignId?: string | undefined;
13394
13403
  id?: string | undefined;
13395
13404
  amount?: string | undefined;
13396
- creatorAddress?: string | undefined;
13397
13405
  subType?: number | undefined;
13406
+ creatorAddress?: string | undefined;
13398
13407
  rewardToken: string;
13399
13408
  params: any;
13400
13409
  startTimestamp: number;
@@ -13426,8 +13435,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13426
13435
  campaignId?: string | undefined;
13427
13436
  id?: string | undefined;
13428
13437
  amount?: string | undefined;
13429
- creatorAddress?: string | undefined;
13430
13438
  subType?: number | undefined;
13439
+ creatorAddress?: string | undefined;
13431
13440
  rewardToken: string;
13432
13441
  params: any;
13433
13442
  startTimestamp: number;
@@ -13446,18 +13455,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13446
13455
  campaignId: string;
13447
13456
  description: string | null;
13448
13457
  id: string;
13449
- params: import("@prisma/client/runtime/library").JsonValue;
13458
+ params: import("@prisma/client/runtime/client").JsonValue;
13450
13459
  amount: string;
13451
13460
  startTimestamp: bigint;
13452
13461
  type: string;
13453
13462
  computeChainId: number;
13454
13463
  distributionChainId: number;
13455
13464
  endTimestamp: bigint;
13456
- opportunityId: string;
13457
- creatorAddress: string;
13458
13465
  distributionType: import("@package/databases").DistributionType;
13459
13466
  subType: number | null;
13460
13467
  rewardTokenId: string;
13468
+ opportunityId: string;
13469
+ creatorAddress: string;
13461
13470
  manualOverrides: import("@package/databases").CampaignManualOverride[];
13462
13471
  createdAt: Date;
13463
13472
  rootCampaignId: string | null;
@@ -13495,6 +13504,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13495
13504
  explorerAddress: string | undefined;
13496
13505
  tags: string[];
13497
13506
  } | {
13507
+ Protocols: {
13508
+ name: string;
13509
+ description: string;
13510
+ id: string;
13511
+ url: string;
13512
+ icon: string;
13513
+ tags: string[];
13514
+ }[];
13498
13515
  Tokens: {
13499
13516
  symbol: string;
13500
13517
  name: string | null;
@@ -13511,14 +13528,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13511
13528
  verified: boolean;
13512
13529
  displaySymbol: string;
13513
13530
  }[];
13514
- Protocols: {
13515
- name: string;
13516
- description: string;
13517
- id: string;
13518
- url: string;
13519
- icon: string;
13520
- tags: string[];
13521
- }[];
13522
13531
  name: string;
13523
13532
  apr: number;
13524
13533
  tvl: number;
@@ -13529,11 +13538,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13529
13538
  action: import("@package/databases").OpportunityAction;
13530
13539
  type: string;
13531
13540
  depositUrl: string | null;
13532
- explorerAddress: string | null;
13533
- howToSteps: string[];
13534
- mainProtocolId: string | null;
13535
13541
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
13536
13542
  identifier: string;
13543
+ howToSteps: string[];
13544
+ explorerAddress: string | null;
13545
+ mainProtocolId: string | null;
13537
13546
  dailyRewards: number;
13538
13547
  tags: string[];
13539
13548
  lastCampaignCreatedAt: Date;
@@ -13562,18 +13571,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13562
13571
  campaignId: string;
13563
13572
  description: string | null;
13564
13573
  id: string;
13565
- params: import("@prisma/client/runtime/library").JsonValue;
13574
+ params: import("@prisma/client/runtime/client").JsonValue;
13566
13575
  amount: string;
13567
13576
  startTimestamp: bigint;
13568
13577
  type: string;
13569
13578
  computeChainId: number;
13570
13579
  distributionChainId: number;
13571
13580
  endTimestamp: bigint;
13572
- opportunityId: string;
13573
- creatorAddress: string;
13574
13581
  distributionType: import("@package/databases").DistributionType;
13575
13582
  subType: number | null;
13576
13583
  rewardTokenId: string;
13584
+ opportunityId: string;
13585
+ creatorAddress: string;
13577
13586
  manualOverrides: import("@package/databases").CampaignManualOverride[];
13578
13587
  createdAt: Date;
13579
13588
  rootCampaignId: string | null;
@@ -13611,6 +13620,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13611
13620
  explorerAddress: string | undefined;
13612
13621
  tags: string[];
13613
13622
  } | {
13623
+ Protocols: {
13624
+ name: string;
13625
+ description: string;
13626
+ id: string;
13627
+ url: string;
13628
+ icon: string;
13629
+ tags: string[];
13630
+ }[];
13614
13631
  Tokens: {
13615
13632
  symbol: string;
13616
13633
  name: string | null;
@@ -13627,14 +13644,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13627
13644
  verified: boolean;
13628
13645
  displaySymbol: string;
13629
13646
  }[];
13630
- Protocols: {
13631
- name: string;
13632
- description: string;
13633
- id: string;
13634
- url: string;
13635
- icon: string;
13636
- tags: string[];
13637
- }[];
13638
13647
  name: string;
13639
13648
  apr: number;
13640
13649
  tvl: number;
@@ -13645,11 +13654,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13645
13654
  action: import("@package/databases").OpportunityAction;
13646
13655
  type: string;
13647
13656
  depositUrl: string | null;
13648
- explorerAddress: string | null;
13649
- howToSteps: string[];
13650
- mainProtocolId: string | null;
13651
13657
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
13652
13658
  identifier: string;
13659
+ howToSteps: string[];
13660
+ explorerAddress: string | null;
13661
+ mainProtocolId: string | null;
13653
13662
  dailyRewards: number;
13654
13663
  tags: string[];
13655
13664
  lastCampaignCreatedAt: Date;
@@ -13679,18 +13688,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13679
13688
  campaignId: string;
13680
13689
  description: string | null;
13681
13690
  id: string;
13682
- params: import("@prisma/client/runtime/library").JsonValue;
13691
+ params: import("@prisma/client/runtime/client").JsonValue;
13683
13692
  amount: string;
13684
13693
  startTimestamp: bigint;
13685
13694
  type: string;
13686
13695
  computeChainId: number;
13687
13696
  distributionChainId: number;
13688
13697
  endTimestamp: bigint;
13689
- opportunityId: string;
13690
- creatorAddress: string;
13691
13698
  distributionType: import("@package/databases").DistributionType;
13692
13699
  subType: number | null;
13693
13700
  rewardTokenId: string;
13701
+ opportunityId: string;
13702
+ creatorAddress: string;
13694
13703
  manualOverrides: import("@package/databases").CampaignManualOverride[];
13695
13704
  createdAt: Date;
13696
13705
  rootCampaignId: string | null;
@@ -13728,6 +13737,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13728
13737
  explorerAddress: string | undefined;
13729
13738
  tags: string[];
13730
13739
  } | {
13740
+ Protocols: {
13741
+ name: string;
13742
+ description: string;
13743
+ id: string;
13744
+ url: string;
13745
+ icon: string;
13746
+ tags: string[];
13747
+ }[];
13731
13748
  Tokens: {
13732
13749
  symbol: string;
13733
13750
  name: string | null;
@@ -13744,14 +13761,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13744
13761
  verified: boolean;
13745
13762
  displaySymbol: string;
13746
13763
  }[];
13747
- Protocols: {
13748
- name: string;
13749
- description: string;
13750
- id: string;
13751
- url: string;
13752
- icon: string;
13753
- tags: string[];
13754
- }[];
13755
13764
  name: string;
13756
13765
  apr: number;
13757
13766
  tvl: number;
@@ -13762,11 +13771,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13762
13771
  action: import("@package/databases").OpportunityAction;
13763
13772
  type: string;
13764
13773
  depositUrl: string | null;
13765
- explorerAddress: string | null;
13766
- howToSteps: string[];
13767
- mainProtocolId: string | null;
13768
13774
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
13769
13775
  identifier: string;
13776
+ howToSteps: string[];
13777
+ explorerAddress: string | null;
13778
+ mainProtocolId: string | null;
13770
13779
  dailyRewards: number;
13771
13780
  tags: string[];
13772
13781
  lastCampaignCreatedAt: Date;
@@ -13803,16 +13812,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
13803
13812
  tokenSymbol?: string | undefined;
13804
13813
  type?: string | undefined;
13805
13814
  endTimestamp?: string | undefined;
13815
+ subType?: number | undefined;
13806
13816
  opportunityId?: string | undefined;
13807
13817
  creatorAddress?: string | undefined;
13808
- mainProtocolId?: string | undefined;
13809
- subType?: number | undefined;
13810
13818
  rootCampaignId?: string | undefined;
13811
13819
  parentCampaignId?: string | undefined;
13820
+ mainProtocolId?: string | undefined;
13812
13821
  creatorId?: string | undefined;
13813
- mainParameter?: string | undefined;
13814
13822
  test?: boolean | undefined;
13815
13823
  page?: number | undefined;
13824
+ mainParameter?: string | undefined;
13816
13825
  creatorTag?: string | undefined;
13817
13826
  distributionChainIds?: number[] | undefined;
13818
13827
  types?: string[] | undefined;
@@ -15173,7 +15182,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15173
15182
  200: {
15174
15183
  symbol: string;
15175
15184
  id: number;
15176
- args: import("@prisma/client/runtime/library").JsonValue | null;
15185
+ args: import("@prisma/client/runtime/client").JsonValue | null;
15177
15186
  method: import("@package/databases").PriceSourceMethod;
15178
15187
  }[];
15179
15188
  }>>;
@@ -15188,7 +15197,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15188
15197
  200: {
15189
15198
  symbol: string;
15190
15199
  id: number;
15191
- args: import("@prisma/client/runtime/library").JsonValue | null;
15200
+ args: import("@prisma/client/runtime/client").JsonValue | null;
15192
15201
  method: import("@package/databases").PriceSourceMethod;
15193
15202
  };
15194
15203
  422: {
@@ -15215,7 +15224,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15215
15224
  200: {
15216
15225
  symbol: string;
15217
15226
  id: number;
15218
- args: import("@prisma/client/runtime/library").JsonValue | null;
15227
+ args: import("@prisma/client/runtime/client").JsonValue | null;
15219
15228
  method: import("@package/databases").PriceSourceMethod;
15220
15229
  };
15221
15230
  422: {
@@ -15238,7 +15247,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15238
15247
  200: {
15239
15248
  symbol: string;
15240
15249
  id: number;
15241
- args: import("@prisma/client/runtime/library").JsonValue | null;
15250
+ args: import("@prisma/client/runtime/client").JsonValue | null;
15242
15251
  method: import("@package/databases").PriceSourceMethod;
15243
15252
  };
15244
15253
  422: {
@@ -15288,7 +15297,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15288
15297
  chainId: number;
15289
15298
  userAddress: string;
15290
15299
  arrestTimestamp: bigint;
15291
- arrestDetails: import("@prisma/client/runtime/library").JsonValue;
15300
+ arrestDetails: import("@prisma/client/runtime/client").JsonValue;
15292
15301
  }[];
15293
15302
  }>>;
15294
15303
  mapping: {
@@ -15338,7 +15347,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15338
15347
  chainId: number;
15339
15348
  userAddress: string;
15340
15349
  arrestTimestamp: bigint;
15341
- arrestDetails: import("@prisma/client/runtime/library").JsonValue;
15350
+ arrestDetails: import("@prisma/client/runtime/client").JsonValue;
15342
15351
  };
15343
15352
  422: {
15344
15353
  type: "validation";
@@ -15473,6 +15482,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15473
15482
  id: number;
15474
15483
  icon: string;
15475
15484
  };
15485
+ Protocols: {
15486
+ name: string;
15487
+ description: string;
15488
+ id: string;
15489
+ url: string;
15490
+ icon: string;
15491
+ tags: string[];
15492
+ }[];
15476
15493
  Tokens: {
15477
15494
  symbol: string;
15478
15495
  name: string | null;
@@ -15489,14 +15506,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15489
15506
  verified: boolean;
15490
15507
  displaySymbol: string;
15491
15508
  }[];
15492
- Protocols: {
15493
- name: string;
15494
- description: string;
15495
- id: string;
15496
- url: string;
15497
- icon: string;
15498
- tags: string[];
15499
- }[];
15500
15509
  MainProtocol: {
15501
15510
  name: string;
15502
15511
  description: string;
@@ -15516,11 +15525,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
15516
15525
  action: import("@package/databases").OpportunityAction;
15517
15526
  type: string;
15518
15527
  depositUrl: string | null;
15519
- explorerAddress: string | null;
15520
- howToSteps: string[];
15521
- mainProtocolId: string | null;
15522
15528
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
15523
15529
  identifier: string;
15530
+ howToSteps: string[];
15531
+ explorerAddress: string | null;
15532
+ mainProtocolId: string | null;
15524
15533
  dailyRewards: number;
15525
15534
  tags: string[];
15526
15535
  lastCampaignCreatedAt: Date;
@@ -16099,14 +16108,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
16099
16108
  campaignId: string;
16100
16109
  error: string;
16101
16110
  status: import("@package/databases").RunStatus;
16102
- details: import("@prisma/client/runtime/library").JsonValue;
16111
+ details: import("@prisma/client/runtime/client").JsonValue;
16103
16112
  computedUntil: bigint;
16104
16113
  processingStarted: bigint;
16105
16114
  }[] | {
16106
16115
  campaignId: string;
16107
16116
  error: string;
16108
16117
  status: import("@package/databases").RunStatus;
16109
- details: import("@prisma/client/runtime/library").JsonValue;
16118
+ details: import("@prisma/client/runtime/client").JsonValue;
16110
16119
  computedUntil: bigint;
16111
16120
  processingStarted: bigint;
16112
16121
  };
@@ -16240,7 +16249,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
16240
16249
  campaignId: string;
16241
16250
  error: string;
16242
16251
  status: import("@package/databases").RunStatus;
16243
- details: import("@prisma/client/runtime/library").JsonValue;
16252
+ details: import("@prisma/client/runtime/client").JsonValue;
16244
16253
  computedUntil: bigint;
16245
16254
  processingStarted: bigint;
16246
16255
  }[];
@@ -16273,24 +16282,24 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
16273
16282
  computeChainId: number;
16274
16283
  distributionChainId: number;
16275
16284
  endTimestamp: bigint;
16276
- RewardToken: {
16277
- symbol: string;
16278
- address: string;
16279
- isTest: boolean;
16280
- };
16281
- Opportunity: {
16282
- name: string;
16283
- type: string;
16284
- identifier: string;
16285
- };
16286
16285
  CampaignStatus: {
16287
16286
  campaignId: string;
16288
16287
  error: string;
16289
16288
  status: import("@package/databases").RunStatus;
16290
- details: import("@prisma/client/runtime/library").JsonValue;
16289
+ details: import("@prisma/client/runtime/client").JsonValue;
16291
16290
  computedUntil: bigint;
16292
16291
  processingStarted: bigint;
16293
16292
  }[];
16293
+ Opportunity: {
16294
+ name: string;
16295
+ type: string;
16296
+ identifier: string;
16297
+ };
16298
+ RewardToken: {
16299
+ symbol: string;
16300
+ address: string;
16301
+ isTest: boolean;
16302
+ };
16294
16303
  }[];
16295
16304
  422: {
16296
16305
  type: "validation";
@@ -17797,11 +17806,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
17797
17806
  action: import("@package/databases").OpportunityAction;
17798
17807
  type: string;
17799
17808
  depositUrl: string | null;
17800
- explorerAddress: string | null;
17801
- howToSteps: string[];
17802
- mainProtocolId: string | null;
17803
17809
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
17804
17810
  identifier: string;
17811
+ howToSteps: string[];
17812
+ explorerAddress: string | null;
17813
+ mainProtocolId: string | null;
17805
17814
  dailyRewards: number;
17806
17815
  tags: string[];
17807
17816
  lastCampaignCreatedAt: Date;
@@ -17810,18 +17819,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
17810
17819
  campaignId: string;
17811
17820
  description: string | null;
17812
17821
  id: string;
17813
- params: import("@prisma/client/runtime/library").JsonValue;
17822
+ params: import("@prisma/client/runtime/client").JsonValue;
17814
17823
  amount: string;
17815
17824
  startTimestamp: bigint;
17816
17825
  type: string;
17817
17826
  computeChainId: number;
17818
17827
  distributionChainId: number;
17819
17828
  endTimestamp: bigint;
17820
- opportunityId: string;
17821
- creatorAddress: string;
17822
17829
  distributionType: import("@package/databases").DistributionType;
17823
17830
  subType: number | null;
17824
17831
  rewardTokenId: string;
17832
+ opportunityId: string;
17833
+ creatorAddress: string;
17825
17834
  manualOverrides: import("@package/databases").CampaignManualOverride[];
17826
17835
  createdAt: Date;
17827
17836
  rootCampaignId: string | null;
@@ -17946,11 +17955,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
17946
17955
  action: import("@package/databases").OpportunityAction;
17947
17956
  type: string;
17948
17957
  depositUrl: string | null;
17949
- explorerAddress: string | null;
17950
- howToSteps: string[];
17951
- mainProtocolId: string | null;
17952
17958
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
17953
17959
  identifier: string;
17960
+ howToSteps: string[];
17961
+ explorerAddress: string | null;
17962
+ mainProtocolId: string | null;
17954
17963
  dailyRewards: number;
17955
17964
  tags: string[];
17956
17965
  lastCampaignCreatedAt: Date;
@@ -17959,18 +17968,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
17959
17968
  campaignId: string;
17960
17969
  description: string | null;
17961
17970
  id: string;
17962
- params: import("@prisma/client/runtime/library").JsonValue;
17971
+ params: import("@prisma/client/runtime/client").JsonValue;
17963
17972
  amount: string;
17964
17973
  startTimestamp: bigint;
17965
17974
  type: string;
17966
17975
  computeChainId: number;
17967
17976
  distributionChainId: number;
17968
17977
  endTimestamp: bigint;
17969
- opportunityId: string;
17970
- creatorAddress: string;
17971
17978
  distributionType: import("@package/databases").DistributionType;
17972
17979
  subType: number | null;
17973
17980
  rewardTokenId: string;
17981
+ opportunityId: string;
17982
+ creatorAddress: string;
17974
17983
  manualOverrides: import("@package/databases").CampaignManualOverride[];
17975
17984
  createdAt: Date;
17976
17985
  rootCampaignId: string | null;
@@ -18365,6 +18374,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
18365
18374
  747474?: {
18366
18375
  [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
18367
18376
  } | undefined;
18377
+ 151?: {
18378
+ [poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
18379
+ } | undefined;
18368
18380
  };
18369
18381
  }>>;
18370
18382
  };
@@ -18715,8 +18727,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
18715
18727
  NodesSources: {
18716
18728
  id: string;
18717
18729
  chainId: number;
18718
- lastFetchedBlockNumber: number;
18719
18730
  source: string;
18731
+ lastFetchedBlockNumber: number;
18720
18732
  topics: string[];
18721
18733
  };
18722
18734
  }[];