@merkl/api 0.10.129 → 0.10.131

Sign up to get free protection for your applications and to get access to all the features.
Files changed (361) hide show
  1. package/dist/database/api/.generated/default.js +1 -0
  2. package/dist/database/api/.generated/edge.js +609 -0
  3. package/dist/database/api/.generated/index-browser.js +586 -0
  4. package/dist/database/api/.generated/index.js +638 -0
  5. package/dist/database/api/.generated/runtime/edge-esm.js +31 -0
  6. package/dist/database/api/.generated/runtime/edge.js +31 -0
  7. package/dist/database/api/.generated/runtime/index-browser.js +13 -0
  8. package/dist/database/api/.generated/runtime/library.js +143 -0
  9. package/dist/database/api/.generated/runtime/react-native.js +80 -0
  10. package/dist/database/api/.generated/runtime/wasm.js +32 -0
  11. package/dist/database/api/.generated/wasm.js +586 -0
  12. package/dist/database/api/seeder/resources/protocol.js +341 -0
  13. package/dist/database/engine/.generated/default.js +1 -0
  14. package/dist/database/engine/.generated/edge.js +438 -0
  15. package/dist/database/engine/.generated/index-browser.js +415 -0
  16. package/dist/database/engine/.generated/index.js +467 -0
  17. package/dist/database/engine/.generated/runtime/edge-esm.js +31 -0
  18. package/dist/database/engine/.generated/runtime/edge.js +31 -0
  19. package/dist/database/engine/.generated/runtime/index-browser.js +13 -0
  20. package/dist/database/engine/.generated/runtime/library.js +143 -0
  21. package/dist/database/engine/.generated/runtime/react-native.js +80 -0
  22. package/dist/database/engine/.generated/runtime/wasm.js +32 -0
  23. package/dist/database/engine/.generated/wasm.js +415 -0
  24. package/dist/src/backgroundJobs/index.js +44 -0
  25. package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.js +160 -0
  26. package/dist/src/backgroundJobs/jobs/health.js +15 -0
  27. package/dist/src/backgroundJobs/jobs/opportunityUpdater.js +63 -0
  28. package/dist/src/backgroundJobs/jobs/priceUpdater.js +16 -0
  29. package/dist/src/backgroundJobs/jobs/sync.js +33 -0
  30. package/dist/src/cache/declaration.js +146 -0
  31. package/dist/src/cache/index.js +152 -0
  32. package/dist/src/cache/redis.js +49 -0
  33. package/dist/src/constants.js +119 -0
  34. package/dist/src/entities/campaign.js +134 -0
  35. package/dist/src/entities/opportunity.js +549 -0
  36. package/dist/src/errors/BadRequest.error.js +7 -0
  37. package/dist/src/errors/Conflict.error.js +7 -0
  38. package/dist/src/errors/HttpError.js +11 -0
  39. package/dist/src/errors/NotFound.error.js +7 -0
  40. package/dist/src/errors/Opportunity.error.js +11 -0
  41. package/dist/src/errors/Unauthorized.error.js +7 -0
  42. package/dist/src/errors/index.js +5 -0
  43. package/dist/src/guards/BackOffice.guard.js +10 -0
  44. package/dist/src/guards/Engine.guard.js +10 -0
  45. package/dist/src/guards/TokenAuth.guard.js +10 -0
  46. package/dist/src/hooks/checkQueryAddressValidity.js +7 -0
  47. package/dist/src/hooks/checkQueryChainIdValidity.js +7 -0
  48. package/dist/src/index.js +79 -0
  49. package/dist/src/internal/controllers/endingCampaigns.js +41 -0
  50. package/dist/src/internal/controllers/unclaimed.js +36 -0
  51. package/dist/src/internal/index.js +30 -0
  52. package/dist/src/libs/campaigns/campaignTypes/AjnaDynamicData.js +111 -0
  53. package/dist/src/libs/campaigns/campaignTypes/BadgerDynamicData.js +93 -0
  54. package/dist/src/libs/campaigns/campaignTypes/CLAMMDynamicData.js +942 -0
  55. package/dist/src/libs/campaigns/campaignTypes/CompoundDynamicData.js +90 -0
  56. package/dist/src/libs/campaigns/campaignTypes/DolomiteDynamicData.js +60 -0
  57. package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicData.js +162 -0
  58. package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicDataRefacto.js +159 -0
  59. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/eulerVaultNames.js +13 -0
  60. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.js +29 -0
  61. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/getBlacklistedSupply.js +22 -0
  62. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/metamorphoTvl.js +35 -0
  63. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/spliceTVL.js +21 -0
  64. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +106 -0
  65. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AaveProcessor.js +26 -0
  66. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AssetProcessor.js +47 -0
  67. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AuraProcessor.js +103 -0
  68. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerGaugeProcessor.js +83 -0
  69. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerPoolProcessor.js +99 -0
  70. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BeefyProcessor.js +51 -0
  71. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/CompoundProcessor.js +36 -0
  72. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EnzymeProcessor.js +51 -0
  73. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EulerBorrowProcessor.js +46 -0
  74. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EulerLendProcessor.js +47 -0
  75. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/FluidProcessor.js +36 -0
  76. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/FraxProcessor.js +41 -0
  77. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/GearboxProcessor.js +44 -0
  78. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/GenericProcessor.js +239 -0
  79. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/MetamorphoProcessor.js +43 -0
  80. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleProcessor.js +31 -0
  81. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/RadiantProcessor.js +58 -0
  82. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/RfxProcessor.js +64 -0
  83. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/SpliceProcessor.js +35 -0
  84. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/SturdySiloProcessor.js +37 -0
  85. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/TemplateProcessor.js +40 -0
  86. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/TorosProcessor.js +33 -0
  87. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/UniswapProcessor.js +48 -0
  88. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/WoofiProcessor.js +40 -0
  89. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/curveProcessor.js +68 -0
  90. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +77 -0
  91. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesPrices.js +583 -0
  92. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesPricesRefactoFinal.js +24 -0
  93. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1.js +1209 -0
  94. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1RefactoFinal.js +194 -0
  95. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound2.js +645 -0
  96. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound2RefactoFinal.js +22 -0
  97. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound3.js +392 -0
  98. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound3RefactoFinal.js +22 -0
  99. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound4.js +323 -0
  100. package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound4RefactoFinal.js +22 -0
  101. package/dist/src/libs/campaigns/campaignTypes/ERC20_SNAPSHOTDynamicData.js +38 -0
  102. package/dist/src/libs/campaigns/campaignTypes/EulerDynamicData.js +165 -0
  103. package/dist/src/libs/campaigns/campaignTypes/JSON_AIRDROPDynamicData.js +19 -0
  104. package/dist/src/libs/campaigns/campaignTypes/MORPHODynamicData.js +120 -0
  105. package/dist/src/libs/campaigns/campaignTypes/RadiantDynamicData.js +112 -0
  106. package/dist/src/libs/campaigns/campaignTypes/SILODynamicData.js +113 -0
  107. package/dist/src/libs/campaigns/campaignsDynamicData.js +83 -0
  108. package/dist/src/libs/campaigns/campaignsDynamicDataRefacto.js +78 -0
  109. package/dist/src/libs/campaigns/getCampaigns.js +18 -0
  110. package/dist/src/libs/campaigns/utils/fetchA51Strategies.js +44 -0
  111. package/dist/src/libs/campaigns/utils/fetchClamInfo.js +27 -0
  112. package/dist/src/libs/campaigns/utils/fetchLogs.js +91 -0
  113. package/dist/src/libs/campaigns/utils/getCompV2ForksVaults.js +122 -0
  114. package/dist/src/libs/campaigns/utils/getContractCreationBlock.js +44 -0
  115. package/dist/src/libs/campaigns/utils/getDolomiteMarkets.js +50 -0
  116. package/dist/src/libs/campaigns/utils/getEulerV2Vaults.js +87 -0
  117. package/dist/src/libs/campaigns/utils/getLastEligibilityRatio.js +56 -0
  118. package/dist/src/libs/computeFee.js +34 -0
  119. package/dist/src/libs/custom/twtParticipants.js +54 -0
  120. package/dist/src/libs/deprecated-merklv3/index.js +184 -0
  121. package/dist/src/libs/getTokensList.js +37 -0
  122. package/dist/src/libs/merklChainData.js +129 -0
  123. package/dist/src/libs/parse/marketsWithCache.js +8 -0
  124. package/dist/src/libs/positions/ajna/index.js +107 -0
  125. package/dist/src/libs/positions/badger/index.js +79 -0
  126. package/dist/src/libs/positions/clamm/index.js +419 -0
  127. package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.js +35 -0
  128. package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.js +35 -0
  129. package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.js +44 -0
  130. package/dist/src/libs/positions/clamm/thegraph/index.js +162 -0
  131. package/dist/src/libs/positions/compound/index.js +93 -0
  132. package/dist/src/libs/positions/dolomite/index.js +49 -0
  133. package/dist/src/libs/positions/erc20/index.js +55 -0
  134. package/dist/src/libs/positions/euler/index.js +57 -0
  135. package/dist/src/libs/positions/index.js +48 -0
  136. package/dist/src/libs/positions/morpho/index.js +177 -0
  137. package/dist/src/libs/positions/prepareFetch.js +339 -0
  138. package/dist/src/libs/positions/silo/index.js +67 -0
  139. package/dist/src/libs/positions/types.js +1 -0
  140. package/dist/src/libs/reports/campaignReport.js +37 -0
  141. package/dist/src/libs/reports/mainParameterRewards.js +48 -0
  142. package/dist/src/libs/rewards/userRewards.js +154 -0
  143. package/dist/src/libs/staticCampaigns.js +10 -0
  144. package/dist/src/libs/tokens/balances.js +126 -0
  145. package/dist/src/libs/tokens/tokenInfo.js +22 -0
  146. package/dist/src/modules/v4/accounting/accounting.controller.js +66 -0
  147. package/dist/src/modules/v4/accounting/accounting.model.js +32 -0
  148. package/dist/src/modules/v4/accounting/accounting.repository.js +100 -0
  149. package/dist/src/modules/v4/accounting/accounting.service.js +78 -0
  150. package/dist/src/modules/v4/accounting/index.js +3 -0
  151. package/dist/src/modules/v4/apr/apr.controller.js +1 -0
  152. package/dist/src/modules/v4/apr/apr.model.js +1 -0
  153. package/dist/src/modules/v4/apr/apr.repository.js +1 -0
  154. package/dist/src/modules/v4/apr/apr.service.js +40 -0
  155. package/dist/src/modules/v4/apr/index.js +2 -0
  156. package/dist/src/modules/v4/blacklist/blacklist.controller.js +45 -0
  157. package/dist/src/modules/v4/blacklist/blacklist.model.js +13 -0
  158. package/dist/src/modules/v4/blacklist/blacklist.repository.js +56 -0
  159. package/dist/src/modules/v4/blacklist/blacklist.service.js +24 -0
  160. package/dist/src/modules/v4/blacklist/index.js +3 -0
  161. package/dist/src/modules/v4/cache/cache.model.js +14 -0
  162. package/dist/src/modules/v4/cache/cache.repository.js +10 -0
  163. package/dist/src/modules/v4/cache/cache.service.js +44 -0
  164. package/dist/src/modules/v4/cache/index.js +1 -0
  165. package/dist/src/modules/v4/campaign/campaign.controller.js +56 -0
  166. package/dist/src/modules/v4/campaign/campaign.model.js +54 -0
  167. package/dist/src/modules/v4/campaign/campaign.repository.js +346 -0
  168. package/dist/src/modules/v4/campaign/campaign.service.js +203 -0
  169. package/dist/src/modules/v4/campaign/index.js +3 -0
  170. package/dist/src/modules/v4/chain/chain.controller.js +40 -0
  171. package/dist/src/modules/v4/chain/chain.model.js +17 -0
  172. package/dist/src/modules/v4/chain/chain.repository.js +64 -0
  173. package/dist/src/modules/v4/chain/chain.service.js +42 -0
  174. package/dist/src/modules/v4/chain/index.js +3 -0
  175. package/dist/src/modules/v4/dynamicData/dynamicData.controller.js +19 -0
  176. package/dist/src/modules/v4/dynamicData/dynamicData.model.js +6 -0
  177. package/dist/src/modules/v4/dynamicData/dynamicData.repository.js +1 -0
  178. package/dist/src/modules/v4/dynamicData/dynamicData.service.js +49 -0
  179. package/dist/src/modules/v4/dynamicData/index.js +3 -0
  180. package/dist/src/modules/v4/enso/enso.model.js +108 -0
  181. package/dist/src/modules/v4/enso/enso.service.js +46 -0
  182. package/dist/src/modules/v4/explorer/explorer.model.js +2 -0
  183. package/dist/src/modules/v4/explorer/explorer.repository.js +23 -0
  184. package/dist/src/modules/v4/explorer/explorer.service.js +24 -0
  185. package/dist/src/modules/v4/explorer/index.js +1 -0
  186. package/dist/src/modules/v4/index.js +4 -0
  187. package/dist/src/modules/v4/merklRoot/index.js +3 -0
  188. package/dist/src/modules/v4/merklRoot/merklRoot.controller.js +19 -0
  189. package/dist/src/modules/v4/merklRoot/merklRoot.model.js +6 -0
  190. package/dist/src/modules/v4/merklRoot/merklRoot.repository.js +31 -0
  191. package/dist/src/modules/v4/merklRoot/merklRoot.service.js +38 -0
  192. package/dist/src/modules/v4/opportunity/index.js +3 -0
  193. package/dist/src/modules/v4/opportunity/opportunity.controller.js +69 -0
  194. package/dist/src/modules/v4/opportunity/opportunity.model.js +36 -0
  195. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +14 -0
  196. package/dist/src/modules/v4/opportunity/opportunity.repository.js +217 -0
  197. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +0 -15
  198. package/dist/src/modules/v4/opportunity/opportunity.service.js +180 -0
  199. package/dist/src/modules/v4/opportunity/subservices/getAjnaMetadata.service.js +50 -0
  200. package/dist/src/modules/v4/opportunity/subservices/getBadgerMetadata.service.js +23 -0
  201. package/dist/src/modules/v4/opportunity/subservices/getClammMetadata.service.js +33 -0
  202. package/dist/src/modules/v4/opportunity/subservices/getCompoundMetadata.service.js +18 -0
  203. package/dist/src/modules/v4/opportunity/subservices/getDolomiteMetadata.service.js +15 -0
  204. package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.js +63 -0
  205. package/dist/src/modules/v4/opportunity/subservices/getErc20SnapshotMetadata.service.js +8 -0
  206. package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.js +30 -0
  207. package/dist/src/modules/v4/opportunity/subservices/getJsonAirDropMetadata.service.js +36 -0
  208. package/dist/src/modules/v4/opportunity/subservices/getMorphoMetadata.service.js +19 -0
  209. package/dist/src/modules/v4/opportunity/subservices/getRadiantMetadata.service.js +9 -0
  210. package/dist/src/modules/v4/opportunity/subservices/getSiloMetadata.service.js +13 -0
  211. package/dist/src/modules/v4/opportunity/transform-id.pipe.js +6 -0
  212. package/dist/src/modules/v4/opportunity/validate-id.pipe.js +12 -0
  213. package/dist/src/modules/v4/participate/participate.controller.js +66 -0
  214. package/dist/src/modules/v4/participate/participate.model.js +24 -0
  215. package/dist/src/modules/v4/participate/participate.service.js +33 -0
  216. package/dist/src/modules/v4/price/index.js +3 -0
  217. package/dist/src/modules/v4/price/price.controller.js +62 -0
  218. package/dist/src/modules/v4/price/price.model.js +12 -0
  219. package/dist/src/modules/v4/price/price.repository.js +18 -0
  220. package/dist/src/modules/v4/price/price.service.js +44 -0
  221. package/dist/src/modules/v4/prisma/index.js +1 -0
  222. package/dist/src/modules/v4/protocol/index.js +3 -0
  223. package/dist/src/modules/v4/protocol/protocol.controller.js +23 -0
  224. package/dist/src/modules/v4/protocol/protocol.model.js +68 -0
  225. package/dist/src/modules/v4/protocol/protocol.repository.js +37 -0
  226. package/dist/src/modules/v4/protocol/protocol.service.js +77 -0
  227. package/dist/src/modules/v4/reward/index.js +3 -0
  228. package/dist/src/modules/v4/reward/reward.controller.js +52 -0
  229. package/dist/src/modules/v4/reward/reward.model.js +104 -0
  230. package/dist/src/modules/v4/reward/reward.repository.js +237 -0
  231. package/dist/src/modules/v4/reward/reward.service.js +283 -0
  232. package/dist/src/modules/v4/reward/rewardConvertor.service.js +136 -0
  233. package/dist/src/modules/v4/router.js +57 -0
  234. package/dist/src/modules/v4/status/index.js +3 -0
  235. package/dist/src/modules/v4/status/status.controller.js +48 -0
  236. package/dist/src/modules/v4/status/status.model.js +24 -0
  237. package/dist/src/modules/v4/status/status.repository.js +88 -0
  238. package/dist/src/modules/v4/status/status.service.js +60 -0
  239. package/dist/src/modules/v4/token/index.js +3 -0
  240. package/dist/src/modules/v4/token/token.controller.js +32 -0
  241. package/dist/src/modules/v4/token/token.model.js +23 -0
  242. package/dist/src/modules/v4/token/token.repository.js +128 -0
  243. package/dist/src/modules/v4/token/token.service.js +268 -0
  244. package/dist/src/modules/v4/tvl/index.js +2 -0
  245. package/dist/src/modules/v4/tvl/tvl.controller.js +1 -0
  246. package/dist/src/modules/v4/tvl/tvl.model.js +1 -0
  247. package/dist/src/modules/v4/tvl/tvl.repository.js +1 -0
  248. package/dist/src/modules/v4/tvl/tvl.service.js +49 -0
  249. package/dist/src/modules/v4/uniswapV4/index.js +4 -0
  250. package/dist/src/modules/v4/uniswapV4/uniswapV4.controller.js +11 -0
  251. package/dist/src/modules/v4/uniswapV4/uniswapV4.model.js +17 -0
  252. package/dist/src/modules/v4/uniswapV4/uniswapV4.repository.js +2 -0
  253. package/dist/src/modules/v4/uniswapV4/uniswapV4.service.js +73 -0
  254. package/dist/src/modules/v4/user/index.js +3 -0
  255. package/dist/src/modules/v4/user/user.controller.js +69 -0
  256. package/dist/src/modules/v4/user/user.model.js +18 -0
  257. package/dist/src/modules/v4/user/user.repository.js +38 -0
  258. package/dist/src/modules/v4/user/user.service.js +50 -0
  259. package/dist/src/plugins/error-handling.plugin.js +28 -0
  260. package/dist/src/plugins/logger.plugin.js +22 -0
  261. package/dist/src/routes/v1/allowances.js +115 -0
  262. package/dist/src/routes/v1/balances.js +25 -0
  263. package/dist/src/routes/v1/prices.js +11 -0
  264. package/dist/src/routes/v1/tokens.js +17 -0
  265. package/dist/src/routes/v2/merkl.js +13 -0
  266. package/dist/src/routes/v3/ERC20Campaigns.js +63 -0
  267. package/dist/src/routes/v3/app.js +18 -0
  268. package/dist/src/routes/v3/blacklist.js +18 -0
  269. package/dist/src/routes/v3/campaign/delay.js +78 -0
  270. package/dist/src/routes/v3/campaignClaims.js +24 -0
  271. package/dist/src/routes/v3/campaignReport.js +22 -0
  272. package/dist/src/routes/v3/campaignUnclaimed.js +28 -0
  273. package/dist/src/routes/v3/campaigns.js +101 -0
  274. package/dist/src/routes/v3/campaignsForMainParameter.js +19 -0
  275. package/dist/src/routes/v3/campaignsInfo.js +54 -0
  276. package/dist/src/routes/v3/campaignsRewardsReport.js +47 -0
  277. package/dist/src/routes/v3/claims.js +45 -0
  278. package/dist/src/routes/v3/compoundV2.js +9 -0
  279. package/dist/src/routes/v3/createCampaign.js +66 -0
  280. package/dist/src/routes/v3/dolomite.js +9 -0
  281. package/dist/src/routes/v3/euler.js +9 -0
  282. package/dist/src/routes/v3/exports/campaigns.js +28 -0
  283. package/dist/src/routes/v3/fetch.js +27 -0
  284. package/dist/src/routes/v3/health.js +13 -0
  285. package/dist/src/routes/v3/lostyield.js +98 -0
  286. package/dist/src/routes/v3/merkl.js +119 -0
  287. package/dist/src/routes/v3/morphoMarkets.js +27 -0
  288. package/dist/src/routes/v3/morphoVaults.js +22 -0
  289. package/dist/src/routes/v3/multiChainPositions.js +69 -0
  290. package/dist/src/routes/v3/opportunity.js +63 -0
  291. package/dist/src/routes/v3/overview.js +73 -0
  292. package/dist/src/routes/v3/parse.js +23 -0
  293. package/dist/src/routes/v3/payload.js +40 -0
  294. package/dist/src/routes/v3/poolInfo.js +88 -0
  295. package/dist/src/routes/v3/positions.js +62 -0
  296. package/dist/src/routes/v3/radiant.js +26 -0
  297. package/dist/src/routes/v3/recipients.js +20 -0
  298. package/dist/src/routes/v3/rewards.js +33 -0
  299. package/dist/src/routes/v3/rewardsReport.js +51 -0
  300. package/dist/src/routes/v3/rootForTimestamp.js +47 -0
  301. package/dist/src/routes/v3/silo.js +20 -0
  302. package/dist/src/routes/v3/token.js +24 -0
  303. package/dist/src/routes/v3/tokenUnclaimed.js +24 -0
  304. package/dist/src/routes/v3/twt/participants.js +11 -0
  305. package/dist/src/routes/v3/updates.js +47 -0
  306. package/dist/src/routes/v3/userRewards.js +59 -0
  307. package/dist/src/types/index.js +6 -0
  308. package/dist/src/types/parameters/Action.js +11 -0
  309. package/dist/src/types/parameters/Chain.js +13 -0
  310. package/dist/src/types/parameters/ChainCampaignId.js +13 -0
  311. package/dist/src/types/parameters/MainParameter.js +19 -0
  312. package/dist/src/types/parameters/OpportunityId.js +14 -0
  313. package/dist/src/types/parameters/Timestamp.js +16 -0
  314. package/dist/src/types/parameters/Type.js +15 -0
  315. package/dist/src/types/parameters/index.js +17 -0
  316. package/dist/src/types/returnTypes.js +1 -0
  317. package/dist/src/types/utils.js +1 -0
  318. package/dist/src/utils/addString.js +6 -0
  319. package/dist/src/utils/bigintToString.js +20 -0
  320. package/dist/src/utils/crypto.js +4 -0
  321. package/dist/src/utils/decodeCalls.js +170 -0
  322. package/dist/src/utils/encodeCalls.js +240 -0
  323. package/dist/src/utils/error.js +90 -0
  324. package/dist/src/utils/execute.js +41 -0
  325. package/dist/src/utils/generateCardName.js +89 -0
  326. package/dist/src/utils/generic.js +117 -0
  327. package/dist/src/utils/hashArray.js +4 -0
  328. package/dist/src/utils/lastBlockBefore.js +78 -0
  329. package/dist/src/utils/logger.js +52 -0
  330. package/dist/src/utils/pricer.js +180 -0
  331. package/dist/src/utils/prices/chainlinkRead.js +8 -0
  332. package/dist/src/utils/prices/curveVirtualPrice.js +7 -0
  333. package/dist/src/utils/prices/getDQUICK.js +8 -0
  334. package/dist/src/utils/prices/priceFetcherFactory.js +29 -0
  335. package/dist/src/utils/prices/priceService.js +328 -0
  336. package/dist/src/utils/prices/services/coinGeckoService.js +53 -0
  337. package/dist/src/utils/prices/services/defillamaService.js +53 -0
  338. package/dist/src/utils/prices/services/dexScreenerService.js +62 -0
  339. package/dist/src/utils/prices/services/erc4626Service.js +30 -0
  340. package/dist/src/utils/prices/services/getERC4626.js +11 -0
  341. package/dist/src/utils/prices/services/indexCoopService.js +55 -0
  342. package/dist/src/utils/prices/services/priceFetcher.js +1 -0
  343. package/dist/src/utils/prices/uniV2Price.js +40 -0
  344. package/dist/src/utils/prisma.js +12 -0
  345. package/dist/src/utils/providers.js +30 -0
  346. package/dist/src/utils/queries/activeCampaigns.js +22 -0
  347. package/dist/src/utils/queries/allCampaigns.js +51 -0
  348. package/dist/src/utils/queries/campaignsForMainParameter.js +23 -0
  349. package/dist/src/utils/queries/claimsOverTime.js +111 -0
  350. package/dist/src/utils/queries/endingCampaigns.js +21 -0
  351. package/dist/src/utils/queries/futureCampaigns.js +19 -0
  352. package/dist/src/utils/queries/mainParameterCampaigns.js +11 -0
  353. package/dist/src/utils/queries/rewardsAmount.js +106 -0
  354. package/dist/src/utils/queries/unclaimed.js +81 -0
  355. package/dist/src/utils/rateLimit.js +13 -0
  356. package/dist/src/utils/stryke.js +4 -0
  357. package/dist/src/utils/throw.js +27 -0
  358. package/dist/src/utils/validation.js +20 -0
  359. package/dist/tsconfig.package.tsbuildinfo +1 -1
  360. package/package.json +2 -2
  361. package/dist/package.json +0 -91
@@ -0,0 +1,645 @@
1
+ import { Interface } from "@ethersproject/abi";
2
+ import { BN2Number, ERC20Interface, UniswapV2PoolInterface } from "@sdk";
3
+ import { tokenType } from "./helpers/tokenType";
4
+ import { OneInchStakingInterface, aaveInterface, auraInterface, balancerGaugeInterface, beefyInterface, compoundInterface, curveInterface, enzymeInterface, eulerInterface, fluidInterface, fraxlendInterface, ionicInterface, layerBankInterface, metamorphoInterface, moonwellInterface, radiantInterface, sturdyInterface, } from "./subtypesRound1";
5
+ const balancerPoolABI = [
6
+ {
7
+ inputs: [],
8
+ name: "getPoolId",
9
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
10
+ stateMutability: "view",
11
+ type: "function",
12
+ },
13
+ {
14
+ inputs: [],
15
+ name: "getVault",
16
+ outputs: [
17
+ {
18
+ name: "",
19
+ type: "address",
20
+ },
21
+ ],
22
+ payable: false,
23
+ stateMutability: "view",
24
+ type: "function",
25
+ },
26
+ ];
27
+ const gearboxVaultABI = [
28
+ {
29
+ inputs: [],
30
+ name: "totalAssets",
31
+ outputs: [
32
+ {
33
+ name: "",
34
+ type: "uint256",
35
+ },
36
+ ],
37
+ payable: false,
38
+ stateMutability: "view",
39
+ type: "function",
40
+ },
41
+ {
42
+ inputs: [],
43
+ name: "underlyingToken",
44
+ outputs: [
45
+ {
46
+ name: "",
47
+ type: "address",
48
+ },
49
+ ],
50
+ payable: false,
51
+ stateMutability: "view",
52
+ type: "function",
53
+ },
54
+ ];
55
+ // lptoken address, token address, gauge address, crvRewards address, stash address, shutdown bool
56
+ const auraOperatorABI = [
57
+ {
58
+ inputs: [
59
+ {
60
+ name: "input",
61
+ type: "uint256",
62
+ },
63
+ ],
64
+ name: "poolInfo",
65
+ outputs: [
66
+ {
67
+ name: "lptoken",
68
+ type: "address",
69
+ },
70
+ {
71
+ name: "token",
72
+ type: "address",
73
+ },
74
+ {
75
+ name: "gauge",
76
+ type: "address",
77
+ },
78
+ {
79
+ name: "crvRewards",
80
+ type: "address",
81
+ },
82
+ {
83
+ name: "stash",
84
+ type: "address",
85
+ },
86
+ {
87
+ name: "shutdown",
88
+ type: "bool",
89
+ },
90
+ ],
91
+ stateMutability: "view",
92
+ type: "function",
93
+ },
94
+ {
95
+ inputs: [],
96
+ name: "staker",
97
+ outputs: [
98
+ {
99
+ name: "",
100
+ type: "address",
101
+ },
102
+ ],
103
+ payable: false,
104
+ stateMutability: "view",
105
+ type: "function",
106
+ },
107
+ ];
108
+ export const balancerPoolInterface = new Interface(balancerPoolABI);
109
+ export const gearboxVaultInterface = new Interface(gearboxVaultABI);
110
+ export const auraOperatorInterface = new Interface(auraOperatorABI);
111
+ export function getTokenTypeRound2(index, type, typeInfo, calls) {
112
+ if (type === tokenType.uniswapv2 ||
113
+ type === tokenType.poolside ||
114
+ type === tokenType.aerodrome ||
115
+ type === tokenType.velodrome ||
116
+ type === tokenType.dragonswap ||
117
+ type === tokenType.akron) {
118
+ const token0 = UniswapV2PoolInterface.decodeFunctionResult("token0", calls[index].returnData)[0];
119
+ const token1 = UniswapV2PoolInterface.decodeFunctionResult("token1", calls[index + 1].returnData)[0];
120
+ return {
121
+ type: type,
122
+ calls: [
123
+ {
124
+ allowFailure: true,
125
+ callData: ERC20Interface.encodeFunctionData("symbol"),
126
+ target: token0,
127
+ },
128
+ {
129
+ allowFailure: true,
130
+ callData: ERC20Interface.encodeFunctionData("symbol"),
131
+ target: token1,
132
+ },
133
+ {
134
+ allowFailure: true,
135
+ callData: ERC20Interface.encodeFunctionData("decimals"),
136
+ target: token0,
137
+ },
138
+ {
139
+ allowFailure: true,
140
+ callData: ERC20Interface.encodeFunctionData("decimals"),
141
+ target: token1,
142
+ },
143
+ {
144
+ allowFailure: true,
145
+ callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
146
+ target: token0,
147
+ },
148
+ {
149
+ allowFailure: true,
150
+ callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
151
+ target: token1,
152
+ },
153
+ ],
154
+ typeInfo: {
155
+ ...typeInfo,
156
+ token0,
157
+ token1,
158
+ },
159
+ };
160
+ }
161
+ if (type === tokenType.balancerGauge) {
162
+ // Call the get Price function on the gyroscope pool address
163
+ // Get the balance of the balancer contract of the gyroscope pool token
164
+ const lp_token = balancerGaugeInterface.decodeFunctionResult("lp_token", calls[index].returnData)[0];
165
+ return {
166
+ type: tokenType.balancerGauge,
167
+ calls: [
168
+ {
169
+ allowFailure: true,
170
+ callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
171
+ target: lp_token,
172
+ },
173
+ {
174
+ allowFailure: true,
175
+ callData: ERC20Interface.encodeFunctionData("totalSupply"),
176
+ target: lp_token,
177
+ },
178
+ {
179
+ allowFailure: true,
180
+ callData: balancerPoolInterface.encodeFunctionData("getPoolId"),
181
+ target: lp_token,
182
+ },
183
+ {
184
+ allowFailure: true,
185
+ callData: balancerPoolInterface.encodeFunctionData("getVault"),
186
+ target: lp_token,
187
+ },
188
+ ],
189
+ typeInfo: {
190
+ ...typeInfo,
191
+ gyroscopeToken: lp_token,
192
+ },
193
+ };
194
+ }
195
+ // symbol is ECLP-USDC-USDT
196
+ if (type === tokenType.balancerPool) {
197
+ // Call the get Price function on the gyroscope pool address
198
+ return {
199
+ type: tokenType.balancerPool,
200
+ calls: [
201
+ {
202
+ allowFailure: true,
203
+ callData: balancerPoolInterface.encodeFunctionData("getPoolId"),
204
+ target: typeInfo.tokenAddress,
205
+ },
206
+ {
207
+ allowFailure: true,
208
+ callData: balancerPoolInterface.encodeFunctionData("getVault"),
209
+ target: typeInfo.tokenAddress,
210
+ },
211
+ ],
212
+ typeInfo: {
213
+ ...typeInfo,
214
+ },
215
+ };
216
+ }
217
+ if (type === tokenType.aura) {
218
+ const balancerPool = auraInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
219
+ const auraOperator = auraInterface.decodeFunctionResult("operator", calls[index + 1].returnData)[0];
220
+ const pid = auraInterface.decodeFunctionResult("pid", calls[index + 2].returnData)[0].toNumber();
221
+ return {
222
+ type: type,
223
+ calls: [
224
+ {
225
+ allowFailure: true,
226
+ callData: balancerPoolInterface.encodeFunctionData("getPoolId"),
227
+ target: balancerPool,
228
+ },
229
+ {
230
+ allowFailure: true,
231
+ callData: balancerPoolInterface.encodeFunctionData("getVault"),
232
+ target: balancerPool,
233
+ },
234
+ {
235
+ allowFailure: true,
236
+ callData: ERC20Interface.encodeFunctionData("totalSupply"),
237
+ target: balancerPool,
238
+ },
239
+ {
240
+ allowFailure: true,
241
+ callData: auraOperatorInterface.encodeFunctionData("poolInfo", [pid]),
242
+ target: auraOperator,
243
+ },
244
+ {
245
+ allowFailure: true,
246
+ callData: auraOperatorInterface.encodeFunctionData("staker"),
247
+ target: auraOperator,
248
+ },
249
+ ],
250
+ typeInfo: {
251
+ ...typeInfo,
252
+ balancerPool: balancerPool,
253
+ auraOperator: auraOperator,
254
+ auraPoolId: pid,
255
+ },
256
+ };
257
+ }
258
+ if (type === tokenType.gearbox) {
259
+ // Get the underlying gearbox token to fetch the final underlying token
260
+ const stakingToken = OneInchStakingInterface.decodeFunctionResult("stakingToken", calls[index].returnData)[0];
261
+ return {
262
+ type: tokenType.gearbox,
263
+ calls: [
264
+ {
265
+ allowFailure: true,
266
+ callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
267
+ target: stakingToken,
268
+ },
269
+ {
270
+ allowFailure: true,
271
+ callData: ERC20Interface.encodeFunctionData("totalSupply"),
272
+ target: stakingToken,
273
+ },
274
+ {
275
+ allowFailure: true,
276
+ callData: ERC20Interface.encodeFunctionData("decimals"),
277
+ target: stakingToken,
278
+ },
279
+ {
280
+ allowFailure: true,
281
+ callData: gearboxVaultInterface.encodeFunctionData("underlyingToken"),
282
+ target: stakingToken,
283
+ },
284
+ {
285
+ allowFailure: true,
286
+ callData: gearboxVaultInterface.encodeFunctionData("totalAssets"),
287
+ target: stakingToken,
288
+ },
289
+ ],
290
+ typeInfo: {
291
+ ...typeInfo,
292
+ stakingToken: stakingToken,
293
+ },
294
+ };
295
+ }
296
+ if (type === tokenType.compound) {
297
+ // Get the underlying gearbox token to fetch the final underlying token
298
+ const baseToken = compoundInterface.decodeFunctionResult("baseToken", calls[index].returnData)[0];
299
+ return {
300
+ type: tokenType.compound,
301
+ calls: [
302
+ {
303
+ allowFailure: true,
304
+ callData: compoundInterface.encodeFunctionData("totalBorrow"),
305
+ target: typeInfo.tokenAddress,
306
+ },
307
+ {
308
+ allowFailure: true,
309
+ callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
310
+ target: baseToken,
311
+ },
312
+ {
313
+ allowFailure: true,
314
+ callData: ERC20Interface.encodeFunctionData("symbol"),
315
+ target: baseToken,
316
+ },
317
+ {
318
+ allowFailure: true,
319
+ callData: ERC20Interface.encodeFunctionData("decimals"),
320
+ target: baseToken,
321
+ },
322
+ ],
323
+ typeInfo: {
324
+ ...typeInfo,
325
+ baseToken: baseToken,
326
+ },
327
+ };
328
+ }
329
+ if (type === tokenType.radiant_lend) {
330
+ const underlyingToken = radiantInterface.decodeFunctionResult("UNDERLYING_ASSET_ADDRESS", calls[index].returnData)[0];
331
+ const priceBN = radiantInterface.decodeFunctionResult("getAssetPrice", calls[index + 1].returnData)[0];
332
+ return {
333
+ type: tokenType.radiant_lend,
334
+ calls: [
335
+ {
336
+ allowFailure: true,
337
+ callData: ERC20Interface.encodeFunctionData("symbol"),
338
+ target: underlyingToken,
339
+ },
340
+ ],
341
+ typeInfo: {
342
+ ...typeInfo,
343
+ underlyingToken: underlyingToken,
344
+ priceTargetToken: BN2Number(priceBN, 8),
345
+ },
346
+ };
347
+ }
348
+ if (type === tokenType.radiant_borrow) {
349
+ const underlyingToken = radiantInterface.decodeFunctionResult("UNDERLYING_ASSET_ADDRESS", calls[index].returnData)[0];
350
+ const priceBN = radiantInterface.decodeFunctionResult("getAssetPrice", calls[index + 1].returnData)[0];
351
+ return {
352
+ type: tokenType.radiant_borrow,
353
+ calls: [
354
+ {
355
+ allowFailure: true,
356
+ callData: ERC20Interface.encodeFunctionData("symbol"),
357
+ target: underlyingToken,
358
+ },
359
+ ],
360
+ typeInfo: {
361
+ ...typeInfo,
362
+ underlyingToken: underlyingToken,
363
+ priceTargetToken: BN2Number(priceBN, 8),
364
+ },
365
+ };
366
+ }
367
+ // https://explorer.mode.network/address/0x71ef7EDa2Be775E5A7aa8afD02C45F059833e9d2
368
+ if (type === tokenType.ionic) {
369
+ const underlyingToken = ionicInterface.decodeFunctionResult("underlying", calls[index].returnData)[0];
370
+ const exchangeRate = ionicInterface.decodeFunctionResult("exchangeRateCurrent", calls[index + 1].returnData)[0];
371
+ return {
372
+ type: tokenType.ionic,
373
+ calls: [
374
+ {
375
+ allowFailure: true,
376
+ callData: ERC20Interface.encodeFunctionData("symbol"),
377
+ target: underlyingToken,
378
+ },
379
+ ],
380
+ typeInfo: {
381
+ ...typeInfo,
382
+ underlyingToken: underlyingToken,
383
+ exchangeRate: BN2Number(exchangeRate, 18),
384
+ },
385
+ };
386
+ }
387
+ if (type === tokenType.layerbank) {
388
+ const underlyingToken = layerBankInterface.decodeFunctionResult("underlying", calls[index].returnData)[0];
389
+ const exchangeRate = layerBankInterface.decodeFunctionResult("exchangeRate", calls[index + 1].returnData)[0];
390
+ return {
391
+ type: type,
392
+ calls: [
393
+ {
394
+ allowFailure: true,
395
+ callData: ERC20Interface.encodeFunctionData("symbol"),
396
+ target: underlyingToken,
397
+ },
398
+ ],
399
+ typeInfo: {
400
+ ...typeInfo,
401
+ underlyingToken: underlyingToken,
402
+ exchangeRate: BN2Number(exchangeRate, 18),
403
+ },
404
+ };
405
+ }
406
+ if (type === tokenType.metamorpho) {
407
+ const underlyingToken = metamorphoInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
408
+ return {
409
+ type: tokenType.metamorpho,
410
+ calls: [
411
+ {
412
+ allowFailure: true,
413
+ callData: ERC20Interface.encodeFunctionData("symbol"),
414
+ target: underlyingToken,
415
+ },
416
+ ],
417
+ typeInfo: {
418
+ ...typeInfo,
419
+ underlyingToken,
420
+ },
421
+ };
422
+ }
423
+ if (type === tokenType.moonwell) {
424
+ const underlyingToken = moonwellInterface.decodeFunctionResult("underlying", calls[index].returnData)[0];
425
+ const exchangeRate = moonwellInterface.decodeFunctionResult("exchangeRateStored", calls[index + 1].returnData)[0];
426
+ return {
427
+ type: tokenType.moonwell,
428
+ calls: [
429
+ {
430
+ allowFailure: true,
431
+ callData: ERC20Interface.encodeFunctionData("symbol"),
432
+ target: underlyingToken,
433
+ },
434
+ {
435
+ allowFailure: true,
436
+ callData: ERC20Interface.encodeFunctionData("decimals"),
437
+ target: underlyingToken,
438
+ },
439
+ ],
440
+ typeInfo: {
441
+ ...typeInfo,
442
+ underlyingToken,
443
+ exchangeRate: BN2Number(exchangeRate, 18),
444
+ },
445
+ };
446
+ }
447
+ if (type === tokenType.aave_lending || type === tokenType.aave_borrowing) {
448
+ const underlyingToken = aaveInterface.decodeFunctionResult("UNDERLYING_ASSET_ADDRESS", calls[index].returnData)[0];
449
+ return {
450
+ type: type,
451
+ calls: [
452
+ {
453
+ allowFailure: true,
454
+ callData: ERC20Interface.encodeFunctionData("symbol"),
455
+ target: underlyingToken,
456
+ },
457
+ ],
458
+ typeInfo: {
459
+ ...typeInfo,
460
+ underlyingToken,
461
+ },
462
+ };
463
+ }
464
+ if (type === tokenType.fraxlend || type === tokenType.sturdy_aggregator || type === tokenType.sturdy_silo) {
465
+ const underlyingToken = fraxlendInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
466
+ const sharePrice = fraxlendInterface.decodeFunctionResult("pricePerShare", calls[index + 1].returnData)[0];
467
+ if (type === tokenType.sturdy_silo) {
468
+ const collateral = sturdyInterface.decodeFunctionResult("collateralContract", calls[index + 2].returnData)[0];
469
+ return {
470
+ type: type,
471
+ calls: [
472
+ {
473
+ allowFailure: true,
474
+ callData: ERC20Interface.encodeFunctionData("symbol"),
475
+ target: underlyingToken,
476
+ },
477
+ {
478
+ allowFailure: true,
479
+ callData: ERC20Interface.encodeFunctionData("symbol"),
480
+ target: collateral,
481
+ },
482
+ ],
483
+ typeInfo: {
484
+ ...typeInfo,
485
+ underlyingToken,
486
+ sharePrice: BN2Number(sharePrice, 18),
487
+ collateral,
488
+ },
489
+ };
490
+ }
491
+ return {
492
+ type: type,
493
+ calls: [
494
+ {
495
+ allowFailure: true,
496
+ callData: ERC20Interface.encodeFunctionData("symbol"),
497
+ target: underlyingToken,
498
+ },
499
+ ],
500
+ typeInfo: {
501
+ ...typeInfo,
502
+ underlyingToken,
503
+ sharePrice: BN2Number(sharePrice, 18),
504
+ },
505
+ };
506
+ }
507
+ if (type === tokenType.curve || type === tokenType.curve_2) {
508
+ let lp_price;
509
+ if (type === tokenType.curve) {
510
+ lp_price = curveInterface.decodeFunctionResult("lp_price", calls[index].returnData)[0];
511
+ }
512
+ else {
513
+ lp_price = curveInterface.decodeFunctionResult("get_virtual_price", calls[index].returnData)[0];
514
+ }
515
+ let i = 1;
516
+ const poolTokensList = [];
517
+ while (i <= 3) {
518
+ try {
519
+ const token = curveInterface.decodeFunctionResult("coins", calls[index + i].returnData)[0];
520
+ poolTokensList.push(token);
521
+ }
522
+ catch (e) { }
523
+ i++;
524
+ }
525
+ return {
526
+ type: type,
527
+ calls: poolTokensList.map(token => {
528
+ return {
529
+ allowFailure: true,
530
+ callData: ERC20Interface.encodeFunctionData("symbol"),
531
+ target: token,
532
+ };
533
+ }),
534
+ typeInfo: {
535
+ ...typeInfo,
536
+ lp_price: BN2Number(lp_price, 18),
537
+ poolTokensList,
538
+ },
539
+ };
540
+ }
541
+ if (type === tokenType.fluid) {
542
+ const underlyingToken = fluidInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
543
+ return {
544
+ type: type,
545
+ calls: [
546
+ {
547
+ allowFailure: true,
548
+ callData: ERC20Interface.encodeFunctionData("decimals"),
549
+ target: underlyingToken,
550
+ },
551
+ {
552
+ allowFailure: true,
553
+ callData: ERC20Interface.encodeFunctionData("symbol"),
554
+ target: underlyingToken,
555
+ },
556
+ ],
557
+ typeInfo: {
558
+ ...typeInfo,
559
+ underlyingToken: underlyingToken,
560
+ },
561
+ };
562
+ }
563
+ if (type === tokenType.enzyme) {
564
+ const underlyingToken = enzymeInterface.decodeFunctionResult("calcNetShareValue", calls[index].returnData)[0];
565
+ const exchangeRate = BN2Number(enzymeInterface.decodeFunctionResult("calcNetShareValue", calls[index].returnData)[1]);
566
+ return {
567
+ type: type,
568
+ calls: [
569
+ {
570
+ allowFailure: true,
571
+ callData: ERC20Interface.encodeFunctionData("symbol"),
572
+ target: underlyingToken,
573
+ },
574
+ ],
575
+ typeInfo: {
576
+ ...typeInfo,
577
+ underlyingToken,
578
+ exchangeRate,
579
+ },
580
+ };
581
+ }
582
+ if (type === tokenType.euler_borrow) {
583
+ const vault = eulerInterface.decodeFunctionResult("eVault", calls[index].returnData)[0];
584
+ return {
585
+ type: type,
586
+ calls: [
587
+ {
588
+ allowFailure: true,
589
+ callData: eulerInterface.encodeFunctionData("asset"),
590
+ target: vault,
591
+ },
592
+ ],
593
+ typeInfo: {
594
+ ...typeInfo,
595
+ vault,
596
+ },
597
+ };
598
+ }
599
+ if (type === tokenType.euler_lend) {
600
+ return {
601
+ type: type,
602
+ calls: [
603
+ {
604
+ allowFailure: true,
605
+ callData: eulerInterface.encodeFunctionData("asset"),
606
+ target: typeInfo.tokenAddress,
607
+ },
608
+ ],
609
+ typeInfo: {
610
+ ...typeInfo,
611
+ },
612
+ };
613
+ }
614
+ if (type === tokenType.beefy) {
615
+ const pricePerShare = BN2Number(beefyInterface.decodeFunctionResult("getPricePerFullShare", calls[index].returnData)[0]);
616
+ const underlyingToken = beefyInterface.decodeFunctionResult("want", calls[index + 1].returnData)[0];
617
+ return {
618
+ type: type,
619
+ calls: [
620
+ {
621
+ allowFailure: true,
622
+ callData: UniswapV2PoolInterface.encodeFunctionData("token0"),
623
+ target: underlyingToken,
624
+ },
625
+ {
626
+ allowFailure: true,
627
+ callData: UniswapV2PoolInterface.encodeFunctionData("token1"),
628
+ target: underlyingToken,
629
+ },
630
+ ],
631
+ typeInfo: {
632
+ ...typeInfo,
633
+ underlyingToken,
634
+ pricePerShare,
635
+ },
636
+ };
637
+ }
638
+ return {
639
+ type: type,
640
+ calls: [],
641
+ typeInfo: {
642
+ ...typeInfo,
643
+ },
644
+ };
645
+ }
@@ -0,0 +1,22 @@
1
+ import { processorMapping } from "./processor/processorMapping";
2
+ export function getTokenTypeRound2(index, type, typeInfo, calls) {
3
+ try {
4
+ const returnValueOfCalls = calls.map(call => call.returnData);
5
+ const ProcessorClass = processorMapping[type];
6
+ if (!ProcessorClass) {
7
+ throw new Error(`Processor not found for key: ${type}`);
8
+ }
9
+ const processorObject = new ProcessorClass();
10
+ return processorObject.computeRound2(index, type, typeInfo, returnValueOfCalls);
11
+ }
12
+ catch (error) {
13
+ console.error(error);
14
+ return {
15
+ type: type,
16
+ calls: [],
17
+ typeInfo: {
18
+ ...typeInfo,
19
+ },
20
+ };
21
+ }
22
+ }