@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,645 @@
|
|
1
|
+
import { Interface } from "@ethersproject/abi";
|
2
|
+
import { BN2Number, ERC20Interface, UniswapV2PoolInterface } from "@sdk";
|
3
|
+
import { tokenType } from "./helpers/tokenType";
|
4
|
+
import { OneInchStakingInterface, aaveInterface, auraInterface, balancerGaugeInterface, beefyInterface, compoundInterface, curveInterface, enzymeInterface, eulerInterface, fluidInterface, fraxlendInterface, ionicInterface, layerBankInterface, metamorphoInterface, moonwellInterface, radiantInterface, sturdyInterface, } from "./subtypesRound1";
|
5
|
+
const balancerPoolABI = [
|
6
|
+
{
|
7
|
+
inputs: [],
|
8
|
+
name: "getPoolId",
|
9
|
+
outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
|
10
|
+
stateMutability: "view",
|
11
|
+
type: "function",
|
12
|
+
},
|
13
|
+
{
|
14
|
+
inputs: [],
|
15
|
+
name: "getVault",
|
16
|
+
outputs: [
|
17
|
+
{
|
18
|
+
name: "",
|
19
|
+
type: "address",
|
20
|
+
},
|
21
|
+
],
|
22
|
+
payable: false,
|
23
|
+
stateMutability: "view",
|
24
|
+
type: "function",
|
25
|
+
},
|
26
|
+
];
|
27
|
+
const gearboxVaultABI = [
|
28
|
+
{
|
29
|
+
inputs: [],
|
30
|
+
name: "totalAssets",
|
31
|
+
outputs: [
|
32
|
+
{
|
33
|
+
name: "",
|
34
|
+
type: "uint256",
|
35
|
+
},
|
36
|
+
],
|
37
|
+
payable: false,
|
38
|
+
stateMutability: "view",
|
39
|
+
type: "function",
|
40
|
+
},
|
41
|
+
{
|
42
|
+
inputs: [],
|
43
|
+
name: "underlyingToken",
|
44
|
+
outputs: [
|
45
|
+
{
|
46
|
+
name: "",
|
47
|
+
type: "address",
|
48
|
+
},
|
49
|
+
],
|
50
|
+
payable: false,
|
51
|
+
stateMutability: "view",
|
52
|
+
type: "function",
|
53
|
+
},
|
54
|
+
];
|
55
|
+
// lptoken address, token address, gauge address, crvRewards address, stash address, shutdown bool
|
56
|
+
const auraOperatorABI = [
|
57
|
+
{
|
58
|
+
inputs: [
|
59
|
+
{
|
60
|
+
name: "input",
|
61
|
+
type: "uint256",
|
62
|
+
},
|
63
|
+
],
|
64
|
+
name: "poolInfo",
|
65
|
+
outputs: [
|
66
|
+
{
|
67
|
+
name: "lptoken",
|
68
|
+
type: "address",
|
69
|
+
},
|
70
|
+
{
|
71
|
+
name: "token",
|
72
|
+
type: "address",
|
73
|
+
},
|
74
|
+
{
|
75
|
+
name: "gauge",
|
76
|
+
type: "address",
|
77
|
+
},
|
78
|
+
{
|
79
|
+
name: "crvRewards",
|
80
|
+
type: "address",
|
81
|
+
},
|
82
|
+
{
|
83
|
+
name: "stash",
|
84
|
+
type: "address",
|
85
|
+
},
|
86
|
+
{
|
87
|
+
name: "shutdown",
|
88
|
+
type: "bool",
|
89
|
+
},
|
90
|
+
],
|
91
|
+
stateMutability: "view",
|
92
|
+
type: "function",
|
93
|
+
},
|
94
|
+
{
|
95
|
+
inputs: [],
|
96
|
+
name: "staker",
|
97
|
+
outputs: [
|
98
|
+
{
|
99
|
+
name: "",
|
100
|
+
type: "address",
|
101
|
+
},
|
102
|
+
],
|
103
|
+
payable: false,
|
104
|
+
stateMutability: "view",
|
105
|
+
type: "function",
|
106
|
+
},
|
107
|
+
];
|
108
|
+
export const balancerPoolInterface = new Interface(balancerPoolABI);
|
109
|
+
export const gearboxVaultInterface = new Interface(gearboxVaultABI);
|
110
|
+
export const auraOperatorInterface = new Interface(auraOperatorABI);
|
111
|
+
export function getTokenTypeRound2(index, type, typeInfo, calls) {
|
112
|
+
if (type === tokenType.uniswapv2 ||
|
113
|
+
type === tokenType.poolside ||
|
114
|
+
type === tokenType.aerodrome ||
|
115
|
+
type === tokenType.velodrome ||
|
116
|
+
type === tokenType.dragonswap ||
|
117
|
+
type === tokenType.akron) {
|
118
|
+
const token0 = UniswapV2PoolInterface.decodeFunctionResult("token0", calls[index].returnData)[0];
|
119
|
+
const token1 = UniswapV2PoolInterface.decodeFunctionResult("token1", calls[index + 1].returnData)[0];
|
120
|
+
return {
|
121
|
+
type: type,
|
122
|
+
calls: [
|
123
|
+
{
|
124
|
+
allowFailure: true,
|
125
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
126
|
+
target: token0,
|
127
|
+
},
|
128
|
+
{
|
129
|
+
allowFailure: true,
|
130
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
131
|
+
target: token1,
|
132
|
+
},
|
133
|
+
{
|
134
|
+
allowFailure: true,
|
135
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
136
|
+
target: token0,
|
137
|
+
},
|
138
|
+
{
|
139
|
+
allowFailure: true,
|
140
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
141
|
+
target: token1,
|
142
|
+
},
|
143
|
+
{
|
144
|
+
allowFailure: true,
|
145
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
|
146
|
+
target: token0,
|
147
|
+
},
|
148
|
+
{
|
149
|
+
allowFailure: true,
|
150
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
|
151
|
+
target: token1,
|
152
|
+
},
|
153
|
+
],
|
154
|
+
typeInfo: {
|
155
|
+
...typeInfo,
|
156
|
+
token0,
|
157
|
+
token1,
|
158
|
+
},
|
159
|
+
};
|
160
|
+
}
|
161
|
+
if (type === tokenType.balancerGauge) {
|
162
|
+
// Call the get Price function on the gyroscope pool address
|
163
|
+
// Get the balance of the balancer contract of the gyroscope pool token
|
164
|
+
const lp_token = balancerGaugeInterface.decodeFunctionResult("lp_token", calls[index].returnData)[0];
|
165
|
+
return {
|
166
|
+
type: tokenType.balancerGauge,
|
167
|
+
calls: [
|
168
|
+
{
|
169
|
+
allowFailure: true,
|
170
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
|
171
|
+
target: lp_token,
|
172
|
+
},
|
173
|
+
{
|
174
|
+
allowFailure: true,
|
175
|
+
callData: ERC20Interface.encodeFunctionData("totalSupply"),
|
176
|
+
target: lp_token,
|
177
|
+
},
|
178
|
+
{
|
179
|
+
allowFailure: true,
|
180
|
+
callData: balancerPoolInterface.encodeFunctionData("getPoolId"),
|
181
|
+
target: lp_token,
|
182
|
+
},
|
183
|
+
{
|
184
|
+
allowFailure: true,
|
185
|
+
callData: balancerPoolInterface.encodeFunctionData("getVault"),
|
186
|
+
target: lp_token,
|
187
|
+
},
|
188
|
+
],
|
189
|
+
typeInfo: {
|
190
|
+
...typeInfo,
|
191
|
+
gyroscopeToken: lp_token,
|
192
|
+
},
|
193
|
+
};
|
194
|
+
}
|
195
|
+
// symbol is ECLP-USDC-USDT
|
196
|
+
if (type === tokenType.balancerPool) {
|
197
|
+
// Call the get Price function on the gyroscope pool address
|
198
|
+
return {
|
199
|
+
type: tokenType.balancerPool,
|
200
|
+
calls: [
|
201
|
+
{
|
202
|
+
allowFailure: true,
|
203
|
+
callData: balancerPoolInterface.encodeFunctionData("getPoolId"),
|
204
|
+
target: typeInfo.tokenAddress,
|
205
|
+
},
|
206
|
+
{
|
207
|
+
allowFailure: true,
|
208
|
+
callData: balancerPoolInterface.encodeFunctionData("getVault"),
|
209
|
+
target: typeInfo.tokenAddress,
|
210
|
+
},
|
211
|
+
],
|
212
|
+
typeInfo: {
|
213
|
+
...typeInfo,
|
214
|
+
},
|
215
|
+
};
|
216
|
+
}
|
217
|
+
if (type === tokenType.aura) {
|
218
|
+
const balancerPool = auraInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
|
219
|
+
const auraOperator = auraInterface.decodeFunctionResult("operator", calls[index + 1].returnData)[0];
|
220
|
+
const pid = auraInterface.decodeFunctionResult("pid", calls[index + 2].returnData)[0].toNumber();
|
221
|
+
return {
|
222
|
+
type: type,
|
223
|
+
calls: [
|
224
|
+
{
|
225
|
+
allowFailure: true,
|
226
|
+
callData: balancerPoolInterface.encodeFunctionData("getPoolId"),
|
227
|
+
target: balancerPool,
|
228
|
+
},
|
229
|
+
{
|
230
|
+
allowFailure: true,
|
231
|
+
callData: balancerPoolInterface.encodeFunctionData("getVault"),
|
232
|
+
target: balancerPool,
|
233
|
+
},
|
234
|
+
{
|
235
|
+
allowFailure: true,
|
236
|
+
callData: ERC20Interface.encodeFunctionData("totalSupply"),
|
237
|
+
target: balancerPool,
|
238
|
+
},
|
239
|
+
{
|
240
|
+
allowFailure: true,
|
241
|
+
callData: auraOperatorInterface.encodeFunctionData("poolInfo", [pid]),
|
242
|
+
target: auraOperator,
|
243
|
+
},
|
244
|
+
{
|
245
|
+
allowFailure: true,
|
246
|
+
callData: auraOperatorInterface.encodeFunctionData("staker"),
|
247
|
+
target: auraOperator,
|
248
|
+
},
|
249
|
+
],
|
250
|
+
typeInfo: {
|
251
|
+
...typeInfo,
|
252
|
+
balancerPool: balancerPool,
|
253
|
+
auraOperator: auraOperator,
|
254
|
+
auraPoolId: pid,
|
255
|
+
},
|
256
|
+
};
|
257
|
+
}
|
258
|
+
if (type === tokenType.gearbox) {
|
259
|
+
// Get the underlying gearbox token to fetch the final underlying token
|
260
|
+
const stakingToken = OneInchStakingInterface.decodeFunctionResult("stakingToken", calls[index].returnData)[0];
|
261
|
+
return {
|
262
|
+
type: tokenType.gearbox,
|
263
|
+
calls: [
|
264
|
+
{
|
265
|
+
allowFailure: true,
|
266
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
|
267
|
+
target: stakingToken,
|
268
|
+
},
|
269
|
+
{
|
270
|
+
allowFailure: true,
|
271
|
+
callData: ERC20Interface.encodeFunctionData("totalSupply"),
|
272
|
+
target: stakingToken,
|
273
|
+
},
|
274
|
+
{
|
275
|
+
allowFailure: true,
|
276
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
277
|
+
target: stakingToken,
|
278
|
+
},
|
279
|
+
{
|
280
|
+
allowFailure: true,
|
281
|
+
callData: gearboxVaultInterface.encodeFunctionData("underlyingToken"),
|
282
|
+
target: stakingToken,
|
283
|
+
},
|
284
|
+
{
|
285
|
+
allowFailure: true,
|
286
|
+
callData: gearboxVaultInterface.encodeFunctionData("totalAssets"),
|
287
|
+
target: stakingToken,
|
288
|
+
},
|
289
|
+
],
|
290
|
+
typeInfo: {
|
291
|
+
...typeInfo,
|
292
|
+
stakingToken: stakingToken,
|
293
|
+
},
|
294
|
+
};
|
295
|
+
}
|
296
|
+
if (type === tokenType.compound) {
|
297
|
+
// Get the underlying gearbox token to fetch the final underlying token
|
298
|
+
const baseToken = compoundInterface.decodeFunctionResult("baseToken", calls[index].returnData)[0];
|
299
|
+
return {
|
300
|
+
type: tokenType.compound,
|
301
|
+
calls: [
|
302
|
+
{
|
303
|
+
allowFailure: true,
|
304
|
+
callData: compoundInterface.encodeFunctionData("totalBorrow"),
|
305
|
+
target: typeInfo.tokenAddress,
|
306
|
+
},
|
307
|
+
{
|
308
|
+
allowFailure: true,
|
309
|
+
callData: ERC20Interface.encodeFunctionData("balanceOf", [typeInfo.tokenAddress]),
|
310
|
+
target: baseToken,
|
311
|
+
},
|
312
|
+
{
|
313
|
+
allowFailure: true,
|
314
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
315
|
+
target: baseToken,
|
316
|
+
},
|
317
|
+
{
|
318
|
+
allowFailure: true,
|
319
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
320
|
+
target: baseToken,
|
321
|
+
},
|
322
|
+
],
|
323
|
+
typeInfo: {
|
324
|
+
...typeInfo,
|
325
|
+
baseToken: baseToken,
|
326
|
+
},
|
327
|
+
};
|
328
|
+
}
|
329
|
+
if (type === tokenType.radiant_lend) {
|
330
|
+
const underlyingToken = radiantInterface.decodeFunctionResult("UNDERLYING_ASSET_ADDRESS", calls[index].returnData)[0];
|
331
|
+
const priceBN = radiantInterface.decodeFunctionResult("getAssetPrice", calls[index + 1].returnData)[0];
|
332
|
+
return {
|
333
|
+
type: tokenType.radiant_lend,
|
334
|
+
calls: [
|
335
|
+
{
|
336
|
+
allowFailure: true,
|
337
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
338
|
+
target: underlyingToken,
|
339
|
+
},
|
340
|
+
],
|
341
|
+
typeInfo: {
|
342
|
+
...typeInfo,
|
343
|
+
underlyingToken: underlyingToken,
|
344
|
+
priceTargetToken: BN2Number(priceBN, 8),
|
345
|
+
},
|
346
|
+
};
|
347
|
+
}
|
348
|
+
if (type === tokenType.radiant_borrow) {
|
349
|
+
const underlyingToken = radiantInterface.decodeFunctionResult("UNDERLYING_ASSET_ADDRESS", calls[index].returnData)[0];
|
350
|
+
const priceBN = radiantInterface.decodeFunctionResult("getAssetPrice", calls[index + 1].returnData)[0];
|
351
|
+
return {
|
352
|
+
type: tokenType.radiant_borrow,
|
353
|
+
calls: [
|
354
|
+
{
|
355
|
+
allowFailure: true,
|
356
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
357
|
+
target: underlyingToken,
|
358
|
+
},
|
359
|
+
],
|
360
|
+
typeInfo: {
|
361
|
+
...typeInfo,
|
362
|
+
underlyingToken: underlyingToken,
|
363
|
+
priceTargetToken: BN2Number(priceBN, 8),
|
364
|
+
},
|
365
|
+
};
|
366
|
+
}
|
367
|
+
// https://explorer.mode.network/address/0x71ef7EDa2Be775E5A7aa8afD02C45F059833e9d2
|
368
|
+
if (type === tokenType.ionic) {
|
369
|
+
const underlyingToken = ionicInterface.decodeFunctionResult("underlying", calls[index].returnData)[0];
|
370
|
+
const exchangeRate = ionicInterface.decodeFunctionResult("exchangeRateCurrent", calls[index + 1].returnData)[0];
|
371
|
+
return {
|
372
|
+
type: tokenType.ionic,
|
373
|
+
calls: [
|
374
|
+
{
|
375
|
+
allowFailure: true,
|
376
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
377
|
+
target: underlyingToken,
|
378
|
+
},
|
379
|
+
],
|
380
|
+
typeInfo: {
|
381
|
+
...typeInfo,
|
382
|
+
underlyingToken: underlyingToken,
|
383
|
+
exchangeRate: BN2Number(exchangeRate, 18),
|
384
|
+
},
|
385
|
+
};
|
386
|
+
}
|
387
|
+
if (type === tokenType.layerbank) {
|
388
|
+
const underlyingToken = layerBankInterface.decodeFunctionResult("underlying", calls[index].returnData)[0];
|
389
|
+
const exchangeRate = layerBankInterface.decodeFunctionResult("exchangeRate", calls[index + 1].returnData)[0];
|
390
|
+
return {
|
391
|
+
type: type,
|
392
|
+
calls: [
|
393
|
+
{
|
394
|
+
allowFailure: true,
|
395
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
396
|
+
target: underlyingToken,
|
397
|
+
},
|
398
|
+
],
|
399
|
+
typeInfo: {
|
400
|
+
...typeInfo,
|
401
|
+
underlyingToken: underlyingToken,
|
402
|
+
exchangeRate: BN2Number(exchangeRate, 18),
|
403
|
+
},
|
404
|
+
};
|
405
|
+
}
|
406
|
+
if (type === tokenType.metamorpho) {
|
407
|
+
const underlyingToken = metamorphoInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
|
408
|
+
return {
|
409
|
+
type: tokenType.metamorpho,
|
410
|
+
calls: [
|
411
|
+
{
|
412
|
+
allowFailure: true,
|
413
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
414
|
+
target: underlyingToken,
|
415
|
+
},
|
416
|
+
],
|
417
|
+
typeInfo: {
|
418
|
+
...typeInfo,
|
419
|
+
underlyingToken,
|
420
|
+
},
|
421
|
+
};
|
422
|
+
}
|
423
|
+
if (type === tokenType.moonwell) {
|
424
|
+
const underlyingToken = moonwellInterface.decodeFunctionResult("underlying", calls[index].returnData)[0];
|
425
|
+
const exchangeRate = moonwellInterface.decodeFunctionResult("exchangeRateStored", calls[index + 1].returnData)[0];
|
426
|
+
return {
|
427
|
+
type: tokenType.moonwell,
|
428
|
+
calls: [
|
429
|
+
{
|
430
|
+
allowFailure: true,
|
431
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
432
|
+
target: underlyingToken,
|
433
|
+
},
|
434
|
+
{
|
435
|
+
allowFailure: true,
|
436
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
437
|
+
target: underlyingToken,
|
438
|
+
},
|
439
|
+
],
|
440
|
+
typeInfo: {
|
441
|
+
...typeInfo,
|
442
|
+
underlyingToken,
|
443
|
+
exchangeRate: BN2Number(exchangeRate, 18),
|
444
|
+
},
|
445
|
+
};
|
446
|
+
}
|
447
|
+
if (type === tokenType.aave_lending || type === tokenType.aave_borrowing) {
|
448
|
+
const underlyingToken = aaveInterface.decodeFunctionResult("UNDERLYING_ASSET_ADDRESS", calls[index].returnData)[0];
|
449
|
+
return {
|
450
|
+
type: type,
|
451
|
+
calls: [
|
452
|
+
{
|
453
|
+
allowFailure: true,
|
454
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
455
|
+
target: underlyingToken,
|
456
|
+
},
|
457
|
+
],
|
458
|
+
typeInfo: {
|
459
|
+
...typeInfo,
|
460
|
+
underlyingToken,
|
461
|
+
},
|
462
|
+
};
|
463
|
+
}
|
464
|
+
if (type === tokenType.fraxlend || type === tokenType.sturdy_aggregator || type === tokenType.sturdy_silo) {
|
465
|
+
const underlyingToken = fraxlendInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
|
466
|
+
const sharePrice = fraxlendInterface.decodeFunctionResult("pricePerShare", calls[index + 1].returnData)[0];
|
467
|
+
if (type === tokenType.sturdy_silo) {
|
468
|
+
const collateral = sturdyInterface.decodeFunctionResult("collateralContract", calls[index + 2].returnData)[0];
|
469
|
+
return {
|
470
|
+
type: type,
|
471
|
+
calls: [
|
472
|
+
{
|
473
|
+
allowFailure: true,
|
474
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
475
|
+
target: underlyingToken,
|
476
|
+
},
|
477
|
+
{
|
478
|
+
allowFailure: true,
|
479
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
480
|
+
target: collateral,
|
481
|
+
},
|
482
|
+
],
|
483
|
+
typeInfo: {
|
484
|
+
...typeInfo,
|
485
|
+
underlyingToken,
|
486
|
+
sharePrice: BN2Number(sharePrice, 18),
|
487
|
+
collateral,
|
488
|
+
},
|
489
|
+
};
|
490
|
+
}
|
491
|
+
return {
|
492
|
+
type: type,
|
493
|
+
calls: [
|
494
|
+
{
|
495
|
+
allowFailure: true,
|
496
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
497
|
+
target: underlyingToken,
|
498
|
+
},
|
499
|
+
],
|
500
|
+
typeInfo: {
|
501
|
+
...typeInfo,
|
502
|
+
underlyingToken,
|
503
|
+
sharePrice: BN2Number(sharePrice, 18),
|
504
|
+
},
|
505
|
+
};
|
506
|
+
}
|
507
|
+
if (type === tokenType.curve || type === tokenType.curve_2) {
|
508
|
+
let lp_price;
|
509
|
+
if (type === tokenType.curve) {
|
510
|
+
lp_price = curveInterface.decodeFunctionResult("lp_price", calls[index].returnData)[0];
|
511
|
+
}
|
512
|
+
else {
|
513
|
+
lp_price = curveInterface.decodeFunctionResult("get_virtual_price", calls[index].returnData)[0];
|
514
|
+
}
|
515
|
+
let i = 1;
|
516
|
+
const poolTokensList = [];
|
517
|
+
while (i <= 3) {
|
518
|
+
try {
|
519
|
+
const token = curveInterface.decodeFunctionResult("coins", calls[index + i].returnData)[0];
|
520
|
+
poolTokensList.push(token);
|
521
|
+
}
|
522
|
+
catch (e) { }
|
523
|
+
i++;
|
524
|
+
}
|
525
|
+
return {
|
526
|
+
type: type,
|
527
|
+
calls: poolTokensList.map(token => {
|
528
|
+
return {
|
529
|
+
allowFailure: true,
|
530
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
531
|
+
target: token,
|
532
|
+
};
|
533
|
+
}),
|
534
|
+
typeInfo: {
|
535
|
+
...typeInfo,
|
536
|
+
lp_price: BN2Number(lp_price, 18),
|
537
|
+
poolTokensList,
|
538
|
+
},
|
539
|
+
};
|
540
|
+
}
|
541
|
+
if (type === tokenType.fluid) {
|
542
|
+
const underlyingToken = fluidInterface.decodeFunctionResult("asset", calls[index].returnData)[0];
|
543
|
+
return {
|
544
|
+
type: type,
|
545
|
+
calls: [
|
546
|
+
{
|
547
|
+
allowFailure: true,
|
548
|
+
callData: ERC20Interface.encodeFunctionData("decimals"),
|
549
|
+
target: underlyingToken,
|
550
|
+
},
|
551
|
+
{
|
552
|
+
allowFailure: true,
|
553
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
554
|
+
target: underlyingToken,
|
555
|
+
},
|
556
|
+
],
|
557
|
+
typeInfo: {
|
558
|
+
...typeInfo,
|
559
|
+
underlyingToken: underlyingToken,
|
560
|
+
},
|
561
|
+
};
|
562
|
+
}
|
563
|
+
if (type === tokenType.enzyme) {
|
564
|
+
const underlyingToken = enzymeInterface.decodeFunctionResult("calcNetShareValue", calls[index].returnData)[0];
|
565
|
+
const exchangeRate = BN2Number(enzymeInterface.decodeFunctionResult("calcNetShareValue", calls[index].returnData)[1]);
|
566
|
+
return {
|
567
|
+
type: type,
|
568
|
+
calls: [
|
569
|
+
{
|
570
|
+
allowFailure: true,
|
571
|
+
callData: ERC20Interface.encodeFunctionData("symbol"),
|
572
|
+
target: underlyingToken,
|
573
|
+
},
|
574
|
+
],
|
575
|
+
typeInfo: {
|
576
|
+
...typeInfo,
|
577
|
+
underlyingToken,
|
578
|
+
exchangeRate,
|
579
|
+
},
|
580
|
+
};
|
581
|
+
}
|
582
|
+
if (type === tokenType.euler_borrow) {
|
583
|
+
const vault = eulerInterface.decodeFunctionResult("eVault", calls[index].returnData)[0];
|
584
|
+
return {
|
585
|
+
type: type,
|
586
|
+
calls: [
|
587
|
+
{
|
588
|
+
allowFailure: true,
|
589
|
+
callData: eulerInterface.encodeFunctionData("asset"),
|
590
|
+
target: vault,
|
591
|
+
},
|
592
|
+
],
|
593
|
+
typeInfo: {
|
594
|
+
...typeInfo,
|
595
|
+
vault,
|
596
|
+
},
|
597
|
+
};
|
598
|
+
}
|
599
|
+
if (type === tokenType.euler_lend) {
|
600
|
+
return {
|
601
|
+
type: type,
|
602
|
+
calls: [
|
603
|
+
{
|
604
|
+
allowFailure: true,
|
605
|
+
callData: eulerInterface.encodeFunctionData("asset"),
|
606
|
+
target: typeInfo.tokenAddress,
|
607
|
+
},
|
608
|
+
],
|
609
|
+
typeInfo: {
|
610
|
+
...typeInfo,
|
611
|
+
},
|
612
|
+
};
|
613
|
+
}
|
614
|
+
if (type === tokenType.beefy) {
|
615
|
+
const pricePerShare = BN2Number(beefyInterface.decodeFunctionResult("getPricePerFullShare", calls[index].returnData)[0]);
|
616
|
+
const underlyingToken = beefyInterface.decodeFunctionResult("want", calls[index + 1].returnData)[0];
|
617
|
+
return {
|
618
|
+
type: type,
|
619
|
+
calls: [
|
620
|
+
{
|
621
|
+
allowFailure: true,
|
622
|
+
callData: UniswapV2PoolInterface.encodeFunctionData("token0"),
|
623
|
+
target: underlyingToken,
|
624
|
+
},
|
625
|
+
{
|
626
|
+
allowFailure: true,
|
627
|
+
callData: UniswapV2PoolInterface.encodeFunctionData("token1"),
|
628
|
+
target: underlyingToken,
|
629
|
+
},
|
630
|
+
],
|
631
|
+
typeInfo: {
|
632
|
+
...typeInfo,
|
633
|
+
underlyingToken,
|
634
|
+
pricePerShare,
|
635
|
+
},
|
636
|
+
};
|
637
|
+
}
|
638
|
+
return {
|
639
|
+
type: type,
|
640
|
+
calls: [],
|
641
|
+
typeInfo: {
|
642
|
+
...typeInfo,
|
643
|
+
},
|
644
|
+
};
|
645
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { processorMapping } from "./processor/processorMapping";
|
2
|
+
export function getTokenTypeRound2(index, type, typeInfo, calls) {
|
3
|
+
try {
|
4
|
+
const returnValueOfCalls = calls.map(call => call.returnData);
|
5
|
+
const ProcessorClass = processorMapping[type];
|
6
|
+
if (!ProcessorClass) {
|
7
|
+
throw new Error(`Processor not found for key: ${type}`);
|
8
|
+
}
|
9
|
+
const processorObject = new ProcessorClass();
|
10
|
+
return processorObject.computeRound2(index, type, typeInfo, returnValueOfCalls);
|
11
|
+
}
|
12
|
+
catch (error) {
|
13
|
+
console.error(error);
|
14
|
+
return {
|
15
|
+
type: type,
|
16
|
+
calls: [],
|
17
|
+
typeInfo: {
|
18
|
+
...typeInfo,
|
19
|
+
},
|
20
|
+
};
|
21
|
+
}
|
22
|
+
}
|