@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,106 @@
|
|
1
|
+
// This enum's order is important, do not change it unless you know what you are doing
|
2
|
+
export var tokenType;
|
3
|
+
(function (tokenType) {
|
4
|
+
tokenType["aura"] = "aura";
|
5
|
+
tokenType["poolside"] = "poolside";
|
6
|
+
tokenType["balancerGauge"] = "balancerGauge";
|
7
|
+
tokenType["gearbox"] = "gearbox";
|
8
|
+
tokenType["euler_borrow"] = "euler_borrow";
|
9
|
+
tokenType["euler_lend"] = "euler_lend";
|
10
|
+
tokenType["filament"] = "filament";
|
11
|
+
tokenType["fluid"] = "fluid";
|
12
|
+
tokenType["compound"] = "compound";
|
13
|
+
tokenType["radiant_lend"] = "radiant_lend";
|
14
|
+
tokenType["radiant_borrow"] = "radiant_borrow";
|
15
|
+
tokenType["ionic"] = "ionic";
|
16
|
+
tokenType["layerbank"] = "layerbank";
|
17
|
+
tokenType["moonwell"] = "moonwell";
|
18
|
+
tokenType["yei_borrowing"] = "yei_borrowing";
|
19
|
+
tokenType["ironclad_borrowing"] = "ironclad_borrowing";
|
20
|
+
tokenType["zerolend_borrowing"] = "zerolend_borrowing";
|
21
|
+
tokenType["yei_lending"] = "yei_lending";
|
22
|
+
tokenType["ironclad_lending"] = "ironclad_lending";
|
23
|
+
tokenType["zerolend_lending"] = "zerolend_lending";
|
24
|
+
tokenType["aave_borrowing"] = "aave_borrowing";
|
25
|
+
tokenType["aave_lending"] = "aave_lending";
|
26
|
+
tokenType["sturdy_aggregator"] = "sturdy_aggregator";
|
27
|
+
tokenType["sturdy_silo"] = "sturdy_silo";
|
28
|
+
tokenType["fraxlend"] = "fraxlend";
|
29
|
+
tokenType["uniswapv2"] = "uniswapv2";
|
30
|
+
tokenType["fenix"] = "fenix";
|
31
|
+
tokenType["ra"] = "ra";
|
32
|
+
tokenType["syncswap"] = "syncswap";
|
33
|
+
tokenType["curve_2"] = "curve_2";
|
34
|
+
tokenType["silostaking"] = "silostaking";
|
35
|
+
tokenType["beefy"] = "beefy";
|
36
|
+
tokenType["balancerPool"] = "balancerPool";
|
37
|
+
tokenType["unknown"] = "unknown";
|
38
|
+
tokenType["metamorpho"] = "metamorpho";
|
39
|
+
tokenType["aerodrome"] = "aerodrome";
|
40
|
+
tokenType["velodrome"] = "velodrome";
|
41
|
+
tokenType["curve"] = "curve";
|
42
|
+
tokenType["splice"] = "splice";
|
43
|
+
tokenType["toros"] = "toros";
|
44
|
+
tokenType["akron"] = "akron";
|
45
|
+
tokenType["enzyme"] = "enzyme";
|
46
|
+
tokenType["dragonswap"] = "dragonswap";
|
47
|
+
tokenType["koi"] = "koi";
|
48
|
+
tokenType["baseswap"] = "baseswap";
|
49
|
+
tokenType["zkswap"] = "zkswap";
|
50
|
+
tokenType["pendle"] = "pendle";
|
51
|
+
tokenType["ironcladStaking"] = "ironcladStaking";
|
52
|
+
tokenType["rfx"] = "rfx";
|
53
|
+
tokenType["woofi"] = "woofi";
|
54
|
+
})(tokenType || (tokenType = {}));
|
55
|
+
export const tokenTypeToProtocol = {
|
56
|
+
[tokenType.aave_borrowing]: { protocol: "Aave" },
|
57
|
+
[tokenType.aave_lending]: { protocol: "Aave" },
|
58
|
+
[tokenType.aerodrome]: { protocol: "Aerodrome V2" },
|
59
|
+
[tokenType.akron]: { protocol: "Akron V2" },
|
60
|
+
[tokenType.aura]: { protocol: "Aura" },
|
61
|
+
[tokenType.balancerGauge]: { protocol: "Balancer Gauge" },
|
62
|
+
[tokenType.balancerPool]: { protocol: "Balancer Pool" },
|
63
|
+
[tokenType.baseswap]: { protocol: "Baseswap V2" },
|
64
|
+
[tokenType.beefy]: { protocol: "Moo Velodrome V2" },
|
65
|
+
[tokenType.compound]: { protocol: "Compound" },
|
66
|
+
[tokenType.curve]: { protocol: "Curve" },
|
67
|
+
[tokenType.curve_2]: { protocol: "Curve" },
|
68
|
+
[tokenType.dragonswap]: { protocol: "Dragonswap V2" },
|
69
|
+
[tokenType.enzyme]: { protocol: "Enzyme" },
|
70
|
+
[tokenType.euler_borrow]: { protocol: "Euler V2" },
|
71
|
+
[tokenType.euler_lend]: { protocol: "Euler V2" },
|
72
|
+
[tokenType.fenix]: { protocol: "Fenix V2" },
|
73
|
+
[tokenType.filament]: { protocol: "Filament" },
|
74
|
+
[tokenType.fluid]: { protocol: "Fluid" },
|
75
|
+
[tokenType.fraxlend]: { protocol: "Fraxlend" },
|
76
|
+
[tokenType.gearbox]: { protocol: "Gearbox" },
|
77
|
+
[tokenType.ionic]: { protocol: "Ionic" },
|
78
|
+
[tokenType.ironclad_borrowing]: { protocol: "Ironclad" },
|
79
|
+
[tokenType.ironclad_lending]: { protocol: "Ironclad" },
|
80
|
+
[tokenType.koi]: { protocol: "Koi" },
|
81
|
+
[tokenType.layerbank]: { protocol: "Layerbank" },
|
82
|
+
[tokenType.metamorpho]: { protocol: "Metamorpho" },
|
83
|
+
[tokenType.moonwell]: { protocol: "Moonwell" },
|
84
|
+
[tokenType.pendle]: { protocol: "Pendle" },
|
85
|
+
[tokenType.poolside]: { protocol: "Poolside" },
|
86
|
+
[tokenType.ra]: { protocol: "Ra" },
|
87
|
+
[tokenType.radiant_borrow]: { protocol: "Radiant" },
|
88
|
+
[tokenType.radiant_lend]: { protocol: "Radiant" },
|
89
|
+
[tokenType.silostaking]: { protocol: "Silo Staking", symbolUnderlyingToken: "SEI" },
|
90
|
+
[tokenType.splice]: { protocol: "Splice" },
|
91
|
+
[tokenType.sturdy_aggregator]: { protocol: "Sturdy" },
|
92
|
+
[tokenType.sturdy_silo]: { protocol: "Sturdy" },
|
93
|
+
[tokenType.syncswap]: { protocol: "SyncSwap" },
|
94
|
+
[tokenType.toros]: { protocol: "Toros" },
|
95
|
+
[tokenType.uniswapv2]: { protocol: "Uniswap V2" },
|
96
|
+
[tokenType.velodrome]: { protocol: "Velodrome V2" },
|
97
|
+
[tokenType.unknown]: { protocol: "Unknown" },
|
98
|
+
[tokenType.yei_borrowing]: { protocol: "Yei Finance" },
|
99
|
+
[tokenType.yei_lending]: { protocol: "Yei Finance" },
|
100
|
+
[tokenType.zerolend_borrowing]: { protocol: "ZeroLend" },
|
101
|
+
[tokenType.zerolend_lending]: { protocol: "ZeroLend" },
|
102
|
+
[tokenType.zkswap]: { protocol: "ZKSwap" },
|
103
|
+
[tokenType.ironcladStaking]: { protocol: "Ironclad" },
|
104
|
+
[tokenType.rfx]: { protocol: "RFX" },
|
105
|
+
[tokenType.woofi]: { protocol: "Woofi" },
|
106
|
+
};
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
2
|
+
import { GenericProcessor } from "./GenericProcessor";
|
3
|
+
export class AaveProcessor extends GenericProcessor {
|
4
|
+
rounds = {
|
5
|
+
round1: [{ key: "underlying", call: "underlying", target: "tokenAddress" }],
|
6
|
+
round2: [{ key: "symbolUnderlyingToken", call: "symbol", target: "underlying" }],
|
7
|
+
round3: [],
|
8
|
+
round4: [{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" }],
|
9
|
+
};
|
10
|
+
// // override computeRound1(): void {}
|
11
|
+
async processingRound5(_index, type, typeInfo, _calls, campaign, pricer) {
|
12
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
13
|
+
const priceUnderlying = (await pricer.get({ symbol: typeInfo.symbolUnderlyingToken })) ?? 0;
|
14
|
+
const tvl = priceUnderlying * totalSupply;
|
15
|
+
const priceTargetToken = priceUnderlying;
|
16
|
+
return {
|
17
|
+
...typeInfo,
|
18
|
+
whitelistedSupplyTargetToken,
|
19
|
+
tvl: tvl,
|
20
|
+
priceTargetToken,
|
21
|
+
cardName: generateCardName(type, typeInfo, campaign),
|
22
|
+
blacklistedSupply,
|
23
|
+
totalSupply,
|
24
|
+
};
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
2
|
+
import { BN2Number } from "@sdk";
|
3
|
+
import { tokenType } from "../helpers/tokenType";
|
4
|
+
import { GenericProcessor } from "./GenericProcessor";
|
5
|
+
export class AssetProcessor extends GenericProcessor {
|
6
|
+
rounds = {
|
7
|
+
round1: [
|
8
|
+
{ key: "underlying", call: "underlying", target: "tokenAddress" },
|
9
|
+
{ key: "exchangeRate", call: "exchangeRate", target: "tokenAddress" },
|
10
|
+
],
|
11
|
+
round2: [
|
12
|
+
{ key: "symbolUnderlyingToken", call: "symbol", target: "underlying", optional: true },
|
13
|
+
{ key: "decimalsUnderlyingToken", call: "decimals", target: "underlying", optional: true },
|
14
|
+
],
|
15
|
+
round3: [],
|
16
|
+
round4: [{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" }],
|
17
|
+
};
|
18
|
+
processingRound2(typeInfo) {
|
19
|
+
if (typeInfo.underlying === "0x0000000000000000000000000000000000000000") {
|
20
|
+
typeInfo.symbolUnderlyingToken = "ETH";
|
21
|
+
typeInfo.decimalsUnderlyingToken = "18";
|
22
|
+
this.rounds.round2 = [];
|
23
|
+
}
|
24
|
+
}
|
25
|
+
async processingRound5(index, type, typeInfo, calls, campaign, pricer) {
|
26
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
27
|
+
let exchangeRate = BN2Number(typeInfo.exchangeRate, 18);
|
28
|
+
if (type === tokenType.moonwell) {
|
29
|
+
exchangeRate =
|
30
|
+
exchangeRate /
|
31
|
+
10 ** (Number(typeInfo.decimalsUnderlyingToken) - campaign.campaignParameters.decimalsTargetToken);
|
32
|
+
}
|
33
|
+
const baseTokenPrice = (await pricer.get({ symbol: typeInfo.symbolUnderlyingToken })) ?? 0;
|
34
|
+
const tvl = baseTokenPrice * whitelistedSupplyTargetToken * exchangeRate;
|
35
|
+
const priceTargetToken = baseTokenPrice * exchangeRate;
|
36
|
+
return {
|
37
|
+
...typeInfo,
|
38
|
+
totalSupply,
|
39
|
+
tvl,
|
40
|
+
priceTargetToken,
|
41
|
+
exchangeRate,
|
42
|
+
whitelistedSupplyTargetToken,
|
43
|
+
blacklistedSupply,
|
44
|
+
cardName: generateCardName(type, typeInfo, campaign),
|
45
|
+
};
|
46
|
+
}
|
47
|
+
}
|
@@ -0,0 +1,103 @@
|
|
1
|
+
import { decodeCall } from "../../../../../utils/decodeCalls";
|
2
|
+
import { createCall } from "../../../../../utils/encodeCalls";
|
3
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
4
|
+
import { BN2Number } from "@sdk";
|
5
|
+
import { GenericProcessor, roundType } from "./GenericProcessor";
|
6
|
+
export class AuraProcessor extends GenericProcessor {
|
7
|
+
rounds = {
|
8
|
+
round1: [
|
9
|
+
{ key: "balancerPool", call: "underlying", target: "tokenAddress" },
|
10
|
+
{ key: "auraOperator", call: "operator", target: "tokenAddress" },
|
11
|
+
{ key: "pid", call: "pid", target: "tokenAddress" },
|
12
|
+
],
|
13
|
+
round2: [
|
14
|
+
{ key: "poolId", call: "getPoolId", target: "balancerPool" },
|
15
|
+
{ key: "vault", call: "getVault", target: "balancerPool" },
|
16
|
+
{ key: "totalSupplyBalancerPool", call: "totalSupply", target: "balancerPool" },
|
17
|
+
{ key: "gaugeContract", call: "poolInfo", target: "auraOperator", metaData: "pid" },
|
18
|
+
{ key: "auraStaker", call: "staker", target: "auraOperator" },
|
19
|
+
],
|
20
|
+
round3: [
|
21
|
+
{ key: "poolTokensRaw", call: "getPoolTokens", target: "vault", metaData: "poolId" },
|
22
|
+
{ key: "gaugeBalance", call: "balanceOf", target: "balancerPool", metaData: "gaugeContract" },
|
23
|
+
{ key: "auraBalance", call: "balanceOf", target: "gaugeContract", metaData: "auraStaker" },
|
24
|
+
{ key: "totalSupplyGauge", call: "totalSupply", target: "gaugeContract" },
|
25
|
+
],
|
26
|
+
round4: [{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" }],
|
27
|
+
};
|
28
|
+
// override computeRound1(): void {}
|
29
|
+
processingRound4(typeInfo) {
|
30
|
+
const tokens = typeInfo.poolTokensRaw[0];
|
31
|
+
const balances = typeInfo.poolTokensRaw[1];
|
32
|
+
let i = 0;
|
33
|
+
const poolTokens = [];
|
34
|
+
for (const token of tokens) {
|
35
|
+
if (token !== typeInfo.tokenAddress) {
|
36
|
+
poolTokens.push({
|
37
|
+
token: token,
|
38
|
+
balance: balances[i].toString(),
|
39
|
+
});
|
40
|
+
i++;
|
41
|
+
typeInfo.poolTokens = poolTokens;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
async processingRound5(index, type, typeInfo, calls, campaign, pricer) {
|
46
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
47
|
+
const totalSupplyBalancerPool = BN2Number(typeInfo.totalSupplyBalancerPool, 18);
|
48
|
+
const gaugeBalance = BN2Number(typeInfo.gaugeBalance, 18);
|
49
|
+
const auraBalance = BN2Number(typeInfo.auraBalance, 18);
|
50
|
+
const totalSupplyGauge = BN2Number(typeInfo.totalSupplyGauge, 18);
|
51
|
+
const poolTokensinfo = {};
|
52
|
+
let poolTvl = 0;
|
53
|
+
const symbols = [];
|
54
|
+
let indexUpdated = index + this.rounds.round4.length;
|
55
|
+
for (const poolToken of typeInfo.poolTokens) {
|
56
|
+
const symbol = decodeCall(calls, indexUpdated++, "symbol");
|
57
|
+
const decimals = decodeCall(calls, indexUpdated++, "decimals");
|
58
|
+
poolTokensinfo[poolToken.token] = {
|
59
|
+
symbol: symbol,
|
60
|
+
decimals: decimals,
|
61
|
+
amountInPool: BN2Number(poolToken.balance, decimals),
|
62
|
+
price: (await pricer.get({ symbol: symbol })) ?? 0,
|
63
|
+
};
|
64
|
+
poolTvl += poolTokensinfo[poolToken.token].price * poolTokensinfo[poolToken.token].amountInPool;
|
65
|
+
symbols.push(symbol);
|
66
|
+
}
|
67
|
+
const percentageOfSupplyInAura = (auraBalance / totalSupplyGauge) * (gaugeBalance / totalSupplyBalancerPool);
|
68
|
+
const tvl = poolTvl * percentageOfSupplyInAura;
|
69
|
+
const priceTargetToken = tvl / totalSupply;
|
70
|
+
return {
|
71
|
+
...typeInfo,
|
72
|
+
totalSupplyBalancerPool,
|
73
|
+
gaugeBalance,
|
74
|
+
auraBalance,
|
75
|
+
totalSupplyGauge,
|
76
|
+
totalSupply,
|
77
|
+
whitelistedSupplyTargetToken,
|
78
|
+
blacklistedSupply,
|
79
|
+
poolTokens: poolTokensinfo,
|
80
|
+
tvl: tvl,
|
81
|
+
priceTargetToken: priceTargetToken,
|
82
|
+
cardName: generateCardName(type, typeInfo, campaign, symbols),
|
83
|
+
};
|
84
|
+
}
|
85
|
+
computeRound4(index, type, typeInfo, calls, campaign) {
|
86
|
+
// This is to enforce type checking
|
87
|
+
const blacklistedLiquidityCalls = this.generateBlackListCall(type, typeInfo, campaign);
|
88
|
+
this.decodePreviousRound(roundType.three, calls, typeInfo, type, index);
|
89
|
+
this.processingRound4(typeInfo);
|
90
|
+
const poolCalls = this.encodeNextRound(roundType.four, type, typeInfo);
|
91
|
+
for (const poolToken of typeInfo.poolTokens) {
|
92
|
+
poolCalls.push(createCall(poolToken.token, "symbol"));
|
93
|
+
poolCalls.push(createCall(poolToken.token, "decimals"));
|
94
|
+
}
|
95
|
+
return {
|
96
|
+
type: type,
|
97
|
+
calls: blacklistedLiquidityCalls.concat(poolCalls),
|
98
|
+
typeInfo: {
|
99
|
+
...typeInfo,
|
100
|
+
},
|
101
|
+
};
|
102
|
+
}
|
103
|
+
}
|
package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerGaugeProcessor.js
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
import { decodeCall } from "../../../../../utils/decodeCalls";
|
2
|
+
import { createCall } from "../../../../../utils/encodeCalls";
|
3
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
4
|
+
import { BN2Number } from "@sdk";
|
5
|
+
import { GenericProcessor, roundType } from "./GenericProcessor";
|
6
|
+
export class BalancerGaugeProcessor extends GenericProcessor {
|
7
|
+
rounds = {
|
8
|
+
round1: [{ key: "gyroscopeToken", call: "lp_token", target: "tokenAddress" }],
|
9
|
+
round2: [
|
10
|
+
{ key: "balanceUnderlyingPoolTokens", call: "balanceOf", target: "gyroscopeToken", metaData: "tokenAddress" },
|
11
|
+
{ key: "totalSupplyUnderlyingPoolTokens", call: "totalSupply", target: "gyroscopeToken" },
|
12
|
+
{ key: "poolId", call: "getPoolId", target: "gyroscopeToken" },
|
13
|
+
{ key: "vault", call: "getVault", target: "gyroscopeToken" },
|
14
|
+
],
|
15
|
+
round3: [{ key: "poolTokensRaw", call: "getPoolTokens", target: "vault", metaData: "poolId" }],
|
16
|
+
round4: [{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" }],
|
17
|
+
};
|
18
|
+
// override computeRound1(): void {}
|
19
|
+
processingRound4(typeInfo) {
|
20
|
+
const tokens = typeInfo.poolTokensRaw[0];
|
21
|
+
const balances = typeInfo.poolTokensRaw[1];
|
22
|
+
let i = 0;
|
23
|
+
const poolTokens = [];
|
24
|
+
for (const token of tokens) {
|
25
|
+
poolTokens.push({
|
26
|
+
token: token,
|
27
|
+
balance: balances[i].toString(),
|
28
|
+
});
|
29
|
+
i++;
|
30
|
+
typeInfo.poolTokens = poolTokens;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
async processingRound5(index, type, typeInfo, calls, campaign, pricer) {
|
34
|
+
const poolTokensinfo = {};
|
35
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
36
|
+
let tvlUnderlyingPool = 0;
|
37
|
+
const symbols = [];
|
38
|
+
let indexUpdated = index + this.rounds.round4.length;
|
39
|
+
for (const poolToken of typeInfo.poolTokens) {
|
40
|
+
const symbol = decodeCall(calls, indexUpdated++, "symbol");
|
41
|
+
const decimals = decodeCall(calls, indexUpdated++, "decimals");
|
42
|
+
poolTokensinfo[poolToken.token] = {
|
43
|
+
symbol: symbol,
|
44
|
+
decimals: decimals,
|
45
|
+
amountInPool: BN2Number(poolToken.balance, decimals),
|
46
|
+
price: (await pricer.get({ symbol: symbol })) ?? 0,
|
47
|
+
};
|
48
|
+
tvlUnderlyingPool += poolTokensinfo[poolToken.token].price * poolTokensinfo[poolToken.token].amountInPool;
|
49
|
+
symbols.push(symbol);
|
50
|
+
}
|
51
|
+
const percentageOfSupplyUnderlyingPoolTokens = BN2Number(typeInfo.balanceUnderlyingPoolTokens, 18) / BN2Number(typeInfo.totalSupplyUnderlyingPoolTokens, 18);
|
52
|
+
const tvl = tvlUnderlyingPool * percentageOfSupplyUnderlyingPoolTokens;
|
53
|
+
const priceTargetToken = tvl / totalSupply;
|
54
|
+
return {
|
55
|
+
...typeInfo,
|
56
|
+
totalSupply: totalSupply,
|
57
|
+
poolTokens: poolTokensinfo,
|
58
|
+
tvl: tvl,
|
59
|
+
whitelistedSupplyTargetToken,
|
60
|
+
blacklistedSupply,
|
61
|
+
priceTargetToken: priceTargetToken,
|
62
|
+
cardName: generateCardName(type, typeInfo, campaign, symbols),
|
63
|
+
};
|
64
|
+
}
|
65
|
+
computeRound4(index, type, typeInfo, calls, campaign) {
|
66
|
+
// This is to enforce type checking
|
67
|
+
const blacklistedLiquidityCalls = this.generateBlackListCall(type, typeInfo, campaign);
|
68
|
+
this.decodePreviousRound(roundType.three, calls, typeInfo, type, index);
|
69
|
+
this.processingRound4(typeInfo);
|
70
|
+
const poolCalls = [createCall(typeInfo.tokenAddress, "totalSupply")];
|
71
|
+
for (const poolToken of typeInfo.poolTokens) {
|
72
|
+
poolCalls.push(createCall(poolToken.token, "symbol"));
|
73
|
+
poolCalls.push(createCall(poolToken.token, "decimals"));
|
74
|
+
}
|
75
|
+
return {
|
76
|
+
type: type,
|
77
|
+
calls: blacklistedLiquidityCalls.concat(poolCalls),
|
78
|
+
typeInfo: {
|
79
|
+
...typeInfo,
|
80
|
+
},
|
81
|
+
};
|
82
|
+
}
|
83
|
+
}
|
package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerPoolProcessor.js
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
import { decodeCall } from "../../../../../utils/decodeCalls";
|
2
|
+
import { createCall } from "../../../../../utils/encodeCalls";
|
3
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
4
|
+
import { BN2Number } from "@sdk";
|
5
|
+
import { BigNumber } from "ethers";
|
6
|
+
import { utils } from "ethers";
|
7
|
+
import { GenericProcessor, roundType } from "./GenericProcessor";
|
8
|
+
export class BalancerPoolProcessor extends GenericProcessor {
|
9
|
+
rounds = {
|
10
|
+
round1: [],
|
11
|
+
round2: [
|
12
|
+
{ key: "poolId", call: "getPoolId", target: "tokenAddress" },
|
13
|
+
{ key: "vault", call: "getVault", target: "tokenAddress" },
|
14
|
+
],
|
15
|
+
round3: [{ key: "poolTokensRaw", call: "getPoolTokens", target: "vault", metaData: "poolId" }],
|
16
|
+
round4: [
|
17
|
+
{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" },
|
18
|
+
{ key: "vaultBalance", call: "balanceOf", target: "tokenAddress", metaData: "vault" },
|
19
|
+
],
|
20
|
+
};
|
21
|
+
// override computeRound1(): void {}
|
22
|
+
async processingRound5(index, type, typeInfo, calls, campaign, pricer) {
|
23
|
+
let { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
24
|
+
const totalSupplyBN = BigNumber.from(typeInfo.totalSupply);
|
25
|
+
const vaultBalanceBN = BigNumber.from(typeInfo.vaultBalance);
|
26
|
+
const totalSupplyUpdated = BN2Number(totalSupplyBN.sub(vaultBalanceBN), campaign.campaignParameters.decimalsTargetToken);
|
27
|
+
const vaultBalance = BN2Number(vaultBalanceBN, campaign.campaignParameters.decimalsTargetToken);
|
28
|
+
const poolTokensinfo = {};
|
29
|
+
let tvl = 0;
|
30
|
+
const symbols = [];
|
31
|
+
let indexUpdated = index + this.rounds.round4.length;
|
32
|
+
const vaultIndex = campaign.campaignParameters.blacklist
|
33
|
+
?.map(b => utils.getAddress(b))
|
34
|
+
?.indexOf(utils.getAddress(typeInfo.vault)); // Check if the vault is blacklisted
|
35
|
+
if (vaultIndex !== -1) {
|
36
|
+
blacklistedSupply -= BN2Number(decodeCall(calls, index + vaultIndex, "balanceOf"), campaign.campaignParameters.decimalsTargetToken); // The vault balance was already removed from the total supply
|
37
|
+
}
|
38
|
+
for (const poolToken of typeInfo.poolTokens) {
|
39
|
+
const symbol = decodeCall(calls, indexUpdated++, "symbol");
|
40
|
+
const decimals = decodeCall(calls, indexUpdated++, "decimals");
|
41
|
+
poolTokensinfo[poolToken.token] = {
|
42
|
+
symbol: symbol,
|
43
|
+
decimals: decimals,
|
44
|
+
amountInPool: BN2Number(poolToken.balance, decimals),
|
45
|
+
price: (await pricer.get({ symbol: symbol })) ?? 0,
|
46
|
+
};
|
47
|
+
tvl += poolTokensinfo[poolToken.token].price * poolTokensinfo[poolToken.token].amountInPool;
|
48
|
+
symbols.push(symbol);
|
49
|
+
}
|
50
|
+
const priceTargetToken = tvl / totalSupplyUpdated;
|
51
|
+
return {
|
52
|
+
tokenAddress: typeInfo.tokenAddress,
|
53
|
+
poolId: typeInfo.poolId,
|
54
|
+
vault: typeInfo.vault,
|
55
|
+
poolTokens: poolTokensinfo,
|
56
|
+
totalSupply: totalSupplyUpdated,
|
57
|
+
whitelistedSupplyTargetToken,
|
58
|
+
blacklistedSupply,
|
59
|
+
tvl: tvl,
|
60
|
+
priceTargetToken: priceTargetToken,
|
61
|
+
cardName: generateCardName(type, typeInfo, campaign, symbols),
|
62
|
+
vaultBalance: vaultBalance,
|
63
|
+
};
|
64
|
+
}
|
65
|
+
processingRound4(typeInfo) {
|
66
|
+
const tokens = typeInfo.poolTokensRaw[0];
|
67
|
+
const balances = typeInfo.poolTokensRaw[1];
|
68
|
+
let i = 0;
|
69
|
+
const poolTokens = [];
|
70
|
+
for (const token of tokens) {
|
71
|
+
if (token !== typeInfo.tokenAddress) {
|
72
|
+
poolTokens.push({
|
73
|
+
token: token,
|
74
|
+
balance: balances[i].toString(),
|
75
|
+
});
|
76
|
+
}
|
77
|
+
i++;
|
78
|
+
typeInfo.poolTokens = poolTokens;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
computeRound4(index, type, typeInfo, calls, campaign) {
|
82
|
+
// This is to enforce type checking
|
83
|
+
const blacklistedLiquidityCalls = this.generateBlackListCall(type, typeInfo, campaign);
|
84
|
+
this.decodePreviousRound(roundType.three, calls, typeInfo, type, index);
|
85
|
+
this.processingRound4(typeInfo);
|
86
|
+
const poolCalls = this.encodeNextRound(roundType.four, type, typeInfo);
|
87
|
+
for (const poolToken of typeInfo.poolTokens) {
|
88
|
+
poolCalls.push(createCall(poolToken.token, "symbol"));
|
89
|
+
poolCalls.push(createCall(poolToken.token, "decimals"));
|
90
|
+
}
|
91
|
+
return {
|
92
|
+
type: type,
|
93
|
+
calls: blacklistedLiquidityCalls.concat(poolCalls),
|
94
|
+
typeInfo: {
|
95
|
+
...typeInfo,
|
96
|
+
},
|
97
|
+
};
|
98
|
+
}
|
99
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
2
|
+
import { BN2Number } from "@sdk";
|
3
|
+
import { GenericProcessor } from "./GenericProcessor";
|
4
|
+
export class BeefyProcessor extends GenericProcessor {
|
5
|
+
rounds = {
|
6
|
+
round1: [
|
7
|
+
{ key: "pricePerShare", call: "getPricePerFullShare", target: "tokenAddress" },
|
8
|
+
{ key: "underlying", call: "want", target: "tokenAddress" },
|
9
|
+
],
|
10
|
+
round2: [
|
11
|
+
{ key: "token0", call: "token0", target: "underlying" },
|
12
|
+
{ key: "token1", call: "token1", target: "underlying" },
|
13
|
+
],
|
14
|
+
round3: [
|
15
|
+
{ key: "symbolToken0", call: "symbol", target: "token0" },
|
16
|
+
{ key: "symbolToken1", call: "symbol", target: "token1" },
|
17
|
+
{ key: "decimalsToken0", call: "decimals", target: "token0" },
|
18
|
+
{ key: "decimalsToken1", call: "decimals", target: "token1" },
|
19
|
+
{ key: "balanceToken0", call: "balanceOf", target: "token0", metaData: "underlying" },
|
20
|
+
{ key: "balanceToken1", call: "balanceOf", target: "token1", metaData: "underlying" },
|
21
|
+
],
|
22
|
+
round4: [
|
23
|
+
{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" },
|
24
|
+
{ key: "totalSupplyUnderlying", call: "totalSupply", target: "underlying" },
|
25
|
+
],
|
26
|
+
};
|
27
|
+
// override computeRound1(): void {}
|
28
|
+
async processingRound5(_index, type, typeInfo, _calls, campaign, pricer) {
|
29
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
30
|
+
const priceToken0 = (await pricer.get({ symbol: typeInfo.symbolToken0 })) ?? 0;
|
31
|
+
const priceToken1 = (await pricer.get({ symbol: typeInfo.symbolToken1 })) ?? 0;
|
32
|
+
let tvl = 0;
|
33
|
+
if (priceToken0 !== 0 && priceToken1 !== 0) {
|
34
|
+
tvl =
|
35
|
+
priceToken0 * BN2Number(typeInfo.balanceToken0, Number(typeInfo.decimalsToken0)) +
|
36
|
+
priceToken1 * BN2Number(typeInfo.balanceToken1, Number(typeInfo.decimalsToken1));
|
37
|
+
}
|
38
|
+
const pricePerShare = BN2Number(typeInfo.pricePerShare);
|
39
|
+
const priceTargetToken = (pricePerShare * tvl) / BN2Number(typeInfo.totalSupplyUnderlying);
|
40
|
+
return {
|
41
|
+
...typeInfo,
|
42
|
+
priceTargetToken,
|
43
|
+
totalSupply,
|
44
|
+
whitelistedSupplyTargetToken,
|
45
|
+
blacklistedSupply,
|
46
|
+
cardName: generateCardName(type, typeInfo, campaign),
|
47
|
+
pricePerShare,
|
48
|
+
tvl,
|
49
|
+
};
|
50
|
+
}
|
51
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
2
|
+
import { BN2Number } from "@sdk";
|
3
|
+
import { GenericProcessor } from "./GenericProcessor";
|
4
|
+
export class CompoundProcessor extends GenericProcessor {
|
5
|
+
rounds = {
|
6
|
+
round1: [{ key: "baseToken", call: "baseToken", target: "tokenAddress" }],
|
7
|
+
round2: [
|
8
|
+
{ key: "totalBorrow", call: "totalAssets", target: "tokenAddress" },
|
9
|
+
{ key: "balanceBaseToken", call: "balanceOf", target: "baseToken", metaData: "tokenAddress" },
|
10
|
+
{ key: "symbolBaseToken", call: "symbol", target: "baseToken" },
|
11
|
+
{ key: "decimalsBaseToken", call: "decimals", target: "baseToken" },
|
12
|
+
],
|
13
|
+
round3: [],
|
14
|
+
round4: [{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" }],
|
15
|
+
};
|
16
|
+
// override computeRound1(): void {}
|
17
|
+
async processingRound5(_index, type, typeInfo, _calls, campaign, pricer) {
|
18
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
19
|
+
const totalBorrow = BN2Number(typeInfo.totalBorrow, Number(typeInfo.decimalsBaseToken));
|
20
|
+
const balanceBaseToken = BN2Number(typeInfo.balanceBaseToken, Number(typeInfo.decimalsBaseToken));
|
21
|
+
const baseTokenPrice = (await pricer.get({ symbol: typeInfo.symbolBaseToken })) ?? 0;
|
22
|
+
const tvl = baseTokenPrice * (totalBorrow + balanceBaseToken);
|
23
|
+
const priceTargetToken = tvl / totalSupply;
|
24
|
+
return {
|
25
|
+
...typeInfo,
|
26
|
+
totalSupply,
|
27
|
+
tvl: tvl,
|
28
|
+
whitelistedSupplyTargetToken,
|
29
|
+
totalBorrow,
|
30
|
+
blacklistedSupply,
|
31
|
+
balanceBaseToken,
|
32
|
+
priceTargetToken,
|
33
|
+
cardName: generateCardName(type, typeInfo, campaign),
|
34
|
+
};
|
35
|
+
}
|
36
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
2
|
+
import { BN2Number } from "@sdk";
|
3
|
+
import { GenericProcessor } from "./GenericProcessor";
|
4
|
+
export class EnzymeProcessor extends GenericProcessor {
|
5
|
+
rounds = {
|
6
|
+
round1: [
|
7
|
+
{ key: "exchangeRateRaw", call: "calcNetShareValue", target: "fundValueCalculator", metaData: "tokenAddress" },
|
8
|
+
],
|
9
|
+
round2: [{ key: "symbolUnderlyingToken", call: "symbol", target: "underlying" }],
|
10
|
+
round3: [],
|
11
|
+
round4: [{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" }],
|
12
|
+
};
|
13
|
+
async processingRound5(_index, type, typeInfo, _calls, campaign, pricer) {
|
14
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
15
|
+
const priceUnderlying = (await pricer.get({ symbol: typeInfo.symbolUnderlyingToken })) ?? 0;
|
16
|
+
const exchangeRate = BN2Number(typeInfo.exchangeRate, 18);
|
17
|
+
const priceTargetToken = priceUnderlying * exchangeRate;
|
18
|
+
const tvl = priceTargetToken * totalSupply;
|
19
|
+
return {
|
20
|
+
...typeInfo,
|
21
|
+
tvl,
|
22
|
+
whitelistedSupplyTargetToken,
|
23
|
+
blacklistedSupply,
|
24
|
+
priceTargetToken,
|
25
|
+
totalSupply,
|
26
|
+
exchangeRate,
|
27
|
+
cardName: generateCardName(type, typeInfo, campaign),
|
28
|
+
};
|
29
|
+
}
|
30
|
+
processingRound2(typeInfo) {
|
31
|
+
typeInfo.underlying = typeInfo.exchangeRateRaw[0];
|
32
|
+
typeInfo.exchangeRate = typeInfo.exchangeRateRaw[1];
|
33
|
+
}
|
34
|
+
computeRound3(index, type, typeInfo, calls) {
|
35
|
+
// This is to enforce type checking
|
36
|
+
try {
|
37
|
+
return super.computeRound3(index, type, typeInfo, calls);
|
38
|
+
}
|
39
|
+
catch (e) {
|
40
|
+
// usually if this fails its because of native ETH
|
41
|
+
return {
|
42
|
+
type: type,
|
43
|
+
calls: [],
|
44
|
+
typeInfo: {
|
45
|
+
...typeInfo,
|
46
|
+
symbolUnderlyingToken: "ETH",
|
47
|
+
},
|
48
|
+
};
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
import { generateCardName } from "../../../../../utils/generateCardName";
|
2
|
+
import { BN2Number } from "@sdk";
|
3
|
+
import { fetchEulerVaultName } from "../helpers/eulerVaultNames";
|
4
|
+
import { GenericProcessor } from "./GenericProcessor";
|
5
|
+
export class EulerBorrowProcessor extends GenericProcessor {
|
6
|
+
rounds = {
|
7
|
+
round1: [{ key: "vault", call: "eVault", target: "tokenAddress" }],
|
8
|
+
round2: [{ key: "underlying", call: "underlying", target: "tokenAddress" }],
|
9
|
+
round3: [
|
10
|
+
{ key: "decimalsUnderlyingToken", call: "decimals", target: "underlying" },
|
11
|
+
{ key: "symbolUnderlyingToken", call: "symbol", target: "underlying" },
|
12
|
+
],
|
13
|
+
round4: [
|
14
|
+
{ key: "totalSupply", call: "totalSupply", target: "tokenAddress" },
|
15
|
+
{ key: "totalAssets", call: "totalAssets", target: "vault" },
|
16
|
+
],
|
17
|
+
};
|
18
|
+
// override computeRound1(): void {}
|
19
|
+
async processingRound5(_index, type, typeInfo, _calls, campaign, pricer) {
|
20
|
+
const { whitelistedSupplyTargetToken, totalSupply, blacklistedSupply } = this.handleWhiteListBlacklistRound5(typeInfo, campaign);
|
21
|
+
const priceUnderlying = (await pricer.get({ symbol: typeInfo.symbolUnderlyingToken })) ?? 1;
|
22
|
+
let totalAssetsOrBorrows = 0;
|
23
|
+
let cardName = "";
|
24
|
+
const decimalsUnderlyingToken = Number(typeInfo.decimalsUnderlyingToken);
|
25
|
+
totalAssetsOrBorrows = BN2Number(
|
26
|
+
// eulerInterface.decodeFunctionResult("totalBorrows", calls[index++])[0],
|
27
|
+
typeInfo.totalAssets, decimalsUnderlyingToken);
|
28
|
+
cardName = generateCardName(type, typeInfo, campaign);
|
29
|
+
const vaultName = await fetchEulerVaultName(typeInfo.vault, campaign.chainId);
|
30
|
+
if (!!vaultName) {
|
31
|
+
cardName = `Borrow from ${vaultName} vault`;
|
32
|
+
}
|
33
|
+
const tvl = priceUnderlying * totalAssetsOrBorrows;
|
34
|
+
const priceTargetToken = tvl / totalSupply;
|
35
|
+
return {
|
36
|
+
...typeInfo,
|
37
|
+
totalSupply,
|
38
|
+
blacklistedSupply,
|
39
|
+
whitelistedSupplyTargetToken,
|
40
|
+
tvl,
|
41
|
+
priceTargetToken,
|
42
|
+
cardName: cardName,
|
43
|
+
totalAssets: typeInfo.totalAssets,
|
44
|
+
};
|
45
|
+
}
|
46
|
+
}
|