@merkl/api 0.9.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +90 -0
- package/dist/database/api/.generated/default.d.ts +1 -0
- package/dist/database/api/.generated/default.js +1 -0
- package/dist/database/api/.generated/drizzle/schema.d.ts +3029 -0
- package/dist/database/api/.generated/drizzle/schema.js +868 -0
- package/dist/database/api/.generated/drizzle/schema.ts +929 -0
- package/dist/database/api/.generated/edge.d.ts +1 -0
- package/dist/database/api/.generated/edge.js +691 -0
- package/dist/database/api/.generated/index-browser.js +650 -0
- package/dist/database/api/.generated/index.d.ts +46187 -0
- package/dist/database/api/.generated/index.js +720 -0
- package/dist/database/api/.generated/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/database/api/.generated/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
- package/dist/database/api/.generated/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/dist/database/api/.generated/package.json +97 -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.d.ts +365 -0
- package/dist/database/api/.generated/runtime/index-browser.js +13 -0
- package/dist/database/api/.generated/runtime/library.d.ts +3447 -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/schema.prisma +457 -0
- package/dist/database/api/.generated/wasm.d.ts +1 -0
- package/dist/database/api/.generated/wasm.js +650 -0
- package/dist/database/api/seeder/resources/protocol.d.ts +373 -0
- package/dist/database/api/seeder/resources/protocol.js +344 -0
- package/dist/database/engine/.generated/default.d.ts +1 -0
- package/dist/database/engine/.generated/default.js +1 -0
- package/dist/database/engine/.generated/edge.d.ts +1 -0
- package/dist/database/engine/.generated/edge.js +436 -0
- package/dist/database/engine/.generated/index-browser.js +411 -0
- package/dist/database/engine/.generated/index.d.ts +18906 -0
- package/dist/database/engine/.generated/index.js +465 -0
- package/dist/database/engine/.generated/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/database/engine/.generated/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
- package/dist/database/engine/.generated/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/dist/database/engine/.generated/package.json +97 -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.d.ts +365 -0
- package/dist/database/engine/.generated/runtime/index-browser.js +13 -0
- package/dist/database/engine/.generated/runtime/library.d.ts +3447 -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/schema.prisma +207 -0
- package/dist/database/engine/.generated/wasm.d.ts +1 -0
- package/dist/database/engine/.generated/wasm.js +411 -0
- package/dist/database/index.d.ts +29 -0
- package/dist/database/index.js +13 -0
- package/dist/src/backgroundJobs/index.d.ts +1 -0
- package/dist/src/backgroundJobs/index.js +57 -0
- package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.d.ts +50 -0
- package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.js +173 -0
- package/dist/src/backgroundJobs/jobs/health.d.ts +41 -0
- package/dist/src/backgroundJobs/jobs/health.js +15 -0
- package/dist/src/backgroundJobs/jobs/opportunityUpdater.d.ts +36 -0
- package/dist/src/backgroundJobs/jobs/opportunityUpdater.js +19 -0
- package/dist/src/cache/declaration.d.ts +133 -0
- package/dist/src/cache/declaration.js +121 -0
- package/dist/src/cache/index.d.ts +61 -0
- package/dist/src/cache/index.js +161 -0
- package/dist/src/cache/redis.d.ts +312 -0
- package/dist/src/cache/redis.js +56 -0
- package/dist/src/constants.d.ts +108 -0
- package/dist/src/constants.js +128 -0
- package/dist/src/eden/index.d.ts +20952 -0
- package/dist/src/eden/index.js +4 -0
- package/dist/src/engine/dynamicData/factory.d.ts +3 -0
- package/dist/src/engine/dynamicData/factory.js +54 -0
- package/dist/src/engine/dynamicData/implementations/Ajna.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Ajna.js +101 -0
- package/dist/src/engine/dynamicData/implementations/Ambiant.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Ambiant.js +227 -0
- package/dist/src/engine/dynamicData/implementations/Badger.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Badger.js +84 -0
- package/dist/src/engine/dynamicData/implementations/Clamm.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Clamm.js +970 -0
- package/dist/src/engine/dynamicData/implementations/Compound.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Compound.js +136 -0
- package/dist/src/engine/dynamicData/implementations/Dolomite.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Dolomite.js +53 -0
- package/dist/src/engine/dynamicData/implementations/EigenLayer.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/EigenLayer.js +64 -0
- package/dist/src/engine/dynamicData/implementations/Encompassing.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Encompassing.js +26 -0
- package/dist/src/engine/dynamicData/implementations/Erc20.d.ts +6 -0
- package/dist/src/engine/dynamicData/implementations/Erc20.js +159 -0
- package/dist/src/engine/dynamicData/implementations/Erc20Snapshot.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Erc20Snapshot.js +32 -0
- package/dist/src/engine/dynamicData/implementations/EventBased.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/EventBased.js +104 -0
- package/dist/src/engine/dynamicData/implementations/Hyperdrive.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Hyperdrive.js +106 -0
- package/dist/src/engine/dynamicData/implementations/Morpho.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Morpho.js +109 -0
- package/dist/src/engine/dynamicData/implementations/Radiant.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/Radiant.js +117 -0
- package/dist/src/engine/dynamicData/implementations/Silo.d.ts +9 -0
- package/dist/src/engine/dynamicData/implementations/Silo.js +109 -0
- package/dist/src/engine/dynamicData/implementations/UniswapV4.d.ts +7 -0
- package/dist/src/engine/dynamicData/implementations/UniswapV4.js +249 -0
- package/dist/src/engine/dynamicData/implementations/Vest.d.ts +9 -0
- package/dist/src/engine/dynamicData/implementations/Vest.js +58 -0
- package/dist/src/engine/dynamicData/implementations/default.d.ts +5 -0
- package/dist/src/engine/dynamicData/implementations/default.js +5 -0
- package/dist/src/engine/dynamicData/utils/fetchA51Strategies.d.ts +18 -0
- package/dist/src/engine/dynamicData/utils/fetchA51Strategies.js +44 -0
- package/dist/src/engine/dynamicData/utils/fetchAmbientInfo.d.ts +12 -0
- package/dist/src/engine/dynamicData/utils/fetchAmbientInfo.js +59 -0
- package/dist/src/engine/dynamicData/utils/fetchClamInfo.d.ts +2 -0
- package/dist/src/engine/dynamicData/utils/fetchClamInfo.js +27 -0
- package/dist/src/engine/dynamicData/utils/fetchLogs.d.ts +10 -0
- package/dist/src/engine/dynamicData/utils/fetchLogs.js +149 -0
- package/dist/src/engine/dynamicData/utils/getCompV2ForksVaults.d.ts +19 -0
- package/dist/src/engine/dynamicData/utils/getCompV2ForksVaults.js +134 -0
- package/dist/src/engine/dynamicData/utils/getContractCreationBlock.d.ts +2 -0
- package/dist/src/engine/dynamicData/utils/getContractCreationBlock.js +44 -0
- package/dist/src/engine/dynamicData/utils/getDolomiteMarkets.d.ts +8 -0
- package/dist/src/engine/dynamicData/utils/getDolomiteMarkets.js +53 -0
- package/dist/src/engine/dynamicData/utils/getEulerV2Vaults.d.ts +8 -0
- package/dist/src/engine/dynamicData/utils/getEulerV2Vaults.js +209 -0
- package/dist/src/engine/dynamicData/utils/getUniswapV4Pools.d.ts +8 -0
- package/dist/src/engine/dynamicData/utils/getUniswapV4Pools.js +183 -0
- package/dist/src/engine/erc20SubTypeProcessors/GenericProcessor.d.ts +99 -0
- package/dist/src/engine/erc20SubTypeProcessors/GenericProcessor.js +329 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/eulerVaultNames.d.ts +1 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/eulerVaultNames.js +13 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/factoryFinder.d.ts +5 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/factoryFinder.js +41 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/getBlacklistedSupply.d.ts +2 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/getBlacklistedSupply.js +22 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/hardcoded.d.ts +3 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/hardcoded.js +30 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/metamorphoTvl.d.ts +1 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/metamorphoTvl.js +35 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/ownerFinder.d.ts +2 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/ownerFinder.js +12 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/spliceTVL.d.ts +7 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/spliceTVL.js +21 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/tokenType.d.ts +107 -0
- package/dist/src/engine/erc20SubTypeProcessors/helpers/tokenType.js +193 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AaveProcessor.d.ts +30 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AaveProcessor.js +25 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AnglesLiquid.d.ts +35 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AnglesLiquid.js +50 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AssetProcessor.d.ts +35 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AssetProcessor.js +47 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AuraProcessor.d.ts +70 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/AuraProcessor.js +110 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BEXRewardGaugeProcessor.d.ts +51 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BEXRewardGaugeProcessor.js +102 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BalancerGaugeProcessor.d.ts +49 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BalancerGaugeProcessor.js +83 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BalancerPoolProcessor.d.ts +60 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BalancerPoolProcessor.js +95 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BalancerV3PoolProcessor.d.ts +44 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BalancerV3PoolProcessor.js +75 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BeefyProcessor.d.ts +48 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BeefyProcessor.js +50 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BunniV2Processor.d.ts +45 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/BunniV2Processor.js +87 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/CompoundProcessor.d.ts +44 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/CompoundProcessor.js +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/ERC4626Processor.d.ts +34 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/ERC4626Processor.js +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EnzymeProcessor.d.ts +40 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EnzymeProcessor.js +51 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EqualizerGaugeProcessor.d.ts +28 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EqualizerGaugeProcessor.js +53 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EulerBorrowProcessor.d.ts +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EulerBorrowProcessor.js +51 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EulerLendProcessor.d.ts +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/EulerLendProcessor.js +47 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/FluidProcessor.d.ts +39 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/FluidProcessor.js +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/FraxProcessor.d.ts +33 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/FraxProcessor.js +41 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/GammaProcessor.d.ts +43 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/GammaProcessor.js +63 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/GearboxProcessor.d.ts +44 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/GearboxProcessor.js +57 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/HanjiVaultProcessor.d.ts +43 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/HanjiVaultProcessor.js +58 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/HoldStationProcessor.d.ts +29 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/HoldStationProcessor.js +34 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/HourglassProcessor.d.ts +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/HourglassProcessor.js +34 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/MaverickBPProcessor.d.ts +50 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/MaverickBPProcessor.js +74 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/MetamorphoProcessor.d.ts +33 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/MetamorphoProcessor.js +47 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/NoLinkVaultProcessor.d.ts +38 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/NoLinkVaultProcessor.js +81 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/PendleProcessor.d.ts +29 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/PendleProcessor.js +29 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/PendleYTProcessor.d.ts +29 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/PendleYTProcessor.js +29 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/RadiantProcessor.d.ts +32 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/RadiantProcessor.js +58 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/RfxProcessor.d.ts +40 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/RfxProcessor.js +67 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/Satlayer.d.ts +34 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/Satlayer.js +27 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SpectraProcessor.d.ts +31 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SpectraProcessor.js +41 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SpectraYTProcessor.d.ts +31 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SpectraYTProcessor.js +39 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SpliceProcessor.d.ts +16 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SpliceProcessor.js +36 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SturdySiloProcessor.d.ts +39 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/SturdySiloProcessor.js +37 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/TempestVaultProcessor.d.ts +52 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/TempestVaultProcessor.js +79 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/TemplateProcessor.d.ts +32 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/TemplateProcessor.js +40 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/TorosProcessor.d.ts +30 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/TorosProcessor.js +33 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/UniswapProcessor.d.ts +44 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/UniswapProcessor.js +68 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/VicunaProcessor.d.ts +28 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/VicunaProcessor.js +35 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/WoofiProcessor.d.ts +32 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/WoofiProcessor.js +40 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/ZkSwapThreePoolProcessor.d.ts +53 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/ZkSwapThreePoolProcessor.js +55 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/curveNPoolProcessor.d.ts +39 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/curveNPoolProcessor.js +95 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/curveProcessor.d.ts +49 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/curveProcessor.js +70 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/processorMapping.d.ts +6 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/processorMapping.js +142 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/stakedCurveProcessor.d.ts +54 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/stakedCurveProcessor.js +77 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/xU308Processor.d.ts +37 -0
- package/dist/src/engine/erc20SubTypeProcessors/implementations/xU308Processor.js +49 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesPrices.d.ts +4 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesPrices.js +24 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound1.d.ts +3 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound1.js +336 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound2.d.ts +4 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound2.js +22 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound3.d.ts +3 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound3.js +22 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound4.d.ts +3 -0
- package/dist/src/engine/erc20SubTypeProcessors/subtypesRound4.js +22 -0
- package/dist/src/engine/opportunityMetadata/factory.d.ts +3 -0
- package/dist/src/engine/opportunityMetadata/factory.js +57 -0
- package/dist/src/engine/opportunityMetadata/implementations/Ajna.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Ajna.js +52 -0
- package/dist/src/engine/opportunityMetadata/implementations/Ambiant.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Ambiant.js +31 -0
- package/dist/src/engine/opportunityMetadata/implementations/Badger.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Badger.js +25 -0
- package/dist/src/engine/opportunityMetadata/implementations/Clamm.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Clamm.js +50 -0
- package/dist/src/engine/opportunityMetadata/implementations/Compound.d.ts +16 -0
- package/dist/src/engine/opportunityMetadata/implementations/Compound.js +20 -0
- package/dist/src/engine/opportunityMetadata/implementations/Default.d.ts +13 -0
- package/dist/src/engine/opportunityMetadata/implementations/Default.js +11 -0
- package/dist/src/engine/opportunityMetadata/implementations/Dolomite.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Dolomite.js +17 -0
- package/dist/src/engine/opportunityMetadata/implementations/EigenLayer.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/EigenLayer.js +11 -0
- package/dist/src/engine/opportunityMetadata/implementations/Encompassing.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Encompassing.js +37 -0
- package/dist/src/engine/opportunityMetadata/implementations/Erc20.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Erc20.js +71 -0
- package/dist/src/engine/opportunityMetadata/implementations/Erc20Snapshot.d.ts +14 -0
- package/dist/src/engine/opportunityMetadata/implementations/Erc20Snapshot.js +10 -0
- package/dist/src/engine/opportunityMetadata/implementations/Euler.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Euler.js +34 -0
- package/dist/src/engine/opportunityMetadata/implementations/EventBased.d.ts +20 -0
- package/dist/src/engine/opportunityMetadata/implementations/EventBased.js +45 -0
- package/dist/src/engine/opportunityMetadata/implementations/Hyperdrive.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Hyperdrive.js +21 -0
- package/dist/src/engine/opportunityMetadata/implementations/Invalid.d.ts +11 -0
- package/dist/src/engine/opportunityMetadata/implementations/Invalid.js +10 -0
- package/dist/src/engine/opportunityMetadata/implementations/Ion.d.ts +16 -0
- package/dist/src/engine/opportunityMetadata/implementations/Ion.js +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/JsonAirdrop.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/JsonAirdrop.js +38 -0
- package/dist/src/engine/opportunityMetadata/implementations/Morpho.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Morpho.js +21 -0
- package/dist/src/engine/opportunityMetadata/implementations/Radiant.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Radiant.js +11 -0
- package/dist/src/engine/opportunityMetadata/implementations/Silo.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Silo.js +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/UniswapV4.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/UniswapV4.js +28 -0
- package/dist/src/engine/opportunityMetadata/implementations/Vest.d.ts +15 -0
- package/dist/src/engine/opportunityMetadata/implementations/Vest.js +12 -0
- package/dist/src/entities/campaign.d.ts +58 -0
- package/dist/src/entities/campaign.js +136 -0
- package/dist/src/errors/BadRequest.error.d.ts +4 -0
- package/dist/src/errors/BadRequest.error.js +7 -0
- package/dist/src/errors/Conflict.error.d.ts +4 -0
- package/dist/src/errors/Conflict.error.js +7 -0
- package/dist/src/errors/HttpError.d.ts +11 -0
- package/dist/src/errors/HttpError.js +17 -0
- package/dist/src/errors/NotFound.error.d.ts +8 -0
- package/dist/src/errors/NotFound.error.js +12 -0
- package/dist/src/errors/Opportunity.error.d.ts +6 -0
- package/dist/src/errors/Opportunity.error.js +11 -0
- package/dist/src/errors/Unauthorized.error.d.ts +4 -0
- package/dist/src/errors/Unauthorized.error.js +7 -0
- package/dist/src/errors/VoidString.error.d.ts +4 -0
- package/dist/src/errors/VoidString.error.js +7 -0
- package/dist/src/errors/index.d.ts +5 -0
- package/dist/src/errors/index.js +5 -0
- package/dist/src/guards/BackOffice.guard.d.ts +7 -0
- package/dist/src/guards/BackOffice.guard.js +10 -0
- package/dist/src/guards/Engine.guard.d.ts +7 -0
- package/dist/src/guards/Engine.guard.js +10 -0
- package/dist/src/guards/TokenAuth.guard.d.ts +7 -0
- package/dist/src/guards/TokenAuth.guard.js +10 -0
- package/dist/src/hooks/checkQueryAddressValidity.d.ts +22 -0
- package/dist/src/hooks/checkQueryAddressValidity.js +7 -0
- package/dist/src/hooks/checkQueryChainIdValidity.d.ts +22 -0
- package/dist/src/hooks/checkQueryChainIdValidity.js +7 -0
- package/dist/src/index.d.ts +5237 -0
- package/dist/src/index.js +111 -0
- package/dist/src/jobs/dynamic-data.d.ts +9 -0
- package/dist/src/jobs/dynamic-data.js +24 -0
- package/dist/src/jobs/pendings.d.ts +1 -0
- package/dist/src/jobs/pendings.js +236 -0
- package/dist/src/jobs/prices.d.ts +1 -0
- package/dist/src/jobs/prices.js +10 -0
- package/dist/src/jobs/reward-breakdowns.d.ts +1 -0
- package/dist/src/jobs/reward-breakdowns.js +152 -0
- package/dist/src/jobs/rewards.d.ts +1 -0
- package/dist/src/jobs/rewards.js +112 -0
- package/dist/src/jobs/set-dungeon-keeper.d.ts +1 -0
- package/dist/src/jobs/set-dungeon-keeper.js +82 -0
- package/dist/src/jobs/update-dynamic-data.d.ts +1 -0
- package/dist/src/jobs/update-dynamic-data.js +62 -0
- package/dist/src/jobs/update-euler-vaults.d.ts +1 -0
- package/dist/src/jobs/update-euler-vaults.js +122 -0
- package/dist/src/jobs/update-uniswap-v4-pools.d.ts +1 -0
- package/dist/src/jobs/update-uniswap-v4-pools.js +14 -0
- package/dist/src/libs/computeFee.d.ts +4 -0
- package/dist/src/libs/computeFee.js +34 -0
- package/dist/src/libs/deprecated-merklv3/index.d.ts +5 -0
- package/dist/src/libs/deprecated-merklv3/index.js +184 -0
- package/dist/src/libs/getTokensList.d.ts +23 -0
- package/dist/src/libs/getTokensList.js +19 -0
- package/dist/src/libs/merklChainData.d.ts +4 -0
- package/dist/src/libs/merklChainData.js +115 -0
- package/dist/src/libs/parse/marketsWithCache.d.ts +4 -0
- package/dist/src/libs/parse/marketsWithCache.js +8 -0
- package/dist/src/libs/positions/EigenLayer/index.d.ts +6 -0
- package/dist/src/libs/positions/EigenLayer/index.js +54 -0
- package/dist/src/libs/positions/ajna/index.d.ts +6 -0
- package/dist/src/libs/positions/ajna/index.js +107 -0
- package/dist/src/libs/positions/badger/index.d.ts +6 -0
- package/dist/src/libs/positions/badger/index.js +80 -0
- package/dist/src/libs/positions/clamm/index.d.ts +7 -0
- package/dist/src/libs/positions/clamm/index.js +412 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.d.ts +5 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchAlmPositions.js +36 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.d.ts +8 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchAmmPositions.js +36 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.d.ts +10 -0
- package/dist/src/libs/positions/clamm/thegraph/fetchFarmedPositions.js +42 -0
- package/dist/src/libs/positions/clamm/thegraph/index.d.ts +40 -0
- package/dist/src/libs/positions/clamm/thegraph/index.js +163 -0
- package/dist/src/libs/positions/compound/index.d.ts +24 -0
- package/dist/src/libs/positions/compound/index.js +91 -0
- package/dist/src/libs/positions/dolomite/index.d.ts +17 -0
- package/dist/src/libs/positions/dolomite/index.js +51 -0
- package/dist/src/libs/positions/erc20/index.d.ts +5 -0
- package/dist/src/libs/positions/erc20/index.js +56 -0
- package/dist/src/libs/positions/euler/index.d.ts +5 -0
- package/dist/src/libs/positions/euler/index.js +57 -0
- package/dist/src/libs/positions/index.d.ts +3 -0
- package/dist/src/libs/positions/index.js +53 -0
- package/dist/src/libs/positions/morpho/index.d.ts +6 -0
- package/dist/src/libs/positions/morpho/index.js +177 -0
- package/dist/src/libs/positions/prepareFetch.d.ts +22 -0
- package/dist/src/libs/positions/prepareFetch.js +392 -0
- package/dist/src/libs/positions/silo/index.d.ts +5 -0
- package/dist/src/libs/positions/silo/index.js +68 -0
- package/dist/src/libs/positions/types.d.ts +75 -0
- package/dist/src/libs/positions/types.js +1 -0
- package/dist/src/libs/staticCampaigns.d.ts +7 -0
- package/dist/src/libs/staticCampaigns.js +15 -0
- package/dist/src/libs/tokens/allowances.d.ts +1 -0
- package/dist/src/libs/tokens/allowances.js +18 -0
- package/dist/src/libs/tokens/balances.d.ts +11 -0
- package/dist/src/libs/tokens/balances.js +127 -0
- package/dist/src/libs/tokens/tokenInfo.d.ts +8 -0
- package/dist/src/libs/tokens/tokenInfo.js +22 -0
- package/dist/src/modules/v4/accounting/accounting.controller.d.ts +219 -0
- package/dist/src/modules/v4/accounting/accounting.controller.js +66 -0
- package/dist/src/modules/v4/accounting/accounting.model.d.ts +32 -0
- package/dist/src/modules/v4/accounting/accounting.model.js +32 -0
- package/dist/src/modules/v4/accounting/accounting.repository.d.ts +99 -0
- package/dist/src/modules/v4/accounting/accounting.repository.js +100 -0
- package/dist/src/modules/v4/accounting/accounting.service.d.ts +59 -0
- package/dist/src/modules/v4/accounting/accounting.service.js +107 -0
- package/dist/src/modules/v4/accounting/index.d.ts +3 -0
- package/dist/src/modules/v4/accounting/index.js +3 -0
- package/dist/src/modules/v4/airflow/airflow.service.d.ts +3 -0
- package/dist/src/modules/v4/airflow/airflow.service.js +20 -0
- package/dist/src/modules/v4/apr/apr.model.d.ts +41 -0
- package/dist/src/modules/v4/apr/apr.model.js +15 -0
- package/dist/src/modules/v4/apr/apr.service.d.ts +6 -0
- package/dist/src/modules/v4/apr/apr.service.js +49 -0
- package/dist/src/modules/v4/apr/index.d.ts +2 -0
- package/dist/src/modules/v4/apr/index.js +2 -0
- package/dist/src/modules/v4/blacklist/blacklist.controller.d.ts +123 -0
- package/dist/src/modules/v4/blacklist/blacklist.controller.js +42 -0
- package/dist/src/modules/v4/blacklist/blacklist.model.d.ts +15 -0
- package/dist/src/modules/v4/blacklist/blacklist.model.js +13 -0
- package/dist/src/modules/v4/blacklist/blacklist.repository.d.ts +21 -0
- package/dist/src/modules/v4/blacklist/blacklist.repository.js +50 -0
- package/dist/src/modules/v4/blacklist/blacklist.service.d.ts +24 -0
- package/dist/src/modules/v4/blacklist/blacklist.service.js +31 -0
- package/dist/src/modules/v4/blacklist/index.d.ts +3 -0
- package/dist/src/modules/v4/blacklist/index.js +3 -0
- package/dist/src/modules/v4/boost/boost.controller.d.ts +88 -0
- package/dist/src/modules/v4/boost/boost.controller.js +15 -0
- package/dist/src/modules/v4/boost/boost.model.d.ts +12 -0
- package/dist/src/modules/v4/boost/boost.model.js +14 -0
- package/dist/src/modules/v4/boost/boost.service.d.ts +11 -0
- package/dist/src/modules/v4/boost/boost.service.js +20 -0
- package/dist/src/modules/v4/boost/index.d.ts +2 -0
- package/dist/src/modules/v4/boost/index.js +2 -0
- package/dist/src/modules/v4/bucket/bucket.model.d.ts +10 -0
- package/dist/src/modules/v4/bucket/bucket.model.js +85 -0
- package/dist/src/modules/v4/bucket/bucket.service.d.ts +11 -0
- package/dist/src/modules/v4/bucket/bucket.service.js +170 -0
- package/dist/src/modules/v4/cache/cache.model.d.ts +13 -0
- package/dist/src/modules/v4/cache/cache.model.js +14 -0
- package/dist/src/modules/v4/cache/cache.repository.d.ts +5 -0
- package/dist/src/modules/v4/cache/cache.repository.js +62 -0
- package/dist/src/modules/v4/cache/cache.service.d.ts +9 -0
- package/dist/src/modules/v4/cache/cache.service.js +50 -0
- package/dist/src/modules/v4/cache/index.d.ts +1 -0
- package/dist/src/modules/v4/cache/index.js +1 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +632 -0
- package/dist/src/modules/v4/campaign/campaign.controller.js +149 -0
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +165 -0
- package/dist/src/modules/v4/campaign/campaign.model.js +113 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +735 -0
- package/dist/src/modules/v4/campaign/campaign.repository.js +448 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +728 -0
- package/dist/src/modules/v4/campaign/campaign.service.js +309 -0
- package/dist/src/modules/v4/campaign/index.d.ts +2 -0
- package/dist/src/modules/v4/campaign/index.js +2 -0
- package/dist/src/modules/v4/chain/chain.controller.d.ts +145 -0
- package/dist/src/modules/v4/chain/chain.controller.js +44 -0
- package/dist/src/modules/v4/chain/chain.model.d.ts +43 -0
- package/dist/src/modules/v4/chain/chain.model.js +38 -0
- package/dist/src/modules/v4/chain/chain.repository.d.ts +75 -0
- package/dist/src/modules/v4/chain/chain.repository.js +70 -0
- package/dist/src/modules/v4/chain/chain.service.d.ts +55 -0
- package/dist/src/modules/v4/chain/chain.service.js +48 -0
- package/dist/src/modules/v4/chainInteraction/chainInteraction.service.d.ts +2 -0
- package/dist/src/modules/v4/chainInteraction/chainInteraction.service.js +4 -0
- package/dist/src/modules/v4/claims/claims.controller.d.ts +42 -0
- package/dist/src/modules/v4/claims/claims.controller.js +18 -0
- package/dist/src/modules/v4/claims/claims.model.d.ts +9 -0
- package/dist/src/modules/v4/claims/claims.model.js +1 -0
- package/dist/src/modules/v4/claims/claims.repository.d.ts +5 -0
- package/dist/src/modules/v4/claims/claims.repository.js +39 -0
- package/dist/src/modules/v4/claims/claims.service.d.ts +9 -0
- package/dist/src/modules/v4/claims/claims.service.js +40 -0
- package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +119 -0
- package/dist/src/modules/v4/computedValue/computedValue.controller.js +45 -0
- package/dist/src/modules/v4/computedValue/computedValue.model.d.ts +27 -0
- package/dist/src/modules/v4/computedValue/computedValue.model.js +30 -0
- package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +16 -0
- package/dist/src/modules/v4/computedValue/computedValue.repository.js +48 -0
- package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +16 -0
- package/dist/src/modules/v4/computedValue/computedValue.service.js +25 -0
- package/dist/src/modules/v4/computedValue/index.d.ts +2 -0
- package/dist/src/modules/v4/computedValue/index.js +2 -0
- package/dist/src/modules/v4/creator/creator.controller.d.ts +118 -0
- package/dist/src/modules/v4/creator/creator.controller.js +30 -0
- package/dist/src/modules/v4/creator/creator.model.d.ts +29 -0
- package/dist/src/modules/v4/creator/creator.model.js +18 -0
- package/dist/src/modules/v4/creator/creator.repository.d.ts +40 -0
- package/dist/src/modules/v4/creator/creator.repository.js +63 -0
- package/dist/src/modules/v4/creator/creator.service.d.ts +61 -0
- package/dist/src/modules/v4/creator/creator.service.js +44 -0
- package/dist/src/modules/v4/creator/index.d.ts +3 -0
- package/dist/src/modules/v4/creator/index.js +3 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.d.ts +49 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.js +19 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.model.d.ts +60 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.model.js +54 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.repository.d.ts +0 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.repository.js +1 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +14 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +131 -0
- package/dist/src/modules/v4/enso/enso.model.d.ts +166 -0
- package/dist/src/modules/v4/enso/enso.model.js +147 -0
- package/dist/src/modules/v4/enso/enso.service.d.ts +69 -0
- package/dist/src/modules/v4/enso/enso.service.js +116 -0
- package/dist/src/modules/v4/explorer/explorer.controller.d.ts +45 -0
- package/dist/src/modules/v4/explorer/explorer.controller.js +13 -0
- package/dist/src/modules/v4/explorer/explorer.model.d.ts +16 -0
- package/dist/src/modules/v4/explorer/explorer.model.js +8 -0
- package/dist/src/modules/v4/explorer/explorer.repository.d.ts +21 -0
- package/dist/src/modules/v4/explorer/explorer.repository.js +23 -0
- package/dist/src/modules/v4/explorer/explorer.service.d.ts +28 -0
- package/dist/src/modules/v4/explorer/explorer.service.js +24 -0
- package/dist/src/modules/v4/interaction/interaction.controller.d.ts +97 -0
- package/dist/src/modules/v4/interaction/interaction.controller.js +40 -0
- package/dist/src/modules/v4/interaction/interaction.model.d.ts +110 -0
- package/dist/src/modules/v4/interaction/interaction.model.js +25 -0
- package/dist/src/modules/v4/interaction/interaction.service.d.ts +38 -0
- package/dist/src/modules/v4/interaction/interaction.service.js +95 -0
- package/dist/src/modules/v4/kyberzap/kyberzap.model.d.ts +114 -0
- package/dist/src/modules/v4/kyberzap/kyberzap.model.js +83 -0
- package/dist/src/modules/v4/kyberzap/kyberzap.service.d.ts +34 -0
- package/dist/src/modules/v4/kyberzap/kyberzap.service.js +176 -0
- package/dist/src/modules/v4/liquidity/implementations/AjnaPositionFetcher.d.ts +6 -0
- package/dist/src/modules/v4/liquidity/implementations/AjnaPositionFetcher.js +90 -0
- package/dist/src/modules/v4/liquidity/implementations/BadgerPositionFetcher.d.ts +6 -0
- package/dist/src/modules/v4/liquidity/implementations/BadgerPositionFetcher.js +69 -0
- package/dist/src/modules/v4/liquidity/implementations/ClammPositionFetcher.d.ts +6 -0
- package/dist/src/modules/v4/liquidity/implementations/ClammPositionFetcher.js +61 -0
- package/dist/src/modules/v4/liquidity/implementations/DolomitePositionFetcher.d.ts +6 -0
- package/dist/src/modules/v4/liquidity/implementations/DolomitePositionFetcher.js +45 -0
- package/dist/src/modules/v4/liquidity/implementations/ERC20PositionFetcher.d.ts +6 -0
- package/dist/src/modules/v4/liquidity/implementations/ERC20PositionFetcher.js +47 -0
- package/dist/src/modules/v4/liquidity/implementations/EulerPositionFetcher.d.ts +6 -0
- package/dist/src/modules/v4/liquidity/implementations/EulerPositionFetcher.js +40 -0
- package/dist/src/modules/v4/liquidity/liquidity.controller.d.ts +39 -0
- package/dist/src/modules/v4/liquidity/liquidity.controller.js +16 -0
- package/dist/src/modules/v4/liquidity/liquidity.model.d.ts +25 -0
- package/dist/src/modules/v4/liquidity/liquidity.model.js +5 -0
- package/dist/src/modules/v4/liquidity/liquidity.repository.d.ts +14 -0
- package/dist/src/modules/v4/liquidity/liquidity.repository.js +6 -0
- package/dist/src/modules/v4/liquidity/liquidity.service.d.ts +5 -0
- package/dist/src/modules/v4/liquidity/liquidity.service.js +34 -0
- package/dist/src/modules/v4/merklRoot/index.d.ts +3 -0
- package/dist/src/modules/v4/merklRoot/index.js +3 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.d.ts +93 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.js +31 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.model.d.ts +13 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.model.js +12 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.repository.d.ts +29 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.repository.js +35 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.service.d.ts +46 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.service.js +44 -0
- package/dist/src/modules/v4/opportunity/index.d.ts +3 -0
- package/dist/src/modules/v4/opportunity/index.js +3 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +958 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.js +155 -0
- package/dist/src/modules/v4/opportunity/opportunity.converter.d.ts +10 -0
- package/dist/src/modules/v4/opportunity/opportunity.converter.js +174 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +357 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +112 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +985 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +430 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +982 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.js +302 -0
- package/dist/src/modules/v4/opportunity/transform-id.pipe.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/transform-id.pipe.js +6 -0
- package/dist/src/modules/v4/opportunity/validate-id.pipe.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/validate-id.pipe.js +12 -0
- package/dist/src/modules/v4/price/index.d.ts +3 -0
- package/dist/src/modules/v4/price/index.js +3 -0
- package/dist/src/modules/v4/price/price.controller.d.ts +185 -0
- package/dist/src/modules/v4/price/price.controller.js +55 -0
- package/dist/src/modules/v4/price/price.model.d.ts +32 -0
- package/dist/src/modules/v4/price/price.model.js +12 -0
- package/dist/src/modules/v4/price/price.repository.d.ts +36 -0
- package/dist/src/modules/v4/price/price.repository.js +22 -0
- package/dist/src/modules/v4/price/price.service.d.ts +40 -0
- package/dist/src/modules/v4/price/price.service.js +44 -0
- package/dist/src/modules/v4/prisma/index.d.ts +32 -0
- package/dist/src/modules/v4/prisma/index.js +1 -0
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +281 -0
- package/dist/src/modules/v4/programPayload/programPayload.controller.js +85 -0
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +262 -0
- package/dist/src/modules/v4/programPayload/programPayload.model.js +176 -0
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +926 -0
- package/dist/src/modules/v4/programPayload/programPayload.repository.js +5418 -0
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +26 -0
- package/dist/src/modules/v4/programPayload/programPayload.service.js +218 -0
- package/dist/src/modules/v4/protocol/protocol.controller.d.ts +155 -0
- package/dist/src/modules/v4/protocol/protocol.controller.js +38 -0
- package/dist/src/modules/v4/protocol/protocol.model.d.ts +55 -0
- package/dist/src/modules/v4/protocol/protocol.model.js +115 -0
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +79 -0
- package/dist/src/modules/v4/protocol/protocol.repository.js +81 -0
- package/dist/src/modules/v4/protocol/protocol.service.d.ts +24 -0
- package/dist/src/modules/v4/protocol/protocol.service.js +62 -0
- package/dist/src/modules/v4/referral/referral.controller.d.ts +82 -0
- package/dist/src/modules/v4/referral/referral.controller.js +25 -0
- package/dist/src/modules/v4/referral/referral.model.d.ts +10 -0
- package/dist/src/modules/v4/referral/referral.model.js +12 -0
- package/dist/src/modules/v4/referral/referral.service.d.ts +216 -0
- package/dist/src/modules/v4/referral/referral.service.js +171 -0
- package/dist/src/modules/v4/reward/index.d.ts +2 -0
- package/dist/src/modules/v4/reward/index.js +2 -0
- package/dist/src/modules/v4/reward/reward.controller.d.ts +338 -0
- package/dist/src/modules/v4/reward/reward.controller.js +124 -0
- package/dist/src/modules/v4/reward/reward.converter.d.ts +14 -0
- package/dist/src/modules/v4/reward/reward.converter.js +124 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +240 -0
- package/dist/src/modules/v4/reward/reward.model.js +159 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +156 -0
- package/dist/src/modules/v4/reward/reward.repository.js +305 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +595 -0
- package/dist/src/modules/v4/reward/reward.service.js +347 -0
- package/dist/src/modules/v4/router.d.ts +4375 -0
- package/dist/src/modules/v4/router.js +76 -0
- package/dist/src/modules/v4/status/status.controller.d.ts +239 -0
- package/dist/src/modules/v4/status/status.controller.js +68 -0
- package/dist/src/modules/v4/status/status.model.d.ts +63 -0
- package/dist/src/modules/v4/status/status.model.js +34 -0
- package/dist/src/modules/v4/status/status.repository.d.ts +104 -0
- package/dist/src/modules/v4/status/status.repository.js +146 -0
- package/dist/src/modules/v4/status/status.service.d.ts +88 -0
- package/dist/src/modules/v4/status/status.service.js +144 -0
- package/dist/src/modules/v4/token/token.controller.d.ts +360 -0
- package/dist/src/modules/v4/token/token.controller.js +108 -0
- package/dist/src/modules/v4/token/token.model.d.ts +113 -0
- package/dist/src/modules/v4/token/token.model.js +74 -0
- package/dist/src/modules/v4/token/token.repository.d.ts +114 -0
- package/dist/src/modules/v4/token/token.repository.js +169 -0
- package/dist/src/modules/v4/token/token.service.d.ts +266 -0
- package/dist/src/modules/v4/token/token.service.js +422 -0
- package/dist/src/modules/v4/tracer/index.d.ts +1 -0
- package/dist/src/modules/v4/tracer/index.js +1 -0
- package/dist/src/modules/v4/tracer/tracer.service.d.ts +3 -0
- package/dist/src/modules/v4/tracer/tracer.service.js +30 -0
- package/dist/src/modules/v4/tvl/index.d.ts +2 -0
- package/dist/src/modules/v4/tvl/index.js +2 -0
- package/dist/src/modules/v4/tvl/tvl.model.d.ts +39 -0
- package/dist/src/modules/v4/tvl/tvl.model.js +15 -0
- package/dist/src/modules/v4/tvl/tvl.service.d.ts +6 -0
- package/dist/src/modules/v4/tvl/tvl.service.js +49 -0
- package/dist/src/modules/v4/uniswapV4/index.d.ts +4 -0
- package/dist/src/modules/v4/uniswapV4/index.js +4 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.controller.d.ts +53 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.controller.js +12 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.model.d.ts +24 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.model.js +17 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.repository.d.ts +13 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.repository.js +12 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.service.d.ts +22 -0
- package/dist/src/modules/v4/uniswapV4/uniswapV4.service.js +247 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +408 -0
- package/dist/src/modules/v4/user/user.controller.js +89 -0
- package/dist/src/modules/v4/user/user.model.d.ts +70 -0
- package/dist/src/modules/v4/user/user.model.js +67 -0
- package/dist/src/modules/v4/user/user.repository.d.ts +29 -0
- package/dist/src/modules/v4/user/user.repository.js +38 -0
- package/dist/src/modules/v4/user/user.service.d.ts +31 -0
- package/dist/src/modules/v4/user/user.service.js +67 -0
- package/dist/src/plugins/error-handling.plugin.d.ts +29 -0
- package/dist/src/plugins/error-handling.plugin.js +34 -0
- package/dist/src/routes/v1/allowances.d.ts +67 -0
- package/dist/src/routes/v1/allowances.js +115 -0
- package/dist/src/routes/v1/balances.d.ts +50 -0
- package/dist/src/routes/v1/balances.js +25 -0
- package/dist/src/routes/v1/prices.d.ts +42 -0
- package/dist/src/routes/v1/prices.js +9 -0
- package/dist/src/routes/v1/router.d.ts +102 -0
- package/dist/src/routes/v1/router.js +6 -0
- package/dist/src/routes/v1/tokens.d.ts +45 -0
- package/dist/src/routes/v1/tokens.js +17 -0
- package/dist/src/routes/v2/merkl.d.ts +55 -0
- package/dist/src/routes/v2/merkl.js +13 -0
- package/dist/src/routes/v2/router.d.ts +46 -0
- package/dist/src/routes/v2/router.js +3 -0
- package/dist/src/routes/v3/app.d.ts +48 -0
- package/dist/src/routes/v3/app.js +38 -0
- package/dist/src/routes/v3/blacklist.d.ts +45 -0
- package/dist/src/routes/v3/blacklist.js +19 -0
- package/dist/src/routes/v3/campaign/delay.d.ts +49 -0
- package/dist/src/routes/v3/campaign/delay.js +81 -0
- package/dist/src/routes/v3/campaignClaims.d.ts +48 -0
- package/dist/src/routes/v3/campaignClaims.js +29 -0
- package/dist/src/routes/v3/campaignUnclaimed.d.ts +47 -0
- package/dist/src/routes/v3/campaignUnclaimed.js +28 -0
- package/dist/src/routes/v3/campaigns.d.ts +58 -0
- package/dist/src/routes/v3/campaigns.js +136 -0
- package/dist/src/routes/v3/campaignsForMainParameter.d.ts +54 -0
- package/dist/src/routes/v3/campaignsForMainParameter.js +33 -0
- package/dist/src/routes/v3/campaignsRewardsReport.d.ts +47 -0
- package/dist/src/routes/v3/campaignsRewardsReport.js +48 -0
- package/dist/src/routes/v3/claims.d.ts +48 -0
- package/dist/src/routes/v3/claims.js +16 -0
- package/dist/src/routes/v3/compoundV2.d.ts +42 -0
- package/dist/src/routes/v3/compoundV2.js +9 -0
- package/dist/src/routes/v3/createCampaign.d.ts +47 -0
- package/dist/src/routes/v3/createCampaign.js +66 -0
- package/dist/src/routes/v3/dolomite.d.ts +46 -0
- package/dist/src/routes/v3/dolomite.js +12 -0
- package/dist/src/routes/v3/euler.d.ts +53 -0
- package/dist/src/routes/v3/euler.js +17 -0
- package/dist/src/routes/v3/fetch.d.ts +46 -0
- package/dist/src/routes/v3/fetch.js +27 -0
- package/dist/src/routes/v3/health.d.ts +40 -0
- package/dist/src/routes/v3/health.js +13 -0
- package/dist/src/routes/v3/lostyield.d.ts +53 -0
- package/dist/src/routes/v3/lostyield.js +101 -0
- package/dist/src/routes/v3/merkl.d.ts +88 -0
- package/dist/src/routes/v3/merkl.js +119 -0
- package/dist/src/routes/v3/morphoMarkets.d.ts +62 -0
- package/dist/src/routes/v3/morphoMarkets.js +27 -0
- package/dist/src/routes/v3/morphoVaults.d.ts +52 -0
- package/dist/src/routes/v3/morphoVaults.js +22 -0
- package/dist/src/routes/v3/multiChainPositions.d.ts +45 -0
- package/dist/src/routes/v3/multiChainPositions.js +70 -0
- package/dist/src/routes/v3/opportunity.d.ts +52 -0
- package/dist/src/routes/v3/opportunity.js +28 -0
- package/dist/src/routes/v3/overview.d.ts +78 -0
- package/dist/src/routes/v3/overview.js +72 -0
- package/dist/src/routes/v3/parse.d.ts +47 -0
- package/dist/src/routes/v3/parse.js +23 -0
- package/dist/src/routes/v3/payload.d.ts +58 -0
- package/dist/src/routes/v3/payload.js +40 -0
- package/dist/src/routes/v3/poolInfo.d.ts +43 -0
- package/dist/src/routes/v3/poolInfo.js +88 -0
- package/dist/src/routes/v3/positions.d.ts +62 -0
- package/dist/src/routes/v3/positions.js +62 -0
- package/dist/src/routes/v3/radiant.d.ts +56 -0
- package/dist/src/routes/v3/radiant.js +26 -0
- package/dist/src/routes/v3/recipients.d.ts +46 -0
- package/dist/src/routes/v3/recipients.js +29 -0
- package/dist/src/routes/v3/rewards.d.ts +73 -0
- package/dist/src/routes/v3/rewards.js +36 -0
- package/dist/src/routes/v3/rewardsReport.d.ts +56 -0
- package/dist/src/routes/v3/rewardsReport.js +40 -0
- package/dist/src/routes/v3/router.d.ts +752 -0
- package/dist/src/routes/v3/router.js +70 -0
- package/dist/src/routes/v3/silo.d.ts +53 -0
- package/dist/src/routes/v3/silo.js +20 -0
- package/dist/src/routes/v3/token.d.ts +51 -0
- package/dist/src/routes/v3/token.js +24 -0
- package/dist/src/routes/v3/twt/participants.d.ts +41 -0
- package/dist/src/routes/v3/twt/participants.js +63 -0
- package/dist/src/routes/v3/uniswapv4.d.ts +42 -0
- package/dist/src/routes/v3/uniswapv4.js +9 -0
- package/dist/src/routes/v3/updates.d.ts +53 -0
- package/dist/src/routes/v3/updates.js +47 -0
- package/dist/src/routes/v3/userRewards.d.ts +69 -0
- package/dist/src/routes/v3/userRewards.js +62 -0
- package/dist/src/types/external/spectraAPI.d.ts +88 -0
- package/dist/src/types/external/spectraAPI.js +1 -0
- package/dist/src/types/index.d.ts +20 -0
- package/dist/src/types/index.js +1 -0
- package/dist/src/types/returnTypes.d.ts +19 -0
- package/dist/src/types/returnTypes.js +1 -0
- package/dist/src/types/utils.d.ts +5 -0
- package/dist/src/types/utils.js +1 -0
- package/dist/src/utils/bigintToString.d.ts +1 -0
- package/dist/src/utils/bigintToString.js +20 -0
- package/dist/src/utils/caseChanges.d.ts +3 -0
- package/dist/src/utils/caseChanges.js +12 -0
- package/dist/src/utils/decodeCalls.d.ts +3 -0
- package/dist/src/utils/decodeCalls.js +306 -0
- package/dist/src/utils/encodeCalls.d.ts +3 -0
- package/dist/src/utils/encodeCalls.js +490 -0
- package/dist/src/utils/error.d.ts +60 -0
- package/dist/src/utils/error.js +102 -0
- package/dist/src/utils/execute.d.ts +22 -0
- package/dist/src/utils/execute.js +117 -0
- package/dist/src/utils/generateCardName.d.ts +6 -0
- package/dist/src/utils/generateCardName.js +198 -0
- package/dist/src/utils/generateIcons.d.ts +3 -0
- package/dist/src/utils/generateIcons.js +65 -0
- package/dist/src/utils/generic.d.ts +7 -0
- package/dist/src/utils/generic.js +43 -0
- package/dist/src/utils/hashArray.d.ts +2 -0
- package/dist/src/utils/hashArray.js +7 -0
- package/dist/src/utils/lastBlockBefore.d.ts +3 -0
- package/dist/src/utils/lastBlockBefore.js +78 -0
- package/dist/src/utils/logger.d.ts +62 -0
- package/dist/src/utils/logger.js +52 -0
- package/dist/src/utils/pricer.d.ts +54 -0
- package/dist/src/utils/pricer.js +189 -0
- package/dist/src/utils/prices/chainlinkRead.d.ts +4 -0
- package/dist/src/utils/prices/chainlinkRead.js +8 -0
- package/dist/src/utils/prices/curveVirtualPrice.d.ts +4 -0
- package/dist/src/utils/prices/curveVirtualPrice.js +7 -0
- package/dist/src/utils/prices/getDQUICK.d.ts +4 -0
- package/dist/src/utils/prices/getDQUICK.js +8 -0
- package/dist/src/utils/prices/priceFetcherFactory.d.ts +10 -0
- package/dist/src/utils/prices/priceFetcherFactory.js +29 -0
- package/dist/src/utils/prices/priceService.d.ts +13 -0
- package/dist/src/utils/prices/priceService.js +308 -0
- package/dist/src/utils/prices/services/coinGeckoService.d.ts +12 -0
- package/dist/src/utils/prices/services/coinGeckoService.js +61 -0
- package/dist/src/utils/prices/services/defillamaService.d.ts +12 -0
- package/dist/src/utils/prices/services/defillamaService.js +53 -0
- package/dist/src/utils/prices/services/dexScreenerService.d.ts +12 -0
- package/dist/src/utils/prices/services/dexScreenerService.js +62 -0
- package/dist/src/utils/prices/services/erc4626Service.d.ts +9 -0
- package/dist/src/utils/prices/services/erc4626Service.js +38 -0
- package/dist/src/utils/prices/services/getERC4626.d.ts +4 -0
- package/dist/src/utils/prices/services/getERC4626.js +11 -0
- package/dist/src/utils/prices/services/indexCoopService.d.ts +12 -0
- package/dist/src/utils/prices/services/indexCoopService.js +55 -0
- package/dist/src/utils/prices/services/priceFetcher.d.ts +8 -0
- package/dist/src/utils/prices/services/priceFetcher.js +1 -0
- package/dist/src/utils/prices/uniV2Price.d.ts +7 -0
- package/dist/src/utils/prices/uniV2Price.js +40 -0
- package/dist/src/utils/providers.d.ts +13 -0
- package/dist/src/utils/providers.js +37 -0
- package/dist/src/utils/queries/allCampaigns.d.ts +2 -0
- package/dist/src/utils/queries/allCampaigns.js +12 -0
- package/dist/src/utils/stryke.d.ts +2 -0
- package/dist/src/utils/stryke.js +4 -0
- package/dist/src/utils/throw.d.ts +21 -0
- package/dist/src/utils/throw.js +44 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -0
- package/package.json +109 -0
|
@@ -0,0 +1,868 @@
|
|
|
1
|
+
import { relations } from 'drizzle-orm';
|
|
2
|
+
import { bigint, boolean, doublePrecision, foreignKey, integer, jsonb, pgEnum, pgTable, serial, text, timestamp, uniqueIndex } from 'drizzle-orm/pg-core';
|
|
3
|
+
export const LoggedEntityType = pgEnum('LoggedEntityType', ['UNKNOWN', 'EULER_VAULT', 'UNISWAP_V4', 'COMPOUND_v2']);
|
|
4
|
+
export const RunStatus = pgEnum('RunStatus', ['PROCESSING', 'SUCCESS', 'FAILED', 'SKIPPED']);
|
|
5
|
+
export const OpportunityAction = pgEnum('OpportunityAction', ['POOL', 'HOLD', 'DROP', 'LEND', 'BORROW', 'LONG', 'SHORT', 'SWAP', 'INVALID']);
|
|
6
|
+
export const Status = pgEnum('Status', ['NONE', 'PAST', 'LIVE', 'SOON']);
|
|
7
|
+
export const ExplorerType = pgEnum('ExplorerType', ['ETHERSCAN', 'BLOCKSCOUT']);
|
|
8
|
+
export const AprType = pgEnum('AprType', ['CAMPAIGN', 'TOKEN', 'PROTOCOL']);
|
|
9
|
+
export const TvlType = pgEnum('TvlType', ['TOKEN', 'PROTOCOL']);
|
|
10
|
+
export const PriceSourceMethod = pgEnum('PriceSourceMethod', ['COINGECKO', 'CONSTANT', 'EQUAL_TO', 'ERC4626', 'DEXSCREENER', 'INDEXCOOP', 'DEFILLAMA']);
|
|
11
|
+
export const CampaignManualOverride = pgEnum('CampaignManualOverride', ['opportunityId', 'creatorAddress']);
|
|
12
|
+
export const OpportunityManualOverride = pgEnum('OpportunityManualOverride', ['identifier', 'name', 'depositUrl', 'action', 'mainProtocolId']);
|
|
13
|
+
export const DistributionType = pgEnum('DistributionType', ['DUTCH_AUCTION', 'FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE', 'FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE', 'FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT', 'FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT']);
|
|
14
|
+
export const Campaign = pgTable('Campaign', {
|
|
15
|
+
id: text('id').notNull().primaryKey(),
|
|
16
|
+
computeChainId: integer('computeChainId').notNull(),
|
|
17
|
+
distributionChainId: integer('distributionChainId').notNull(),
|
|
18
|
+
campaignId: text('campaignId').notNull(),
|
|
19
|
+
type: text('type').notNull(),
|
|
20
|
+
subType: integer('subType'),
|
|
21
|
+
rewardTokenId: text('rewardTokenId').notNull(),
|
|
22
|
+
amount: text('amount').notNull(),
|
|
23
|
+
opportunityId: text('opportunityId').notNull(),
|
|
24
|
+
startTimestamp: bigint('startTimestamp', { mode: 'bigint' }).notNull(),
|
|
25
|
+
endTimestamp: bigint('endTimestamp', { mode: 'bigint' }).notNull(),
|
|
26
|
+
params: jsonb('params').notNull(),
|
|
27
|
+
creatorAddress: text('creatorAddress').notNull(),
|
|
28
|
+
manualOverrides: CampaignManualOverride('manualOverrides').array().notNull().default([]),
|
|
29
|
+
createdAt: timestamp('createdAt', { precision: 3 }).notNull().defaultNow()
|
|
30
|
+
}, (Campaign) => ({
|
|
31
|
+
'Campaign_ComputeChain_fkey': foreignKey({
|
|
32
|
+
name: 'Campaign_ComputeChain_fkey',
|
|
33
|
+
columns: [Campaign.computeChainId],
|
|
34
|
+
foreignColumns: [Chain.id]
|
|
35
|
+
})
|
|
36
|
+
.onDelete('cascade')
|
|
37
|
+
.onUpdate('cascade'),
|
|
38
|
+
'Campaign_DistributionChain_fkey': foreignKey({
|
|
39
|
+
name: 'Campaign_DistributionChain_fkey',
|
|
40
|
+
columns: [Campaign.distributionChainId],
|
|
41
|
+
foreignColumns: [Chain.id]
|
|
42
|
+
})
|
|
43
|
+
.onDelete('cascade')
|
|
44
|
+
.onUpdate('cascade'),
|
|
45
|
+
'Campaign_RewardToken_fkey': foreignKey({
|
|
46
|
+
name: 'Campaign_RewardToken_fkey',
|
|
47
|
+
columns: [Campaign.rewardTokenId],
|
|
48
|
+
foreignColumns: [Token.id]
|
|
49
|
+
})
|
|
50
|
+
.onDelete('cascade')
|
|
51
|
+
.onUpdate('cascade'),
|
|
52
|
+
'Campaign_Opportunity_fkey': foreignKey({
|
|
53
|
+
name: 'Campaign_Opportunity_fkey',
|
|
54
|
+
columns: [Campaign.opportunityId],
|
|
55
|
+
foreignColumns: [Opportunity.id]
|
|
56
|
+
})
|
|
57
|
+
.onDelete('cascade')
|
|
58
|
+
.onUpdate('cascade'),
|
|
59
|
+
'Campaign_Creator_fkey': foreignKey({
|
|
60
|
+
name: 'Campaign_Creator_fkey',
|
|
61
|
+
columns: [Campaign.creatorAddress],
|
|
62
|
+
foreignColumns: [User.address]
|
|
63
|
+
})
|
|
64
|
+
.onDelete('cascade')
|
|
65
|
+
.onUpdate('cascade'),
|
|
66
|
+
'Campaign_distributionChainId_campaignId_unique_idx': uniqueIndex('Campaign_distributionChainId_campaignId_key')
|
|
67
|
+
.on(Campaign.distributionChainId, Campaign.campaignId)
|
|
68
|
+
}));
|
|
69
|
+
export const CampaignStatus = pgTable('CampaignStatus', {
|
|
70
|
+
campaignId: text('campaignId').notNull().primaryKey(),
|
|
71
|
+
computedUntil: bigint('computedUntil', { mode: 'bigint' }).notNull(),
|
|
72
|
+
processingStarted: bigint('processingStarted', { mode: 'bigint' }).notNull(),
|
|
73
|
+
status: RunStatus('status').notNull().default("SUCCESS"),
|
|
74
|
+
error: text('error').notNull(),
|
|
75
|
+
details: jsonb('details').notNull().default("{}")
|
|
76
|
+
}, (CampaignStatus) => ({
|
|
77
|
+
'CampaignStatus_Campaign_fkey': foreignKey({
|
|
78
|
+
name: 'CampaignStatus_Campaign_fkey',
|
|
79
|
+
columns: [CampaignStatus.campaignId],
|
|
80
|
+
foreignColumns: [Campaign.id]
|
|
81
|
+
})
|
|
82
|
+
.onDelete('cascade')
|
|
83
|
+
.onUpdate('cascade')
|
|
84
|
+
}));
|
|
85
|
+
export const CampaignComputedValue = pgTable('CampaignComputedValue', {
|
|
86
|
+
campaignId: text('campaignId').notNull().primaryKey(),
|
|
87
|
+
averageBoost: doublePrecision('averageBoost'),
|
|
88
|
+
totalDistributedInUSD: doublePrecision('totalDistributedInUSD'),
|
|
89
|
+
forfeitingBoost: doublePrecision('forfeitingBoost')
|
|
90
|
+
}, (CampaignComputedValue) => ({
|
|
91
|
+
'CampaignComputedValue_Campaign_fkey': foreignKey({
|
|
92
|
+
name: 'CampaignComputedValue_Campaign_fkey',
|
|
93
|
+
columns: [CampaignComputedValue.campaignId],
|
|
94
|
+
foreignColumns: [Campaign.id]
|
|
95
|
+
})
|
|
96
|
+
.onDelete('cascade')
|
|
97
|
+
.onUpdate('cascade')
|
|
98
|
+
}));
|
|
99
|
+
export const UserComputedValue = pgTable('UserComputedValue', {
|
|
100
|
+
id: serial('id').notNull().primaryKey(),
|
|
101
|
+
campaignId: text('campaignId').notNull(),
|
|
102
|
+
address: text('address').notNull(),
|
|
103
|
+
reason: text('reason').notNull(),
|
|
104
|
+
boost: doublePrecision('boost')
|
|
105
|
+
}, (UserComputedValue) => ({
|
|
106
|
+
'UserComputedValue_Campaign_fkey': foreignKey({
|
|
107
|
+
name: 'UserComputedValue_Campaign_fkey',
|
|
108
|
+
columns: [UserComputedValue.campaignId],
|
|
109
|
+
foreignColumns: [Campaign.id]
|
|
110
|
+
})
|
|
111
|
+
.onDelete('cascade')
|
|
112
|
+
.onUpdate('cascade'),
|
|
113
|
+
'UserComputedValue_User_fkey': foreignKey({
|
|
114
|
+
name: 'UserComputedValue_User_fkey',
|
|
115
|
+
columns: [UserComputedValue.address],
|
|
116
|
+
foreignColumns: [User.address]
|
|
117
|
+
})
|
|
118
|
+
.onDelete('cascade')
|
|
119
|
+
.onUpdate('cascade'),
|
|
120
|
+
'UserComputedValue_campaignId_address_reason_unique_idx': uniqueIndex('UserComputedValue_campaignId_address_reason_key')
|
|
121
|
+
.on(UserComputedValue.campaignId, UserComputedValue.address, UserComputedValue.reason)
|
|
122
|
+
}));
|
|
123
|
+
export const Chain = pgTable('Chain', {
|
|
124
|
+
id: integer('id').notNull().primaryKey(),
|
|
125
|
+
name: text('name').notNull(),
|
|
126
|
+
icon: text('icon').notNull()
|
|
127
|
+
});
|
|
128
|
+
export const Explorer = pgTable('Explorer', {
|
|
129
|
+
id: text('id').notNull().primaryKey(),
|
|
130
|
+
type: ExplorerType('type').notNull(),
|
|
131
|
+
url: text('url').notNull(),
|
|
132
|
+
chainId: integer('chainId').notNull()
|
|
133
|
+
}, (Explorer) => ({
|
|
134
|
+
'Explorer_Chain_fkey': foreignKey({
|
|
135
|
+
name: 'Explorer_Chain_fkey',
|
|
136
|
+
columns: [Explorer.chainId],
|
|
137
|
+
foreignColumns: [Chain.id]
|
|
138
|
+
})
|
|
139
|
+
.onDelete('cascade')
|
|
140
|
+
.onUpdate('cascade'),
|
|
141
|
+
'Explorer_type_chainId_unique_idx': uniqueIndex('Explorer_type_chainId_key')
|
|
142
|
+
.on(Explorer.type, Explorer.chainId)
|
|
143
|
+
}));
|
|
144
|
+
export const Opportunity = pgTable('Opportunity', {
|
|
145
|
+
id: text('id').notNull().primaryKey(),
|
|
146
|
+
chainId: integer('chainId').notNull(),
|
|
147
|
+
type: text('type').notNull(),
|
|
148
|
+
identifier: text('identifier').notNull(),
|
|
149
|
+
name: text('name').notNull(),
|
|
150
|
+
depositUrl: text('depositUrl'),
|
|
151
|
+
status: Status('status').notNull(),
|
|
152
|
+
action: OpportunityAction('action').notNull(),
|
|
153
|
+
mainProtocolId: text('mainProtocolId'),
|
|
154
|
+
tvl: doublePrecision('tvl').notNull(),
|
|
155
|
+
apr: doublePrecision('apr').notNull(),
|
|
156
|
+
dailyRewards: doublePrecision('dailyRewards').notNull(),
|
|
157
|
+
tags: text('tags').array().notNull().default([])
|
|
158
|
+
}, (Opportunity) => ({
|
|
159
|
+
'Opportunity_Chain_fkey': foreignKey({
|
|
160
|
+
name: 'Opportunity_Chain_fkey',
|
|
161
|
+
columns: [Opportunity.chainId],
|
|
162
|
+
foreignColumns: [Chain.id]
|
|
163
|
+
})
|
|
164
|
+
.onDelete('cascade')
|
|
165
|
+
.onUpdate('cascade'),
|
|
166
|
+
'Opportunity_MainProtocol_fkey': foreignKey({
|
|
167
|
+
name: 'Opportunity_MainProtocol_fkey',
|
|
168
|
+
columns: [Opportunity.mainProtocolId],
|
|
169
|
+
foreignColumns: [Protocol.id]
|
|
170
|
+
})
|
|
171
|
+
.onDelete('cascade')
|
|
172
|
+
.onUpdate('cascade'),
|
|
173
|
+
'Opportunity_chainId_type_identifier_unique_idx': uniqueIndex('Opportunity_chainId_type_identifier_key')
|
|
174
|
+
.on(Opportunity.chainId, Opportunity.type, Opportunity.identifier)
|
|
175
|
+
}));
|
|
176
|
+
export const Protocol = pgTable('Protocol', {
|
|
177
|
+
id: text('id').notNull().primaryKey(),
|
|
178
|
+
tags: text('tags').array().notNull().default([]),
|
|
179
|
+
name: text('name').notNull(),
|
|
180
|
+
description: text('description').notNull(),
|
|
181
|
+
url: text('url').notNull(),
|
|
182
|
+
icon: text('icon').notNull()
|
|
183
|
+
});
|
|
184
|
+
export const Token = pgTable('Token', {
|
|
185
|
+
id: text('id').notNull().primaryKey(),
|
|
186
|
+
name: text('name'),
|
|
187
|
+
chainId: integer('chainId').notNull(),
|
|
188
|
+
address: text('address').notNull(),
|
|
189
|
+
decimals: integer('decimals').notNull(),
|
|
190
|
+
symbol: text('symbol').notNull(),
|
|
191
|
+
displaySymbol: text('displaySymbol').notNull(),
|
|
192
|
+
icon: text('icon').notNull(),
|
|
193
|
+
verified: boolean('verified').notNull(),
|
|
194
|
+
isTest: boolean('isTest').notNull(),
|
|
195
|
+
isPoint: boolean('isPoint').notNull(),
|
|
196
|
+
isNative: boolean('isNative').notNull(),
|
|
197
|
+
price: doublePrecision('price')
|
|
198
|
+
}, (Token) => ({
|
|
199
|
+
'Token_Chain_fkey': foreignKey({
|
|
200
|
+
name: 'Token_Chain_fkey',
|
|
201
|
+
columns: [Token.chainId],
|
|
202
|
+
foreignColumns: [Chain.id]
|
|
203
|
+
})
|
|
204
|
+
.onDelete('cascade')
|
|
205
|
+
.onUpdate('cascade'),
|
|
206
|
+
'Token_chainId_address_unique_idx': uniqueIndex('Token_chainId_address_key')
|
|
207
|
+
.on(Token.chainId, Token.address)
|
|
208
|
+
}));
|
|
209
|
+
export const AprRecord = pgTable('AprRecord', {
|
|
210
|
+
id: text('id').notNull().primaryKey(),
|
|
211
|
+
timestamp: bigint('timestamp', { mode: 'bigint' }).notNull(),
|
|
212
|
+
cumulated: doublePrecision('cumulated').notNull(),
|
|
213
|
+
opportunityId: text('opportunityId').notNull()
|
|
214
|
+
}, (AprRecord) => ({
|
|
215
|
+
'AprRecord_Opportunity_fkey': foreignKey({
|
|
216
|
+
name: 'AprRecord_Opportunity_fkey',
|
|
217
|
+
columns: [AprRecord.opportunityId],
|
|
218
|
+
foreignColumns: [Opportunity.id]
|
|
219
|
+
})
|
|
220
|
+
.onDelete('cascade')
|
|
221
|
+
.onUpdate('cascade'),
|
|
222
|
+
'AprRecord_opportunityId_timestamp_unique_idx': uniqueIndex('AprRecord_opportunityId_timestamp_key')
|
|
223
|
+
.on(AprRecord.opportunityId, AprRecord.timestamp)
|
|
224
|
+
}));
|
|
225
|
+
export const AprBreakdown = pgTable('AprBreakdown', {
|
|
226
|
+
id: serial('id').notNull().primaryKey(),
|
|
227
|
+
identifier: text('identifier').notNull(),
|
|
228
|
+
type: AprType('type').notNull(),
|
|
229
|
+
value: doublePrecision('value').notNull(),
|
|
230
|
+
aprRecordId: text('aprRecordId').notNull()
|
|
231
|
+
}, (AprBreakdown) => ({
|
|
232
|
+
'AprBreakdown_AprRecord_fkey': foreignKey({
|
|
233
|
+
name: 'AprBreakdown_AprRecord_fkey',
|
|
234
|
+
columns: [AprBreakdown.aprRecordId],
|
|
235
|
+
foreignColumns: [AprRecord.id]
|
|
236
|
+
})
|
|
237
|
+
.onDelete('cascade')
|
|
238
|
+
.onUpdate('cascade')
|
|
239
|
+
}));
|
|
240
|
+
export const TVLRecord = pgTable('TVLRecord', {
|
|
241
|
+
id: text('id').notNull().primaryKey(),
|
|
242
|
+
timestamp: bigint('timestamp', { mode: 'bigint' }).notNull(),
|
|
243
|
+
total: doublePrecision('total').notNull(),
|
|
244
|
+
opportunityId: text('opportunityId').notNull()
|
|
245
|
+
}, (TVLRecord) => ({
|
|
246
|
+
'TVLRecord_Opportunity_fkey': foreignKey({
|
|
247
|
+
name: 'TVLRecord_Opportunity_fkey',
|
|
248
|
+
columns: [TVLRecord.opportunityId],
|
|
249
|
+
foreignColumns: [Opportunity.id]
|
|
250
|
+
})
|
|
251
|
+
.onDelete('cascade')
|
|
252
|
+
.onUpdate('cascade'),
|
|
253
|
+
'TVLRecord_opportunityId_timestamp_unique_idx': uniqueIndex('TVLRecord_opportunityId_timestamp_key')
|
|
254
|
+
.on(TVLRecord.opportunityId, TVLRecord.timestamp)
|
|
255
|
+
}));
|
|
256
|
+
export const TVLBreakdown = pgTable('TVLBreakdown', {
|
|
257
|
+
id: serial('id').notNull().primaryKey(),
|
|
258
|
+
identifier: text('identifier').notNull(),
|
|
259
|
+
type: TvlType('type').notNull(),
|
|
260
|
+
value: doublePrecision('value').notNull(),
|
|
261
|
+
tvlRecordId: text('tvlRecordId').notNull()
|
|
262
|
+
}, (TVLBreakdown) => ({
|
|
263
|
+
'TVLBreakdown_TvlRecord_fkey': foreignKey({
|
|
264
|
+
name: 'TVLBreakdown_TvlRecord_fkey',
|
|
265
|
+
columns: [TVLBreakdown.tvlRecordId],
|
|
266
|
+
foreignColumns: [TVLRecord.id]
|
|
267
|
+
})
|
|
268
|
+
.onDelete('cascade')
|
|
269
|
+
.onUpdate('cascade')
|
|
270
|
+
}));
|
|
271
|
+
export const DailyRewardsRecord = pgTable('DailyRewardsRecord', {
|
|
272
|
+
id: text('id').notNull().primaryKey(),
|
|
273
|
+
timestamp: bigint('timestamp', { mode: 'bigint' }).notNull(),
|
|
274
|
+
total: doublePrecision('total').notNull(),
|
|
275
|
+
opportunityId: text('opportunityId').notNull()
|
|
276
|
+
}, (DailyRewardsRecord) => ({
|
|
277
|
+
'DailyRewardsRecord_Opportunity_fkey': foreignKey({
|
|
278
|
+
name: 'DailyRewardsRecord_Opportunity_fkey',
|
|
279
|
+
columns: [DailyRewardsRecord.opportunityId],
|
|
280
|
+
foreignColumns: [Opportunity.id]
|
|
281
|
+
})
|
|
282
|
+
.onDelete('cascade')
|
|
283
|
+
.onUpdate('cascade'),
|
|
284
|
+
'DailyRewardsRecord_opportunityId_timestamp_unique_idx': uniqueIndex('DailyRewardsRecord_opportunityId_timestamp_key')
|
|
285
|
+
.on(DailyRewardsRecord.opportunityId, DailyRewardsRecord.timestamp)
|
|
286
|
+
}));
|
|
287
|
+
export const DailyRewardsBreakdown = pgTable('DailyRewardsBreakdown', {
|
|
288
|
+
id: serial('id').notNull().primaryKey(),
|
|
289
|
+
value: doublePrecision('value').notNull(),
|
|
290
|
+
campaignId: text('campaignId').notNull(),
|
|
291
|
+
dailyRewardsRecordId: text('dailyRewardsRecordId').notNull()
|
|
292
|
+
}, (DailyRewardsBreakdown) => ({
|
|
293
|
+
'DailyRewardsBreakdown_Campaign_fkey': foreignKey({
|
|
294
|
+
name: 'DailyRewardsBreakdown_Campaign_fkey',
|
|
295
|
+
columns: [DailyRewardsBreakdown.campaignId],
|
|
296
|
+
foreignColumns: [Campaign.id]
|
|
297
|
+
})
|
|
298
|
+
.onDelete('cascade')
|
|
299
|
+
.onUpdate('cascade'),
|
|
300
|
+
'DailyRewardsBreakdown_DailyRewardsRecord_fkey': foreignKey({
|
|
301
|
+
name: 'DailyRewardsBreakdown_DailyRewardsRecord_fkey',
|
|
302
|
+
columns: [DailyRewardsBreakdown.dailyRewardsRecordId],
|
|
303
|
+
foreignColumns: [DailyRewardsRecord.id]
|
|
304
|
+
})
|
|
305
|
+
.onDelete('cascade')
|
|
306
|
+
.onUpdate('cascade')
|
|
307
|
+
}));
|
|
308
|
+
export const User = pgTable('User', {
|
|
309
|
+
address: text('address').notNull().primaryKey(),
|
|
310
|
+
tags: text('tags').array().notNull(),
|
|
311
|
+
creatorId: text('creatorId')
|
|
312
|
+
}, (User) => ({
|
|
313
|
+
'User_Creator_fkey': foreignKey({
|
|
314
|
+
name: 'User_Creator_fkey',
|
|
315
|
+
columns: [User.creatorId],
|
|
316
|
+
foreignColumns: [Creator.id]
|
|
317
|
+
})
|
|
318
|
+
.onDelete('cascade')
|
|
319
|
+
.onUpdate('cascade')
|
|
320
|
+
}));
|
|
321
|
+
export const Creator = pgTable('Creator', {
|
|
322
|
+
id: text('id').notNull().primaryKey(),
|
|
323
|
+
icon: text('icon'),
|
|
324
|
+
name: text('name').notNull()
|
|
325
|
+
});
|
|
326
|
+
export const Reward = pgTable('Reward', {
|
|
327
|
+
id: text('id').notNull().primaryKey(),
|
|
328
|
+
root: text('root').notNull(),
|
|
329
|
+
recipient: text('recipient').notNull(),
|
|
330
|
+
rewardTokenId: text('rewardTokenId').notNull(),
|
|
331
|
+
amount: text('amount').notNull().default("0"),
|
|
332
|
+
claimed: text('claimed').notNull().default("0"),
|
|
333
|
+
pending: text('pending').notNull().default("0"),
|
|
334
|
+
proofs: text('proofs').array().notNull()
|
|
335
|
+
}, (Reward) => ({
|
|
336
|
+
'Reward_MerklRoot_fkey': foreignKey({
|
|
337
|
+
name: 'Reward_MerklRoot_fkey',
|
|
338
|
+
columns: [Reward.root],
|
|
339
|
+
foreignColumns: [MerklRoot.root]
|
|
340
|
+
})
|
|
341
|
+
.onDelete('cascade')
|
|
342
|
+
.onUpdate('cascade'),
|
|
343
|
+
'Reward_User_fkey': foreignKey({
|
|
344
|
+
name: 'Reward_User_fkey',
|
|
345
|
+
columns: [Reward.recipient],
|
|
346
|
+
foreignColumns: [User.address]
|
|
347
|
+
})
|
|
348
|
+
.onDelete('cascade')
|
|
349
|
+
.onUpdate('cascade'),
|
|
350
|
+
'Reward_RewardToken_fkey': foreignKey({
|
|
351
|
+
name: 'Reward_RewardToken_fkey',
|
|
352
|
+
columns: [Reward.rewardTokenId],
|
|
353
|
+
foreignColumns: [Token.id]
|
|
354
|
+
})
|
|
355
|
+
.onDelete('cascade')
|
|
356
|
+
.onUpdate('cascade'),
|
|
357
|
+
'Reward_root_recipient_rewardTokenId_unique_idx': uniqueIndex('Reward_root_recipient_rewardTokenId_key')
|
|
358
|
+
.on(Reward.root, Reward.recipient, Reward.rewardTokenId)
|
|
359
|
+
}));
|
|
360
|
+
export const RewardBreakdown = pgTable('RewardBreakdown', {
|
|
361
|
+
id: serial('id').notNull().primaryKey(),
|
|
362
|
+
protocolId: text('protocolId'),
|
|
363
|
+
reason: text('reason').notNull(),
|
|
364
|
+
amount: text('amount').notNull(),
|
|
365
|
+
claimed: text('claimed').notNull(),
|
|
366
|
+
pending: text('pending').notNull(),
|
|
367
|
+
rewardId: text('rewardId').notNull(),
|
|
368
|
+
campaignId: text('campaignId').notNull()
|
|
369
|
+
}, (RewardBreakdown) => ({
|
|
370
|
+
'RewardBreakdown_Protocol_fkey': foreignKey({
|
|
371
|
+
name: 'RewardBreakdown_Protocol_fkey',
|
|
372
|
+
columns: [RewardBreakdown.protocolId],
|
|
373
|
+
foreignColumns: [Protocol.id]
|
|
374
|
+
})
|
|
375
|
+
.onDelete('cascade')
|
|
376
|
+
.onUpdate('cascade'),
|
|
377
|
+
'RewardBreakdown_Reward_fkey': foreignKey({
|
|
378
|
+
name: 'RewardBreakdown_Reward_fkey',
|
|
379
|
+
columns: [RewardBreakdown.rewardId],
|
|
380
|
+
foreignColumns: [Reward.id]
|
|
381
|
+
})
|
|
382
|
+
.onDelete('cascade')
|
|
383
|
+
.onUpdate('cascade'),
|
|
384
|
+
'RewardBreakdown_Campaign_fkey': foreignKey({
|
|
385
|
+
name: 'RewardBreakdown_Campaign_fkey',
|
|
386
|
+
columns: [RewardBreakdown.campaignId],
|
|
387
|
+
foreignColumns: [Campaign.id]
|
|
388
|
+
})
|
|
389
|
+
.onDelete('cascade')
|
|
390
|
+
.onUpdate('cascade'),
|
|
391
|
+
'RewardBreakdown_rewardId_campaignId_reason_unique_idx': uniqueIndex('RewardBreakdown_rewardId_campaignId_reason_key')
|
|
392
|
+
.on(RewardBreakdown.rewardId, RewardBreakdown.campaignId, RewardBreakdown.reason)
|
|
393
|
+
}));
|
|
394
|
+
export const MerklRoot = pgTable('MerklRoot', {
|
|
395
|
+
root: text('root').notNull().primaryKey(),
|
|
396
|
+
chainId: integer('chainId').notNull(),
|
|
397
|
+
epoch: integer('epoch').notNull(),
|
|
398
|
+
timestamp: bigint('timestamp', { mode: 'bigint' }).notNull()
|
|
399
|
+
}, (MerklRoot) => ({
|
|
400
|
+
'MerklRoot_Chain_fkey': foreignKey({
|
|
401
|
+
name: 'MerklRoot_Chain_fkey',
|
|
402
|
+
columns: [MerklRoot.chainId],
|
|
403
|
+
foreignColumns: [Chain.id]
|
|
404
|
+
})
|
|
405
|
+
.onDelete('cascade')
|
|
406
|
+
.onUpdate('cascade')
|
|
407
|
+
}));
|
|
408
|
+
export const PriceSource = pgTable('PriceSource', {
|
|
409
|
+
id: serial('id').notNull().primaryKey(),
|
|
410
|
+
symbol: text('symbol').notNull().unique(),
|
|
411
|
+
method: PriceSourceMethod('method').notNull(),
|
|
412
|
+
args: jsonb('args')
|
|
413
|
+
});
|
|
414
|
+
export const Blacklist = pgTable('Blacklist', {
|
|
415
|
+
id: text('id').notNull().primaryKey(),
|
|
416
|
+
chainId: integer('chainId').notNull(),
|
|
417
|
+
poolAddress: text('poolAddress').notNull(),
|
|
418
|
+
userAddress: text('userAddress').notNull(),
|
|
419
|
+
arrestTimestamp: bigint('arrestTimestamp', { mode: 'bigint' }).notNull(),
|
|
420
|
+
arrestDetails: jsonb('arrestDetails').notNull()
|
|
421
|
+
}, (Blacklist) => ({
|
|
422
|
+
'Blacklist_Chain_fkey': foreignKey({
|
|
423
|
+
name: 'Blacklist_Chain_fkey',
|
|
424
|
+
columns: [Blacklist.chainId],
|
|
425
|
+
foreignColumns: [Chain.id]
|
|
426
|
+
})
|
|
427
|
+
.onDelete('cascade')
|
|
428
|
+
.onUpdate('cascade'),
|
|
429
|
+
'Blacklist_User_fkey': foreignKey({
|
|
430
|
+
name: 'Blacklist_User_fkey',
|
|
431
|
+
columns: [Blacklist.userAddress],
|
|
432
|
+
foreignColumns: [User.address]
|
|
433
|
+
})
|
|
434
|
+
.onDelete('cascade')
|
|
435
|
+
.onUpdate('cascade'),
|
|
436
|
+
'Blacklist_chainId_userAddress_poolAddress_unique_idx': uniqueIndex('Blacklist_chainId_userAddress_poolAddress_key')
|
|
437
|
+
.on(Blacklist.chainId, Blacklist.userAddress, Blacklist.poolAddress)
|
|
438
|
+
}));
|
|
439
|
+
export const Dump = pgTable('Dump', {
|
|
440
|
+
id: text('id').notNull().primaryKey(),
|
|
441
|
+
chainId: integer('chainId').notNull(),
|
|
442
|
+
fromTokenId: text('fromTokenId').notNull(),
|
|
443
|
+
toTokenId: text('toTokenId').notNull(),
|
|
444
|
+
multisig: text('multisig').notNull(),
|
|
445
|
+
recipient: text('recipient').notNull(),
|
|
446
|
+
amountIn: text('amountIn').notNull().default("0"),
|
|
447
|
+
amountOut: text('amountOut').notNull().default("0"),
|
|
448
|
+
datetime: timestamp('datetime', { precision: 3 }).notNull(),
|
|
449
|
+
timestamp: integer('timestamp').notNull()
|
|
450
|
+
}, (Dump) => ({
|
|
451
|
+
'Dump_Chain_fkey': foreignKey({
|
|
452
|
+
name: 'Dump_Chain_fkey',
|
|
453
|
+
columns: [Dump.chainId],
|
|
454
|
+
foreignColumns: [Chain.id]
|
|
455
|
+
})
|
|
456
|
+
.onDelete('cascade')
|
|
457
|
+
.onUpdate('cascade'),
|
|
458
|
+
'Dump_FromToken_fkey': foreignKey({
|
|
459
|
+
name: 'Dump_FromToken_fkey',
|
|
460
|
+
columns: [Dump.fromTokenId],
|
|
461
|
+
foreignColumns: [Token.id]
|
|
462
|
+
})
|
|
463
|
+
.onDelete('cascade')
|
|
464
|
+
.onUpdate('cascade'),
|
|
465
|
+
'Dump_ToToken_fkey': foreignKey({
|
|
466
|
+
name: 'Dump_ToToken_fkey',
|
|
467
|
+
columns: [Dump.toTokenId],
|
|
468
|
+
foreignColumns: [Token.id]
|
|
469
|
+
})
|
|
470
|
+
.onDelete('cascade')
|
|
471
|
+
.onUpdate('cascade'),
|
|
472
|
+
'Dump_chainId_fromTokenId_toTokenId_timestamp_unique_idx': uniqueIndex('Dump_chainId_fromTokenId_toTokenId_timestamp_key')
|
|
473
|
+
.on(Dump.chainId, Dump.fromTokenId, Dump.toTokenId, Dump.timestamp)
|
|
474
|
+
}));
|
|
475
|
+
export const Logged = pgTable('Logged', {
|
|
476
|
+
id: text('id').notNull().primaryKey(),
|
|
477
|
+
chainId: integer('chainId').notNull(),
|
|
478
|
+
type: LoggedEntityType('type').notNull().default("UNKNOWN"),
|
|
479
|
+
address: text('address'),
|
|
480
|
+
fetchAtBlock: integer('fetchAtBlock').notNull(),
|
|
481
|
+
caughtFromAddress: text('caughtFromAddress').notNull(),
|
|
482
|
+
entityData: jsonb('entityData').notNull()
|
|
483
|
+
}, (Logged) => ({
|
|
484
|
+
'Logged_chainId_address_unique_idx': uniqueIndex('Logged_chainId_address_key')
|
|
485
|
+
.on(Logged.chainId, Logged.address)
|
|
486
|
+
}));
|
|
487
|
+
export const OpportunityToToken = pgTable('_OpportunityToToken', {
|
|
488
|
+
TokenId: text('A').notNull(),
|
|
489
|
+
OpportunityId: text('B').notNull()
|
|
490
|
+
}, (OpportunityToToken) => ({
|
|
491
|
+
'_OpportunityToToken_Token_fkey': foreignKey({
|
|
492
|
+
name: '_OpportunityToToken_Token_fkey',
|
|
493
|
+
columns: [OpportunityToToken.TokenId],
|
|
494
|
+
foreignColumns: [Token.id]
|
|
495
|
+
})
|
|
496
|
+
.onDelete('cascade')
|
|
497
|
+
.onUpdate('cascade'),
|
|
498
|
+
'_OpportunityToToken_Opportunity_fkey': foreignKey({
|
|
499
|
+
name: '_OpportunityToToken_Opportunity_fkey',
|
|
500
|
+
columns: [OpportunityToToken.OpportunityId],
|
|
501
|
+
foreignColumns: [Opportunity.id]
|
|
502
|
+
})
|
|
503
|
+
.onDelete('cascade')
|
|
504
|
+
.onUpdate('cascade')
|
|
505
|
+
}));
|
|
506
|
+
export const OpportunityToProtocol = pgTable('_OpportunityToProtocol', {
|
|
507
|
+
ProtocolId: text('A').notNull(),
|
|
508
|
+
OpportunityId: text('B').notNull()
|
|
509
|
+
}, (OpportunityToProtocol) => ({
|
|
510
|
+
'_OpportunityToProtocol_Protocol_fkey': foreignKey({
|
|
511
|
+
name: '_OpportunityToProtocol_Protocol_fkey',
|
|
512
|
+
columns: [OpportunityToProtocol.ProtocolId],
|
|
513
|
+
foreignColumns: [Protocol.id]
|
|
514
|
+
})
|
|
515
|
+
.onDelete('cascade')
|
|
516
|
+
.onUpdate('cascade'),
|
|
517
|
+
'_OpportunityToProtocol_Opportunity_fkey': foreignKey({
|
|
518
|
+
name: '_OpportunityToProtocol_Opportunity_fkey',
|
|
519
|
+
columns: [OpportunityToProtocol.OpportunityId],
|
|
520
|
+
foreignColumns: [Opportunity.id]
|
|
521
|
+
})
|
|
522
|
+
.onDelete('cascade')
|
|
523
|
+
.onUpdate('cascade')
|
|
524
|
+
}));
|
|
525
|
+
export const CampaignRelations = relations(Campaign, ({ one, many }) => ({
|
|
526
|
+
ComputeChain: one(Chain, {
|
|
527
|
+
relationName: 'compute',
|
|
528
|
+
fields: [Campaign.computeChainId],
|
|
529
|
+
references: [Chain.id]
|
|
530
|
+
}),
|
|
531
|
+
DistributionChain: one(Chain, {
|
|
532
|
+
relationName: 'distribution',
|
|
533
|
+
fields: [Campaign.distributionChainId],
|
|
534
|
+
references: [Chain.id]
|
|
535
|
+
}),
|
|
536
|
+
RewardToken: one(Token, {
|
|
537
|
+
relationName: 'CampaignToToken',
|
|
538
|
+
fields: [Campaign.rewardTokenId],
|
|
539
|
+
references: [Token.id]
|
|
540
|
+
}),
|
|
541
|
+
Opportunity: one(Opportunity, {
|
|
542
|
+
relationName: 'CampaignToOpportunity',
|
|
543
|
+
fields: [Campaign.opportunityId],
|
|
544
|
+
references: [Opportunity.id]
|
|
545
|
+
}),
|
|
546
|
+
RewardBreakdown: many(RewardBreakdown, {
|
|
547
|
+
relationName: 'CampaignToRewardBreakdown'
|
|
548
|
+
}),
|
|
549
|
+
DailyRewardsBreakdown: many(DailyRewardsBreakdown, {
|
|
550
|
+
relationName: 'CampaignToDailyRewardsBreakdown'
|
|
551
|
+
}),
|
|
552
|
+
Creator: one(User, {
|
|
553
|
+
relationName: 'CampaignToUser',
|
|
554
|
+
fields: [Campaign.creatorAddress],
|
|
555
|
+
references: [User.address]
|
|
556
|
+
}),
|
|
557
|
+
CampaignStatus: many(CampaignStatus, {
|
|
558
|
+
relationName: 'CampaignToCampaignStatus'
|
|
559
|
+
}),
|
|
560
|
+
CampaignEngineValues: many(CampaignComputedValue, {
|
|
561
|
+
relationName: 'CampaignToCampaignComputedValue'
|
|
562
|
+
}),
|
|
563
|
+
UserComputedValue: many(UserComputedValue, {
|
|
564
|
+
relationName: 'CampaignToUserComputedValue'
|
|
565
|
+
})
|
|
566
|
+
}));
|
|
567
|
+
export const CampaignStatusRelations = relations(CampaignStatus, ({ one }) => ({
|
|
568
|
+
Campaign: one(Campaign, {
|
|
569
|
+
relationName: 'CampaignToCampaignStatus',
|
|
570
|
+
fields: [CampaignStatus.campaignId],
|
|
571
|
+
references: [Campaign.id]
|
|
572
|
+
})
|
|
573
|
+
}));
|
|
574
|
+
export const CampaignComputedValueRelations = relations(CampaignComputedValue, ({ one }) => ({
|
|
575
|
+
Campaign: one(Campaign, {
|
|
576
|
+
relationName: 'CampaignToCampaignComputedValue',
|
|
577
|
+
fields: [CampaignComputedValue.campaignId],
|
|
578
|
+
references: [Campaign.id]
|
|
579
|
+
})
|
|
580
|
+
}));
|
|
581
|
+
export const UserComputedValueRelations = relations(UserComputedValue, ({ one }) => ({
|
|
582
|
+
Campaign: one(Campaign, {
|
|
583
|
+
relationName: 'CampaignToUserComputedValue',
|
|
584
|
+
fields: [UserComputedValue.campaignId],
|
|
585
|
+
references: [Campaign.id]
|
|
586
|
+
}),
|
|
587
|
+
User: one(User, {
|
|
588
|
+
relationName: 'UserToUserComputedValue',
|
|
589
|
+
fields: [UserComputedValue.address],
|
|
590
|
+
references: [User.address]
|
|
591
|
+
})
|
|
592
|
+
}));
|
|
593
|
+
export const ChainRelations = relations(Chain, ({ many }) => ({
|
|
594
|
+
Explorer: many(Explorer, {
|
|
595
|
+
relationName: 'ChainToExplorer'
|
|
596
|
+
}),
|
|
597
|
+
Campaigns: many(Campaign, {
|
|
598
|
+
relationName: 'compute'
|
|
599
|
+
}),
|
|
600
|
+
Distribution: many(Campaign, {
|
|
601
|
+
relationName: 'distribution'
|
|
602
|
+
}),
|
|
603
|
+
Token: many(Token, {
|
|
604
|
+
relationName: 'ChainToToken'
|
|
605
|
+
}),
|
|
606
|
+
Opportunity: many(Opportunity, {
|
|
607
|
+
relationName: 'ChainToOpportunity'
|
|
608
|
+
}),
|
|
609
|
+
MerklRoot: many(MerklRoot, {
|
|
610
|
+
relationName: 'ChainToMerklRoot'
|
|
611
|
+
}),
|
|
612
|
+
Blacklist: many(Blacklist, {
|
|
613
|
+
relationName: 'BlacklistToChain'
|
|
614
|
+
}),
|
|
615
|
+
Dump: many(Dump, {
|
|
616
|
+
relationName: 'ChainToDump'
|
|
617
|
+
})
|
|
618
|
+
}));
|
|
619
|
+
export const ExplorerRelations = relations(Explorer, ({ one }) => ({
|
|
620
|
+
Chain: one(Chain, {
|
|
621
|
+
relationName: 'ChainToExplorer',
|
|
622
|
+
fields: [Explorer.chainId],
|
|
623
|
+
references: [Chain.id]
|
|
624
|
+
})
|
|
625
|
+
}));
|
|
626
|
+
export const OpportunityRelations = relations(Opportunity, ({ one, many }) => ({
|
|
627
|
+
Chain: one(Chain, {
|
|
628
|
+
relationName: 'ChainToOpportunity',
|
|
629
|
+
fields: [Opportunity.chainId],
|
|
630
|
+
references: [Chain.id]
|
|
631
|
+
}),
|
|
632
|
+
Tokens: many(OpportunityToToken, {
|
|
633
|
+
relationName: 'OpportunityToOpportunityToToken'
|
|
634
|
+
}),
|
|
635
|
+
Campaigns: many(Campaign, {
|
|
636
|
+
relationName: 'CampaignToOpportunity'
|
|
637
|
+
}),
|
|
638
|
+
Protocols: many(OpportunityToProtocol, {
|
|
639
|
+
relationName: 'OpportunityToOpportunityToProtocol'
|
|
640
|
+
}),
|
|
641
|
+
MainProtocol: one(Protocol, {
|
|
642
|
+
relationName: 'main',
|
|
643
|
+
fields: [Opportunity.mainProtocolId],
|
|
644
|
+
references: [Protocol.id]
|
|
645
|
+
}),
|
|
646
|
+
TvlRecords: many(TVLRecord, {
|
|
647
|
+
relationName: 'OpportunityToTVLRecord'
|
|
648
|
+
}),
|
|
649
|
+
AprRecords: many(AprRecord, {
|
|
650
|
+
relationName: 'AprRecordToOpportunity'
|
|
651
|
+
}),
|
|
652
|
+
DailyRewardsRecords: many(DailyRewardsRecord, {
|
|
653
|
+
relationName: 'DailyRewardsRecordToOpportunity'
|
|
654
|
+
})
|
|
655
|
+
}));
|
|
656
|
+
export const ProtocolRelations = relations(Protocol, ({ many }) => ({
|
|
657
|
+
MainOpportunities: many(Opportunity, {
|
|
658
|
+
relationName: 'main'
|
|
659
|
+
}),
|
|
660
|
+
Opportunities: many(OpportunityToProtocol, {
|
|
661
|
+
relationName: 'ProtocolToOpportunityToProtocol'
|
|
662
|
+
}),
|
|
663
|
+
RewardBreakdown: many(RewardBreakdown, {
|
|
664
|
+
relationName: 'ProtocolToRewardBreakdown'
|
|
665
|
+
})
|
|
666
|
+
}));
|
|
667
|
+
export const TokenRelations = relations(Token, ({ one, many }) => ({
|
|
668
|
+
Chain: one(Chain, {
|
|
669
|
+
relationName: 'ChainToToken',
|
|
670
|
+
fields: [Token.chainId],
|
|
671
|
+
references: [Chain.id]
|
|
672
|
+
}),
|
|
673
|
+
Opportunity: many(OpportunityToToken, {
|
|
674
|
+
relationName: 'TokenToOpportunityToToken'
|
|
675
|
+
}),
|
|
676
|
+
Campaigns: many(Campaign, {
|
|
677
|
+
relationName: 'CampaignToToken'
|
|
678
|
+
}),
|
|
679
|
+
Reward: many(Reward, {
|
|
680
|
+
relationName: 'RewardToToken'
|
|
681
|
+
}),
|
|
682
|
+
DumpTo: many(Dump, {
|
|
683
|
+
relationName: 'to'
|
|
684
|
+
}),
|
|
685
|
+
DumpFrom: many(Dump, {
|
|
686
|
+
relationName: 'from'
|
|
687
|
+
})
|
|
688
|
+
}));
|
|
689
|
+
export const AprRecordRelations = relations(AprRecord, ({ many, one }) => ({
|
|
690
|
+
AprBreakdown: many(AprBreakdown, {
|
|
691
|
+
relationName: 'AprBreakdownToAprRecord'
|
|
692
|
+
}),
|
|
693
|
+
Opportunity: one(Opportunity, {
|
|
694
|
+
relationName: 'AprRecordToOpportunity',
|
|
695
|
+
fields: [AprRecord.opportunityId],
|
|
696
|
+
references: [Opportunity.id]
|
|
697
|
+
})
|
|
698
|
+
}));
|
|
699
|
+
export const AprBreakdownRelations = relations(AprBreakdown, ({ one }) => ({
|
|
700
|
+
AprRecord: one(AprRecord, {
|
|
701
|
+
relationName: 'AprBreakdownToAprRecord',
|
|
702
|
+
fields: [AprBreakdown.aprRecordId],
|
|
703
|
+
references: [AprRecord.id]
|
|
704
|
+
})
|
|
705
|
+
}));
|
|
706
|
+
export const TVLRecordRelations = relations(TVLRecord, ({ many, one }) => ({
|
|
707
|
+
TvlBreakdown: many(TVLBreakdown, {
|
|
708
|
+
relationName: 'TVLBreakdownToTVLRecord'
|
|
709
|
+
}),
|
|
710
|
+
Opportunity: one(Opportunity, {
|
|
711
|
+
relationName: 'OpportunityToTVLRecord',
|
|
712
|
+
fields: [TVLRecord.opportunityId],
|
|
713
|
+
references: [Opportunity.id]
|
|
714
|
+
})
|
|
715
|
+
}));
|
|
716
|
+
export const TVLBreakdownRelations = relations(TVLBreakdown, ({ one }) => ({
|
|
717
|
+
TvlRecord: one(TVLRecord, {
|
|
718
|
+
relationName: 'TVLBreakdownToTVLRecord',
|
|
719
|
+
fields: [TVLBreakdown.tvlRecordId],
|
|
720
|
+
references: [TVLRecord.id]
|
|
721
|
+
})
|
|
722
|
+
}));
|
|
723
|
+
export const DailyRewardsRecordRelations = relations(DailyRewardsRecord, ({ many, one }) => ({
|
|
724
|
+
DailyRewardsBreakdown: many(DailyRewardsBreakdown, {
|
|
725
|
+
relationName: 'DailyRewardsBreakdownToDailyRewardsRecord'
|
|
726
|
+
}),
|
|
727
|
+
Opportunity: one(Opportunity, {
|
|
728
|
+
relationName: 'DailyRewardsRecordToOpportunity',
|
|
729
|
+
fields: [DailyRewardsRecord.opportunityId],
|
|
730
|
+
references: [Opportunity.id]
|
|
731
|
+
})
|
|
732
|
+
}));
|
|
733
|
+
export const DailyRewardsBreakdownRelations = relations(DailyRewardsBreakdown, ({ one }) => ({
|
|
734
|
+
Campaign: one(Campaign, {
|
|
735
|
+
relationName: 'CampaignToDailyRewardsBreakdown',
|
|
736
|
+
fields: [DailyRewardsBreakdown.campaignId],
|
|
737
|
+
references: [Campaign.id]
|
|
738
|
+
}),
|
|
739
|
+
DailyRewardsRecord: one(DailyRewardsRecord, {
|
|
740
|
+
relationName: 'DailyRewardsBreakdownToDailyRewardsRecord',
|
|
741
|
+
fields: [DailyRewardsBreakdown.dailyRewardsRecordId],
|
|
742
|
+
references: [DailyRewardsRecord.id]
|
|
743
|
+
})
|
|
744
|
+
}));
|
|
745
|
+
export const UserRelations = relations(User, ({ many, one }) => ({
|
|
746
|
+
Rewards: many(Reward, {
|
|
747
|
+
relationName: 'RewardToUser'
|
|
748
|
+
}),
|
|
749
|
+
Blacklist: many(Blacklist, {
|
|
750
|
+
relationName: 'BlacklistToUser'
|
|
751
|
+
}),
|
|
752
|
+
CampaignsCreated: many(Campaign, {
|
|
753
|
+
relationName: 'CampaignToUser'
|
|
754
|
+
}),
|
|
755
|
+
UserComputedValue: many(UserComputedValue, {
|
|
756
|
+
relationName: 'UserToUserComputedValue'
|
|
757
|
+
}),
|
|
758
|
+
Creator: one(Creator, {
|
|
759
|
+
relationName: 'CreatorToUser',
|
|
760
|
+
fields: [User.creatorId],
|
|
761
|
+
references: [Creator.id]
|
|
762
|
+
})
|
|
763
|
+
}));
|
|
764
|
+
export const CreatorRelations = relations(Creator, ({ many }) => ({
|
|
765
|
+
Users: many(User, {
|
|
766
|
+
relationName: 'CreatorToUser'
|
|
767
|
+
})
|
|
768
|
+
}));
|
|
769
|
+
export const RewardRelations = relations(Reward, ({ one, many }) => ({
|
|
770
|
+
MerklRoot: one(MerklRoot, {
|
|
771
|
+
relationName: 'MerklRootToReward',
|
|
772
|
+
fields: [Reward.root],
|
|
773
|
+
references: [MerklRoot.root]
|
|
774
|
+
}),
|
|
775
|
+
User: one(User, {
|
|
776
|
+
relationName: 'RewardToUser',
|
|
777
|
+
fields: [Reward.recipient],
|
|
778
|
+
references: [User.address]
|
|
779
|
+
}),
|
|
780
|
+
RewardToken: one(Token, {
|
|
781
|
+
relationName: 'RewardToToken',
|
|
782
|
+
fields: [Reward.rewardTokenId],
|
|
783
|
+
references: [Token.id]
|
|
784
|
+
}),
|
|
785
|
+
Breakdown: many(RewardBreakdown, {
|
|
786
|
+
relationName: 'RewardToRewardBreakdown'
|
|
787
|
+
})
|
|
788
|
+
}));
|
|
789
|
+
export const RewardBreakdownRelations = relations(RewardBreakdown, ({ one }) => ({
|
|
790
|
+
Protocol: one(Protocol, {
|
|
791
|
+
relationName: 'ProtocolToRewardBreakdown',
|
|
792
|
+
fields: [RewardBreakdown.protocolId],
|
|
793
|
+
references: [Protocol.id]
|
|
794
|
+
}),
|
|
795
|
+
Reward: one(Reward, {
|
|
796
|
+
relationName: 'RewardToRewardBreakdown',
|
|
797
|
+
fields: [RewardBreakdown.rewardId],
|
|
798
|
+
references: [Reward.id]
|
|
799
|
+
}),
|
|
800
|
+
Campaign: one(Campaign, {
|
|
801
|
+
relationName: 'CampaignToRewardBreakdown',
|
|
802
|
+
fields: [RewardBreakdown.campaignId],
|
|
803
|
+
references: [Campaign.id]
|
|
804
|
+
})
|
|
805
|
+
}));
|
|
806
|
+
export const MerklRootRelations = relations(MerklRoot, ({ one, many }) => ({
|
|
807
|
+
Chain: one(Chain, {
|
|
808
|
+
relationName: 'ChainToMerklRoot',
|
|
809
|
+
fields: [MerklRoot.chainId],
|
|
810
|
+
references: [Chain.id]
|
|
811
|
+
}),
|
|
812
|
+
Rewards: many(Reward, {
|
|
813
|
+
relationName: 'MerklRootToReward'
|
|
814
|
+
})
|
|
815
|
+
}));
|
|
816
|
+
export const BlacklistRelations = relations(Blacklist, ({ one }) => ({
|
|
817
|
+
Chain: one(Chain, {
|
|
818
|
+
relationName: 'BlacklistToChain',
|
|
819
|
+
fields: [Blacklist.chainId],
|
|
820
|
+
references: [Chain.id]
|
|
821
|
+
}),
|
|
822
|
+
User: one(User, {
|
|
823
|
+
relationName: 'BlacklistToUser',
|
|
824
|
+
fields: [Blacklist.userAddress],
|
|
825
|
+
references: [User.address]
|
|
826
|
+
})
|
|
827
|
+
}));
|
|
828
|
+
export const DumpRelations = relations(Dump, ({ one }) => ({
|
|
829
|
+
Chain: one(Chain, {
|
|
830
|
+
relationName: 'ChainToDump',
|
|
831
|
+
fields: [Dump.chainId],
|
|
832
|
+
references: [Chain.id]
|
|
833
|
+
}),
|
|
834
|
+
FromToken: one(Token, {
|
|
835
|
+
relationName: 'from',
|
|
836
|
+
fields: [Dump.fromTokenId],
|
|
837
|
+
references: [Token.id]
|
|
838
|
+
}),
|
|
839
|
+
ToToken: one(Token, {
|
|
840
|
+
relationName: 'to',
|
|
841
|
+
fields: [Dump.toTokenId],
|
|
842
|
+
references: [Token.id]
|
|
843
|
+
})
|
|
844
|
+
}));
|
|
845
|
+
export const OpportunityToTokenRelations = relations(OpportunityToToken, ({ one }) => ({
|
|
846
|
+
Token: one(Token, {
|
|
847
|
+
relationName: 'TokenToOpportunityToToken',
|
|
848
|
+
fields: [OpportunityToToken.TokenId],
|
|
849
|
+
references: [Token.id]
|
|
850
|
+
}),
|
|
851
|
+
Opportunity: one(Opportunity, {
|
|
852
|
+
relationName: 'OpportunityToOpportunityToToken',
|
|
853
|
+
fields: [OpportunityToToken.OpportunityId],
|
|
854
|
+
references: [Opportunity.id]
|
|
855
|
+
})
|
|
856
|
+
}));
|
|
857
|
+
export const OpportunityToProtocolRelations = relations(OpportunityToProtocol, ({ one }) => ({
|
|
858
|
+
Protocol: one(Protocol, {
|
|
859
|
+
relationName: 'ProtocolToOpportunityToProtocol',
|
|
860
|
+
fields: [OpportunityToProtocol.ProtocolId],
|
|
861
|
+
references: [Protocol.id]
|
|
862
|
+
}),
|
|
863
|
+
Opportunity: one(Opportunity, {
|
|
864
|
+
relationName: 'OpportunityToOpportunityToProtocol',
|
|
865
|
+
fields: [OpportunityToProtocol.OpportunityId],
|
|
866
|
+
references: [Opportunity.id]
|
|
867
|
+
})
|
|
868
|
+
}));
|