@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.
- package/dist/database/api/.generated/default.js +1 -0
- package/dist/database/api/.generated/edge.js +609 -0
- package/dist/database/api/.generated/index-browser.js +586 -0
- package/dist/database/api/.generated/index.js +638 -0
- package/dist/database/api/.generated/runtime/edge-esm.js +31 -0
- package/dist/database/api/.generated/runtime/edge.js +31 -0
- package/dist/database/api/.generated/runtime/index-browser.js +13 -0
- package/dist/database/api/.generated/runtime/library.js +143 -0
- package/dist/database/api/.generated/runtime/react-native.js +80 -0
- package/dist/database/api/.generated/runtime/wasm.js +32 -0
- package/dist/database/api/.generated/wasm.js +586 -0
- package/dist/database/api/seeder/resources/protocol.js +341 -0
- package/dist/database/engine/.generated/default.js +1 -0
- package/dist/database/engine/.generated/edge.js +438 -0
- package/dist/database/engine/.generated/index-browser.js +415 -0
- package/dist/database/engine/.generated/index.js +467 -0
- package/dist/database/engine/.generated/runtime/edge-esm.js +31 -0
- package/dist/database/engine/.generated/runtime/edge.js +31 -0
- package/dist/database/engine/.generated/runtime/index-browser.js +13 -0
- package/dist/database/engine/.generated/runtime/library.js +143 -0
- package/dist/database/engine/.generated/runtime/react-native.js +80 -0
- package/dist/database/engine/.generated/runtime/wasm.js +32 -0
- package/dist/database/engine/.generated/wasm.js +415 -0
- package/dist/src/backgroundJobs/index.js +44 -0
- package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.js +160 -0
- package/dist/src/backgroundJobs/jobs/health.js +15 -0
- package/dist/src/backgroundJobs/jobs/opportunityUpdater.js +63 -0
- package/dist/src/backgroundJobs/jobs/priceUpdater.js +16 -0
- package/dist/src/backgroundJobs/jobs/sync.js +33 -0
- package/dist/src/cache/declaration.js +146 -0
- package/dist/src/cache/index.js +152 -0
- package/dist/src/cache/redis.js +49 -0
- package/dist/src/constants.js +119 -0
- package/dist/src/entities/campaign.js +134 -0
- package/dist/src/entities/opportunity.js +549 -0
- package/dist/src/errors/BadRequest.error.js +7 -0
- package/dist/src/errors/Conflict.error.js +7 -0
- package/dist/src/errors/HttpError.js +11 -0
- package/dist/src/errors/NotFound.error.js +7 -0
- package/dist/src/errors/Opportunity.error.js +11 -0
- package/dist/src/errors/Unauthorized.error.js +7 -0
- package/dist/src/errors/index.js +5 -0
- package/dist/src/guards/BackOffice.guard.js +10 -0
- package/dist/src/guards/Engine.guard.js +10 -0
- package/dist/src/guards/TokenAuth.guard.js +10 -0
- package/dist/src/hooks/checkQueryAddressValidity.js +7 -0
- package/dist/src/hooks/checkQueryChainIdValidity.js +7 -0
- package/dist/src/index.js +79 -0
- package/dist/src/internal/controllers/endingCampaigns.js +41 -0
- package/dist/src/internal/controllers/unclaimed.js +36 -0
- package/dist/src/internal/index.js +30 -0
- package/dist/src/libs/campaigns/campaignTypes/AjnaDynamicData.js +111 -0
- package/dist/src/libs/campaigns/campaignTypes/BadgerDynamicData.js +93 -0
- package/dist/src/libs/campaigns/campaignTypes/CLAMMDynamicData.js +942 -0
- package/dist/src/libs/campaigns/campaignTypes/CompoundDynamicData.js +90 -0
- package/dist/src/libs/campaigns/campaignTypes/DolomiteDynamicData.js +60 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicData.js +162 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicDataRefacto.js +159 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/eulerVaultNames.js +13 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.js +29 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/getBlacklistedSupply.js +22 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/metamorphoTvl.js +35 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/spliceTVL.js +21 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +106 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AaveProcessor.js +26 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AssetProcessor.js +47 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AuraProcessor.js +103 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerGaugeProcessor.js +83 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerPoolProcessor.js +99 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BeefyProcessor.js +51 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/CompoundProcessor.js +36 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EnzymeProcessor.js +51 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EulerBorrowProcessor.js +46 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/EulerLendProcessor.js +47 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/FluidProcessor.js +36 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/FraxProcessor.js +41 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/GearboxProcessor.js +44 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/GenericProcessor.js +239 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/MetamorphoProcessor.js +43 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleProcessor.js +31 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/RadiantProcessor.js +58 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/RfxProcessor.js +64 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/SpliceProcessor.js +35 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/SturdySiloProcessor.js +37 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/TemplateProcessor.js +40 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/TorosProcessor.js +33 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/UniswapProcessor.js +48 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/WoofiProcessor.js +40 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/curveProcessor.js +68 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +77 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesPrices.js +583 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesPricesRefactoFinal.js +24 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1.js +1209 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1RefactoFinal.js +194 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound2.js +645 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound2RefactoFinal.js +22 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound3.js +392 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound3RefactoFinal.js +22 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound4.js +323 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound4RefactoFinal.js +22 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20_SNAPSHOTDynamicData.js +38 -0
- package/dist/src/libs/campaigns/campaignTypes/EulerDynamicData.js +165 -0
- package/dist/src/libs/campaigns/campaignTypes/JSON_AIRDROPDynamicData.js +19 -0
- package/dist/src/libs/campaigns/campaignTypes/MORPHODynamicData.js +120 -0
- package/dist/src/libs/campaigns/campaignTypes/RadiantDynamicData.js +112 -0
- package/dist/src/libs/campaigns/campaignTypes/SILODynamicData.js +113 -0
- package/dist/src/libs/campaigns/campaignsDynamicData.js +83 -0
- package/dist/src/libs/campaigns/campaignsDynamicDataRefacto.js +78 -0
- package/dist/src/libs/campaigns/getCampaigns.js +18 -0
- package/dist/src/libs/campaigns/utils/fetchA51Strategies.js +44 -0
- package/dist/src/libs/campaigns/utils/fetchClamInfo.js +27 -0
- package/dist/src/libs/campaigns/utils/fetchLogs.js +91 -0
- package/dist/src/libs/campaigns/utils/getCompV2ForksVaults.js +122 -0
- package/dist/src/libs/campaigns/utils/getContractCreationBlock.js +44 -0
- package/dist/src/libs/campaigns/utils/getDolomiteMarkets.js +50 -0
- package/dist/src/libs/campaigns/utils/getEulerV2Vaults.js +87 -0
- package/dist/src/libs/campaigns/utils/getLastEligibilityRatio.js +56 -0
- package/dist/src/libs/computeFee.js +34 -0
- package/dist/src/libs/custom/twtParticipants.js +54 -0
- package/dist/src/libs/deprecated-merklv3/index.js +184 -0
- package/dist/src/libs/getTokensList.js +37 -0
- package/dist/src/libs/merklChainData.js +129 -0
- package/dist/src/libs/parse/marketsWithCache.js +8 -0
- package/dist/src/libs/positions/ajna/index.js +107 -0
- package/dist/src/libs/positions/badger/index.js +79 -0
- package/dist/src/libs/positions/clamm/index.js +419 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.js +35 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.js +35 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.js +44 -0
- package/dist/src/libs/positions/clamm/thegraph/index.js +162 -0
- package/dist/src/libs/positions/compound/index.js +93 -0
- package/dist/src/libs/positions/dolomite/index.js +49 -0
- package/dist/src/libs/positions/erc20/index.js +55 -0
- package/dist/src/libs/positions/euler/index.js +57 -0
- package/dist/src/libs/positions/index.js +48 -0
- package/dist/src/libs/positions/morpho/index.js +177 -0
- package/dist/src/libs/positions/prepareFetch.js +339 -0
- package/dist/src/libs/positions/silo/index.js +67 -0
- package/dist/src/libs/positions/types.js +1 -0
- package/dist/src/libs/reports/campaignReport.js +37 -0
- package/dist/src/libs/reports/mainParameterRewards.js +48 -0
- package/dist/src/libs/rewards/userRewards.js +154 -0
- package/dist/src/libs/staticCampaigns.js +10 -0
- package/dist/src/libs/tokens/balances.js +126 -0
- package/dist/src/libs/tokens/tokenInfo.js +22 -0
- package/dist/src/modules/v4/accounting/accounting.controller.js +66 -0
- package/dist/src/modules/v4/accounting/accounting.model.js +32 -0
- package/dist/src/modules/v4/accounting/accounting.repository.js +100 -0
- package/dist/src/modules/v4/accounting/accounting.service.js +78 -0
- package/dist/src/modules/v4/accounting/index.js +3 -0
- package/dist/src/modules/v4/apr/apr.controller.js +1 -0
- package/dist/src/modules/v4/apr/apr.model.js +1 -0
- package/dist/src/modules/v4/apr/apr.repository.js +1 -0
- package/dist/src/modules/v4/apr/apr.service.js +40 -0
- package/dist/src/modules/v4/apr/index.js +2 -0
- package/dist/src/modules/v4/blacklist/blacklist.controller.js +45 -0
- package/dist/src/modules/v4/blacklist/blacklist.model.js +13 -0
- package/dist/src/modules/v4/blacklist/blacklist.repository.js +56 -0
- package/dist/src/modules/v4/blacklist/blacklist.service.js +24 -0
- package/dist/src/modules/v4/blacklist/index.js +3 -0
- package/dist/src/modules/v4/cache/cache.model.js +14 -0
- package/dist/src/modules/v4/cache/cache.repository.js +10 -0
- package/dist/src/modules/v4/cache/cache.service.js +44 -0
- package/dist/src/modules/v4/cache/index.js +1 -0
- package/dist/src/modules/v4/campaign/campaign.controller.js +56 -0
- package/dist/src/modules/v4/campaign/campaign.model.js +54 -0
- package/dist/src/modules/v4/campaign/campaign.repository.js +346 -0
- package/dist/src/modules/v4/campaign/campaign.service.js +203 -0
- package/dist/src/modules/v4/campaign/index.js +3 -0
- package/dist/src/modules/v4/chain/chain.controller.js +40 -0
- package/dist/src/modules/v4/chain/chain.model.js +17 -0
- package/dist/src/modules/v4/chain/chain.repository.js +64 -0
- package/dist/src/modules/v4/chain/chain.service.js +42 -0
- package/dist/src/modules/v4/chain/index.js +3 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.js +19 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.model.js +6 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.repository.js +1 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +49 -0
- package/dist/src/modules/v4/dynamicData/index.js +3 -0
- package/dist/src/modules/v4/enso/enso.model.js +108 -0
- package/dist/src/modules/v4/enso/enso.service.js +46 -0
- package/dist/src/modules/v4/explorer/explorer.model.js +2 -0
- package/dist/src/modules/v4/explorer/explorer.repository.js +23 -0
- package/dist/src/modules/v4/explorer/explorer.service.js +24 -0
- package/dist/src/modules/v4/explorer/index.js +1 -0
- package/dist/src/modules/v4/index.js +4 -0
- package/dist/src/modules/v4/merklRoot/index.js +3 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.js +19 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.model.js +6 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.repository.js +31 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.service.js +38 -0
- package/dist/src/modules/v4/opportunity/index.js +3 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.js +69 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +36 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +14 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +217 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +0 -15
- package/dist/src/modules/v4/opportunity/opportunity.service.js +180 -0
- package/dist/src/modules/v4/opportunity/subservices/getAjnaMetadata.service.js +50 -0
- package/dist/src/modules/v4/opportunity/subservices/getBadgerMetadata.service.js +23 -0
- package/dist/src/modules/v4/opportunity/subservices/getClammMetadata.service.js +33 -0
- package/dist/src/modules/v4/opportunity/subservices/getCompoundMetadata.service.js +18 -0
- package/dist/src/modules/v4/opportunity/subservices/getDolomiteMetadata.service.js +15 -0
- package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.js +63 -0
- package/dist/src/modules/v4/opportunity/subservices/getErc20SnapshotMetadata.service.js +8 -0
- package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.js +30 -0
- package/dist/src/modules/v4/opportunity/subservices/getJsonAirDropMetadata.service.js +36 -0
- package/dist/src/modules/v4/opportunity/subservices/getMorphoMetadata.service.js +19 -0
- package/dist/src/modules/v4/opportunity/subservices/getRadiantMetadata.service.js +9 -0
- package/dist/src/modules/v4/opportunity/subservices/getSiloMetadata.service.js +13 -0
- package/dist/src/modules/v4/opportunity/transform-id.pipe.js +6 -0
- package/dist/src/modules/v4/opportunity/validate-id.pipe.js +12 -0
- package/dist/src/modules/v4/participate/participate.controller.js +66 -0
- package/dist/src/modules/v4/participate/participate.model.js +24 -0
- package/dist/src/modules/v4/participate/participate.service.js +33 -0
- package/dist/src/modules/v4/price/index.js +3 -0
- package/dist/src/modules/v4/price/price.controller.js +62 -0
- package/dist/src/modules/v4/price/price.model.js +12 -0
- package/dist/src/modules/v4/price/price.repository.js +18 -0
- package/dist/src/modules/v4/price/price.service.js +44 -0
- package/dist/src/modules/v4/prisma/index.js +1 -0
- package/dist/src/modules/v4/protocol/index.js +3 -0
- package/dist/src/modules/v4/protocol/protocol.controller.js +23 -0
- package/dist/src/modules/v4/protocol/protocol.model.js +68 -0
- package/dist/src/modules/v4/protocol/protocol.repository.js +37 -0
- package/dist/src/modules/v4/protocol/protocol.service.js +77 -0
- package/dist/src/modules/v4/reward/index.js +3 -0
- package/dist/src/modules/v4/reward/reward.controller.js +52 -0
- package/dist/src/modules/v4/reward/reward.model.js +104 -0
- package/dist/src/modules/v4/reward/reward.repository.js +237 -0
- package/dist/src/modules/v4/reward/reward.service.js +283 -0
- package/dist/src/modules/v4/reward/rewardConvertor.service.js +136 -0
- package/dist/src/modules/v4/router.js +57 -0
- package/dist/src/modules/v4/status/index.js +3 -0
- package/dist/src/modules/v4/status/status.controller.js +48 -0
- package/dist/src/modules/v4/status/status.model.js +24 -0
- package/dist/src/modules/v4/status/status.repository.js +88 -0
- package/dist/src/modules/v4/status/status.service.js +60 -0
- package/dist/src/modules/v4/token/index.js +3 -0
- package/dist/src/modules/v4/token/token.controller.js +32 -0
- package/dist/src/modules/v4/token/token.model.js +23 -0
- package/dist/src/modules/v4/token/token.repository.js +128 -0
- package/dist/src/modules/v4/token/token.service.js +268 -0
- package/dist/src/modules/v4/tvl/index.js +2 -0
- package/dist/src/modules/v4/tvl/tvl.controller.js +1 -0
- package/dist/src/modules/v4/tvl/tvl.model.js +1 -0
- package/dist/src/modules/v4/tvl/tvl.repository.js +1 -0
- package/dist/src/modules/v4/tvl/tvl.service.js +49 -0
- package/dist/src/modules/v4/uniswapV4/index.js +4 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.controller.js +11 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.model.js +17 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.repository.js +2 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.service.js +73 -0
- package/dist/src/modules/v4/user/index.js +3 -0
- package/dist/src/modules/v4/user/user.controller.js +69 -0
- package/dist/src/modules/v4/user/user.model.js +18 -0
- package/dist/src/modules/v4/user/user.repository.js +38 -0
- package/dist/src/modules/v4/user/user.service.js +50 -0
- package/dist/src/plugins/error-handling.plugin.js +28 -0
- package/dist/src/plugins/logger.plugin.js +22 -0
- package/dist/src/routes/v1/allowances.js +115 -0
- package/dist/src/routes/v1/balances.js +25 -0
- package/dist/src/routes/v1/prices.js +11 -0
- package/dist/src/routes/v1/tokens.js +17 -0
- package/dist/src/routes/v2/merkl.js +13 -0
- package/dist/src/routes/v3/ERC20Campaigns.js +63 -0
- package/dist/src/routes/v3/app.js +18 -0
- package/dist/src/routes/v3/blacklist.js +18 -0
- package/dist/src/routes/v3/campaign/delay.js +78 -0
- package/dist/src/routes/v3/campaignClaims.js +24 -0
- package/dist/src/routes/v3/campaignReport.js +22 -0
- package/dist/src/routes/v3/campaignUnclaimed.js +28 -0
- package/dist/src/routes/v3/campaigns.js +101 -0
- package/dist/src/routes/v3/campaignsForMainParameter.js +19 -0
- package/dist/src/routes/v3/campaignsInfo.js +54 -0
- package/dist/src/routes/v3/campaignsRewardsReport.js +47 -0
- package/dist/src/routes/v3/claims.js +45 -0
- package/dist/src/routes/v3/compoundV2.js +9 -0
- package/dist/src/routes/v3/createCampaign.js +66 -0
- package/dist/src/routes/v3/dolomite.js +9 -0
- package/dist/src/routes/v3/euler.js +9 -0
- package/dist/src/routes/v3/exports/campaigns.js +28 -0
- package/dist/src/routes/v3/fetch.js +27 -0
- package/dist/src/routes/v3/health.js +13 -0
- package/dist/src/routes/v3/lostyield.js +98 -0
- package/dist/src/routes/v3/merkl.js +119 -0
- package/dist/src/routes/v3/morphoMarkets.js +27 -0
- package/dist/src/routes/v3/morphoVaults.js +22 -0
- package/dist/src/routes/v3/multiChainPositions.js +69 -0
- package/dist/src/routes/v3/opportunity.js +63 -0
- package/dist/src/routes/v3/overview.js +73 -0
- package/dist/src/routes/v3/parse.js +23 -0
- package/dist/src/routes/v3/payload.js +40 -0
- package/dist/src/routes/v3/poolInfo.js +88 -0
- package/dist/src/routes/v3/positions.js +62 -0
- package/dist/src/routes/v3/radiant.js +26 -0
- package/dist/src/routes/v3/recipients.js +20 -0
- package/dist/src/routes/v3/rewards.js +33 -0
- package/dist/src/routes/v3/rewardsReport.js +51 -0
- package/dist/src/routes/v3/rootForTimestamp.js +47 -0
- package/dist/src/routes/v3/silo.js +20 -0
- package/dist/src/routes/v3/token.js +24 -0
- package/dist/src/routes/v3/tokenUnclaimed.js +24 -0
- package/dist/src/routes/v3/twt/participants.js +11 -0
- package/dist/src/routes/v3/updates.js +47 -0
- package/dist/src/routes/v3/userRewards.js +59 -0
- package/dist/src/types/index.js +6 -0
- package/dist/src/types/parameters/Action.js +11 -0
- package/dist/src/types/parameters/Chain.js +13 -0
- package/dist/src/types/parameters/ChainCampaignId.js +13 -0
- package/dist/src/types/parameters/MainParameter.js +19 -0
- package/dist/src/types/parameters/OpportunityId.js +14 -0
- package/dist/src/types/parameters/Timestamp.js +16 -0
- package/dist/src/types/parameters/Type.js +15 -0
- package/dist/src/types/parameters/index.js +17 -0
- package/dist/src/types/returnTypes.js +1 -0
- package/dist/src/types/utils.js +1 -0
- package/dist/src/utils/addString.js +6 -0
- package/dist/src/utils/bigintToString.js +20 -0
- package/dist/src/utils/crypto.js +4 -0
- package/dist/src/utils/decodeCalls.js +170 -0
- package/dist/src/utils/encodeCalls.js +240 -0
- package/dist/src/utils/error.js +90 -0
- package/dist/src/utils/execute.js +41 -0
- package/dist/src/utils/generateCardName.js +89 -0
- package/dist/src/utils/generic.js +117 -0
- package/dist/src/utils/hashArray.js +4 -0
- package/dist/src/utils/lastBlockBefore.js +78 -0
- package/dist/src/utils/logger.js +52 -0
- package/dist/src/utils/pricer.js +180 -0
- package/dist/src/utils/prices/chainlinkRead.js +8 -0
- package/dist/src/utils/prices/curveVirtualPrice.js +7 -0
- package/dist/src/utils/prices/getDQUICK.js +8 -0
- package/dist/src/utils/prices/priceFetcherFactory.js +29 -0
- package/dist/src/utils/prices/priceService.js +328 -0
- package/dist/src/utils/prices/services/coinGeckoService.js +53 -0
- package/dist/src/utils/prices/services/defillamaService.js +53 -0
- package/dist/src/utils/prices/services/dexScreenerService.js +62 -0
- package/dist/src/utils/prices/services/erc4626Service.js +30 -0
- package/dist/src/utils/prices/services/getERC4626.js +11 -0
- package/dist/src/utils/prices/services/indexCoopService.js +55 -0
- package/dist/src/utils/prices/services/priceFetcher.js +1 -0
- package/dist/src/utils/prices/uniV2Price.js +40 -0
- package/dist/src/utils/prisma.js +12 -0
- package/dist/src/utils/providers.js +30 -0
- package/dist/src/utils/queries/activeCampaigns.js +22 -0
- package/dist/src/utils/queries/allCampaigns.js +51 -0
- package/dist/src/utils/queries/campaignsForMainParameter.js +23 -0
- package/dist/src/utils/queries/claimsOverTime.js +111 -0
- package/dist/src/utils/queries/endingCampaigns.js +21 -0
- package/dist/src/utils/queries/futureCampaigns.js +19 -0
- package/dist/src/utils/queries/mainParameterCampaigns.js +11 -0
- package/dist/src/utils/queries/rewardsAmount.js +106 -0
- package/dist/src/utils/queries/unclaimed.js +81 -0
- package/dist/src/utils/rateLimit.js +13 -0
- package/dist/src/utils/stryke.js +4 -0
- package/dist/src/utils/throw.js +27 -0
- package/dist/src/utils/validation.js +20 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/package.json +0 -91
@@ -0,0 +1,392 @@
|
|
1
|
+
import { Interface } from "@ethersproject/abi";
|
2
|
+
import { BN2Number, ERC20Interface, UniswapV2PoolInterface } from "@sdk";
|
3
|
+
import { BigNumber } from "ethers";
|
4
|
+
import { tokenType } from "./helpers/tokenType";
|
5
|
+
import { compoundInterface, fluidInterface } from "./subtypesRound1";
|
6
|
+
import { auraOperatorInterface, balancerPoolInterface, gearboxVaultInterface } from "./subtypesRound2";
|
7
|
+
export const BALANCER_VAULT_ADDRESS = "0xBA12222222228d8Ba445958a75a0704d566BF2C8"; // Same for all chains
|
8
|
+
const balancerVaultABI = [
|
9
|
+
{
|
10
|
+
constant: true,
|
11
|
+
inputs: [
|
12
|
+
{
|
13
|
+
name: "poolId",
|
14
|
+
type: "bytes32",
|
15
|
+
},
|
16
|
+
],
|
17
|
+
name: "getPoolTokens",
|
18
|
+
outputs: [
|
19
|
+
{
|
20
|
+
name: "tokens",
|
21
|
+
type: "address[]",
|
22
|
+
},
|
23
|
+
{
|
24
|
+
name: "balances",
|
25
|
+
type: "uint256[]",
|
26
|
+
},
|
27
|
+
{
|
28
|
+
name: "lastChangeBlock",
|
29
|
+
type: "uint256",
|
30
|
+
},
|
31
|
+
],
|
32
|
+
payable: false,
|
33
|
+
stateMutability: "view",
|
34
|
+
type: "function",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
export const balancerVaultInterface = new Interface(balancerVaultABI);
|
38
|
+
export function getTokenTypeRound3(index, type, typeInfo, calls) {
|
39
|
+
if (type === tokenType.uniswapv2 ||
|
40
|
+
type === tokenType.poolside ||
|
41
|
+
type === tokenType.aerodrome ||
|
42
|
+
type === tokenType.velodrome ||
|
43
|
+
type === tokenType.dragonswap ||
|
44
|
+
type === tokenType.akron) {
|
45
|
+
const symbolToken0 = ERC20Interface.decodeFunctionResult("symbol", calls[index].returnData)[0];
|
46
|
+
const symbolToken1 = ERC20Interface.decodeFunctionResult("symbol", calls[index + 1].returnData)[0];
|
47
|
+
const decimalsToken0 = ERC20Interface.decodeFunctionResult("decimals", calls[index + 2].returnData)[0];
|
48
|
+
const decimalsToken1 = ERC20Interface.decodeFunctionResult("decimals", calls[index + 3].returnData)[0];
|
49
|
+
const balanceToken0 = ERC20Interface.decodeFunctionResult("balanceOf", calls[index + 4].returnData)[0];
|
50
|
+
const balanceToken1 = ERC20Interface.decodeFunctionResult("balanceOf", calls[index + 5].returnData)[0];
|
51
|
+
return {
|
52
|
+
type: type,
|
53
|
+
calls: [],
|
54
|
+
typeInfo: {
|
55
|
+
...typeInfo,
|
56
|
+
symbolToken0,
|
57
|
+
symbolToken1,
|
58
|
+
decimalsToken0,
|
59
|
+
decimalsToken1,
|
60
|
+
balanceToken0: BN2Number(balanceToken0, decimalsToken0),
|
61
|
+
balanceToken1: BN2Number(balanceToken1, decimalsToken1),
|
62
|
+
},
|
63
|
+
};
|
64
|
+
}
|
65
|
+
if (type === tokenType.balancerGauge) {
|
66
|
+
// Call the get Price function on the gyroscope pool address
|
67
|
+
// Get the balance of the balancer contract of the gyroscope pool token
|
68
|
+
const balanceUnderlyingPoolTokens = ERC20Interface.decodeFunctionResult("balanceOf", calls[index].returnData)[0];
|
69
|
+
const totalSupplyUnderlyingPoolTokens = ERC20Interface.decodeFunctionResult("totalSupply", calls[index + 1].returnData)[0];
|
70
|
+
const poolId = balancerPoolInterface.decodeFunctionResult("getPoolId", calls[index + 2].returnData)[0];
|
71
|
+
const vault = balancerPoolInterface.decodeFunctionResult("getVault", calls[index + 3].returnData)[0];
|
72
|
+
return {
|
73
|
+
type: tokenType.balancerGauge,
|
74
|
+
calls: [
|
75
|
+
{
|
76
|
+
allowFailure: true,
|
77
|
+
callData: balancerVaultInterface.encodeFunctionData("getPoolTokens", [poolId]),
|
78
|
+
target: vault,
|
79
|
+
},
|
80
|
+
],
|
81
|
+
typeInfo: {
|
82
|
+
...typeInfo,
|
83
|
+
percentageOfSupplyUnderlyingPoolTokens: BN2Number(balanceUnderlyingPoolTokens, 18) / BN2Number(totalSupplyUnderlyingPoolTokens, 18),
|
84
|
+
poolId,
|
85
|
+
vault,
|
86
|
+
},
|
87
|
+
};
|
88
|
+
}
|
89
|
+
// symbol is ECLP-USDC-USDT
|
90
|
+
if (type === tokenType.balancerPool) {
|
91
|
+
const poolId = balancerPoolInterface.decodeFunctionResult("getPoolId", calls[index].returnData)[0];
|
92
|
+
const vault = balancerPoolInterface.decodeFunctionResult("getVault", calls[index + 1].returnData)[0];
|
93
|
+
return {
|
94
|
+
type: tokenType.balancerPool,
|
95
|
+
calls: [
|
96
|
+
{
|
97
|
+
allowFailure: true,
|
98
|
+
callData: balancerVaultInterface.encodeFunctionData("getPoolTokens", [poolId]),
|
99
|
+
target: vault,
|
100
|
+
},
|
101
|
+
],
|
102
|
+
typeInfo: {
|
103
|
+
...typeInfo,
|
104
|
+
poolId,
|
105
|
+
vault,
|
106
|
+
},
|
107
|
+
};
|
108
|
+
}
|
109
|
+
if (type === tokenType.aura) {
|
110
|
+
const poolId = balancerPoolInterface.decodeFunctionResult("getPoolId", calls[index].returnData)[0];
|
111
|
+
const vault = balancerPoolInterface.decodeFunctionResult("getVault", calls[index + 1].returnData)[0];
|
112
|
+
const totalSupplyBalancerPool = ERC20Interface.decodeFunctionResult("totalSupply", calls[index + 2].returnData)[0];
|
113
|
+
const gaugeContract = auraOperatorInterface.decodeFunctionResult("poolInfo", calls[index + 3].returnData)[2];
|
114
|
+
const auraStaker = auraOperatorInterface.decodeFunctionResult("staker", calls[index + 4].returnData)[0];
|
115
|
+
return {
|
116
|
+
type: type,
|
117
|
+
calls: [
|
118
|
+
{
|
119
|
+
allowFailure: true,
|
120
|
+
callData: balancerVaultInterface.encodeFunctionData("getPoolTokens", [poolId]),
|
121
|
+
target: vault,
|
122
|
+
},
|
123
|
+
{
|
124
|
+
allowFailure: true,
|
125
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [gaugeContract]),
|
126
|
+
target: typeInfo.balancerPool,
|
127
|
+
},
|
128
|
+
{
|
129
|
+
allowFailure: true,
|
130
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [auraStaker]),
|
131
|
+
target: gaugeContract,
|
132
|
+
},
|
133
|
+
{
|
134
|
+
allowFailure: true,
|
135
|
+
callData: ERC20Interface.encodeFunctionData("totalSupply"),
|
136
|
+
target: gaugeContract,
|
137
|
+
},
|
138
|
+
],
|
139
|
+
typeInfo: {
|
140
|
+
...typeInfo,
|
141
|
+
poolId,
|
142
|
+
totalSupplyBalancerPool: BN2Number(totalSupplyBalancerPool, 18),
|
143
|
+
gaugeContract,
|
144
|
+
auraStaker,
|
145
|
+
vault,
|
146
|
+
},
|
147
|
+
};
|
148
|
+
}
|
149
|
+
if (type === tokenType.gearbox) {
|
150
|
+
// Get the underlying gearbox token to fetch the final underlying token
|
151
|
+
const balanceStakingToken = ERC20Interface.decodeFunctionResult("balanceOf", calls[index].returnData)[0];
|
152
|
+
const totalSupplyStakingToken = ERC20Interface.decodeFunctionResult("totalSupply", calls[index + 1].returnData)[0];
|
153
|
+
const decimalsStakingToken = ERC20Interface.decodeFunctionResult("decimals", calls[index + 2].returnData)[0];
|
154
|
+
const underlyingToken = gearboxVaultInterface.decodeFunctionResult("underlyingToken", calls[index + 3].returnData)[0];
|
155
|
+
const totalAssets = gearboxVaultInterface.decodeFunctionResult("totalAssets", calls[index + 4].returnData)[0];
|
156
|
+
const percentageOfSupplyUnderlyingPoolTokens = BN2Number(balanceStakingToken, decimalsStakingToken) / BN2Number(totalSupplyStakingToken, decimalsStakingToken);
|
157
|
+
return {
|
158
|
+
type: tokenType.gearbox,
|
159
|
+
calls: [
|
160
|
+
{
|
161
|
+
allowFailure: true,
|
162
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
163
|
+
target: underlyingToken,
|
164
|
+
},
|
165
|
+
{
|
166
|
+
allowFailure: true,
|
167
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
168
|
+
target: underlyingToken,
|
169
|
+
},
|
170
|
+
],
|
171
|
+
typeInfo: {
|
172
|
+
...typeInfo,
|
173
|
+
decimalsStakingToken,
|
174
|
+
underlyingToken,
|
175
|
+
totalAssets: totalAssets,
|
176
|
+
balanceStakingToken: BN2Number(balanceStakingToken, decimalsStakingToken),
|
177
|
+
totalSupplyStakingToken: BN2Number(totalSupplyStakingToken, decimalsStakingToken),
|
178
|
+
percentageOfSupplyUnderlyingPoolTokens,
|
179
|
+
},
|
180
|
+
};
|
181
|
+
}
|
182
|
+
if (type === tokenType.compound) {
|
183
|
+
// Get the underlying gearbox token to fetch the final underlying token
|
184
|
+
const totalBorrow = compoundInterface.decodeFunctionResult("totalBorrow", calls[index].returnData)[0];
|
185
|
+
const balanceBaseToken = ERC20Interface.decodeFunctionResult("balanceOf", calls[index + 1].returnData)[0];
|
186
|
+
const symbolBaseToken = ERC20Interface.decodeFunctionResult("symbol", calls[index + 2].returnData)[0];
|
187
|
+
const decimalsBaseToken = ERC20Interface.decodeFunctionResult("decimals", calls[index + 3].returnData)[0];
|
188
|
+
return {
|
189
|
+
type: tokenType.compound,
|
190
|
+
calls: [],
|
191
|
+
typeInfo: {
|
192
|
+
...typeInfo,
|
193
|
+
totalBorrow: BN2Number(totalBorrow, decimalsBaseToken),
|
194
|
+
balanceBaseToken: BN2Number(balanceBaseToken, decimalsBaseToken),
|
195
|
+
symbolBaseToken,
|
196
|
+
decimalsBaseToken,
|
197
|
+
},
|
198
|
+
};
|
199
|
+
}
|
200
|
+
if (type === tokenType.ionic ||
|
201
|
+
type === tokenType.radiant_borrow ||
|
202
|
+
type === tokenType.radiant_lend ||
|
203
|
+
type === tokenType.layerbank ||
|
204
|
+
type === tokenType.metamorpho) {
|
205
|
+
let symbolUnderlyingToken;
|
206
|
+
try {
|
207
|
+
symbolUnderlyingToken = ERC20Interface.decodeFunctionResult("symbol", calls[index].returnData)[0];
|
208
|
+
}
|
209
|
+
catch (e) {
|
210
|
+
// usually if this fails its because of native ETH
|
211
|
+
symbolUnderlyingToken = "ETH";
|
212
|
+
}
|
213
|
+
return {
|
214
|
+
type: type,
|
215
|
+
calls: [],
|
216
|
+
typeInfo: {
|
217
|
+
...typeInfo,
|
218
|
+
symbolUnderlyingToken: symbolUnderlyingToken,
|
219
|
+
},
|
220
|
+
};
|
221
|
+
}
|
222
|
+
if (type === tokenType.moonwell) {
|
223
|
+
const symbolUnderlyingToken = ERC20Interface.decodeFunctionResult("symbol", calls[index].returnData)[0];
|
224
|
+
const decimalsUnderlyingToken = ERC20Interface.decodeFunctionResult("decimals", calls[index + 1].returnData)[0];
|
225
|
+
return {
|
226
|
+
type: tokenType.moonwell,
|
227
|
+
calls: [],
|
228
|
+
typeInfo: {
|
229
|
+
...typeInfo,
|
230
|
+
symbolUnderlyingToken,
|
231
|
+
decimalsUnderlyingToken,
|
232
|
+
},
|
233
|
+
};
|
234
|
+
}
|
235
|
+
if (type === tokenType.aave_lending || type === tokenType.aave_borrowing) {
|
236
|
+
const symbolUnderlyingToken = ERC20Interface.decodeFunctionResult("symbol", calls[index].returnData)[0];
|
237
|
+
return {
|
238
|
+
type: type,
|
239
|
+
calls: [],
|
240
|
+
typeInfo: {
|
241
|
+
...typeInfo,
|
242
|
+
symbolUnderlyingToken,
|
243
|
+
},
|
244
|
+
};
|
245
|
+
}
|
246
|
+
if (type === tokenType.fraxlend || type === tokenType.sturdy_aggregator || type === tokenType.sturdy_silo) {
|
247
|
+
const symbolUnderlyingToken = ERC20Interface.decodeFunctionResult("symbol", calls[index].returnData)[0];
|
248
|
+
if (type === tokenType.sturdy_silo) {
|
249
|
+
const symbolCollateral = ERC20Interface.decodeFunctionResult("symbol", calls[index + 1].returnData)[0];
|
250
|
+
return {
|
251
|
+
type: type,
|
252
|
+
calls: [],
|
253
|
+
typeInfo: {
|
254
|
+
...typeInfo,
|
255
|
+
symbolUnderlyingToken,
|
256
|
+
symbolCollateral,
|
257
|
+
},
|
258
|
+
};
|
259
|
+
}
|
260
|
+
return {
|
261
|
+
type: type,
|
262
|
+
calls: [],
|
263
|
+
typeInfo: {
|
264
|
+
...typeInfo,
|
265
|
+
symbolUnderlyingToken,
|
266
|
+
},
|
267
|
+
};
|
268
|
+
}
|
269
|
+
if (type === tokenType.curve || type === tokenType.curve_2) {
|
270
|
+
const poolTokens = {};
|
271
|
+
let i = 0;
|
272
|
+
for (const token of typeInfo.poolTokensList) {
|
273
|
+
const symbol = ERC20Interface.decodeFunctionResult("symbol", calls[index + i].returnData)[0];
|
274
|
+
poolTokens[token] = symbol;
|
275
|
+
i++;
|
276
|
+
}
|
277
|
+
return {
|
278
|
+
type: type,
|
279
|
+
calls: [],
|
280
|
+
typeInfo: {
|
281
|
+
...typeInfo,
|
282
|
+
poolTokens: poolTokens,
|
283
|
+
},
|
284
|
+
};
|
285
|
+
}
|
286
|
+
if (type === tokenType.fluid) {
|
287
|
+
const decimalsUnderlyingToken = ERC20Interface.decodeFunctionResult("decimals", calls[index].returnData)[0];
|
288
|
+
const symbolUnderlyingToken = ERC20Interface.decodeFunctionResult("symbol", calls[index + 1].returnData)[0];
|
289
|
+
// BigNumber.from(10).pow(decimals).toString()
|
290
|
+
return {
|
291
|
+
type: type,
|
292
|
+
calls: [
|
293
|
+
{
|
294
|
+
allowFailure: true,
|
295
|
+
callData: fluidInterface.encodeFunctionData("convertToAssets", [
|
296
|
+
BigNumber.from(10).pow(decimalsUnderlyingToken).toString(),
|
297
|
+
]),
|
298
|
+
target: typeInfo.tokenAddress,
|
299
|
+
},
|
300
|
+
],
|
301
|
+
typeInfo: {
|
302
|
+
...typeInfo,
|
303
|
+
decimalsUnderlyingToken: decimalsUnderlyingToken,
|
304
|
+
symbolUnderlyingToken: symbolUnderlyingToken,
|
305
|
+
},
|
306
|
+
};
|
307
|
+
}
|
308
|
+
if (type === tokenType.enzyme) {
|
309
|
+
const symbolUnderlyingToken = ERC20Interface.decodeFunctionResult("symbol", calls[index].returnData)[0];
|
310
|
+
return {
|
311
|
+
type: type,
|
312
|
+
calls: [],
|
313
|
+
typeInfo: {
|
314
|
+
...typeInfo,
|
315
|
+
symbolUnderlyingToken,
|
316
|
+
},
|
317
|
+
};
|
318
|
+
}
|
319
|
+
if (type === tokenType.euler_borrow || type === tokenType.euler_lend) {
|
320
|
+
const underlyingToken = fluidInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
|
321
|
+
return {
|
322
|
+
type: type,
|
323
|
+
calls: [
|
324
|
+
{
|
325
|
+
allowFailure: true,
|
326
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
327
|
+
target: underlyingToken,
|
328
|
+
},
|
329
|
+
{
|
330
|
+
allowFailure: true,
|
331
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
332
|
+
target: underlyingToken,
|
333
|
+
},
|
334
|
+
],
|
335
|
+
typeInfo: {
|
336
|
+
...typeInfo,
|
337
|
+
underlyingToken: underlyingToken,
|
338
|
+
},
|
339
|
+
};
|
340
|
+
}
|
341
|
+
if (type === tokenType.beefy) {
|
342
|
+
const token0 = UniswapV2PoolInterface.decodeFunctionResult("token0", calls[index].returnData)[0];
|
343
|
+
const token1 = UniswapV2PoolInterface.decodeFunctionResult("token1", calls[index + 1].returnData)[0];
|
344
|
+
return {
|
345
|
+
type: type,
|
346
|
+
calls: [
|
347
|
+
{
|
348
|
+
allowFailure: true,
|
349
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
350
|
+
target: token0,
|
351
|
+
},
|
352
|
+
{
|
353
|
+
allowFailure: true,
|
354
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
355
|
+
target: token1,
|
356
|
+
},
|
357
|
+
{
|
358
|
+
allowFailure: true,
|
359
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
360
|
+
target: token0,
|
361
|
+
},
|
362
|
+
{
|
363
|
+
allowFailure: true,
|
364
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
365
|
+
target: token1,
|
366
|
+
},
|
367
|
+
{
|
368
|
+
allowFailure: true,
|
369
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.underlyingToken]),
|
370
|
+
target: token0,
|
371
|
+
},
|
372
|
+
{
|
373
|
+
allowFailure: true,
|
374
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.underlyingToken]),
|
375
|
+
target: token1,
|
376
|
+
},
|
377
|
+
],
|
378
|
+
typeInfo: {
|
379
|
+
...typeInfo,
|
380
|
+
token0,
|
381
|
+
token1,
|
382
|
+
},
|
383
|
+
};
|
384
|
+
}
|
385
|
+
return {
|
386
|
+
type: type,
|
387
|
+
calls: [],
|
388
|
+
typeInfo: {
|
389
|
+
...typeInfo,
|
390
|
+
},
|
391
|
+
};
|
392
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { processorMapping } from "./processor/processorMapping";
|
2
|
+
export function getTokenTypeRound3(index, type, typeInfo, calls) {
|
3
|
+
try {
|
4
|
+
const ProcessorClass = processorMapping[type];
|
5
|
+
const returnValueOfCalls = calls.map(call => call.returnData);
|
6
|
+
if (!ProcessorClass) {
|
7
|
+
throw new Error(`Processor not found for key: ${type}`);
|
8
|
+
}
|
9
|
+
const processorObject = new ProcessorClass();
|
10
|
+
return processorObject.computeRound3(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
|
+
}
|