@merkl/api 0.10.78

Sign up to get free protection for your applications and to get access to all the features.
Files changed (318) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +125 -0
  3. package/dist/database/api/.generated/default.d.ts +1 -0
  4. package/dist/database/api/.generated/edge.d.ts +1 -0
  5. package/dist/database/api/.generated/index.d.ts +36404 -0
  6. package/dist/database/api/.generated/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
  7. package/dist/database/api/.generated/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
  8. package/dist/database/api/.generated/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
  9. package/dist/database/api/.generated/package.json +84 -0
  10. package/dist/database/api/.generated/runtime/index-browser.d.ts +365 -0
  11. package/dist/database/api/.generated/runtime/library.d.ts +3273 -0
  12. package/dist/database/api/.generated/schema.prisma +366 -0
  13. package/dist/database/api/.generated/wasm.d.ts +1 -0
  14. package/dist/database/api/seeder/resources/protocol.d.ts +353 -0
  15. package/dist/database/engine/.generated/default.d.ts +1 -0
  16. package/dist/database/engine/.generated/edge.d.ts +1 -0
  17. package/dist/database/engine/.generated/index.d.ts +16342 -0
  18. package/dist/database/engine/.generated/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
  19. package/dist/database/engine/.generated/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
  20. package/dist/database/engine/.generated/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
  21. package/dist/database/engine/.generated/package.json +84 -0
  22. package/dist/database/engine/.generated/runtime/index-browser.d.ts +365 -0
  23. package/dist/database/engine/.generated/runtime/library.d.ts +3273 -0
  24. package/dist/database/engine/.generated/schema.prisma +205 -0
  25. package/dist/database/engine/.generated/wasm.d.ts +1 -0
  26. package/dist/src/backgroundJobs/index.d.ts +1 -0
  27. package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.d.ts +45 -0
  28. package/dist/src/backgroundJobs/jobs/health.d.ts +40 -0
  29. package/dist/src/backgroundJobs/jobs/opportunityUpdater.d.ts +37 -0
  30. package/dist/src/backgroundJobs/jobs/priceUpdater.d.ts +35 -0
  31. package/dist/src/backgroundJobs/jobs/sync.d.ts +39 -0
  32. package/dist/src/cache/declaration.d.ts +153 -0
  33. package/dist/src/cache/index.d.ts +52 -0
  34. package/dist/src/cache/redis.d.ts +311 -0
  35. package/dist/src/constants.d.ts +349 -0
  36. package/dist/src/eden/index.d.ts +4882 -0
  37. package/dist/src/eden/index.js +4 -0
  38. package/dist/src/entities/campaign.d.ts +58 -0
  39. package/dist/src/entities/opportunity.d.ts +17 -0
  40. package/dist/src/errors/BadRequest.error.d.ts +4 -0
  41. package/dist/src/errors/Conflict.error.d.ts +4 -0
  42. package/dist/src/errors/HttpError.d.ts +6 -0
  43. package/dist/src/errors/NotFound.error.d.ts +4 -0
  44. package/dist/src/errors/Opportunity.error.d.ts +6 -0
  45. package/dist/src/errors/Unauthorized.error.d.ts +4 -0
  46. package/dist/src/errors/index.d.ts +5 -0
  47. package/dist/src/guards/BackOffice.guard.d.ts +7 -0
  48. package/dist/src/guards/Engine.guard.d.ts +7 -0
  49. package/dist/src/guards/TokenAuth.guard.d.ts +7 -0
  50. package/dist/src/hooks/checkQueryAddressValidity.d.ts +21 -0
  51. package/dist/src/hooks/checkQueryChainIdValidity.d.ts +21 -0
  52. package/dist/src/index.d.ts +1889 -0
  53. package/dist/src/internal/controllers/endingCampaigns.d.ts +42 -0
  54. package/dist/src/internal/controllers/unclaimed.d.ts +43 -0
  55. package/dist/src/internal/index.d.ts +1 -0
  56. package/dist/src/libs/campaigns/campaignTypes/AjnaDynamicData.d.ts +5 -0
  57. package/dist/src/libs/campaigns/campaignTypes/BadgerDynamicData.d.ts +5 -0
  58. package/dist/src/libs/campaigns/campaignTypes/CLAMMDynamicData.d.ts +3 -0
  59. package/dist/src/libs/campaigns/campaignTypes/CompoundDynamicData.d.ts +3 -0
  60. package/dist/src/libs/campaigns/campaignTypes/DolomiteDynamicData.d.ts +5 -0
  61. package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicData.d.ts +3 -0
  62. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/eulerVaultNames.d.ts +1 -0
  63. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.d.ts +5 -0
  64. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/getBlacklistedSupply.d.ts +1 -0
  65. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/metamorphoTvl.d.ts +1 -0
  66. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/spliceTVL.d.ts +7 -0
  67. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +45 -0
  68. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesPrices.d.ts +4 -0
  69. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1.d.ts +23 -0
  70. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound2.d.ts +7 -0
  71. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound3.d.ts +6 -0
  72. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound4.d.ts +4 -0
  73. package/dist/src/libs/campaigns/campaignTypes/ERC20_SNAPSHOTDynamicData.d.ts +5 -0
  74. package/dist/src/libs/campaigns/campaignTypes/EulerDynamicData.d.ts +3 -0
  75. package/dist/src/libs/campaigns/campaignTypes/JSON_AIRDROPDynamicData.d.ts +5 -0
  76. package/dist/src/libs/campaigns/campaignTypes/MORPHODynamicData.d.ts +5 -0
  77. package/dist/src/libs/campaigns/campaignTypes/RadiantDynamicData.d.ts +3 -0
  78. package/dist/src/libs/campaigns/campaignTypes/SILODynamicData.d.ts +7 -0
  79. package/dist/src/libs/campaigns/campaignsDynamicData.d.ts +3 -0
  80. package/dist/src/libs/campaigns/getCampaigns.d.ts +1 -0
  81. package/dist/src/libs/campaigns/getRewards.d.ts +29 -0
  82. package/dist/src/libs/campaigns/utils/fetchA51Strategies.d.ts +18 -0
  83. package/dist/src/libs/campaigns/utils/fetchClamInfo.d.ts +2 -0
  84. package/dist/src/libs/campaigns/utils/fetchLogs.d.ts +10 -0
  85. package/dist/src/libs/campaigns/utils/getCompV2ForksVaults.d.ts +19 -0
  86. package/dist/src/libs/campaigns/utils/getContractCreationBlock.d.ts +2 -0
  87. package/dist/src/libs/campaigns/utils/getDolomiteMarkets.d.ts +7 -0
  88. package/dist/src/libs/campaigns/utils/getEulerV2Vaults.d.ts +16 -0
  89. package/dist/src/libs/campaigns/utils/getLastEligibilityRatio.d.ts +2 -0
  90. package/dist/src/libs/computeFee.d.ts +4 -0
  91. package/dist/src/libs/custom/twtParticipants.d.ts +6 -0
  92. package/dist/src/libs/deprecated-merklv3/index.d.ts +5 -0
  93. package/dist/src/libs/getTokensList.d.ts +27 -0
  94. package/dist/src/libs/merklChainData.d.ts +4 -0
  95. package/dist/src/libs/parse/marketsWithCache.d.ts +4 -0
  96. package/dist/src/libs/positions/ajna/index.d.ts +41 -0
  97. package/dist/src/libs/positions/badger/index.d.ts +27 -0
  98. package/dist/src/libs/positions/clamm/index.d.ts +8 -0
  99. package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.d.ts +5 -0
  100. package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.d.ts +8 -0
  101. package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.d.ts +11 -0
  102. package/dist/src/libs/positions/clamm/thegraph/index.d.ts +37 -0
  103. package/dist/src/libs/positions/compound/index.d.ts +26 -0
  104. package/dist/src/libs/positions/dolomite/index.d.ts +17 -0
  105. package/dist/src/libs/positions/erc20/index.d.ts +5 -0
  106. package/dist/src/libs/positions/euler/index.d.ts +5 -0
  107. package/dist/src/libs/positions/index.d.ts +3 -0
  108. package/dist/src/libs/positions/morpho/index.d.ts +40 -0
  109. package/dist/src/libs/positions/prepareFetch.d.ts +22 -0
  110. package/dist/src/libs/positions/silo/index.d.ts +5 -0
  111. package/dist/src/libs/positions/types.d.ts +20 -0
  112. package/dist/src/libs/reports/campaignReport.d.ts +9 -0
  113. package/dist/src/libs/reports/mainParameterRewards.d.ts +3 -0
  114. package/dist/src/libs/rewards/userRewards.d.ts +2 -0
  115. package/dist/src/libs/staticCampaigns.d.ts +2 -0
  116. package/dist/src/libs/tokens/balances.d.ts +11 -0
  117. package/dist/src/libs/tokens/tokenInfo.d.ts +8 -0
  118. package/dist/src/modules/v4/accounting/accounting.controller.d.ts +206 -0
  119. package/dist/src/modules/v4/accounting/accounting.model.d.ts +32 -0
  120. package/dist/src/modules/v4/accounting/accounting.repository.d.ts +99 -0
  121. package/dist/src/modules/v4/accounting/accounting.service.d.ts +44 -0
  122. package/dist/src/modules/v4/accounting/index.d.ts +3 -0
  123. package/dist/src/modules/v4/apr/apr.controller.d.ts +0 -0
  124. package/dist/src/modules/v4/apr/apr.model.d.ts +15 -0
  125. package/dist/src/modules/v4/apr/apr.repository.d.ts +0 -0
  126. package/dist/src/modules/v4/apr/apr.service.d.ts +6 -0
  127. package/dist/src/modules/v4/apr/index.d.ts +2 -0
  128. package/dist/src/modules/v4/blacklist/blacklist.controller.d.ts +122 -0
  129. package/dist/src/modules/v4/blacklist/blacklist.model.d.ts +15 -0
  130. package/dist/src/modules/v4/blacklist/blacklist.repository.d.ts +24 -0
  131. package/dist/src/modules/v4/blacklist/blacklist.service.d.ts +24 -0
  132. package/dist/src/modules/v4/blacklist/index.d.ts +3 -0
  133. package/dist/src/modules/v4/campaign/campaign.controller.d.ts +139 -0
  134. package/dist/src/modules/v4/campaign/campaign.model.d.ts +85 -0
  135. package/dist/src/modules/v4/campaign/campaign.repository.d.ts +110 -0
  136. package/dist/src/modules/v4/campaign/campaign.service.d.ts +180 -0
  137. package/dist/src/modules/v4/campaign/index.d.ts +3 -0
  138. package/dist/src/modules/v4/chain/chain.controller.d.ts +91 -0
  139. package/dist/src/modules/v4/chain/chain.model.d.ts +19 -0
  140. package/dist/src/modules/v4/chain/chain.repository.d.ts +66 -0
  141. package/dist/src/modules/v4/chain/chain.service.d.ts +42 -0
  142. package/dist/src/modules/v4/chain/index.d.ts +3 -0
  143. package/dist/src/modules/v4/enso/enso.model.d.ts +130 -0
  144. package/dist/src/modules/v4/enso/enso.service.d.ts +47 -0
  145. package/dist/src/modules/v4/explorer/explorer.repository.d.ts +8 -0
  146. package/dist/src/modules/v4/explorer/explorer.service.d.ts +8 -0
  147. package/dist/src/modules/v4/explorer/index.d.ts +1 -0
  148. package/dist/src/modules/v4/index.d.ts +4 -0
  149. package/dist/src/modules/v4/merklRoot/index.d.ts +3 -0
  150. package/dist/src/modules/v4/merklRoot/merklRoot.controller.d.ts +44 -0
  151. package/dist/src/modules/v4/merklRoot/merklRoot.model.d.ts +6 -0
  152. package/dist/src/modules/v4/merklRoot/merklRoot.repository.d.ts +21 -0
  153. package/dist/src/modules/v4/merklRoot/merklRoot.service.d.ts +34 -0
  154. package/dist/src/modules/v4/opportunity/index.d.ts +3 -0
  155. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +349 -0
  156. package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +113 -0
  157. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +432 -0
  158. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +413 -0
  159. package/dist/src/modules/v4/opportunity/subservices/getAjnaMetadata.service.d.ts +3 -0
  160. package/dist/src/modules/v4/opportunity/subservices/getBadgerMetadata.service.d.ts +3 -0
  161. package/dist/src/modules/v4/opportunity/subservices/getClammMetadata.service.d.ts +3 -0
  162. package/dist/src/modules/v4/opportunity/subservices/getCompoundMetadata.service.d.ts +3 -0
  163. package/dist/src/modules/v4/opportunity/subservices/getDolomiteMetadata.service.d.ts +3 -0
  164. package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.d.ts +3 -0
  165. package/dist/src/modules/v4/opportunity/subservices/getErc20SnapshotMetadata.service.d.ts +3 -0
  166. package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.d.ts +3 -0
  167. package/dist/src/modules/v4/opportunity/subservices/getJsonAirDropMetadata.service.d.ts +3 -0
  168. package/dist/src/modules/v4/opportunity/subservices/getMorphoMetadata.service.d.ts +3 -0
  169. package/dist/src/modules/v4/opportunity/subservices/getRadiantMetadata.service.d.ts +3 -0
  170. package/dist/src/modules/v4/opportunity/subservices/getSiloMetadata.service.d.ts +3 -0
  171. package/dist/src/modules/v4/opportunity/transform-id.pipe.d.ts +5 -0
  172. package/dist/src/modules/v4/opportunity/validate-id.pipe.d.ts +5 -0
  173. package/dist/src/modules/v4/participate/participate.controller.d.ts +120 -0
  174. package/dist/src/modules/v4/participate/participate.model.d.ts +51 -0
  175. package/dist/src/modules/v4/participate/participate.service.d.ts +8 -0
  176. package/dist/src/modules/v4/price/index.d.ts +3 -0
  177. package/dist/src/modules/v4/price/price.controller.d.ts +169 -0
  178. package/dist/src/modules/v4/price/price.model.d.ts +32 -0
  179. package/dist/src/modules/v4/price/price.repository.d.ts +33 -0
  180. package/dist/src/modules/v4/price/price.service.d.ts +33 -0
  181. package/dist/src/modules/v4/prisma/index.d.ts +32 -0
  182. package/dist/src/modules/v4/protocol/index.d.ts +3 -0
  183. package/dist/src/modules/v4/protocol/protocol.controller.d.ts +87 -0
  184. package/dist/src/modules/v4/protocol/protocol.model.d.ts +27 -0
  185. package/dist/src/modules/v4/protocol/protocol.repository.d.ts +37 -0
  186. package/dist/src/modules/v4/protocol/protocol.service.d.ts +10 -0
  187. package/dist/src/modules/v4/reward/index.d.ts +3 -0
  188. package/dist/src/modules/v4/reward/reward.controller.d.ts +158 -0
  189. package/dist/src/modules/v4/reward/reward.model.d.ts +158 -0
  190. package/dist/src/modules/v4/reward/reward.repository.d.ts +158 -0
  191. package/dist/src/modules/v4/reward/reward.service.d.ts +523 -0
  192. package/dist/src/modules/v4/reward/rewardConvertor.service.d.ts +14 -0
  193. package/dist/src/modules/v4/router.d.ts +1865 -0
  194. package/dist/src/modules/v4/status/index.d.ts +3 -0
  195. package/dist/src/modules/v4/status/status.controller.d.ts +143 -0
  196. package/dist/src/modules/v4/status/status.model.d.ts +23 -0
  197. package/dist/src/modules/v4/status/status.repository.d.ts +68 -0
  198. package/dist/src/modules/v4/status/status.service.d.ts +38 -0
  199. package/dist/src/modules/v4/token/index.d.ts +3 -0
  200. package/dist/src/modules/v4/token/token.controller.d.ts +131 -0
  201. package/dist/src/modules/v4/token/token.model.d.ts +35 -0
  202. package/dist/src/modules/v4/token/token.repository.d.ts +59 -0
  203. package/dist/src/modules/v4/token/token.service.d.ts +165 -0
  204. package/dist/src/modules/v4/tvl/index.d.ts +2 -0
  205. package/dist/src/modules/v4/tvl/tvl.controller.d.ts +0 -0
  206. package/dist/src/modules/v4/tvl/tvl.model.d.ts +15 -0
  207. package/dist/src/modules/v4/tvl/tvl.repository.d.ts +0 -0
  208. package/dist/src/modules/v4/tvl/tvl.service.d.ts +6 -0
  209. package/dist/src/modules/v4/uniswapV4/index.d.ts +4 -0
  210. package/dist/src/modules/v4/uniswapV4/uniswapV4.controller.d.ts +52 -0
  211. package/dist/src/modules/v4/uniswapV4/uniswapV4.model.d.ts +15 -0
  212. package/dist/src/modules/v4/uniswapV4/uniswapV4.repository.d.ts +2 -0
  213. package/dist/src/modules/v4/uniswapV4/uniswapV4.service.d.ts +20 -0
  214. package/dist/src/modules/v4/user/index.d.ts +3 -0
  215. package/dist/src/modules/v4/user/user.controller.d.ts +325 -0
  216. package/dist/src/modules/v4/user/user.model.d.ts +25 -0
  217. package/dist/src/modules/v4/user/user.repository.d.ts +19 -0
  218. package/dist/src/modules/v4/user/user.service.d.ts +19 -0
  219. package/dist/src/plugins/error-handling.plugin.d.ts +28 -0
  220. package/dist/src/plugins/logger.plugin.d.ts +21 -0
  221. package/dist/src/routes/v1/allowances.d.ts +66 -0
  222. package/dist/src/routes/v1/balances.d.ts +49 -0
  223. package/dist/src/routes/v1/prices.d.ts +41 -0
  224. package/dist/src/routes/v1/tokens.d.ts +44 -0
  225. package/dist/src/routes/v2/merkl.d.ts +54 -0
  226. package/dist/src/routes/v3/ERC20Campaigns.d.ts +1910 -0
  227. package/dist/src/routes/v3/app.d.ts +39 -0
  228. package/dist/src/routes/v3/blacklist.d.ts +1910 -0
  229. package/dist/src/routes/v3/campaign/delay.d.ts +41 -0
  230. package/dist/src/routes/v3/campaignClaims.d.ts +43 -0
  231. package/dist/src/routes/v3/campaignReport.d.ts +42 -0
  232. package/dist/src/routes/v3/campaignUnclaimed.d.ts +43 -0
  233. package/dist/src/routes/v3/campaigns.d.ts +1915 -0
  234. package/dist/src/routes/v3/campaignsForMainParameter.d.ts +42 -0
  235. package/dist/src/routes/v3/campaignsInfo.d.ts +1902 -0
  236. package/dist/src/routes/v3/campaignsRewardsReport.d.ts +43 -0
  237. package/dist/src/routes/v3/claims.d.ts +45 -0
  238. package/dist/src/routes/v3/compoundV2.d.ts +40 -0
  239. package/dist/src/routes/v3/createCampaign.d.ts +46 -0
  240. package/dist/src/routes/v3/dolomite.d.ts +40 -0
  241. package/dist/src/routes/v3/euler.d.ts +40 -0
  242. package/dist/src/routes/v3/exports/campaigns.d.ts +42 -0
  243. package/dist/src/routes/v3/fetch.d.ts +45 -0
  244. package/dist/src/routes/v3/health.d.ts +39 -0
  245. package/dist/src/routes/v3/lostyield.d.ts +52 -0
  246. package/dist/src/routes/v3/merkl.d.ts +87 -0
  247. package/dist/src/routes/v3/morphoMarkets.d.ts +61 -0
  248. package/dist/src/routes/v3/morphoVaults.d.ts +51 -0
  249. package/dist/src/routes/v3/multiChainPositions.d.ts +1909 -0
  250. package/dist/src/routes/v3/opportunity.d.ts +1946 -0
  251. package/dist/src/routes/v3/overview.d.ts +60 -0
  252. package/dist/src/routes/v3/parse.d.ts +46 -0
  253. package/dist/src/routes/v3/payload.d.ts +57 -0
  254. package/dist/src/routes/v3/poolInfo.d.ts +42 -0
  255. package/dist/src/routes/v3/positions.d.ts +1927 -0
  256. package/dist/src/routes/v3/radiant.d.ts +55 -0
  257. package/dist/src/routes/v3/recipients.d.ts +38 -0
  258. package/dist/src/routes/v3/rewards.d.ts +1910 -0
  259. package/dist/src/routes/v3/rewardsReport.d.ts +48 -0
  260. package/dist/src/routes/v3/rootForTimestamp.d.ts +52 -0
  261. package/dist/src/routes/v3/silo.d.ts +52 -0
  262. package/dist/src/routes/v3/token.d.ts +50 -0
  263. package/dist/src/routes/v3/tokenUnclaimed.d.ts +43 -0
  264. package/dist/src/routes/v3/twt/participants.d.ts +40 -0
  265. package/dist/src/routes/v3/updates.d.ts +1907 -0
  266. package/dist/src/routes/v3/userRewards.d.ts +1931 -0
  267. package/dist/src/types/index.d.ts +46 -0
  268. package/dist/src/types/parameters/Action.d.ts +4 -0
  269. package/dist/src/types/parameters/Chain.d.ts +4 -0
  270. package/dist/src/types/parameters/ChainCampaignId.d.ts +4 -0
  271. package/dist/src/types/parameters/MainParameter.d.ts +4 -0
  272. package/dist/src/types/parameters/OpportunityId.d.ts +4 -0
  273. package/dist/src/types/parameters/Timestamp.d.ts +4 -0
  274. package/dist/src/types/parameters/Type.d.ts +4 -0
  275. package/dist/src/types/parameters/index.d.ts +36 -0
  276. package/dist/src/types/returnTypes.d.ts +27 -0
  277. package/dist/src/types/utils.d.ts +5 -0
  278. package/dist/src/utils/addString.d.ts +2 -0
  279. package/dist/src/utils/bigintToString.d.ts +1 -0
  280. package/dist/src/utils/crypto.d.ts +1 -0
  281. package/dist/src/utils/error.d.ts +53 -0
  282. package/dist/src/utils/execute.d.ts +32 -0
  283. package/dist/src/utils/generic.d.ts +24 -0
  284. package/dist/src/utils/hashArray.d.ts +1 -0
  285. package/dist/src/utils/lastBlockBefore.d.ts +3 -0
  286. package/dist/src/utils/logger.d.ts +24 -0
  287. package/dist/src/utils/pricer.d.ts +52 -0
  288. package/dist/src/utils/prices/chainlinkRead.d.ts +4 -0
  289. package/dist/src/utils/prices/curveVirtualPrice.d.ts +4 -0
  290. package/dist/src/utils/prices/getDQUICK.d.ts +4 -0
  291. package/dist/src/utils/prices/priceFetcherFactory.d.ts +10 -0
  292. package/dist/src/utils/prices/priceService.d.ts +13 -0
  293. package/dist/src/utils/prices/services/coinGeckoService.d.ts +12 -0
  294. package/dist/src/utils/prices/services/defillamaService.d.ts +12 -0
  295. package/dist/src/utils/prices/services/dexScreenerService.d.ts +12 -0
  296. package/dist/src/utils/prices/services/erc4626Service.d.ts +9 -0
  297. package/dist/src/utils/prices/services/getERC4626.d.ts +4 -0
  298. package/dist/src/utils/prices/services/indexCoopService.d.ts +12 -0
  299. package/dist/src/utils/prices/services/priceFetcher.d.ts +8 -0
  300. package/dist/src/utils/prices/uniV2Price.d.ts +7 -0
  301. package/dist/src/utils/prisma.d.ts +16 -0
  302. package/dist/src/utils/providers.d.ts +13 -0
  303. package/dist/src/utils/queries/activeCampaigns.d.ts +3 -0
  304. package/dist/src/utils/queries/allCampaigns.d.ts +6 -0
  305. package/dist/src/utils/queries/campaignsForMainParameter.d.ts +2 -0
  306. package/dist/src/utils/queries/claimsOverTime.d.ts +8 -0
  307. package/dist/src/utils/queries/endingCampaigns.d.ts +10 -0
  308. package/dist/src/utils/queries/futureCampaigns.d.ts +3 -0
  309. package/dist/src/utils/queries/mainParameterCampaigns.d.ts +5 -0
  310. package/dist/src/utils/queries/rewardsAmount.d.ts +10 -0
  311. package/dist/src/utils/queries/unclaimed.d.ts +11 -0
  312. package/dist/src/utils/rateLimit.d.ts +63 -0
  313. package/dist/src/utils/stryke.d.ts +2 -0
  314. package/dist/src/utils/throw.d.ts +4 -0
  315. package/dist/src/utils/trace.d.ts +26 -0
  316. package/dist/src/utils/validation.d.ts +5 -0
  317. package/dist/tsconfig.package.tsbuildinfo +1 -0
  318. package/package.json +91 -0
@@ -0,0 +1,432 @@
1
+ import type { Prisma, Status } from "../../../../database/api/.generated";
2
+ import { type AprRecord } from "../apr";
3
+ import { type DailyRewardsRecord } from "../reward";
4
+ import { type TvlRecord } from "../tvl";
5
+ import type { CreateOpportunityModel, GetOpportunitiesQueryEntity } from "./opportunity.model";
6
+ export declare abstract class OpportunityRepository {
7
+ #private;
8
+ static create(newOpp: CreateOpportunityModel): Promise<void>;
9
+ static findUniqueOrThrow(id: string): Promise<{
10
+ Chain: {
11
+ id: number;
12
+ name: string;
13
+ icon: string;
14
+ };
15
+ Tokens: {
16
+ id: string;
17
+ name: string | null;
18
+ chainId: number;
19
+ address: string;
20
+ decimals: number;
21
+ symbol: string;
22
+ icon: string;
23
+ verified: boolean;
24
+ price: number | null;
25
+ }[];
26
+ Protocols: {
27
+ id: string;
28
+ tags: import("../../../../database/api/.generated").$Enums.ProtocolTag[];
29
+ name: string;
30
+ description: string;
31
+ url: string;
32
+ icon: string;
33
+ }[];
34
+ MainProtocol: {
35
+ id: string;
36
+ tags: import("../../../../database/api/.generated").$Enums.ProtocolTag[];
37
+ name: string;
38
+ description: string;
39
+ url: string;
40
+ icon: string;
41
+ } | null;
42
+ TvlRecords: ({
43
+ TvlBreakdown: {
44
+ id: number;
45
+ identifier: string;
46
+ type: import("../../../../database/api/.generated").$Enums.TvlType;
47
+ value: number;
48
+ tvlRecordId: string;
49
+ }[];
50
+ } & {
51
+ id: string;
52
+ timestamp: bigint;
53
+ total: number;
54
+ opportunityId: string;
55
+ })[];
56
+ AprRecords: ({
57
+ AprBreakdown: {
58
+ id: number;
59
+ identifier: string;
60
+ type: import("../../../../database/api/.generated").$Enums.AprType;
61
+ value: number;
62
+ aprRecordId: string;
63
+ }[];
64
+ } & {
65
+ id: string;
66
+ timestamp: bigint;
67
+ cummulated: number;
68
+ cumulated: number;
69
+ opportunityId: string;
70
+ })[];
71
+ DailyRewardsRecords: ({
72
+ DailyRewardsBreakdown: {
73
+ id: number;
74
+ value: number;
75
+ campaignId: string;
76
+ dailyRewardsRecordId: string;
77
+ }[];
78
+ } & {
79
+ id: string;
80
+ timestamp: bigint;
81
+ total: number;
82
+ opportunityId: string;
83
+ })[];
84
+ } & {
85
+ id: string;
86
+ chainId: number;
87
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
88
+ identifier: string;
89
+ name: string;
90
+ status: import("../../../../database/api/.generated").$Enums.Status;
91
+ action: import("../../../../database/api/.generated").$Enums.OpportunityAction;
92
+ mainProtocolId: string | null;
93
+ tvl: number;
94
+ apr: number;
95
+ dailyRewards: number;
96
+ tags: string[];
97
+ }>;
98
+ static findUniqueOrThrowWithCampaigns(id: string): Promise<{
99
+ Chain: {
100
+ id: number;
101
+ name: string;
102
+ icon: string;
103
+ };
104
+ Campaigns: ({
105
+ ComputeChain: {
106
+ id: number;
107
+ name: string;
108
+ icon: string;
109
+ };
110
+ DistributionChain: {
111
+ id: number;
112
+ name: string;
113
+ icon: string;
114
+ };
115
+ RewardToken: {
116
+ id: string;
117
+ name: string | null;
118
+ chainId: number;
119
+ address: string;
120
+ decimals: number;
121
+ symbol: string;
122
+ icon: string;
123
+ verified: boolean;
124
+ price: number | null;
125
+ };
126
+ RewardBreakdown: {
127
+ id: number;
128
+ protocolId: string | null;
129
+ reason: string;
130
+ amount: string;
131
+ claimed: string;
132
+ pending: string;
133
+ auxiliaryData1: string | null;
134
+ auxiliaryData2: string | null;
135
+ rewardId: string;
136
+ campaignId: string;
137
+ }[];
138
+ } & {
139
+ id: string;
140
+ computeChainId: number;
141
+ distributionChainId: number;
142
+ identifier: string;
143
+ campaignId: string;
144
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
145
+ subType: number | null;
146
+ rewardTokenId: string;
147
+ amount: string;
148
+ opportunityId: string;
149
+ startTimestamp: bigint;
150
+ endTimestamp: bigint;
151
+ params: Prisma.JsonValue;
152
+ creatorAddress: string;
153
+ })[];
154
+ Tokens: {
155
+ id: string;
156
+ name: string | null;
157
+ chainId: number;
158
+ address: string;
159
+ decimals: number;
160
+ symbol: string;
161
+ icon: string;
162
+ verified: boolean;
163
+ price: number | null;
164
+ }[];
165
+ Protocols: {
166
+ id: string;
167
+ tags: import("../../../../database/api/.generated").$Enums.ProtocolTag[];
168
+ name: string;
169
+ description: string;
170
+ url: string;
171
+ icon: string;
172
+ }[];
173
+ MainProtocol: {
174
+ id: string;
175
+ tags: import("../../../../database/api/.generated").$Enums.ProtocolTag[];
176
+ name: string;
177
+ description: string;
178
+ url: string;
179
+ icon: string;
180
+ } | null;
181
+ TvlRecords: ({
182
+ TvlBreakdown: {
183
+ id: number;
184
+ identifier: string;
185
+ type: import("../../../../database/api/.generated").$Enums.TvlType;
186
+ value: number;
187
+ tvlRecordId: string;
188
+ }[];
189
+ } & {
190
+ id: string;
191
+ timestamp: bigint;
192
+ total: number;
193
+ opportunityId: string;
194
+ })[];
195
+ AprRecords: ({
196
+ AprBreakdown: {
197
+ id: number;
198
+ identifier: string;
199
+ type: import("../../../../database/api/.generated").$Enums.AprType;
200
+ value: number;
201
+ aprRecordId: string;
202
+ }[];
203
+ } & {
204
+ id: string;
205
+ timestamp: bigint;
206
+ cummulated: number;
207
+ cumulated: number;
208
+ opportunityId: string;
209
+ })[];
210
+ DailyRewardsRecords: ({
211
+ DailyRewardsBreakdown: {
212
+ id: number;
213
+ value: number;
214
+ campaignId: string;
215
+ dailyRewardsRecordId: string;
216
+ }[];
217
+ } & {
218
+ id: string;
219
+ timestamp: bigint;
220
+ total: number;
221
+ opportunityId: string;
222
+ })[];
223
+ } & {
224
+ id: string;
225
+ chainId: number;
226
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
227
+ identifier: string;
228
+ name: string;
229
+ status: import("../../../../database/api/.generated").$Enums.Status;
230
+ action: import("../../../../database/api/.generated").$Enums.OpportunityAction;
231
+ mainProtocolId: string | null;
232
+ tvl: number;
233
+ apr: number;
234
+ dailyRewards: number;
235
+ tags: string[];
236
+ }>;
237
+ static findManyWithCampaigns(filters: Prisma.OpportunityFindManyArgs): Promise<({
238
+ Campaigns: {
239
+ id: string;
240
+ computeChainId: number;
241
+ distributionChainId: number;
242
+ identifier: string;
243
+ campaignId: string;
244
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
245
+ subType: number | null;
246
+ rewardTokenId: string;
247
+ amount: string;
248
+ opportunityId: string;
249
+ startTimestamp: bigint;
250
+ endTimestamp: bigint;
251
+ params: Prisma.JsonValue;
252
+ creatorAddress: string;
253
+ }[];
254
+ } & {
255
+ id: string;
256
+ chainId: number;
257
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
258
+ identifier: string;
259
+ name: string;
260
+ status: import("../../../../database/api/.generated").$Enums.Status;
261
+ action: import("../../../../database/api/.generated").$Enums.OpportunityAction;
262
+ mainProtocolId: string | null;
263
+ tvl: number;
264
+ apr: number;
265
+ dailyRewards: number;
266
+ tags: string[];
267
+ })[]>;
268
+ static findMany(query: GetOpportunitiesQueryEntity): Promise<({
269
+ Chain: {
270
+ id: number;
271
+ name: string;
272
+ icon: string;
273
+ };
274
+ Tokens: {
275
+ id: string;
276
+ name: string | null;
277
+ chainId: number;
278
+ address: string;
279
+ decimals: number;
280
+ symbol: string;
281
+ icon: string;
282
+ verified: boolean;
283
+ price: number | null;
284
+ }[];
285
+ Protocols: {
286
+ id: string;
287
+ tags: import("../../../../database/api/.generated").$Enums.ProtocolTag[];
288
+ name: string;
289
+ description: string;
290
+ url: string;
291
+ icon: string;
292
+ }[];
293
+ MainProtocol: {
294
+ id: string;
295
+ tags: import("../../../../database/api/.generated").$Enums.ProtocolTag[];
296
+ name: string;
297
+ description: string;
298
+ url: string;
299
+ icon: string;
300
+ } | null;
301
+ TvlRecords: ({
302
+ TvlBreakdown: {
303
+ id: number;
304
+ identifier: string;
305
+ type: import("../../../../database/api/.generated").$Enums.TvlType;
306
+ value: number;
307
+ tvlRecordId: string;
308
+ }[];
309
+ } & {
310
+ id: string;
311
+ timestamp: bigint;
312
+ total: number;
313
+ opportunityId: string;
314
+ })[];
315
+ AprRecords: ({
316
+ AprBreakdown: {
317
+ id: number;
318
+ identifier: string;
319
+ type: import("../../../../database/api/.generated").$Enums.AprType;
320
+ value: number;
321
+ aprRecordId: string;
322
+ }[];
323
+ } & {
324
+ id: string;
325
+ timestamp: bigint;
326
+ cummulated: number;
327
+ cumulated: number;
328
+ opportunityId: string;
329
+ })[];
330
+ DailyRewardsRecords: ({
331
+ DailyRewardsBreakdown: {
332
+ id: number;
333
+ value: number;
334
+ campaignId: string;
335
+ dailyRewardsRecordId: string;
336
+ }[];
337
+ } & {
338
+ id: string;
339
+ timestamp: bigint;
340
+ total: number;
341
+ opportunityId: string;
342
+ })[];
343
+ } & {
344
+ id: string;
345
+ chainId: number;
346
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
347
+ identifier: string;
348
+ name: string;
349
+ status: import("../../../../database/api/.generated").$Enums.Status;
350
+ action: import("../../../../database/api/.generated").$Enums.OpportunityAction;
351
+ mainProtocolId: string | null;
352
+ tvl: number;
353
+ apr: number;
354
+ dailyRewards: number;
355
+ tags: string[];
356
+ })[]>;
357
+ static countMany(query: GetOpportunitiesQueryEntity): Promise<number>;
358
+ static getAllIdsForDynamicOpp(): Promise<{
359
+ id: string;
360
+ }[]>;
361
+ /**
362
+ * Updates Apr, Tvl and DailyRewards record
363
+ * @param opportunityId
364
+ * @param apr
365
+ * @param tvl
366
+ * @returns
367
+ */
368
+ static updateRecords(opportunityId: string, apr: AprRecord["model"], tvl: TvlRecord["model"], dailyRewards: DailyRewardsRecord["model"]): Promise<{
369
+ aprRecord: {
370
+ id: string;
371
+ timestamp: bigint;
372
+ cummulated: number;
373
+ cumulated: number;
374
+ opportunityId: string;
375
+ };
376
+ tvlRecord: {
377
+ TvlBreakdown: {
378
+ id: number;
379
+ identifier: string;
380
+ type: import("../../../../database/api/.generated").$Enums.TvlType;
381
+ value: number;
382
+ tvlRecordId: string;
383
+ }[];
384
+ } & {
385
+ id: string;
386
+ timestamp: bigint;
387
+ total: number;
388
+ opportunityId: string;
389
+ };
390
+ dailyRewardsRecord: {
391
+ DailyRewardsBreakdown: {
392
+ id: number;
393
+ value: number;
394
+ campaignId: string;
395
+ dailyRewardsRecordId: string;
396
+ }[];
397
+ } & {
398
+ id: string;
399
+ timestamp: bigint;
400
+ total: number;
401
+ opportunityId: string;
402
+ };
403
+ opportunity: {
404
+ id: string;
405
+ chainId: number;
406
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
407
+ identifier: string;
408
+ name: string;
409
+ status: import("../../../../database/api/.generated").$Enums.Status;
410
+ action: import("../../../../database/api/.generated").$Enums.OpportunityAction;
411
+ mainProtocolId: string | null;
412
+ tvl: number;
413
+ apr: number;
414
+ dailyRewards: number;
415
+ tags: string[];
416
+ };
417
+ }>;
418
+ static updateStatus(id: string, status: Status): Promise<{
419
+ id: string;
420
+ chainId: number;
421
+ type: import("../../../../database/api/.generated").$Enums.CampaignType;
422
+ identifier: string;
423
+ name: string;
424
+ status: import("../../../../database/api/.generated").$Enums.Status;
425
+ action: import("../../../../database/api/.generated").$Enums.OpportunityAction;
426
+ mainProtocolId: string | null;
427
+ tvl: number;
428
+ apr: number;
429
+ dailyRewards: number;
430
+ tags: string[];
431
+ }>;
432
+ }