@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,57 @@
|
|
1
|
+
import { AccountingController } from "./accounting";
|
2
|
+
import { BlacklistController } from "./blacklist";
|
3
|
+
import { CampaignController } from "./campaign";
|
4
|
+
import { ChainController } from "./chain";
|
5
|
+
import { OpportunityController } from "./opportunity";
|
6
|
+
import { PriceController } from "./price";
|
7
|
+
import { ProtocolController } from "./protocol";
|
8
|
+
import { RewardController } from "./reward";
|
9
|
+
import { TokenController } from "./token";
|
10
|
+
import { ErrorHandler } from "../../plugins/error-handling.plugin";
|
11
|
+
import bigintToString from "../../utils/bigintToString";
|
12
|
+
import { opentelemetry } from "@elysiajs/opentelemetry";
|
13
|
+
import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";
|
14
|
+
import { BatchSpanProcessor } from "@opentelemetry/sdk-trace-node";
|
15
|
+
import Elysia from "elysia";
|
16
|
+
import { DynamicDataController } from "./dynamicData";
|
17
|
+
import { MerklRootController } from "./merklRoot";
|
18
|
+
import { ParticipateController } from "./participate/participate.controller";
|
19
|
+
import { StatusController } from "./status";
|
20
|
+
import { UserController } from "./user";
|
21
|
+
// ─── V4 Router ───────────────────────────────────────────────────────────────
|
22
|
+
export const v4 = new Elysia({ tags: ["v4"], prefix: "/v4" })
|
23
|
+
// ─── OpenTelemetry ───────────────────────────────────────────────────
|
24
|
+
.use(process.env.TRACE === "true"
|
25
|
+
? opentelemetry({
|
26
|
+
spanProcessors: [
|
27
|
+
new BatchSpanProcessor(new OTLPTraceExporter({
|
28
|
+
url: process.env.OTEL_COLLECTOR,
|
29
|
+
headers: {
|
30
|
+
"signoz-ingestion-key": String(process.env.SIGNOZ_INGESTION_KEY),
|
31
|
+
},
|
32
|
+
})),
|
33
|
+
],
|
34
|
+
})
|
35
|
+
: new Elysia() // not optimal
|
36
|
+
)
|
37
|
+
// ─── Error Handling ──────────────────────────────────────────────────
|
38
|
+
.use(ErrorHandler)
|
39
|
+
// ─── Logger ──────────────────────────────────────────────────────────
|
40
|
+
// .use(Logger)
|
41
|
+
// ─── Response Transformation ─────────────────────────────────────────
|
42
|
+
.onAfterHandle(({ response }) => bigintToString(response))
|
43
|
+
// ─── Route Controllers ───────────────────────────────────────────────
|
44
|
+
.use(OpportunityController)
|
45
|
+
.use(CampaignController)
|
46
|
+
.use(ProtocolController)
|
47
|
+
.use(TokenController)
|
48
|
+
.use(RewardController)
|
49
|
+
.use(ChainController)
|
50
|
+
.use(PriceController)
|
51
|
+
.use(BlacklistController)
|
52
|
+
.use(UserController)
|
53
|
+
.use(MerklRootController)
|
54
|
+
.use(ParticipateController)
|
55
|
+
.use(AccountingController)
|
56
|
+
.use(DynamicDataController)
|
57
|
+
.use(StatusController);
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import { AuthorizationHeadersDto, EngineGuard } from "../../../guards/Engine.guard";
|
2
|
+
import { throwOnUnsupportedChainId } from "../../../utils/throw";
|
3
|
+
import Elysia from "elysia";
|
4
|
+
import { CampaignUniqueDto } from "../campaign";
|
5
|
+
import { ChainDto, RunStatusListDto, UpdateStatusDto } from "./status.model";
|
6
|
+
import { StatusService } from "./status.service";
|
7
|
+
export const StatusController = new Elysia({ prefix: "/campaignStatus", detail: { tags: ["Status"] } })
|
8
|
+
// ─── Update a Campaign Status ──────────────────────────────────────
|
9
|
+
.post("/engine", async ({ body }) => {
|
10
|
+
return await StatusService.update(body);
|
11
|
+
}, {
|
12
|
+
beforeHandle: EngineGuard,
|
13
|
+
headers: AuthorizationHeadersDto,
|
14
|
+
body: UpdateStatusDto,
|
15
|
+
})
|
16
|
+
// ─── Get All Status ────────────────────────────────────────────────
|
17
|
+
.get("/", async () => {
|
18
|
+
return await StatusService.findMany();
|
19
|
+
})
|
20
|
+
.get("/status", async ({ query }) => {
|
21
|
+
return await StatusService.findManyByRunStatus(query);
|
22
|
+
}, { query: RunStatusListDto })
|
23
|
+
// ─── Get A Status By Id ────────────────────────────────────────────
|
24
|
+
.get("/unique", async ({ query }) => {
|
25
|
+
return await StatusService.findUniqueOrThrow(query);
|
26
|
+
}, {
|
27
|
+
query: CampaignUniqueDto,
|
28
|
+
beforeHandle: ({ query }) => {
|
29
|
+
throwOnUnsupportedChainId(query.distributionChain);
|
30
|
+
},
|
31
|
+
})
|
32
|
+
// ─── Get All Status on a chain ─────────────────────────────────────
|
33
|
+
.get("/computeChain/:chainId", async ({ params }) => {
|
34
|
+
return await StatusService.findManyPerChain(params.chainId);
|
35
|
+
}, {
|
36
|
+
params: ChainDto,
|
37
|
+
beforeHandle: ({ params }) => {
|
38
|
+
throwOnUnsupportedChainId(params.chainId);
|
39
|
+
},
|
40
|
+
})
|
41
|
+
// ─── Is Safe For Overlaps ──────────────────────────────────────────
|
42
|
+
.get("/engine/overlaps", async ({ query }) => {
|
43
|
+
return await StatusService.isSafeForOverlaps(query);
|
44
|
+
}, {
|
45
|
+
beforeHandle: EngineGuard,
|
46
|
+
headers: AuthorizationHeadersDto,
|
47
|
+
query: CampaignUniqueDto,
|
48
|
+
});
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { RunStatus } from "../../../../database/api/.generated";
|
2
|
+
import { t } from "elysia";
|
3
|
+
export const ChainDto = t.Object({
|
4
|
+
chainId: t.Numeric(),
|
5
|
+
});
|
6
|
+
export const UpdateStatusDto = t.Object({
|
7
|
+
distributionChain: t.Numeric(),
|
8
|
+
campaignId: t.String(), // Identifier of the campaign
|
9
|
+
status: t.Union([
|
10
|
+
t.Object({ value: t.Literal(RunStatus.SUCCESS), computedUntil: t.Numeric() }),
|
11
|
+
t.Object({ value: t.Literal(RunStatus.PROCESSING) }),
|
12
|
+
t.Object({ value: t.Literal(RunStatus.SKIPPED), error: t.String(), details: t.String() }),
|
13
|
+
t.Object({ value: t.Literal(RunStatus.FAILED), error: t.String(), details: t.String() }),
|
14
|
+
]),
|
15
|
+
});
|
16
|
+
export const RunStatusDto = t.Union([
|
17
|
+
t.Literal(RunStatus.SUCCESS),
|
18
|
+
t.Literal(RunStatus.FAILED),
|
19
|
+
t.Literal(RunStatus.PROCESSING),
|
20
|
+
t.Literal(RunStatus.SKIPPED),
|
21
|
+
]);
|
22
|
+
export const RunStatusListDto = t.Object({
|
23
|
+
status: t.Union([t.Array(RunStatusDto), RunStatusDto]),
|
24
|
+
});
|
@@ -0,0 +1,88 @@
|
|
1
|
+
import { apiDbClient } from "../../../utils/prisma";
|
2
|
+
import moment from "moment";
|
3
|
+
import { CampaignService } from "../campaign";
|
4
|
+
export class StatusRepository {
|
5
|
+
static async findMany() {
|
6
|
+
return await apiDbClient.campaignStatus.findMany();
|
7
|
+
}
|
8
|
+
static async findManyByRunStatus(statuses) {
|
9
|
+
return await apiDbClient.campaignStatus.findMany({
|
10
|
+
where: {
|
11
|
+
status: {
|
12
|
+
in: statuses,
|
13
|
+
},
|
14
|
+
},
|
15
|
+
include: {
|
16
|
+
Campaign: true,
|
17
|
+
},
|
18
|
+
});
|
19
|
+
}
|
20
|
+
static async findManyPerChain(chainId) {
|
21
|
+
return await apiDbClient.campaignStatus.findMany({
|
22
|
+
where: {
|
23
|
+
Campaign: {
|
24
|
+
computeChainId: chainId,
|
25
|
+
},
|
26
|
+
},
|
27
|
+
});
|
28
|
+
}
|
29
|
+
static async findUniqueOrThrow(campaignUnique) {
|
30
|
+
return await apiDbClient.campaignStatus.findUniqueOrThrow({
|
31
|
+
where: {
|
32
|
+
campaignId: CampaignService.hashId(campaignUnique),
|
33
|
+
},
|
34
|
+
});
|
35
|
+
}
|
36
|
+
static async findUnique(campaignUnique) {
|
37
|
+
return await apiDbClient.campaignStatus.findUnique({
|
38
|
+
where: {
|
39
|
+
campaignId: CampaignService.hashId(campaignUnique),
|
40
|
+
},
|
41
|
+
});
|
42
|
+
}
|
43
|
+
static async create(campaign, startTimestamp) {
|
44
|
+
return await apiDbClient.campaignStatus.create({
|
45
|
+
data: {
|
46
|
+
campaignId: CampaignService.hashId(campaign),
|
47
|
+
computedUntil: startTimestamp,
|
48
|
+
},
|
49
|
+
});
|
50
|
+
}
|
51
|
+
static async updateSuccess(campaignUnique, computedUntil) {
|
52
|
+
return await apiDbClient.campaignStatus.update({
|
53
|
+
where: {
|
54
|
+
campaignId: CampaignService.hashId(campaignUnique),
|
55
|
+
},
|
56
|
+
data: {
|
57
|
+
computedUntil,
|
58
|
+
status: "SUCCESS",
|
59
|
+
},
|
60
|
+
});
|
61
|
+
}
|
62
|
+
static async updateWithError(campaignUnique, status, error, details) {
|
63
|
+
return await apiDbClient.campaignStatus.update({
|
64
|
+
where: {
|
65
|
+
campaignId: CampaignService.hashId(campaignUnique),
|
66
|
+
},
|
67
|
+
data: {
|
68
|
+
status,
|
69
|
+
error,
|
70
|
+
details,
|
71
|
+
},
|
72
|
+
});
|
73
|
+
}
|
74
|
+
static async updateProcessing(campaignUnique) {
|
75
|
+
return await apiDbClient.campaignStatus.update({
|
76
|
+
where: {
|
77
|
+
campaignId: CampaignService.hashId(campaignUnique),
|
78
|
+
status: {
|
79
|
+
not: "PROCESSING", // To throw an error if the status is already PROCESSING
|
80
|
+
},
|
81
|
+
},
|
82
|
+
data: {
|
83
|
+
status: "PROCESSING",
|
84
|
+
processingStarted: moment().unix(),
|
85
|
+
},
|
86
|
+
});
|
87
|
+
}
|
88
|
+
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import { RunStatus } from "../../../../database/api/.generated";
|
2
|
+
import { MAX_COMPUTE_JOB_TIME } from "@sdk";
|
3
|
+
import moment from "moment";
|
4
|
+
import { CampaignService } from "../campaign";
|
5
|
+
import { StatusRepository } from "./status.repository";
|
6
|
+
export class StatusService {
|
7
|
+
static async findMany() {
|
8
|
+
return await StatusRepository.findMany();
|
9
|
+
}
|
10
|
+
static async findManyByRunStatus(x) {
|
11
|
+
return await StatusRepository.findManyByRunStatus(typeof x.status === "string" ? [x.status] : x.status);
|
12
|
+
}
|
13
|
+
static async findManyPerChain(chainId) {
|
14
|
+
return await StatusRepository.findManyPerChain(chainId);
|
15
|
+
}
|
16
|
+
static async findUniqueOrThrow(campaignUnique) {
|
17
|
+
return await StatusRepository.findUniqueOrThrow(campaignUnique);
|
18
|
+
}
|
19
|
+
static async findUnique(campaignUnique) {
|
20
|
+
return await StatusRepository.findUnique(campaignUnique);
|
21
|
+
}
|
22
|
+
static async update(x) {
|
23
|
+
// Check if the status exists already, otherwise create it
|
24
|
+
const campaignUnique = {
|
25
|
+
distributionChain: x.distributionChain,
|
26
|
+
campaignId: x.campaignId,
|
27
|
+
};
|
28
|
+
const campaignExists = await StatusRepository.findUnique(campaignUnique);
|
29
|
+
if (!campaignExists) {
|
30
|
+
let campaign = await CampaignService.findUnique(campaignUnique);
|
31
|
+
if (!campaign) {
|
32
|
+
await CampaignService.fill([campaignUnique]);
|
33
|
+
campaign = await CampaignService.findUniqueOrThrow(campaignUnique);
|
34
|
+
}
|
35
|
+
await StatusRepository.create(campaignUnique, campaign.startTimestamp);
|
36
|
+
}
|
37
|
+
// Update the run status
|
38
|
+
switch (x.status.value) {
|
39
|
+
case RunStatus.SUCCESS:
|
40
|
+
await StatusRepository.updateSuccess(campaignUnique, x.status.computedUntil);
|
41
|
+
return;
|
42
|
+
case RunStatus.PROCESSING:
|
43
|
+
await StatusRepository.updateProcessing(campaignUnique);
|
44
|
+
return;
|
45
|
+
case RunStatus.SKIPPED:
|
46
|
+
await StatusRepository.updateWithError(campaignUnique, x.status.value, x.status.error, x.status.details);
|
47
|
+
return;
|
48
|
+
case RunStatus.FAILED:
|
49
|
+
await StatusRepository.updateWithError(campaignUnique, x.status.value, x.status.error, x.status.details);
|
50
|
+
return;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
static async isSafeForOverlaps(campaignUnique) {
|
54
|
+
const status = await StatusRepository.findUnique(campaignUnique);
|
55
|
+
if (!status) {
|
56
|
+
return true;
|
57
|
+
}
|
58
|
+
return status.status !== RunStatus.PROCESSING || status.processingStarted < moment().unix() - MAX_COMPUTE_JOB_TIME;
|
59
|
+
}
|
60
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { NotFoundError } from "../../../errors/NotFound.error";
|
2
|
+
import Elysia from "elysia";
|
3
|
+
import { FindUniqueTokenDto, GetTokenBalanceDto, GetTokenQueryDto } from "./token.model";
|
4
|
+
import { TokenService } from "./token.service";
|
5
|
+
// ─── Tokens Controller ───────────────────────────────────────────────────────
|
6
|
+
export const TokenController = new Elysia({ prefix: "/tokens", detail: { tags: ["Tokens"] } })
|
7
|
+
// ─── Get A Token By Id ───────────────────────────────────────────────
|
8
|
+
.get("/:id", async ({ params }) => {
|
9
|
+
try {
|
10
|
+
const [chainId, address] = params.id.split("-");
|
11
|
+
return await TokenService.findUniqueOrThrow({ chainId: +chainId, address });
|
12
|
+
}
|
13
|
+
catch (err) {
|
14
|
+
if (err.code && err.code === "P2025")
|
15
|
+
throw new NotFoundError();
|
16
|
+
}
|
17
|
+
}, { params: FindUniqueTokenDto })
|
18
|
+
// ─── Get Tokens With Balances ────────────────────────────────────────
|
19
|
+
.get("/balances", async ({ query: { chainId, userAddress, tokenAddress, additionalTokenAddresses } }) => {
|
20
|
+
if (tokenAddress)
|
21
|
+
return await TokenService.fetchTokensAndBalances(chainId, userAddress, [tokenAddress].concat(additionalTokenAddresses ?? []));
|
22
|
+
return await TokenService.fetchVerifiedBalances(chainId, userAddress, additionalTokenAddresses);
|
23
|
+
}, {
|
24
|
+
query: GetTokenBalanceDto,
|
25
|
+
})
|
26
|
+
// ─── Get Many Tokens ─────────────────────────────────────────────────
|
27
|
+
.get("/", async ({ query }) => {
|
28
|
+
return await TokenService.findMany(query);
|
29
|
+
}, { query: GetTokenQueryDto })
|
30
|
+
.get("/count", async ({ query }) => {
|
31
|
+
return await TokenService.countMany(query);
|
32
|
+
}, { query: GetTokenQueryDto });
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ChainId } from "@sdk";
|
2
|
+
import { t } from "elysia";
|
3
|
+
// ─── Dtos ────────────────────────────────────────────────────────────────────
|
4
|
+
export const FindUniqueTokenDto = t.Object({
|
5
|
+
id: t.String(),
|
6
|
+
});
|
7
|
+
export const GetTokenQueryDto = t.Object({
|
8
|
+
symbol: t.Optional(t.String()),
|
9
|
+
chainId: t.Optional(t.Enum(ChainId)),
|
10
|
+
address: t.Optional(t.String()),
|
11
|
+
name: t.Optional(t.String()),
|
12
|
+
verified: t.Optional(t.Boolean()),
|
13
|
+
});
|
14
|
+
export const TokenDto = t.Object({
|
15
|
+
address: t.String(),
|
16
|
+
chainId: t.Numeric(),
|
17
|
+
});
|
18
|
+
export const GetTokenBalanceDto = t.Object({
|
19
|
+
chainId: t.Numeric(),
|
20
|
+
userAddress: t.String(),
|
21
|
+
tokenAddress: t.Optional(t.String({ description: "If provided, the default verified token balances won't be included" })),
|
22
|
+
additionalTokenAddresses: t.Optional(t.Array(t.String())),
|
23
|
+
});
|
@@ -0,0 +1,128 @@
|
|
1
|
+
import { getTokenInfo } from "../../../libs/tokens/tokenInfo";
|
2
|
+
import { executeSimple } from "../../../utils/execute";
|
3
|
+
import { apiDbClient } from "../../../utils/prisma";
|
4
|
+
import { NETWORK_LABELS } from "@sdk";
|
5
|
+
export class TokenRepository {
|
6
|
+
/**
|
7
|
+
* Fetch token metadata from onchain
|
8
|
+
* @param chainId
|
9
|
+
* @param address
|
10
|
+
* @returns
|
11
|
+
*/
|
12
|
+
static async getTokenInfo(token) {
|
13
|
+
//TODO: replace with onchain module
|
14
|
+
const calls = getTokenInfo(token.address);
|
15
|
+
//TODO: replace with onchain module
|
16
|
+
return executeSimple(token.chainId, calls);
|
17
|
+
}
|
18
|
+
/**
|
19
|
+
* Read token from database
|
20
|
+
* @param chainId
|
21
|
+
* @param address
|
22
|
+
*/
|
23
|
+
static async findUnique(id) {
|
24
|
+
return (await apiDbClient.token.findUnique({ where: { id } })) ?? undefined;
|
25
|
+
}
|
26
|
+
/**
|
27
|
+
* Read token from database
|
28
|
+
* @param chainId
|
29
|
+
* @param address
|
30
|
+
*/
|
31
|
+
static async findUniqueOrThrow(id) {
|
32
|
+
return await apiDbClient.token.findUniqueOrThrow({ where: { id } });
|
33
|
+
}
|
34
|
+
static #transformQueryToPrismaFilters(query) {
|
35
|
+
return {
|
36
|
+
where: {
|
37
|
+
symbol: query.symbol ? { equals: query.symbol, mode: "insensitive" } : undefined,
|
38
|
+
address: query.address ? { equals: query.address, mode: "insensitive" } : undefined,
|
39
|
+
chainId: query.chainId ? { equals: query.chainId } : undefined,
|
40
|
+
name: query.name ? { contains: query.name, mode: "insensitive" } : undefined,
|
41
|
+
verified: query.verified ? { equals: query.verified } : undefined,
|
42
|
+
},
|
43
|
+
};
|
44
|
+
}
|
45
|
+
/**
|
46
|
+
* Read token from database by its symbol
|
47
|
+
* @param symbol
|
48
|
+
*/
|
49
|
+
static async findMany(query) {
|
50
|
+
const args = TokenRepository.#transformQueryToPrismaFilters(query);
|
51
|
+
const tokens = await apiDbClient.token.findMany({
|
52
|
+
...args,
|
53
|
+
});
|
54
|
+
return tokens;
|
55
|
+
}
|
56
|
+
static async countMany(query) {
|
57
|
+
const args = TokenRepository.#transformQueryToPrismaFilters(query);
|
58
|
+
return await apiDbClient.token.count(args);
|
59
|
+
}
|
60
|
+
/**
|
61
|
+
* upsert a token on database
|
62
|
+
* @param token
|
63
|
+
*/
|
64
|
+
static async upsert(token) {
|
65
|
+
return await apiDbClient.token.upsert({
|
66
|
+
create: token,
|
67
|
+
update: token,
|
68
|
+
where: { id: token.id },
|
69
|
+
});
|
70
|
+
}
|
71
|
+
/**
|
72
|
+
* Updates price of tokens that share the same symbol
|
73
|
+
* @param symbol
|
74
|
+
* @param price value
|
75
|
+
* @param excludeAddresses to not update even if symbol match
|
76
|
+
*/
|
77
|
+
static async updateSymbolPrices(symbol, price, excludeAddresses) {
|
78
|
+
return await apiDbClient.token.updateMany({
|
79
|
+
data: { price },
|
80
|
+
where: {
|
81
|
+
symbol,
|
82
|
+
address: { notIn: excludeAddresses },
|
83
|
+
},
|
84
|
+
});
|
85
|
+
}
|
86
|
+
/**
|
87
|
+
* Updates price of tokens that share the same address
|
88
|
+
* @param address
|
89
|
+
* @param price value
|
90
|
+
* @param chainId
|
91
|
+
*/
|
92
|
+
static async updateAddressPrices(address, price, chainId) {
|
93
|
+
return await apiDbClient.token.updateMany({
|
94
|
+
data: { price },
|
95
|
+
where: {
|
96
|
+
chainId: chainId && { equals: chainId },
|
97
|
+
address: { equals: address, mode: "insensitive" },
|
98
|
+
},
|
99
|
+
});
|
100
|
+
}
|
101
|
+
static async findChains() {
|
102
|
+
const tokens = await apiDbClient.token.findMany({
|
103
|
+
select: { chainId: true, id: true },
|
104
|
+
});
|
105
|
+
return tokens.reduce((acc, token) => {
|
106
|
+
acc[token.id] = token.chainId;
|
107
|
+
return acc;
|
108
|
+
}, {});
|
109
|
+
}
|
110
|
+
/**
|
111
|
+
* create a token on database
|
112
|
+
* @param token
|
113
|
+
*/
|
114
|
+
static async create(token) {
|
115
|
+
return await apiDbClient.token.create({
|
116
|
+
data: {
|
117
|
+
...token,
|
118
|
+
chainId: undefined,
|
119
|
+
Chain: {
|
120
|
+
connectOrCreate: {
|
121
|
+
where: { id: token.chainId },
|
122
|
+
create: { id: token.chainId, name: NETWORK_LABELS[token.chainId], icon: "" },
|
123
|
+
},
|
124
|
+
},
|
125
|
+
},
|
126
|
+
});
|
127
|
+
}
|
128
|
+
}
|