@merkl/api 1.18.11 → 1.18.13

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.
Files changed (31) hide show
  1. package/dist/src/eden/index.d.ts +309 -283
  2. package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.d.ts +25 -25
  3. package/dist/src/engine/implementations/AaveV4Hub/metadata.d.ts +4 -4
  4. package/dist/src/engine/implementations/AaveV4Hub/metadata.js.map +1 -1
  5. package/dist/src/engine/implementations/AaveV4Spoke/metadata.d.ts +6 -4
  6. package/dist/src/engine/implementations/AaveV4Spoke/metadata.js.map +1 -1
  7. package/dist/src/engine/implementations/clamm/tvl.abstract.d.ts +1 -1
  8. package/dist/src/engine/metadata/factory.js.map +1 -1
  9. package/dist/src/engine/tvl/factory.js.map +1 -1
  10. package/dist/src/index.d.ts +28 -2
  11. package/dist/src/modules/v4/campaign/campaign.query-transformer.d.ts +15 -15
  12. package/dist/src/modules/v4/clamm/clamm.controller.d.ts +2 -2
  13. package/dist/src/modules/v4/merklRoot/merklRoot.service.d.ts +1 -1
  14. package/dist/src/modules/v4/merklRoot/merklRoot.service.js.map +1 -1
  15. package/dist/src/modules/v4/router.d.ts +28 -2
  16. package/dist/src/modules/v4/token/token.repository.d.ts +8 -0
  17. package/dist/src/modules/v4/token/token.repository.js.map +1 -1
  18. package/dist/src/modules/v4/token/token.service.d.ts +6 -0
  19. package/dist/src/modules/v4/token/token.service.js.map +1 -1
  20. package/dist/src/modules/v4/transaction/transaction.service.d.ts +226 -178
  21. package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +26 -0
  22. package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +28 -0
  23. package/dist/src/plugins/errorHandler.js.map +1 -1
  24. package/dist/src/routes/v3/merkl.js.map +1 -1
  25. package/dist/src/routes/v3/rewards.js.map +1 -1
  26. package/dist/src/utils/getAPR.d.ts +28 -4
  27. package/dist/src/utils/parseDistributionType.d.ts +28 -4
  28. package/dist/src/utils/providers.d.ts +4 -0
  29. package/dist/src/utils/throw.js.map +1 -1
  30. package/dist/tsconfig.tsbuildinfo +1 -1
  31. package/package.json +1 -1
@@ -1223,7 +1223,7 @@ declare const eden: {
1223
1223
  distributionChainId: number;
1224
1224
  campaignId: string;
1225
1225
  type: string;
1226
- distributionType: import("@package/databases/api").DistributionType;
1226
+ distributionType: import("@package/databases").DistributionType;
1227
1227
  subType: number | null;
1228
1228
  rewardTokenId: string;
1229
1229
  amount: string;
@@ -1237,7 +1237,7 @@ declare const eden: {
1237
1237
  dailyRewards: number;
1238
1238
  apr: number;
1239
1239
  creatorAddress: string;
1240
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
1240
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
1241
1241
  createdAt: Date;
1242
1242
  rootCampaignId: string | null;
1243
1243
  parentCampaignId: string | null;
@@ -1267,7 +1267,7 @@ declare const eden: {
1267
1267
  icon: string;
1268
1268
  verified: boolean;
1269
1269
  isTest: boolean;
1270
- type: import("@package/databases/api").TokenType;
1270
+ type: import("@package/databases").TokenType;
1271
1271
  isNative: boolean;
1272
1272
  underlyingTokenId: string | null;
1273
1273
  price: number | null;
@@ -1281,7 +1281,7 @@ declare const eden: {
1281
1281
  } | null;
1282
1282
  } & {
1283
1283
  chainId: number;
1284
- scopeType: import("@package/databases/api").AutoClaimScopeType;
1284
+ scopeType: import("@package/databases").AutoClaimScopeType;
1285
1285
  scopeId: string;
1286
1286
  creatorId: string;
1287
1287
  tokenAddress: string | null;
@@ -1320,7 +1320,7 @@ declare const eden: {
1320
1320
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
1321
1321
  200: {
1322
1322
  chainId: number;
1323
- scopeType: import("@package/databases/api").AutoClaimScopeType;
1323
+ scopeType: import("@package/databases").AutoClaimScopeType;
1324
1324
  scopeId: string;
1325
1325
  creatorId: string;
1326
1326
  tokenAddress: string | null;
@@ -1431,7 +1431,7 @@ declare const eden: {
1431
1431
  distributionChainId: number;
1432
1432
  campaignId: string;
1433
1433
  type: string;
1434
- distributionType: import("@package/databases/api").DistributionType;
1434
+ distributionType: import("@package/databases").DistributionType;
1435
1435
  subType: number | null;
1436
1436
  rewardTokenId: string;
1437
1437
  amount: string;
@@ -1445,7 +1445,7 @@ declare const eden: {
1445
1445
  dailyRewards: number;
1446
1446
  apr: number;
1447
1447
  creatorAddress: string;
1448
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
1448
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
1449
1449
  createdAt: Date;
1450
1450
  rootCampaignId: string | null;
1451
1451
  parentCampaignId: string | null;
@@ -1475,7 +1475,7 @@ declare const eden: {
1475
1475
  icon: string;
1476
1476
  verified: boolean;
1477
1477
  isTest: boolean;
1478
- type: import("@package/databases/api").TokenType;
1478
+ type: import("@package/databases").TokenType;
1479
1479
  isNative: boolean;
1480
1480
  underlyingTokenId: string | null;
1481
1481
  price: number | null;
@@ -1489,7 +1489,7 @@ declare const eden: {
1489
1489
  } | null;
1490
1490
  } & {
1491
1491
  chainId: number;
1492
- scopeType: import("@package/databases/api").AutoClaimScopeType;
1492
+ scopeType: import("@package/databases").AutoClaimScopeType;
1493
1493
  scopeId: string;
1494
1494
  creatorId: string;
1495
1495
  tokenAddress: string | null;
@@ -1534,7 +1534,7 @@ declare const eden: {
1534
1534
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
1535
1535
  200: {
1536
1536
  chainId: number;
1537
- scopeType: import("@package/databases/api").AutoClaimScopeType;
1537
+ scopeType: import("@package/databases").AutoClaimScopeType;
1538
1538
  scopeId: string;
1539
1539
  creatorId: string;
1540
1540
  tokenAddress: string | null;
@@ -1825,8 +1825,8 @@ declare const eden: {
1825
1825
  campaignId: string;
1826
1826
  computedUntil: bigint;
1827
1827
  processingStarted: bigint;
1828
- status: import("@package/databases/api").RunStatus;
1829
- preComputeStatus: import("@package/databases/api").RunStatus;
1828
+ status: import("@package/databases").RunStatus;
1829
+ preComputeStatus: import("@package/databases").RunStatus;
1830
1830
  preComputeProcessingStarted: bigint;
1831
1831
  error: string;
1832
1832
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -1834,8 +1834,8 @@ declare const eden: {
1834
1834
  campaignId: string;
1835
1835
  computedUntil: bigint;
1836
1836
  processingStarted: bigint;
1837
- status: import("@package/databases/api").RunStatus;
1838
- preComputeStatus: import("@package/databases/api").RunStatus;
1837
+ status: import("@package/databases").RunStatus;
1838
+ preComputeStatus: import("@package/databases").RunStatus;
1839
1839
  preComputeProcessingStarted: bigint;
1840
1840
  error: string;
1841
1841
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -1861,8 +1861,8 @@ declare const eden: {
1861
1861
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
1862
1862
  200: {
1863
1863
  campaignId: string;
1864
- status: import("@package/databases/api").RunStatus;
1865
- preComputeStatus: import("@package/databases/api").RunStatus;
1864
+ status: import("@package/databases").RunStatus;
1865
+ preComputeStatus: import("@package/databases").RunStatus;
1866
1866
  error: string;
1867
1867
  details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
1868
1868
  delay: number;
@@ -1894,8 +1894,8 @@ declare const eden: {
1894
1894
  200: {
1895
1895
  status: {
1896
1896
  campaignId: string;
1897
- status: import("@package/databases/api").RunStatus;
1898
- preComputeStatus: import("@package/databases/api").RunStatus;
1897
+ status: import("@package/databases").RunStatus;
1898
+ preComputeStatus: import("@package/databases").RunStatus;
1899
1899
  error: string;
1900
1900
  details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
1901
1901
  delay: number;
@@ -1908,8 +1908,8 @@ declare const eden: {
1908
1908
  campaignId: string;
1909
1909
  computedUntil: bigint;
1910
1910
  processingStarted: bigint;
1911
- status: import("@package/databases/api").RunStatus;
1912
- preComputeStatus: import("@package/databases/api").RunStatus;
1911
+ status: import("@package/databases").RunStatus;
1912
+ preComputeStatus: import("@package/databases").RunStatus;
1913
1913
  preComputeProcessingStarted: bigint;
1914
1914
  error: string;
1915
1915
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -2030,8 +2030,8 @@ declare const eden: {
2030
2030
  delayed: {
2031
2031
  status: {
2032
2032
  campaignId: string;
2033
- status: import("@package/databases/api").RunStatus;
2034
- preComputeStatus: import("@package/databases/api").RunStatus;
2033
+ status: import("@package/databases").RunStatus;
2034
+ preComputeStatus: import("@package/databases").RunStatus;
2035
2035
  error: string;
2036
2036
  details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
2037
2037
  delay: number;
@@ -2044,8 +2044,8 @@ declare const eden: {
2044
2044
  campaignId: string;
2045
2045
  computedUntil: bigint;
2046
2046
  processingStarted: bigint;
2047
- status: import("@package/databases/api").RunStatus;
2048
- preComputeStatus: import("@package/databases/api").RunStatus;
2047
+ status: import("@package/databases").RunStatus;
2048
+ preComputeStatus: import("@package/databases").RunStatus;
2049
2049
  preComputeProcessingStarted: bigint;
2050
2050
  error: string;
2051
2051
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -2179,8 +2179,8 @@ declare const eden: {
2179
2179
  campaignId: string;
2180
2180
  computedUntil: bigint;
2181
2181
  processingStarted: bigint;
2182
- status: import("@package/databases/api").RunStatus;
2183
- preComputeStatus: import("@package/databases/api").RunStatus;
2182
+ status: import("@package/databases").RunStatus;
2183
+ preComputeStatus: import("@package/databases").RunStatus;
2184
2184
  preComputeProcessingStarted: bigint;
2185
2185
  error: string;
2186
2186
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -2212,8 +2212,8 @@ declare const eden: {
2212
2212
  campaignId: string;
2213
2213
  computedUntil: bigint;
2214
2214
  processingStarted: bigint;
2215
- status: import("@package/databases/api").RunStatus;
2216
- preComputeStatus: import("@package/databases/api").RunStatus;
2215
+ status: import("@package/databases").RunStatus;
2216
+ preComputeStatus: import("@package/databases").RunStatus;
2217
2217
  preComputeProcessingStarted: bigint;
2218
2218
  error: string;
2219
2219
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -2590,8 +2590,8 @@ declare const eden: {
2590
2590
  name: string;
2591
2591
  description: string;
2592
2592
  howToSteps: string[];
2593
- status: import("@package/databases/api").Status;
2594
- action: import("@package/databases/api").OpportunityAction;
2593
+ status: import("@package/databases").Status;
2594
+ action: import("@package/databases").OpportunityAction;
2595
2595
  tvl: number;
2596
2596
  apr: number;
2597
2597
  maxApr: number | null;
@@ -4001,9 +4001,9 @@ declare const eden: {
4001
4001
  computedUntil: bigint;
4002
4002
  error: string;
4003
4003
  preComputeProcessingStarted: bigint;
4004
- preComputeStatus: import("@package/databases/api").RunStatus;
4004
+ preComputeStatus: import("@package/databases").RunStatus;
4005
4005
  processingStarted: bigint;
4006
- status: import("@package/databases/api").RunStatus;
4006
+ status: import("@package/databases").RunStatus;
4007
4007
  }[];
4008
4008
  campaignId: string;
4009
4009
  createdAt: Date;
@@ -4373,11 +4373,11 @@ declare const eden: {
4373
4373
  AprRecords: ({
4374
4374
  AprBreakdown: {
4375
4375
  Campaign: {
4376
- distributionType: import("@package/databases/api").DistributionType;
4376
+ distributionType: import("@package/databases").DistributionType;
4377
4377
  } | null;
4378
4378
  identifier: string;
4379
4379
  timestamp: bigint;
4380
- type: import("@package/databases/api").AprType;
4380
+ type: import("@package/databases").AprType;
4381
4381
  value: number;
4382
4382
  }[];
4383
4383
  } & {
@@ -4392,7 +4392,7 @@ declare const eden: {
4392
4392
  distributionChainId: number;
4393
4393
  campaignId: string;
4394
4394
  type: string;
4395
- distributionType: import("@package/databases/api").DistributionType;
4395
+ distributionType: import("@package/databases").DistributionType;
4396
4396
  subType: number | null;
4397
4397
  rewardTokenId: string;
4398
4398
  amount: string;
@@ -4406,7 +4406,7 @@ declare const eden: {
4406
4406
  dailyRewards: number;
4407
4407
  apr: number;
4408
4408
  creatorAddress: string;
4409
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
4409
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
4410
4410
  createdAt: Date;
4411
4411
  rootCampaignId: string | null;
4412
4412
  parentCampaignId: string | null;
@@ -4428,8 +4428,8 @@ declare const eden: {
4428
4428
  campaignId: string;
4429
4429
  computedUntil: bigint;
4430
4430
  processingStarted: bigint;
4431
- status: import("@package/databases/api").RunStatus;
4432
- preComputeStatus: import("@package/databases/api").RunStatus;
4431
+ status: import("@package/databases").RunStatus;
4432
+ preComputeStatus: import("@package/databases").RunStatus;
4433
4433
  preComputeProcessingStarted: bigint;
4434
4434
  error: string;
4435
4435
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -4445,7 +4445,7 @@ declare const eden: {
4445
4445
  icon: string;
4446
4446
  verified: boolean;
4447
4447
  isTest: boolean;
4448
- type: import("@package/databases/api").TokenType;
4448
+ type: import("@package/databases").TokenType;
4449
4449
  isNative: boolean;
4450
4450
  underlyingTokenId: string | null;
4451
4451
  price: number | null;
@@ -4454,7 +4454,7 @@ declare const eden: {
4454
4454
  };
4455
4455
  amount: string;
4456
4456
  campaignId: string;
4457
- distributionType: import("@package/databases/api").DistributionType;
4457
+ distributionType: import("@package/databases").DistributionType;
4458
4458
  endTimestamp: bigint;
4459
4459
  startTimestamp: bigint;
4460
4460
  };
@@ -4503,7 +4503,7 @@ declare const eden: {
4503
4503
  icon: string;
4504
4504
  verified: boolean;
4505
4505
  isTest: boolean;
4506
- type: import("@package/databases/api").TokenType;
4506
+ type: import("@package/databases").TokenType;
4507
4507
  isNative: boolean;
4508
4508
  underlyingTokenId: string | null;
4509
4509
  price: number | null;
@@ -4531,7 +4531,7 @@ declare const eden: {
4531
4531
  icon: string;
4532
4532
  verified: boolean;
4533
4533
  isTest: boolean;
4534
- type: import("@package/databases/api").TokenType;
4534
+ type: import("@package/databases").TokenType;
4535
4535
  isNative: boolean;
4536
4536
  underlyingTokenId: string | null;
4537
4537
  price: number | null;
@@ -4541,7 +4541,7 @@ declare const eden: {
4541
4541
  TvlRecords: ({
4542
4542
  TvlBreakdown: {
4543
4543
  identifier: string;
4544
- type: import("@package/databases/api").TvlType;
4544
+ type: import("@package/databases").TvlType;
4545
4545
  value: number;
4546
4546
  }[];
4547
4547
  } & {
@@ -4560,8 +4560,8 @@ declare const eden: {
4560
4560
  howToSteps: string[];
4561
4561
  depositUrl: string | null;
4562
4562
  explorerAddress: string | null;
4563
- status: import("@package/databases/api").Status;
4564
- action: import("@package/databases/api").OpportunityAction;
4563
+ status: import("@package/databases").Status;
4564
+ action: import("@package/databases").OpportunityAction;
4565
4565
  mainProtocolId: string | null;
4566
4566
  tvl: number;
4567
4567
  apr: number;
@@ -4570,7 +4570,7 @@ declare const eden: {
4570
4570
  dailyRewards: number;
4571
4571
  tags: string[];
4572
4572
  lastCampaignCreatedAt: Date;
4573
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
4573
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
4574
4574
  liveCampaigns: number;
4575
4575
  earliestCampaignStart: bigint | null;
4576
4576
  latestCampaignStart: bigint | null;
@@ -4629,11 +4629,11 @@ declare const eden: {
4629
4629
  AprRecords: ({
4630
4630
  AprBreakdown: {
4631
4631
  Campaign: {
4632
- distributionType: import("@package/databases/api").DistributionType;
4632
+ distributionType: import("@package/databases").DistributionType;
4633
4633
  } | null;
4634
4634
  identifier: string;
4635
4635
  timestamp: bigint;
4636
- type: import("@package/databases/api").AprType;
4636
+ type: import("@package/databases").AprType;
4637
4637
  value: number;
4638
4638
  }[];
4639
4639
  } & {
@@ -4648,7 +4648,7 @@ declare const eden: {
4648
4648
  distributionChainId: number;
4649
4649
  campaignId: string;
4650
4650
  type: string;
4651
- distributionType: import("@package/databases/api").DistributionType;
4651
+ distributionType: import("@package/databases").DistributionType;
4652
4652
  subType: number | null;
4653
4653
  rewardTokenId: string;
4654
4654
  amount: string;
@@ -4662,7 +4662,7 @@ declare const eden: {
4662
4662
  dailyRewards: number;
4663
4663
  apr: number;
4664
4664
  creatorAddress: string;
4665
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
4665
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
4666
4666
  createdAt: Date;
4667
4667
  rootCampaignId: string | null;
4668
4668
  parentCampaignId: string | null;
@@ -4684,8 +4684,8 @@ declare const eden: {
4684
4684
  campaignId: string;
4685
4685
  computedUntil: bigint;
4686
4686
  processingStarted: bigint;
4687
- status: import("@package/databases/api").RunStatus;
4688
- preComputeStatus: import("@package/databases/api").RunStatus;
4687
+ status: import("@package/databases").RunStatus;
4688
+ preComputeStatus: import("@package/databases").RunStatus;
4689
4689
  preComputeProcessingStarted: bigint;
4690
4690
  error: string;
4691
4691
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -4701,7 +4701,7 @@ declare const eden: {
4701
4701
  icon: string;
4702
4702
  verified: boolean;
4703
4703
  isTest: boolean;
4704
- type: import("@package/databases/api").TokenType;
4704
+ type: import("@package/databases").TokenType;
4705
4705
  isNative: boolean;
4706
4706
  underlyingTokenId: string | null;
4707
4707
  price: number | null;
@@ -4710,7 +4710,7 @@ declare const eden: {
4710
4710
  };
4711
4711
  amount: string;
4712
4712
  campaignId: string;
4713
- distributionType: import("@package/databases/api").DistributionType;
4713
+ distributionType: import("@package/databases").DistributionType;
4714
4714
  endTimestamp: bigint;
4715
4715
  startTimestamp: bigint;
4716
4716
  };
@@ -4759,7 +4759,7 @@ declare const eden: {
4759
4759
  icon: string;
4760
4760
  verified: boolean;
4761
4761
  isTest: boolean;
4762
- type: import("@package/databases/api").TokenType;
4762
+ type: import("@package/databases").TokenType;
4763
4763
  isNative: boolean;
4764
4764
  underlyingTokenId: string | null;
4765
4765
  price: number | null;
@@ -4787,7 +4787,7 @@ declare const eden: {
4787
4787
  icon: string;
4788
4788
  verified: boolean;
4789
4789
  isTest: boolean;
4790
- type: import("@package/databases/api").TokenType;
4790
+ type: import("@package/databases").TokenType;
4791
4791
  isNative: boolean;
4792
4792
  underlyingTokenId: string | null;
4793
4793
  price: number | null;
@@ -4797,7 +4797,7 @@ declare const eden: {
4797
4797
  TvlRecords: ({
4798
4798
  TvlBreakdown: {
4799
4799
  identifier: string;
4800
- type: import("@package/databases/api").TvlType;
4800
+ type: import("@package/databases").TvlType;
4801
4801
  value: number;
4802
4802
  }[];
4803
4803
  } & {
@@ -4816,8 +4816,8 @@ declare const eden: {
4816
4816
  howToSteps: string[];
4817
4817
  depositUrl: string | null;
4818
4818
  explorerAddress: string | null;
4819
- status: import("@package/databases/api").Status;
4820
- action: import("@package/databases/api").OpportunityAction;
4819
+ status: import("@package/databases").Status;
4820
+ action: import("@package/databases").OpportunityAction;
4821
4821
  mainProtocolId: string | null;
4822
4822
  tvl: number;
4823
4823
  apr: number;
@@ -4826,7 +4826,7 @@ declare const eden: {
4826
4826
  dailyRewards: number;
4827
4827
  tags: string[];
4828
4828
  lastCampaignCreatedAt: Date;
4829
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
4829
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
4830
4830
  liveCampaigns: number;
4831
4831
  earliestCampaignStart: bigint | null;
4832
4832
  latestCampaignStart: bigint | null;
@@ -4884,11 +4884,11 @@ declare const eden: {
4884
4884
  AprRecords: ({
4885
4885
  AprBreakdown: {
4886
4886
  Campaign: {
4887
- distributionType: import("@package/databases/api").DistributionType;
4887
+ distributionType: import("@package/databases").DistributionType;
4888
4888
  } | null;
4889
4889
  identifier: string;
4890
4890
  timestamp: bigint;
4891
- type: import("@package/databases/api").AprType;
4891
+ type: import("@package/databases").AprType;
4892
4892
  value: number;
4893
4893
  }[];
4894
4894
  } & {
@@ -4903,7 +4903,7 @@ declare const eden: {
4903
4903
  distributionChainId: number;
4904
4904
  campaignId: string;
4905
4905
  type: string;
4906
- distributionType: import("@package/databases/api").DistributionType;
4906
+ distributionType: import("@package/databases").DistributionType;
4907
4907
  subType: number | null;
4908
4908
  rewardTokenId: string;
4909
4909
  amount: string;
@@ -4917,7 +4917,7 @@ declare const eden: {
4917
4917
  dailyRewards: number;
4918
4918
  apr: number;
4919
4919
  creatorAddress: string;
4920
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
4920
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
4921
4921
  createdAt: Date;
4922
4922
  rootCampaignId: string | null;
4923
4923
  parentCampaignId: string | null;
@@ -4939,8 +4939,8 @@ declare const eden: {
4939
4939
  campaignId: string;
4940
4940
  computedUntil: bigint;
4941
4941
  processingStarted: bigint;
4942
- status: import("@package/databases/api").RunStatus;
4943
- preComputeStatus: import("@package/databases/api").RunStatus;
4942
+ status: import("@package/databases").RunStatus;
4943
+ preComputeStatus: import("@package/databases").RunStatus;
4944
4944
  preComputeProcessingStarted: bigint;
4945
4945
  error: string;
4946
4946
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -4956,7 +4956,7 @@ declare const eden: {
4956
4956
  icon: string;
4957
4957
  verified: boolean;
4958
4958
  isTest: boolean;
4959
- type: import("@package/databases/api").TokenType;
4959
+ type: import("@package/databases").TokenType;
4960
4960
  isNative: boolean;
4961
4961
  underlyingTokenId: string | null;
4962
4962
  price: number | null;
@@ -4965,7 +4965,7 @@ declare const eden: {
4965
4965
  };
4966
4966
  amount: string;
4967
4967
  campaignId: string;
4968
- distributionType: import("@package/databases/api").DistributionType;
4968
+ distributionType: import("@package/databases").DistributionType;
4969
4969
  endTimestamp: bigint;
4970
4970
  startTimestamp: bigint;
4971
4971
  };
@@ -5014,7 +5014,7 @@ declare const eden: {
5014
5014
  icon: string;
5015
5015
  verified: boolean;
5016
5016
  isTest: boolean;
5017
- type: import("@package/databases/api").TokenType;
5017
+ type: import("@package/databases").TokenType;
5018
5018
  isNative: boolean;
5019
5019
  underlyingTokenId: string | null;
5020
5020
  price: number | null;
@@ -5042,7 +5042,7 @@ declare const eden: {
5042
5042
  icon: string;
5043
5043
  verified: boolean;
5044
5044
  isTest: boolean;
5045
- type: import("@package/databases/api").TokenType;
5045
+ type: import("@package/databases").TokenType;
5046
5046
  isNative: boolean;
5047
5047
  underlyingTokenId: string | null;
5048
5048
  price: number | null;
@@ -5052,7 +5052,7 @@ declare const eden: {
5052
5052
  TvlRecords: ({
5053
5053
  TvlBreakdown: {
5054
5054
  identifier: string;
5055
- type: import("@package/databases/api").TvlType;
5055
+ type: import("@package/databases").TvlType;
5056
5056
  value: number;
5057
5057
  }[];
5058
5058
  } & {
@@ -5071,8 +5071,8 @@ declare const eden: {
5071
5071
  howToSteps: string[];
5072
5072
  depositUrl: string | null;
5073
5073
  explorerAddress: string | null;
5074
- status: import("@package/databases/api").Status;
5075
- action: import("@package/databases/api").OpportunityAction;
5074
+ status: import("@package/databases").Status;
5075
+ action: import("@package/databases").OpportunityAction;
5076
5076
  mainProtocolId: string | null;
5077
5077
  tvl: number;
5078
5078
  apr: number;
@@ -5081,7 +5081,7 @@ declare const eden: {
5081
5081
  dailyRewards: number;
5082
5082
  tags: string[];
5083
5083
  lastCampaignCreatedAt: Date;
5084
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
5084
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
5085
5085
  liveCampaigns: number;
5086
5086
  earliestCampaignStart: bigint | null;
5087
5087
  latestCampaignStart: bigint | null;
@@ -5139,11 +5139,11 @@ declare const eden: {
5139
5139
  AprRecords: ({
5140
5140
  AprBreakdown: {
5141
5141
  Campaign: {
5142
- distributionType: import("@package/databases/api").DistributionType;
5142
+ distributionType: import("@package/databases").DistributionType;
5143
5143
  } | null;
5144
5144
  identifier: string;
5145
5145
  timestamp: bigint;
5146
- type: import("@package/databases/api").AprType;
5146
+ type: import("@package/databases").AprType;
5147
5147
  value: number;
5148
5148
  }[];
5149
5149
  } & {
@@ -5158,7 +5158,7 @@ declare const eden: {
5158
5158
  distributionChainId: number;
5159
5159
  campaignId: string;
5160
5160
  type: string;
5161
- distributionType: import("@package/databases/api").DistributionType;
5161
+ distributionType: import("@package/databases").DistributionType;
5162
5162
  subType: number | null;
5163
5163
  rewardTokenId: string;
5164
5164
  amount: string;
@@ -5172,7 +5172,7 @@ declare const eden: {
5172
5172
  dailyRewards: number;
5173
5173
  apr: number;
5174
5174
  creatorAddress: string;
5175
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
5175
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
5176
5176
  createdAt: Date;
5177
5177
  rootCampaignId: string | null;
5178
5178
  parentCampaignId: string | null;
@@ -5194,8 +5194,8 @@ declare const eden: {
5194
5194
  campaignId: string;
5195
5195
  computedUntil: bigint;
5196
5196
  processingStarted: bigint;
5197
- status: import("@package/databases/api").RunStatus;
5198
- preComputeStatus: import("@package/databases/api").RunStatus;
5197
+ status: import("@package/databases").RunStatus;
5198
+ preComputeStatus: import("@package/databases").RunStatus;
5199
5199
  preComputeProcessingStarted: bigint;
5200
5200
  error: string;
5201
5201
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -5211,7 +5211,7 @@ declare const eden: {
5211
5211
  icon: string;
5212
5212
  verified: boolean;
5213
5213
  isTest: boolean;
5214
- type: import("@package/databases/api").TokenType;
5214
+ type: import("@package/databases").TokenType;
5215
5215
  isNative: boolean;
5216
5216
  underlyingTokenId: string | null;
5217
5217
  price: number | null;
@@ -5220,7 +5220,7 @@ declare const eden: {
5220
5220
  };
5221
5221
  amount: string;
5222
5222
  campaignId: string;
5223
- distributionType: import("@package/databases/api").DistributionType;
5223
+ distributionType: import("@package/databases").DistributionType;
5224
5224
  endTimestamp: bigint;
5225
5225
  startTimestamp: bigint;
5226
5226
  };
@@ -5269,7 +5269,7 @@ declare const eden: {
5269
5269
  icon: string;
5270
5270
  verified: boolean;
5271
5271
  isTest: boolean;
5272
- type: import("@package/databases/api").TokenType;
5272
+ type: import("@package/databases").TokenType;
5273
5273
  isNative: boolean;
5274
5274
  underlyingTokenId: string | null;
5275
5275
  price: number | null;
@@ -5297,7 +5297,7 @@ declare const eden: {
5297
5297
  icon: string;
5298
5298
  verified: boolean;
5299
5299
  isTest: boolean;
5300
- type: import("@package/databases/api").TokenType;
5300
+ type: import("@package/databases").TokenType;
5301
5301
  isNative: boolean;
5302
5302
  underlyingTokenId: string | null;
5303
5303
  price: number | null;
@@ -5307,7 +5307,7 @@ declare const eden: {
5307
5307
  TvlRecords: ({
5308
5308
  TvlBreakdown: {
5309
5309
  identifier: string;
5310
- type: import("@package/databases/api").TvlType;
5310
+ type: import("@package/databases").TvlType;
5311
5311
  value: number;
5312
5312
  }[];
5313
5313
  } & {
@@ -5326,8 +5326,8 @@ declare const eden: {
5326
5326
  howToSteps: string[];
5327
5327
  depositUrl: string | null;
5328
5328
  explorerAddress: string | null;
5329
- status: import("@package/databases/api").Status;
5330
- action: import("@package/databases/api").OpportunityAction;
5329
+ status: import("@package/databases").Status;
5330
+ action: import("@package/databases").OpportunityAction;
5331
5331
  mainProtocolId: string | null;
5332
5332
  tvl: number;
5333
5333
  apr: number;
@@ -5336,7 +5336,7 @@ declare const eden: {
5336
5336
  dailyRewards: number;
5337
5337
  tags: string[];
5338
5338
  lastCampaignCreatedAt: Date;
5339
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
5339
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
5340
5340
  liveCampaigns: number;
5341
5341
  earliestCampaignStart: bigint | null;
5342
5342
  latestCampaignStart: bigint | null;
@@ -5399,7 +5399,7 @@ declare const eden: {
5399
5399
  breakdowns: ({
5400
5400
  identifier: string;
5401
5401
  timestamp: bigint;
5402
- type: import("@package/databases/api").AprType;
5402
+ type: import("@package/databases").AprType;
5403
5403
  value: number;
5404
5404
  } & {
5405
5405
  campaignId?: string | undefined;
@@ -5411,7 +5411,7 @@ declare const eden: {
5411
5411
  tvl: {
5412
5412
  breakdowns: ({
5413
5413
  identifier: string;
5414
- type: import("@package/databases/api").TvlType;
5414
+ type: import("@package/databases").TvlType;
5415
5415
  value: number;
5416
5416
  } & {})[];
5417
5417
  timestamp: bigint;
@@ -5454,7 +5454,7 @@ declare const eden: {
5454
5454
  breakdowns: ({
5455
5455
  identifier: string;
5456
5456
  timestamp: bigint;
5457
- type: import("@package/databases/api").AprType;
5457
+ type: import("@package/databases").AprType;
5458
5458
  value: number;
5459
5459
  } & {
5460
5460
  campaignId?: string | undefined;
@@ -5466,7 +5466,7 @@ declare const eden: {
5466
5466
  tvl: {
5467
5467
  breakdowns: ({
5468
5468
  identifier: string;
5469
- type: import("@package/databases/api").TvlType;
5469
+ type: import("@package/databases").TvlType;
5470
5470
  value: number;
5471
5471
  } & {})[];
5472
5472
  timestamp: bigint;
@@ -5532,7 +5532,7 @@ declare const eden: {
5532
5532
  breakdowns: ({
5533
5533
  identifier: string;
5534
5534
  timestamp: bigint;
5535
- type: import("@package/databases/api").AprType;
5535
+ type: import("@package/databases").AprType;
5536
5536
  value: number;
5537
5537
  } & {
5538
5538
  campaignId?: string | undefined;
@@ -5544,7 +5544,7 @@ declare const eden: {
5544
5544
  tvl: {
5545
5545
  breakdowns: ({
5546
5546
  identifier: string;
5547
- type: import("@package/databases/api").TvlType;
5547
+ type: import("@package/databases").TvlType;
5548
5548
  value: number;
5549
5549
  } & {})[];
5550
5550
  timestamp: bigint;
@@ -5587,7 +5587,7 @@ declare const eden: {
5587
5587
  breakdowns: ({
5588
5588
  identifier: string;
5589
5589
  timestamp: bigint;
5590
- type: import("@package/databases/api").AprType;
5590
+ type: import("@package/databases").AprType;
5591
5591
  value: number;
5592
5592
  } & {
5593
5593
  campaignId?: string | undefined;
@@ -5599,7 +5599,7 @@ declare const eden: {
5599
5599
  tvl: {
5600
5600
  breakdowns: ({
5601
5601
  identifier: string;
5602
- type: import("@package/databases/api").TvlType;
5602
+ type: import("@package/databases").TvlType;
5603
5603
  value: number;
5604
5604
  } & {})[];
5605
5605
  timestamp: bigint;
@@ -5662,7 +5662,7 @@ declare const eden: {
5662
5662
  breakdowns: ({
5663
5663
  identifier: string;
5664
5664
  timestamp: bigint;
5665
- type: import("@package/databases/api").AprType;
5665
+ type: import("@package/databases").AprType;
5666
5666
  value: number;
5667
5667
  } & {
5668
5668
  campaignId?: string | undefined;
@@ -5674,7 +5674,7 @@ declare const eden: {
5674
5674
  tvl: {
5675
5675
  breakdowns: ({
5676
5676
  identifier: string;
5677
- type: import("@package/databases/api").TvlType;
5677
+ type: import("@package/databases").TvlType;
5678
5678
  value: number;
5679
5679
  } & {})[];
5680
5680
  timestamp: bigint;
@@ -5717,7 +5717,7 @@ declare const eden: {
5717
5717
  breakdowns: ({
5718
5718
  identifier: string;
5719
5719
  timestamp: bigint;
5720
- type: import("@package/databases/api").AprType;
5720
+ type: import("@package/databases").AprType;
5721
5721
  value: number;
5722
5722
  } & {
5723
5723
  campaignId?: string | undefined;
@@ -5729,7 +5729,7 @@ declare const eden: {
5729
5729
  tvl: {
5730
5730
  breakdowns: ({
5731
5731
  identifier: string;
5732
- type: import("@package/databases/api").TvlType;
5732
+ type: import("@package/databases").TvlType;
5733
5733
  value: number;
5734
5734
  } & {})[];
5735
5735
  timestamp: bigint;
@@ -5794,7 +5794,7 @@ declare const eden: {
5794
5794
  breakdowns: ({
5795
5795
  identifier: string;
5796
5796
  timestamp: bigint;
5797
- type: import("@package/databases/api").AprType;
5797
+ type: import("@package/databases").AprType;
5798
5798
  value: number;
5799
5799
  } & {
5800
5800
  campaignId?: string | undefined;
@@ -5806,7 +5806,7 @@ declare const eden: {
5806
5806
  tvl: {
5807
5807
  breakdowns: ({
5808
5808
  identifier: string;
5809
- type: import("@package/databases/api").TvlType;
5809
+ type: import("@package/databases").TvlType;
5810
5810
  value: number;
5811
5811
  } & {})[];
5812
5812
  timestamp: bigint;
@@ -5849,7 +5849,7 @@ declare const eden: {
5849
5849
  breakdowns: ({
5850
5850
  identifier: string;
5851
5851
  timestamp: bigint;
5852
- type: import("@package/databases/api").AprType;
5852
+ type: import("@package/databases").AprType;
5853
5853
  value: number;
5854
5854
  } & {
5855
5855
  campaignId?: string | undefined;
@@ -5861,7 +5861,7 @@ declare const eden: {
5861
5861
  tvl: {
5862
5862
  breakdowns: ({
5863
5863
  identifier: string;
5864
- type: import("@package/databases/api").TvlType;
5864
+ type: import("@package/databases").TvlType;
5865
5865
  value: number;
5866
5866
  } & {})[];
5867
5867
  timestamp: bigint;
@@ -5937,8 +5937,8 @@ declare const eden: {
5937
5937
  name: string;
5938
5938
  description: string;
5939
5939
  howToSteps: string[];
5940
- status: import("@package/databases/api").Status;
5941
- action: import("@package/databases/api").OpportunityAction;
5940
+ status: import("@package/databases").Status;
5941
+ action: import("@package/databases").OpportunityAction;
5942
5942
  tvl: number;
5943
5943
  apr: number;
5944
5944
  maxApr: number | null;
@@ -6107,8 +6107,8 @@ declare const eden: {
6107
6107
  name: string;
6108
6108
  description: string;
6109
6109
  howToSteps: string[];
6110
- status: import("@package/databases/api").Status;
6111
- action: import("@package/databases/api").OpportunityAction;
6110
+ status: import("@package/databases").Status;
6111
+ action: import("@package/databases").OpportunityAction;
6112
6112
  tvl: number;
6113
6113
  apr: number;
6114
6114
  maxApr: number | null;
@@ -6262,7 +6262,7 @@ declare const eden: {
6262
6262
  breakdowns: ({
6263
6263
  identifier: string;
6264
6264
  timestamp: bigint;
6265
- type: import("@package/databases/api").AprType;
6265
+ type: import("@package/databases").AprType;
6266
6266
  value: number;
6267
6267
  } & {
6268
6268
  campaignId?: string | undefined;
@@ -6274,7 +6274,7 @@ declare const eden: {
6274
6274
  tvl: {
6275
6275
  breakdowns: ({
6276
6276
  identifier: string;
6277
- type: import("@package/databases/api").TvlType;
6277
+ type: import("@package/databases").TvlType;
6278
6278
  value: number;
6279
6279
  } & {})[];
6280
6280
  timestamp: bigint;
@@ -6317,7 +6317,7 @@ declare const eden: {
6317
6317
  breakdowns: ({
6318
6318
  identifier: string;
6319
6319
  timestamp: bigint;
6320
- type: import("@package/databases/api").AprType;
6320
+ type: import("@package/databases").AprType;
6321
6321
  value: number;
6322
6322
  } & {
6323
6323
  campaignId?: string | undefined;
@@ -6329,7 +6329,7 @@ declare const eden: {
6329
6329
  tvl: {
6330
6330
  breakdowns: ({
6331
6331
  identifier: string;
6332
- type: import("@package/databases/api").TvlType;
6332
+ type: import("@package/databases").TvlType;
6333
6333
  value: number;
6334
6334
  } & {})[];
6335
6335
  timestamp: bigint;
@@ -6416,9 +6416,9 @@ declare const eden: {
6416
6416
  computedUntil: bigint;
6417
6417
  error: string;
6418
6418
  preComputeProcessingStarted: bigint;
6419
- preComputeStatus: import("@package/databases/api").RunStatus;
6419
+ preComputeStatus: import("@package/databases").RunStatus;
6420
6420
  processingStarted: bigint;
6421
- status: import("@package/databases/api").RunStatus;
6421
+ status: import("@package/databases").RunStatus;
6422
6422
  }[];
6423
6423
  campaignId: string;
6424
6424
  createdAt: Date;
@@ -7063,7 +7063,7 @@ declare const eden: {
7063
7063
  amount: string | null;
7064
7064
  campaignsCount: number | null;
7065
7065
  maxApr: number | null;
7066
- relationType: import("@package/databases/api").CarouselType;
7066
+ relationType: import("@package/databases").CarouselType;
7067
7067
  programId: string | null;
7068
7068
  opportunityId: string | null;
7069
7069
  chainId: number | null;
@@ -7099,7 +7099,7 @@ declare const eden: {
7099
7099
  amount: string | null;
7100
7100
  campaignsCount: number | null;
7101
7101
  maxApr: number | null;
7102
- relationType: import("@package/databases/api").CarouselType;
7102
+ relationType: import("@package/databases").CarouselType;
7103
7103
  programId: string | null;
7104
7104
  opportunityId: string | null;
7105
7105
  chainId: number | null;
@@ -7125,7 +7125,7 @@ declare const eden: {
7125
7125
  Chain: ({
7126
7126
  Explorer: {
7127
7127
  id: string;
7128
- type: import("@package/databases/api").ExplorerType;
7128
+ type: import("@package/databases").ExplorerType;
7129
7129
  url: string;
7130
7130
  chainId: number;
7131
7131
  }[];
@@ -7184,7 +7184,7 @@ declare const eden: {
7184
7184
  icon: string;
7185
7185
  verified: boolean;
7186
7186
  isTest: boolean;
7187
- type: import("@package/databases/api").TokenType;
7187
+ type: import("@package/databases").TokenType;
7188
7188
  isNative: boolean;
7189
7189
  underlyingTokenId: string | null;
7190
7190
  price: number | null;
@@ -7201,8 +7201,8 @@ declare const eden: {
7201
7201
  howToSteps: string[];
7202
7202
  depositUrl: string | null;
7203
7203
  explorerAddress: string | null;
7204
- status: import("@package/databases/api").Status;
7205
- action: import("@package/databases/api").OpportunityAction;
7204
+ status: import("@package/databases").Status;
7205
+ action: import("@package/databases").OpportunityAction;
7206
7206
  mainProtocolId: string | null;
7207
7207
  tvl: number;
7208
7208
  apr: number;
@@ -7211,7 +7211,7 @@ declare const eden: {
7211
7211
  dailyRewards: number;
7212
7212
  tags: string[];
7213
7213
  lastCampaignCreatedAt: Date;
7214
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
7214
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
7215
7215
  liveCampaigns: number;
7216
7216
  earliestCampaignStart: bigint | null;
7217
7217
  latestCampaignStart: bigint | null;
@@ -7267,7 +7267,7 @@ declare const eden: {
7267
7267
  icon: string;
7268
7268
  verified: boolean;
7269
7269
  isTest: boolean;
7270
- type: import("@package/databases/api").TokenType;
7270
+ type: import("@package/databases").TokenType;
7271
7271
  isNative: boolean;
7272
7272
  underlyingTokenId: string | null;
7273
7273
  price: number | null;
@@ -7284,8 +7284,8 @@ declare const eden: {
7284
7284
  howToSteps: string[];
7285
7285
  depositUrl: string | null;
7286
7286
  explorerAddress: string | null;
7287
- status: import("@package/databases/api").Status;
7288
- action: import("@package/databases/api").OpportunityAction;
7287
+ status: import("@package/databases").Status;
7288
+ action: import("@package/databases").OpportunityAction;
7289
7289
  mainProtocolId: string | null;
7290
7290
  tvl: number;
7291
7291
  apr: number;
@@ -7294,7 +7294,7 @@ declare const eden: {
7294
7294
  dailyRewards: number;
7295
7295
  tags: string[];
7296
7296
  lastCampaignCreatedAt: Date;
7297
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
7297
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
7298
7298
  liveCampaigns: number;
7299
7299
  earliestCampaignStart: bigint | null;
7300
7300
  latestCampaignStart: bigint | null;
@@ -7333,7 +7333,7 @@ declare const eden: {
7333
7333
  amount: string | null;
7334
7334
  campaignsCount: number | null;
7335
7335
  maxApr: number | null;
7336
- relationType: import("@package/databases/api").CarouselType;
7336
+ relationType: import("@package/databases").CarouselType;
7337
7337
  programId: string | null;
7338
7338
  opportunityId: string | null;
7339
7339
  chainId: number | null;
@@ -7794,7 +7794,7 @@ declare const eden: {
7794
7794
  Chain: ({
7795
7795
  Explorer: {
7796
7796
  id: string;
7797
- type: import("@package/databases/api").ExplorerType;
7797
+ type: import("@package/databases").ExplorerType;
7798
7798
  url: string;
7799
7799
  chainId: number;
7800
7800
  }[];
@@ -7853,7 +7853,7 @@ declare const eden: {
7853
7853
  icon: string;
7854
7854
  verified: boolean;
7855
7855
  isTest: boolean;
7856
- type: import("@package/databases/api").TokenType;
7856
+ type: import("@package/databases").TokenType;
7857
7857
  isNative: boolean;
7858
7858
  underlyingTokenId: string | null;
7859
7859
  price: number | null;
@@ -7870,8 +7870,8 @@ declare const eden: {
7870
7870
  howToSteps: string[];
7871
7871
  depositUrl: string | null;
7872
7872
  explorerAddress: string | null;
7873
- status: import("@package/databases/api").Status;
7874
- action: import("@package/databases/api").OpportunityAction;
7873
+ status: import("@package/databases").Status;
7874
+ action: import("@package/databases").OpportunityAction;
7875
7875
  mainProtocolId: string | null;
7876
7876
  tvl: number;
7877
7877
  apr: number;
@@ -7880,7 +7880,7 @@ declare const eden: {
7880
7880
  dailyRewards: number;
7881
7881
  tags: string[];
7882
7882
  lastCampaignCreatedAt: Date;
7883
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
7883
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
7884
7884
  liveCampaigns: number;
7885
7885
  earliestCampaignStart: bigint | null;
7886
7886
  latestCampaignStart: bigint | null;
@@ -7936,7 +7936,7 @@ declare const eden: {
7936
7936
  icon: string;
7937
7937
  verified: boolean;
7938
7938
  isTest: boolean;
7939
- type: import("@package/databases/api").TokenType;
7939
+ type: import("@package/databases").TokenType;
7940
7940
  isNative: boolean;
7941
7941
  underlyingTokenId: string | null;
7942
7942
  price: number | null;
@@ -7953,8 +7953,8 @@ declare const eden: {
7953
7953
  howToSteps: string[];
7954
7954
  depositUrl: string | null;
7955
7955
  explorerAddress: string | null;
7956
- status: import("@package/databases/api").Status;
7957
- action: import("@package/databases/api").OpportunityAction;
7956
+ status: import("@package/databases").Status;
7957
+ action: import("@package/databases").OpportunityAction;
7958
7958
  mainProtocolId: string | null;
7959
7959
  tvl: number;
7960
7960
  apr: number;
@@ -7963,7 +7963,7 @@ declare const eden: {
7963
7963
  dailyRewards: number;
7964
7964
  tags: string[];
7965
7965
  lastCampaignCreatedAt: Date;
7966
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
7966
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
7967
7967
  liveCampaigns: number;
7968
7968
  earliestCampaignStart: bigint | null;
7969
7969
  latestCampaignStart: bigint | null;
@@ -8002,7 +8002,7 @@ declare const eden: {
8002
8002
  amount: string | null;
8003
8003
  campaignsCount: number | null;
8004
8004
  maxApr: number | null;
8005
- relationType: import("@package/databases/api").CarouselType;
8005
+ relationType: import("@package/databases").CarouselType;
8006
8006
  programId: string | null;
8007
8007
  opportunityId: string | null;
8008
8008
  chainId: number | null;
@@ -8473,7 +8473,7 @@ declare const eden: {
8473
8473
  amount: string | null;
8474
8474
  campaignsCount: number | null;
8475
8475
  maxApr: number | null;
8476
- relationType: import("@package/databases/api").CarouselType;
8476
+ relationType: import("@package/databases").CarouselType;
8477
8477
  programId: string | null;
8478
8478
  opportunityId: string | null;
8479
8479
  chainId: number | null;
@@ -8836,7 +8836,7 @@ declare const eden: {
8836
8836
  symbolCurrency1: string;
8837
8837
  tickSpacing: number;
8838
8838
  } & {
8839
- protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS;
8839
+ protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS | import("@package/resources/enums").ProtocolType.ZIA;
8840
8840
  }) | ({
8841
8841
  chainId: number;
8842
8842
  currency0: string;
@@ -8882,7 +8882,7 @@ declare const eden: {
8882
8882
  symbolCurrency1: string;
8883
8883
  tickSpacing: number;
8884
8884
  } & {
8885
- protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS;
8885
+ protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS | import("@package/resources/enums").ProtocolType.ZIA;
8886
8886
  }) | ({
8887
8887
  chainId: number;
8888
8888
  currency0: string;
@@ -8935,7 +8935,7 @@ declare const eden: {
8935
8935
  symbolCurrency1: string;
8936
8936
  tickSpacing: number;
8937
8937
  } & {
8938
- protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS;
8938
+ protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS | import("@package/resources/enums").ProtocolType.ZIA;
8939
8939
  }) | ({
8940
8940
  chainId: number;
8941
8941
  currency0: string;
@@ -8981,7 +8981,7 @@ declare const eden: {
8981
8981
  symbolCurrency1: string;
8982
8982
  tickSpacing: number;
8983
8983
  } & {
8984
- protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS;
8984
+ protocol: import("@package/resources/enums").ProtocolType.AERODROME | import("@package/resources/enums").ProtocolType.AERODROME_GAUGE_CAP | import("@package/resources/enums").ProtocolType.ARTHSWAP | import("@package/resources/enums").ProtocolType.BASE_SWAP | import("@package/resources/enums").ProtocolType.CAMELOT | import("@package/resources/enums").ProtocolType.CAPRICORN | import("@package/resources/enums").ProtocolType.FENIX | import("@package/resources/enums").ProtocolType.FLOWSWAP | import("@package/resources/enums").ProtocolType.HYBRA | import("@package/resources/enums").ProtocolType.HYDREX | import("@package/resources/enums").ProtocolType.HYPERSWAP | import("@package/resources/enums").ProtocolType.IONEX | import("@package/resources/enums").ProtocolType.IZUMI | import("@package/resources/enums").ProtocolType.JAINE | import("@package/resources/enums").ProtocolType.KATANA | import("@package/resources/enums").ProtocolType.KATANA_ALGEBRA | import("@package/resources/enums").ProtocolType.KITTEN_SWAP | import("@package/resources/enums").ProtocolType.KYO | import("@package/resources/enums").ProtocolType.MONDAY_TRADE | import("@package/resources/enums").ProtocolType.NEPTUNE | import("@package/resources/enums").ProtocolType.NINEMM | import("@package/resources/enums").ProtocolType.PANCAKESWAP | import("@package/resources/enums").ProtocolType.PHARAOH | import("@package/resources/enums").ProtocolType.QUICKSWAP | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA | import("@package/resources/enums").ProtocolType.QUICKSWAP_ALGEBRA_12 | import("@package/resources/enums").ProtocolType.RAMSES | import("@package/resources/enums").ProtocolType.RETRO | import("@package/resources/enums").ProtocolType.ROOSTER | import("@package/resources/enums").ProtocolType.SATSUMA | import("@package/resources/enums").ProtocolType.PROJECT_X | import("@package/resources/enums").ProtocolType.SNAP | import("@package/resources/enums").ProtocolType.SONEX | import("@package/resources/enums").ProtocolType.SPOOKYSWAP_V3 | import("@package/resources/enums").ProtocolType.SUSHI_SWAP | import("@package/resources/enums").ProtocolType.SWAP_X | import("@package/resources/enums").ProtocolType.SYNC_SWAP | import("@package/resources/enums").ProtocolType.UNISWAPV3 | import("@package/resources/enums").ProtocolType.UNISWAPV4 | import("@package/resources/enums").ProtocolType.VELODROME | import("@package/resources/enums").ProtocolType.VOLTAGE | import("@package/resources/enums").ProtocolType.WOODSWAP | import("@package/resources/enums").ProtocolType.XSWAP | import("@package/resources/enums").ProtocolType.ZERO | import("@package/resources/enums").ProtocolType.GLIQUID | import("@package/resources/enums").ProtocolType.TIGRIS | import("@package/resources/enums").ProtocolType.ZIA;
8985
8985
  }) | ({
8986
8986
  chainId: number;
8987
8987
  currency0: string;
@@ -9397,11 +9397,11 @@ declare const eden: {
9397
9397
  AprRecords: ({
9398
9398
  AprBreakdown: {
9399
9399
  Campaign: {
9400
- distributionType: import("@package/databases/api").DistributionType;
9400
+ distributionType: import("@package/databases").DistributionType;
9401
9401
  } | null;
9402
9402
  identifier: string;
9403
9403
  timestamp: bigint;
9404
- type: import("@package/databases/api").AprType;
9404
+ type: import("@package/databases").AprType;
9405
9405
  value: number;
9406
9406
  }[];
9407
9407
  } & {
@@ -9416,7 +9416,7 @@ declare const eden: {
9416
9416
  distributionChainId: number;
9417
9417
  campaignId: string;
9418
9418
  type: string;
9419
- distributionType: import("@package/databases/api").DistributionType;
9419
+ distributionType: import("@package/databases").DistributionType;
9420
9420
  subType: number | null;
9421
9421
  rewardTokenId: string;
9422
9422
  amount: string;
@@ -9430,7 +9430,7 @@ declare const eden: {
9430
9430
  dailyRewards: number;
9431
9431
  apr: number;
9432
9432
  creatorAddress: string;
9433
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
9433
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
9434
9434
  createdAt: Date;
9435
9435
  rootCampaignId: string | null;
9436
9436
  parentCampaignId: string | null;
@@ -9452,8 +9452,8 @@ declare const eden: {
9452
9452
  campaignId: string;
9453
9453
  computedUntil: bigint;
9454
9454
  processingStarted: bigint;
9455
- status: import("@package/databases/api").RunStatus;
9456
- preComputeStatus: import("@package/databases/api").RunStatus;
9455
+ status: import("@package/databases").RunStatus;
9456
+ preComputeStatus: import("@package/databases").RunStatus;
9457
9457
  preComputeProcessingStarted: bigint;
9458
9458
  error: string;
9459
9459
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -9469,7 +9469,7 @@ declare const eden: {
9469
9469
  icon: string;
9470
9470
  verified: boolean;
9471
9471
  isTest: boolean;
9472
- type: import("@package/databases/api").TokenType;
9472
+ type: import("@package/databases").TokenType;
9473
9473
  isNative: boolean;
9474
9474
  underlyingTokenId: string | null;
9475
9475
  price: number | null;
@@ -9478,7 +9478,7 @@ declare const eden: {
9478
9478
  };
9479
9479
  amount: string;
9480
9480
  campaignId: string;
9481
- distributionType: import("@package/databases/api").DistributionType;
9481
+ distributionType: import("@package/databases").DistributionType;
9482
9482
  endTimestamp: bigint;
9483
9483
  startTimestamp: bigint;
9484
9484
  };
@@ -9527,7 +9527,7 @@ declare const eden: {
9527
9527
  icon: string;
9528
9528
  verified: boolean;
9529
9529
  isTest: boolean;
9530
- type: import("@package/databases/api").TokenType;
9530
+ type: import("@package/databases").TokenType;
9531
9531
  isNative: boolean;
9532
9532
  underlyingTokenId: string | null;
9533
9533
  price: number | null;
@@ -9555,7 +9555,7 @@ declare const eden: {
9555
9555
  icon: string;
9556
9556
  verified: boolean;
9557
9557
  isTest: boolean;
9558
- type: import("@package/databases/api").TokenType;
9558
+ type: import("@package/databases").TokenType;
9559
9559
  isNative: boolean;
9560
9560
  underlyingTokenId: string | null;
9561
9561
  price: number | null;
@@ -9565,7 +9565,7 @@ declare const eden: {
9565
9565
  TvlRecords: ({
9566
9566
  TvlBreakdown: {
9567
9567
  identifier: string;
9568
- type: import("@package/databases/api").TvlType;
9568
+ type: import("@package/databases").TvlType;
9569
9569
  value: number;
9570
9570
  }[];
9571
9571
  } & {
@@ -9584,8 +9584,8 @@ declare const eden: {
9584
9584
  howToSteps: string[];
9585
9585
  depositUrl: string | null;
9586
9586
  explorerAddress: string | null;
9587
- status: import("@package/databases/api").Status;
9588
- action: import("@package/databases/api").OpportunityAction;
9587
+ status: import("@package/databases").Status;
9588
+ action: import("@package/databases").OpportunityAction;
9589
9589
  mainProtocolId: string | null;
9590
9590
  tvl: number;
9591
9591
  apr: number;
@@ -9594,7 +9594,7 @@ declare const eden: {
9594
9594
  dailyRewards: number;
9595
9595
  tags: string[];
9596
9596
  lastCampaignCreatedAt: Date;
9597
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
9597
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
9598
9598
  liveCampaigns: number;
9599
9599
  earliestCampaignStart: bigint | null;
9600
9600
  latestCampaignStart: bigint | null;
@@ -9634,7 +9634,7 @@ declare const eden: {
9634
9634
  breakdowns: ({
9635
9635
  identifier: string;
9636
9636
  timestamp: bigint;
9637
- type: import("@package/databases/api").AprType;
9637
+ type: import("@package/databases").AprType;
9638
9638
  value: number;
9639
9639
  } & {
9640
9640
  campaignId?: string | undefined;
@@ -9646,7 +9646,7 @@ declare const eden: {
9646
9646
  tvl: {
9647
9647
  breakdowns: ({
9648
9648
  identifier: string;
9649
- type: import("@package/databases/api").TvlType;
9649
+ type: import("@package/databases").TvlType;
9650
9650
  value: number;
9651
9651
  } & {})[];
9652
9652
  timestamp: bigint;
@@ -9689,7 +9689,7 @@ declare const eden: {
9689
9689
  breakdowns: ({
9690
9690
  identifier: string;
9691
9691
  timestamp: bigint;
9692
- type: import("@package/databases/api").AprType;
9692
+ type: import("@package/databases").AprType;
9693
9693
  value: number;
9694
9694
  } & {
9695
9695
  campaignId?: string | undefined;
@@ -9701,7 +9701,7 @@ declare const eden: {
9701
9701
  tvl: {
9702
9702
  breakdowns: ({
9703
9703
  identifier: string;
9704
- type: import("@package/databases/api").TvlType;
9704
+ type: import("@package/databases").TvlType;
9705
9705
  value: number;
9706
9706
  } & {})[];
9707
9707
  timestamp: bigint;
@@ -9852,8 +9852,8 @@ declare const eden: {
9852
9852
  howToSteps: string[];
9853
9853
  depositUrl: string | null;
9854
9854
  explorerAddress: string | null;
9855
- status: import("@package/databases/api").Status;
9856
- action: import("@package/databases/api").OpportunityAction;
9855
+ status: import("@package/databases").Status;
9856
+ action: import("@package/databases").OpportunityAction;
9857
9857
  mainProtocolId: string | null;
9858
9858
  tvl: number;
9859
9859
  apr: number;
@@ -9862,7 +9862,7 @@ declare const eden: {
9862
9862
  dailyRewards: number;
9863
9863
  tags: string[];
9864
9864
  lastCampaignCreatedAt: Date;
9865
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
9865
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
9866
9866
  liveCampaigns: number;
9867
9867
  earliestCampaignStart: bigint | null;
9868
9868
  latestCampaignStart: bigint | null;
@@ -9876,7 +9876,7 @@ declare const eden: {
9876
9876
  distributionChainId: number;
9877
9877
  campaignId: string;
9878
9878
  type: string;
9879
- distributionType: import("@package/databases/api").DistributionType;
9879
+ distributionType: import("@package/databases").DistributionType;
9880
9880
  subType: number | null;
9881
9881
  rewardTokenId: string;
9882
9882
  amount: string;
@@ -9890,7 +9890,7 @@ declare const eden: {
9890
9890
  dailyRewards: number;
9891
9891
  apr: number;
9892
9892
  creatorAddress: string;
9893
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
9893
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
9894
9894
  createdAt: Date;
9895
9895
  rootCampaignId: string | null;
9896
9896
  parentCampaignId: string | null;
@@ -10586,7 +10586,7 @@ declare const eden: {
10586
10586
  CreditOperations: {
10587
10587
  id: string;
10588
10588
  creatorId: string;
10589
- type: import("@package/databases/api").CreditOperationType;
10589
+ type: import("@package/databases").CreditOperationType;
10590
10590
  amount: number;
10591
10591
  label: string;
10592
10592
  timestamp: Date;
@@ -10617,7 +10617,7 @@ declare const eden: {
10617
10617
  200: {
10618
10618
  id: string;
10619
10619
  creatorId: string;
10620
- type: import("@package/databases/api").CreditOperationType;
10620
+ type: import("@package/databases").CreditOperationType;
10621
10621
  amount: number;
10622
10622
  label: string;
10623
10623
  timestamp: string;
@@ -12523,11 +12523,11 @@ declare const eden: {
12523
12523
  AprRecords: ({
12524
12524
  AprBreakdown: {
12525
12525
  Campaign: {
12526
- distributionType: import("@package/databases/api").DistributionType;
12526
+ distributionType: import("@package/databases").DistributionType;
12527
12527
  } | null;
12528
12528
  identifier: string;
12529
12529
  timestamp: bigint;
12530
- type: import("@package/databases/api").AprType;
12530
+ type: import("@package/databases").AprType;
12531
12531
  value: number;
12532
12532
  }[];
12533
12533
  } & {
@@ -12542,7 +12542,7 @@ declare const eden: {
12542
12542
  distributionChainId: number;
12543
12543
  campaignId: string;
12544
12544
  type: string;
12545
- distributionType: import("@package/databases/api").DistributionType;
12545
+ distributionType: import("@package/databases").DistributionType;
12546
12546
  subType: number | null;
12547
12547
  rewardTokenId: string;
12548
12548
  amount: string;
@@ -12556,7 +12556,7 @@ declare const eden: {
12556
12556
  dailyRewards: number;
12557
12557
  apr: number;
12558
12558
  creatorAddress: string;
12559
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
12559
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
12560
12560
  createdAt: Date;
12561
12561
  rootCampaignId: string | null;
12562
12562
  parentCampaignId: string | null;
@@ -12578,8 +12578,8 @@ declare const eden: {
12578
12578
  campaignId: string;
12579
12579
  computedUntil: bigint;
12580
12580
  processingStarted: bigint;
12581
- status: import("@package/databases/api").RunStatus;
12582
- preComputeStatus: import("@package/databases/api").RunStatus;
12581
+ status: import("@package/databases").RunStatus;
12582
+ preComputeStatus: import("@package/databases").RunStatus;
12583
12583
  preComputeProcessingStarted: bigint;
12584
12584
  error: string;
12585
12585
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -12595,7 +12595,7 @@ declare const eden: {
12595
12595
  icon: string;
12596
12596
  verified: boolean;
12597
12597
  isTest: boolean;
12598
- type: import("@package/databases/api").TokenType;
12598
+ type: import("@package/databases").TokenType;
12599
12599
  isNative: boolean;
12600
12600
  underlyingTokenId: string | null;
12601
12601
  price: number | null;
@@ -12604,7 +12604,7 @@ declare const eden: {
12604
12604
  };
12605
12605
  amount: string;
12606
12606
  campaignId: string;
12607
- distributionType: import("@package/databases/api").DistributionType;
12607
+ distributionType: import("@package/databases").DistributionType;
12608
12608
  endTimestamp: bigint;
12609
12609
  startTimestamp: bigint;
12610
12610
  };
@@ -12653,7 +12653,7 @@ declare const eden: {
12653
12653
  icon: string;
12654
12654
  verified: boolean;
12655
12655
  isTest: boolean;
12656
- type: import("@package/databases/api").TokenType;
12656
+ type: import("@package/databases").TokenType;
12657
12657
  isNative: boolean;
12658
12658
  underlyingTokenId: string | null;
12659
12659
  price: number | null;
@@ -12681,7 +12681,7 @@ declare const eden: {
12681
12681
  icon: string;
12682
12682
  verified: boolean;
12683
12683
  isTest: boolean;
12684
- type: import("@package/databases/api").TokenType;
12684
+ type: import("@package/databases").TokenType;
12685
12685
  isNative: boolean;
12686
12686
  underlyingTokenId: string | null;
12687
12687
  price: number | null;
@@ -12691,7 +12691,7 @@ declare const eden: {
12691
12691
  TvlRecords: ({
12692
12692
  TvlBreakdown: {
12693
12693
  identifier: string;
12694
- type: import("@package/databases/api").TvlType;
12694
+ type: import("@package/databases").TvlType;
12695
12695
  value: number;
12696
12696
  }[];
12697
12697
  } & {
@@ -12710,8 +12710,8 @@ declare const eden: {
12710
12710
  howToSteps: string[];
12711
12711
  depositUrl: string | null;
12712
12712
  explorerAddress: string | null;
12713
- status: import("@package/databases/api").Status;
12714
- action: import("@package/databases/api").OpportunityAction;
12713
+ status: import("@package/databases").Status;
12714
+ action: import("@package/databases").OpportunityAction;
12715
12715
  mainProtocolId: string | null;
12716
12716
  tvl: number;
12717
12717
  apr: number;
@@ -12720,7 +12720,7 @@ declare const eden: {
12720
12720
  dailyRewards: number;
12721
12721
  tags: string[];
12722
12722
  lastCampaignCreatedAt: Date;
12723
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
12723
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
12724
12724
  liveCampaigns: number;
12725
12725
  earliestCampaignStart: bigint | null;
12726
12726
  latestCampaignStart: bigint | null;
@@ -12756,8 +12756,8 @@ declare const eden: {
12756
12756
  howToSteps: string[];
12757
12757
  depositUrl: string | null;
12758
12758
  explorerAddress: string | null;
12759
- status: import("@package/databases/api").Status;
12760
- action: import("@package/databases/api").OpportunityAction;
12759
+ status: import("@package/databases").Status;
12760
+ action: import("@package/databases").OpportunityAction;
12761
12761
  mainProtocolId: string | null;
12762
12762
  tvl: number;
12763
12763
  apr: number;
@@ -12766,7 +12766,7 @@ declare const eden: {
12766
12766
  dailyRewards: number;
12767
12767
  tags: string[];
12768
12768
  lastCampaignCreatedAt: Date;
12769
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
12769
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
12770
12770
  liveCampaigns: number;
12771
12771
  earliestCampaignStart: bigint | null;
12772
12772
  latestCampaignStart: bigint | null;
@@ -13138,8 +13138,8 @@ declare const eden: {
13138
13138
  howToSteps: string[];
13139
13139
  depositUrl: string | null;
13140
13140
  explorerAddress: string | null;
13141
- status: import("@package/databases/api").Status;
13142
- action: import("@package/databases/api").OpportunityAction;
13141
+ status: import("@package/databases").Status;
13142
+ action: import("@package/databases").OpportunityAction;
13143
13143
  mainProtocolId: string | null;
13144
13144
  tvl: number;
13145
13145
  apr: number;
@@ -13148,7 +13148,7 @@ declare const eden: {
13148
13148
  dailyRewards: number;
13149
13149
  tags: string[];
13150
13150
  lastCampaignCreatedAt: Date;
13151
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
13151
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
13152
13152
  liveCampaigns: number;
13153
13153
  earliestCampaignStart: bigint | null;
13154
13154
  latestCampaignStart: bigint | null;
@@ -13245,8 +13245,8 @@ declare const eden: {
13245
13245
  howToSteps: string[];
13246
13246
  depositUrl: string | null;
13247
13247
  explorerAddress: string | null;
13248
- status: import("@package/databases/api").Status;
13249
- action: import("@package/databases/api").OpportunityAction;
13248
+ status: import("@package/databases").Status;
13249
+ action: import("@package/databases").OpportunityAction;
13250
13250
  mainProtocolId: string | null;
13251
13251
  tvl: number;
13252
13252
  apr: number;
@@ -13255,7 +13255,7 @@ declare const eden: {
13255
13255
  dailyRewards: number;
13256
13256
  tags: string[];
13257
13257
  lastCampaignCreatedAt: Date;
13258
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
13258
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
13259
13259
  liveCampaigns: number;
13260
13260
  earliestCampaignStart: bigint | null;
13261
13261
  latestCampaignStart: bigint | null;
@@ -13307,11 +13307,11 @@ declare const eden: {
13307
13307
  AprRecords: ({
13308
13308
  AprBreakdown: {
13309
13309
  Campaign: {
13310
- distributionType: import("@package/databases/api").DistributionType;
13310
+ distributionType: import("@package/databases").DistributionType;
13311
13311
  } | null;
13312
13312
  identifier: string;
13313
13313
  timestamp: bigint;
13314
- type: import("@package/databases/api").AprType;
13314
+ type: import("@package/databases").AprType;
13315
13315
  value: number;
13316
13316
  }[];
13317
13317
  } & {
@@ -13326,7 +13326,7 @@ declare const eden: {
13326
13326
  distributionChainId: number;
13327
13327
  campaignId: string;
13328
13328
  type: string;
13329
- distributionType: import("@package/databases/api").DistributionType;
13329
+ distributionType: import("@package/databases").DistributionType;
13330
13330
  subType: number | null;
13331
13331
  rewardTokenId: string;
13332
13332
  amount: string;
@@ -13340,7 +13340,7 @@ declare const eden: {
13340
13340
  dailyRewards: number;
13341
13341
  apr: number;
13342
13342
  creatorAddress: string;
13343
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
13343
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
13344
13344
  createdAt: Date;
13345
13345
  rootCampaignId: string | null;
13346
13346
  parentCampaignId: string | null;
@@ -13362,8 +13362,8 @@ declare const eden: {
13362
13362
  campaignId: string;
13363
13363
  computedUntil: bigint;
13364
13364
  processingStarted: bigint;
13365
- status: import("@package/databases/api").RunStatus;
13366
- preComputeStatus: import("@package/databases/api").RunStatus;
13365
+ status: import("@package/databases").RunStatus;
13366
+ preComputeStatus: import("@package/databases").RunStatus;
13367
13367
  preComputeProcessingStarted: bigint;
13368
13368
  error: string;
13369
13369
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -13379,7 +13379,7 @@ declare const eden: {
13379
13379
  icon: string;
13380
13380
  verified: boolean;
13381
13381
  isTest: boolean;
13382
- type: import("@package/databases/api").TokenType;
13382
+ type: import("@package/databases").TokenType;
13383
13383
  isNative: boolean;
13384
13384
  underlyingTokenId: string | null;
13385
13385
  price: number | null;
@@ -13388,7 +13388,7 @@ declare const eden: {
13388
13388
  };
13389
13389
  amount: string;
13390
13390
  campaignId: string;
13391
- distributionType: import("@package/databases/api").DistributionType;
13391
+ distributionType: import("@package/databases").DistributionType;
13392
13392
  endTimestamp: bigint;
13393
13393
  startTimestamp: bigint;
13394
13394
  };
@@ -13437,7 +13437,7 @@ declare const eden: {
13437
13437
  icon: string;
13438
13438
  verified: boolean;
13439
13439
  isTest: boolean;
13440
- type: import("@package/databases/api").TokenType;
13440
+ type: import("@package/databases").TokenType;
13441
13441
  isNative: boolean;
13442
13442
  underlyingTokenId: string | null;
13443
13443
  price: number | null;
@@ -13465,7 +13465,7 @@ declare const eden: {
13465
13465
  icon: string;
13466
13466
  verified: boolean;
13467
13467
  isTest: boolean;
13468
- type: import("@package/databases/api").TokenType;
13468
+ type: import("@package/databases").TokenType;
13469
13469
  isNative: boolean;
13470
13470
  underlyingTokenId: string | null;
13471
13471
  price: number | null;
@@ -13475,7 +13475,7 @@ declare const eden: {
13475
13475
  TvlRecords: ({
13476
13476
  TvlBreakdown: {
13477
13477
  identifier: string;
13478
- type: import("@package/databases/api").TvlType;
13478
+ type: import("@package/databases").TvlType;
13479
13479
  value: number;
13480
13480
  }[];
13481
13481
  } & {
@@ -13494,8 +13494,8 @@ declare const eden: {
13494
13494
  howToSteps: string[];
13495
13495
  depositUrl: string | null;
13496
13496
  explorerAddress: string | null;
13497
- status: import("@package/databases/api").Status;
13498
- action: import("@package/databases/api").OpportunityAction;
13497
+ status: import("@package/databases").Status;
13498
+ action: import("@package/databases").OpportunityAction;
13499
13499
  mainProtocolId: string | null;
13500
13500
  tvl: number;
13501
13501
  apr: number;
@@ -13504,7 +13504,7 @@ declare const eden: {
13504
13504
  dailyRewards: number;
13505
13505
  tags: string[];
13506
13506
  lastCampaignCreatedAt: Date;
13507
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
13507
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
13508
13508
  liveCampaigns: number;
13509
13509
  earliestCampaignStart: bigint | null;
13510
13510
  latestCampaignStart: bigint | null;
@@ -13542,8 +13542,8 @@ declare const eden: {
13542
13542
  howToSteps: string[];
13543
13543
  depositUrl: string | null;
13544
13544
  explorerAddress: string | null;
13545
- status: import("@package/databases/api").Status;
13546
- action: import("@package/databases/api").OpportunityAction;
13545
+ status: import("@package/databases").Status;
13546
+ action: import("@package/databases").OpportunityAction;
13547
13547
  mainProtocolId: string | null;
13548
13548
  tvl: number;
13549
13549
  apr: number;
@@ -13552,7 +13552,7 @@ declare const eden: {
13552
13552
  dailyRewards: number;
13553
13553
  tags: string[];
13554
13554
  lastCampaignCreatedAt: Date;
13555
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
13555
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
13556
13556
  liveCampaigns: number;
13557
13557
  earliestCampaignStart: bigint | null;
13558
13558
  latestCampaignStart: bigint | null;
@@ -13587,8 +13587,8 @@ declare const eden: {
13587
13587
  howToSteps: string[];
13588
13588
  depositUrl: string | null;
13589
13589
  explorerAddress: string | null;
13590
- status: import("@package/databases/api").Status;
13591
- action: import("@package/databases/api").OpportunityAction;
13590
+ status: import("@package/databases").Status;
13591
+ action: import("@package/databases").OpportunityAction;
13592
13592
  mainProtocolId: string | null;
13593
13593
  tvl: number;
13594
13594
  apr: number;
@@ -13597,7 +13597,7 @@ declare const eden: {
13597
13597
  dailyRewards: number;
13598
13598
  tags: string[];
13599
13599
  lastCampaignCreatedAt: Date;
13600
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
13600
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
13601
13601
  liveCampaigns: number;
13602
13602
  earliestCampaignStart: bigint | null;
13603
13603
  latestCampaignStart: bigint | null;
@@ -15264,11 +15264,11 @@ declare const eden: {
15264
15264
  AprRecords: ({
15265
15265
  AprBreakdown: {
15266
15266
  Campaign: {
15267
- distributionType: import("@package/databases/api").DistributionType;
15267
+ distributionType: import("@package/databases").DistributionType;
15268
15268
  } | null;
15269
15269
  identifier: string;
15270
15270
  timestamp: bigint;
15271
- type: import("@package/databases/api").AprType;
15271
+ type: import("@package/databases").AprType;
15272
15272
  value: number;
15273
15273
  }[];
15274
15274
  } & {
@@ -15283,7 +15283,7 @@ declare const eden: {
15283
15283
  distributionChainId: number;
15284
15284
  campaignId: string;
15285
15285
  type: string;
15286
- distributionType: import("@package/databases/api").DistributionType;
15286
+ distributionType: import("@package/databases").DistributionType;
15287
15287
  subType: number | null;
15288
15288
  rewardTokenId: string;
15289
15289
  amount: string;
@@ -15297,7 +15297,7 @@ declare const eden: {
15297
15297
  dailyRewards: number;
15298
15298
  apr: number;
15299
15299
  creatorAddress: string;
15300
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
15300
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
15301
15301
  createdAt: Date;
15302
15302
  rootCampaignId: string | null;
15303
15303
  parentCampaignId: string | null;
@@ -15319,8 +15319,8 @@ declare const eden: {
15319
15319
  campaignId: string;
15320
15320
  computedUntil: bigint;
15321
15321
  processingStarted: bigint;
15322
- status: import("@package/databases/api").RunStatus;
15323
- preComputeStatus: import("@package/databases/api").RunStatus;
15322
+ status: import("@package/databases").RunStatus;
15323
+ preComputeStatus: import("@package/databases").RunStatus;
15324
15324
  preComputeProcessingStarted: bigint;
15325
15325
  error: string;
15326
15326
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -15336,7 +15336,7 @@ declare const eden: {
15336
15336
  icon: string;
15337
15337
  verified: boolean;
15338
15338
  isTest: boolean;
15339
- type: import("@package/databases/api").TokenType;
15339
+ type: import("@package/databases").TokenType;
15340
15340
  isNative: boolean;
15341
15341
  underlyingTokenId: string | null;
15342
15342
  price: number | null;
@@ -15345,7 +15345,7 @@ declare const eden: {
15345
15345
  };
15346
15346
  amount: string;
15347
15347
  campaignId: string;
15348
- distributionType: import("@package/databases/api").DistributionType;
15348
+ distributionType: import("@package/databases").DistributionType;
15349
15349
  endTimestamp: bigint;
15350
15350
  startTimestamp: bigint;
15351
15351
  };
@@ -15394,7 +15394,7 @@ declare const eden: {
15394
15394
  icon: string;
15395
15395
  verified: boolean;
15396
15396
  isTest: boolean;
15397
- type: import("@package/databases/api").TokenType;
15397
+ type: import("@package/databases").TokenType;
15398
15398
  isNative: boolean;
15399
15399
  underlyingTokenId: string | null;
15400
15400
  price: number | null;
@@ -15422,7 +15422,7 @@ declare const eden: {
15422
15422
  icon: string;
15423
15423
  verified: boolean;
15424
15424
  isTest: boolean;
15425
- type: import("@package/databases/api").TokenType;
15425
+ type: import("@package/databases").TokenType;
15426
15426
  isNative: boolean;
15427
15427
  underlyingTokenId: string | null;
15428
15428
  price: number | null;
@@ -15432,7 +15432,7 @@ declare const eden: {
15432
15432
  TvlRecords: ({
15433
15433
  TvlBreakdown: {
15434
15434
  identifier: string;
15435
- type: import("@package/databases/api").TvlType;
15435
+ type: import("@package/databases").TvlType;
15436
15436
  value: number;
15437
15437
  }[];
15438
15438
  } & {
@@ -15451,8 +15451,8 @@ declare const eden: {
15451
15451
  howToSteps: string[];
15452
15452
  depositUrl: string | null;
15453
15453
  explorerAddress: string | null;
15454
- status: import("@package/databases/api").Status;
15455
- action: import("@package/databases/api").OpportunityAction;
15454
+ status: import("@package/databases").Status;
15455
+ action: import("@package/databases").OpportunityAction;
15456
15456
  mainProtocolId: string | null;
15457
15457
  tvl: number;
15458
15458
  apr: number;
@@ -15461,7 +15461,7 @@ declare const eden: {
15461
15461
  dailyRewards: number;
15462
15462
  tags: string[];
15463
15463
  lastCampaignCreatedAt: Date;
15464
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
15464
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
15465
15465
  liveCampaigns: number;
15466
15466
  earliestCampaignStart: bigint | null;
15467
15467
  latestCampaignStart: bigint | null;
@@ -15472,7 +15472,7 @@ declare const eden: {
15472
15472
  tvl: {
15473
15473
  breakdowns: ({
15474
15474
  identifier: string;
15475
- type: import("@package/databases/api").TvlType;
15475
+ type: import("@package/databases").TvlType;
15476
15476
  value: number;
15477
15477
  } & {})[];
15478
15478
  timestamp: bigint;
@@ -15560,11 +15560,11 @@ declare const eden: {
15560
15560
  AprRecords: ({
15561
15561
  AprBreakdown: {
15562
15562
  Campaign: {
15563
- distributionType: import("@package/databases/api").DistributionType;
15563
+ distributionType: import("@package/databases").DistributionType;
15564
15564
  } | null;
15565
15565
  identifier: string;
15566
15566
  timestamp: bigint;
15567
- type: import("@package/databases/api").AprType;
15567
+ type: import("@package/databases").AprType;
15568
15568
  value: number;
15569
15569
  }[];
15570
15570
  } & {
@@ -15579,7 +15579,7 @@ declare const eden: {
15579
15579
  distributionChainId: number;
15580
15580
  campaignId: string;
15581
15581
  type: string;
15582
- distributionType: import("@package/databases/api").DistributionType;
15582
+ distributionType: import("@package/databases").DistributionType;
15583
15583
  subType: number | null;
15584
15584
  rewardTokenId: string;
15585
15585
  amount: string;
@@ -15593,7 +15593,7 @@ declare const eden: {
15593
15593
  dailyRewards: number;
15594
15594
  apr: number;
15595
15595
  creatorAddress: string;
15596
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
15596
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
15597
15597
  createdAt: Date;
15598
15598
  rootCampaignId: string | null;
15599
15599
  parentCampaignId: string | null;
@@ -15615,8 +15615,8 @@ declare const eden: {
15615
15615
  campaignId: string;
15616
15616
  computedUntil: bigint;
15617
15617
  processingStarted: bigint;
15618
- status: import("@package/databases/api").RunStatus;
15619
- preComputeStatus: import("@package/databases/api").RunStatus;
15618
+ status: import("@package/databases").RunStatus;
15619
+ preComputeStatus: import("@package/databases").RunStatus;
15620
15620
  preComputeProcessingStarted: bigint;
15621
15621
  error: string;
15622
15622
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -15632,7 +15632,7 @@ declare const eden: {
15632
15632
  icon: string;
15633
15633
  verified: boolean;
15634
15634
  isTest: boolean;
15635
- type: import("@package/databases/api").TokenType;
15635
+ type: import("@package/databases").TokenType;
15636
15636
  isNative: boolean;
15637
15637
  underlyingTokenId: string | null;
15638
15638
  price: number | null;
@@ -15641,7 +15641,7 @@ declare const eden: {
15641
15641
  };
15642
15642
  amount: string;
15643
15643
  campaignId: string;
15644
- distributionType: import("@package/databases/api").DistributionType;
15644
+ distributionType: import("@package/databases").DistributionType;
15645
15645
  endTimestamp: bigint;
15646
15646
  startTimestamp: bigint;
15647
15647
  };
@@ -15690,7 +15690,7 @@ declare const eden: {
15690
15690
  icon: string;
15691
15691
  verified: boolean;
15692
15692
  isTest: boolean;
15693
- type: import("@package/databases/api").TokenType;
15693
+ type: import("@package/databases").TokenType;
15694
15694
  isNative: boolean;
15695
15695
  underlyingTokenId: string | null;
15696
15696
  price: number | null;
@@ -15718,7 +15718,7 @@ declare const eden: {
15718
15718
  icon: string;
15719
15719
  verified: boolean;
15720
15720
  isTest: boolean;
15721
- type: import("@package/databases/api").TokenType;
15721
+ type: import("@package/databases").TokenType;
15722
15722
  isNative: boolean;
15723
15723
  underlyingTokenId: string | null;
15724
15724
  price: number | null;
@@ -15728,7 +15728,7 @@ declare const eden: {
15728
15728
  TvlRecords: ({
15729
15729
  TvlBreakdown: {
15730
15730
  identifier: string;
15731
- type: import("@package/databases/api").TvlType;
15731
+ type: import("@package/databases").TvlType;
15732
15732
  value: number;
15733
15733
  }[];
15734
15734
  } & {
@@ -15747,8 +15747,8 @@ declare const eden: {
15747
15747
  howToSteps: string[];
15748
15748
  depositUrl: string | null;
15749
15749
  explorerAddress: string | null;
15750
- status: import("@package/databases/api").Status;
15751
- action: import("@package/databases/api").OpportunityAction;
15750
+ status: import("@package/databases").Status;
15751
+ action: import("@package/databases").OpportunityAction;
15752
15752
  mainProtocolId: string | null;
15753
15753
  tvl: number;
15754
15754
  apr: number;
@@ -15757,7 +15757,7 @@ declare const eden: {
15757
15757
  dailyRewards: number;
15758
15758
  tags: string[];
15759
15759
  lastCampaignCreatedAt: Date;
15760
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
15760
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
15761
15761
  liveCampaigns: number;
15762
15762
  earliestCampaignStart: bigint | null;
15763
15763
  latestCampaignStart: bigint | null;
@@ -15768,7 +15768,7 @@ declare const eden: {
15768
15768
  tvl: {
15769
15769
  breakdowns: ({
15770
15770
  identifier: string;
15771
- type: import("@package/databases/api").TvlType;
15771
+ type: import("@package/databases").TvlType;
15772
15772
  value: number;
15773
15773
  } & {})[];
15774
15774
  timestamp: bigint;
@@ -15902,11 +15902,11 @@ declare const eden: {
15902
15902
  AprRecords: ({
15903
15903
  AprBreakdown: {
15904
15904
  Campaign: {
15905
- distributionType: import("@package/databases/api").DistributionType;
15905
+ distributionType: import("@package/databases").DistributionType;
15906
15906
  } | null;
15907
15907
  identifier: string;
15908
15908
  timestamp: bigint;
15909
- type: import("@package/databases/api").AprType;
15909
+ type: import("@package/databases").AprType;
15910
15910
  value: number;
15911
15911
  }[];
15912
15912
  } & {
@@ -15921,7 +15921,7 @@ declare const eden: {
15921
15921
  distributionChainId: number;
15922
15922
  campaignId: string;
15923
15923
  type: string;
15924
- distributionType: import("@package/databases/api").DistributionType;
15924
+ distributionType: import("@package/databases").DistributionType;
15925
15925
  subType: number | null;
15926
15926
  rewardTokenId: string;
15927
15927
  amount: string;
@@ -15935,7 +15935,7 @@ declare const eden: {
15935
15935
  dailyRewards: number;
15936
15936
  apr: number;
15937
15937
  creatorAddress: string;
15938
- manualOverrides: import("@package/databases/api").CampaignManualOverride[];
15938
+ manualOverrides: import("@package/databases").CampaignManualOverride[];
15939
15939
  createdAt: Date;
15940
15940
  rootCampaignId: string | null;
15941
15941
  parentCampaignId: string | null;
@@ -15957,8 +15957,8 @@ declare const eden: {
15957
15957
  campaignId: string;
15958
15958
  computedUntil: bigint;
15959
15959
  processingStarted: bigint;
15960
- status: import("@package/databases/api").RunStatus;
15961
- preComputeStatus: import("@package/databases/api").RunStatus;
15960
+ status: import("@package/databases").RunStatus;
15961
+ preComputeStatus: import("@package/databases").RunStatus;
15962
15962
  preComputeProcessingStarted: bigint;
15963
15963
  error: string;
15964
15964
  details: import("@prisma/client/runtime/client").JsonValue;
@@ -15974,7 +15974,7 @@ declare const eden: {
15974
15974
  icon: string;
15975
15975
  verified: boolean;
15976
15976
  isTest: boolean;
15977
- type: import("@package/databases/api").TokenType;
15977
+ type: import("@package/databases").TokenType;
15978
15978
  isNative: boolean;
15979
15979
  underlyingTokenId: string | null;
15980
15980
  price: number | null;
@@ -15983,7 +15983,7 @@ declare const eden: {
15983
15983
  };
15984
15984
  amount: string;
15985
15985
  campaignId: string;
15986
- distributionType: import("@package/databases/api").DistributionType;
15986
+ distributionType: import("@package/databases").DistributionType;
15987
15987
  endTimestamp: bigint;
15988
15988
  startTimestamp: bigint;
15989
15989
  };
@@ -16032,7 +16032,7 @@ declare const eden: {
16032
16032
  icon: string;
16033
16033
  verified: boolean;
16034
16034
  isTest: boolean;
16035
- type: import("@package/databases/api").TokenType;
16035
+ type: import("@package/databases").TokenType;
16036
16036
  isNative: boolean;
16037
16037
  underlyingTokenId: string | null;
16038
16038
  price: number | null;
@@ -16060,7 +16060,7 @@ declare const eden: {
16060
16060
  icon: string;
16061
16061
  verified: boolean;
16062
16062
  isTest: boolean;
16063
- type: import("@package/databases/api").TokenType;
16063
+ type: import("@package/databases").TokenType;
16064
16064
  isNative: boolean;
16065
16065
  underlyingTokenId: string | null;
16066
16066
  price: number | null;
@@ -16070,7 +16070,7 @@ declare const eden: {
16070
16070
  TvlRecords: ({
16071
16071
  TvlBreakdown: {
16072
16072
  identifier: string;
16073
- type: import("@package/databases/api").TvlType;
16073
+ type: import("@package/databases").TvlType;
16074
16074
  value: number;
16075
16075
  }[];
16076
16076
  } & {
@@ -16089,8 +16089,8 @@ declare const eden: {
16089
16089
  howToSteps: string[];
16090
16090
  depositUrl: string | null;
16091
16091
  explorerAddress: string | null;
16092
- status: import("@package/databases/api").Status;
16093
- action: import("@package/databases/api").OpportunityAction;
16092
+ status: import("@package/databases").Status;
16093
+ action: import("@package/databases").OpportunityAction;
16094
16094
  mainProtocolId: string | null;
16095
16095
  tvl: number;
16096
16096
  apr: number;
@@ -16099,7 +16099,7 @@ declare const eden: {
16099
16099
  dailyRewards: number;
16100
16100
  tags: string[];
16101
16101
  lastCampaignCreatedAt: Date;
16102
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
16102
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
16103
16103
  liveCampaigns: number;
16104
16104
  earliestCampaignStart: bigint | null;
16105
16105
  latestCampaignStart: bigint | null;
@@ -16110,7 +16110,7 @@ declare const eden: {
16110
16110
  tvl: {
16111
16111
  breakdowns: ({
16112
16112
  identifier: string;
16113
- type: import("@package/databases/api").TvlType;
16113
+ type: import("@package/databases").TvlType;
16114
16114
  value: number;
16115
16115
  } & {})[];
16116
16116
  timestamp: bigint;
@@ -16164,10 +16164,10 @@ declare const eden: {
16164
16164
  } | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
16165
16165
  200: {
16166
16166
  id: number;
16167
- type: import("@package/databases/api").PriceSourceType;
16167
+ type: import("@package/databases").PriceSourceType;
16168
16168
  protected: boolean;
16169
16169
  identifier: string;
16170
- method: import("@package/databases/api").PriceSourceMethod;
16170
+ method: import("@package/databases").PriceSourceMethod;
16171
16171
  args: import("@prisma/client/runtime/client").JsonValue;
16172
16172
  value: number | null;
16173
16173
  updatedAt: number | null;
@@ -16197,10 +16197,10 @@ declare const eden: {
16197
16197
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
16198
16198
  200: {
16199
16199
  id: number;
16200
- type: import("@package/databases/api").PriceSourceType;
16200
+ type: import("@package/databases").PriceSourceType;
16201
16201
  protected: boolean;
16202
16202
  identifier: string;
16203
- method: import("@package/databases/api").PriceSourceMethod;
16203
+ method: import("@package/databases").PriceSourceMethod;
16204
16204
  args: import("@prisma/client/runtime/client").JsonValue;
16205
16205
  value: number | null;
16206
16206
  updatedAt: number | null;
@@ -16224,10 +16224,10 @@ declare const eden: {
16224
16224
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
16225
16225
  200: {
16226
16226
  id: number;
16227
- type: import("@package/databases/api").PriceSourceType;
16227
+ type: import("@package/databases").PriceSourceType;
16228
16228
  protected: boolean;
16229
16229
  identifier: string;
16230
- method: import("@package/databases/api").PriceSourceMethod;
16230
+ method: import("@package/databases").PriceSourceMethod;
16231
16231
  args: import("@prisma/client/runtime/client").JsonValue;
16232
16232
  value: number | null;
16233
16233
  updatedAt: number | null;
@@ -16250,10 +16250,10 @@ declare const eden: {
16250
16250
  } | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
16251
16251
  200: {
16252
16252
  id: number;
16253
- type: import("@package/databases/api").PriceSourceType;
16253
+ type: import("@package/databases").PriceSourceType;
16254
16254
  protected: boolean;
16255
16255
  identifier: string;
16256
- method: import("@package/databases/api").PriceSourceMethod;
16256
+ method: import("@package/databases").PriceSourceMethod;
16257
16257
  args: import("@prisma/client/runtime/client").JsonValue;
16258
16258
  value: number | null;
16259
16259
  updatedAt: number | null;
@@ -16304,10 +16304,10 @@ declare const eden: {
16304
16304
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
16305
16305
  200: {
16306
16306
  id: number;
16307
- type: import("@package/databases/api").PriceSourceType;
16307
+ type: import("@package/databases").PriceSourceType;
16308
16308
  protected: boolean;
16309
16309
  identifier: string;
16310
- method: import("@package/databases/api").PriceSourceMethod;
16310
+ method: import("@package/databases").PriceSourceMethod;
16311
16311
  args: import("@prisma/client/runtime/client").JsonValue;
16312
16312
  value: number | null;
16313
16313
  updatedAt: number | null;
@@ -18207,7 +18207,7 @@ declare const eden: {
18207
18207
  baseConfig: import("@prisma/client/runtime/client").JsonValue;
18208
18208
  completionConfig: import("@prisma/client/runtime/client").JsonValue;
18209
18209
  protocolId: string | null;
18210
- action: import("@package/databases/api").OpportunityAction | null;
18210
+ action: import("@package/databases").OpportunityAction | null;
18211
18211
  };
18212
18212
  422: {
18213
18213
  type: "validation";
@@ -19205,6 +19205,19 @@ declare const eden: {
19205
19205
  symbolCurrency1: string;
19206
19206
  tickSpacing: number;
19207
19207
  }> | undefined;
19208
+ 1337?: Record<string, {
19209
+ chainId: number;
19210
+ currency0: string;
19211
+ currency1: string;
19212
+ decimalsCurrency0: number;
19213
+ decimalsCurrency1: number;
19214
+ hooks: string;
19215
+ lpFee: number;
19216
+ poolId: string;
19217
+ symbolCurrency0: string;
19218
+ symbolCurrency1: string;
19219
+ tickSpacing: number;
19220
+ }> | undefined;
19208
19221
  13371?: Record<string, {
19209
19222
  chainId: number;
19210
19223
  currency0: string;
@@ -19530,6 +19543,19 @@ declare const eden: {
19530
19543
  symbolCurrency1: string;
19531
19544
  tickSpacing: number;
19532
19545
  }> | undefined;
19546
+ 3776?: Record<string, {
19547
+ chainId: number;
19548
+ currency0: string;
19549
+ currency1: string;
19550
+ decimalsCurrency0: number;
19551
+ decimalsCurrency1: number;
19552
+ hooks: string;
19553
+ lpFee: number;
19554
+ poolId: string;
19555
+ symbolCurrency0: string;
19556
+ symbolCurrency1: string;
19557
+ tickSpacing: number;
19558
+ }> | undefined;
19533
19559
  4?: Record<string, {
19534
19560
  chainId: number;
19535
19561
  currency0: string;
@@ -20636,8 +20662,8 @@ declare const eden: {
20636
20662
  pending: string;
20637
20663
  campaignStatus: {
20638
20664
  campaignId: string;
20639
- status: import("@package/databases/api").RunStatus;
20640
- preComputeStatus: import("@package/databases/api").RunStatus;
20665
+ status: import("@package/databases").RunStatus;
20666
+ preComputeStatus: import("@package/databases").RunStatus;
20641
20667
  error: string;
20642
20668
  details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
20643
20669
  delay: number;
@@ -20695,7 +20721,7 @@ declare const eden: {
20695
20721
  icon: string;
20696
20722
  verified: boolean;
20697
20723
  isTest: boolean;
20698
- type: import("@package/databases/api").TokenType;
20724
+ type: import("@package/databases").TokenType;
20699
20725
  isNative: boolean;
20700
20726
  underlyingTokenId: string | null;
20701
20727
  price: number | null;
@@ -20712,8 +20738,8 @@ declare const eden: {
20712
20738
  howToSteps: string[];
20713
20739
  depositUrl: string | null;
20714
20740
  explorerAddress: string | null;
20715
- status: import("@package/databases/api").Status;
20716
- action: import("@package/databases/api").OpportunityAction;
20741
+ status: import("@package/databases").Status;
20742
+ action: import("@package/databases").OpportunityAction;
20717
20743
  mainProtocolId: string | null;
20718
20744
  tvl: number;
20719
20745
  apr: number;
@@ -20722,7 +20748,7 @@ declare const eden: {
20722
20748
  dailyRewards: number;
20723
20749
  tags: string[];
20724
20750
  lastCampaignCreatedAt: Date;
20725
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
20751
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
20726
20752
  liveCampaigns: number;
20727
20753
  earliestCampaignStart: bigint | null;
20728
20754
  latestCampaignStart: bigint | null;
@@ -20768,8 +20794,8 @@ declare const eden: {
20768
20794
  pending: string;
20769
20795
  campaignStatus: {
20770
20796
  campaignId: string;
20771
- status: import("@package/databases/api").RunStatus;
20772
- preComputeStatus: import("@package/databases/api").RunStatus;
20797
+ status: import("@package/databases").RunStatus;
20798
+ preComputeStatus: import("@package/databases").RunStatus;
20773
20799
  error: string;
20774
20800
  details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
20775
20801
  delay: number;
@@ -20827,7 +20853,7 @@ declare const eden: {
20827
20853
  icon: string;
20828
20854
  verified: boolean;
20829
20855
  isTest: boolean;
20830
- type: import("@package/databases/api").TokenType;
20856
+ type: import("@package/databases").TokenType;
20831
20857
  isNative: boolean;
20832
20858
  underlyingTokenId: string | null;
20833
20859
  price: number | null;
@@ -20844,8 +20870,8 @@ declare const eden: {
20844
20870
  howToSteps: string[];
20845
20871
  depositUrl: string | null;
20846
20872
  explorerAddress: string | null;
20847
- status: import("@package/databases/api").Status;
20848
- action: import("@package/databases/api").OpportunityAction;
20873
+ status: import("@package/databases").Status;
20874
+ action: import("@package/databases").OpportunityAction;
20849
20875
  mainProtocolId: string | null;
20850
20876
  tvl: number;
20851
20877
  apr: number;
@@ -20854,7 +20880,7 @@ declare const eden: {
20854
20880
  dailyRewards: number;
20855
20881
  tags: string[];
20856
20882
  lastCampaignCreatedAt: Date;
20857
- manualOverrides: import("@package/databases/api").OpportunityManualOverride[];
20883
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
20858
20884
  liveCampaigns: number;
20859
20885
  earliestCampaignStart: bigint | null;
20860
20886
  latestCampaignStart: bigint | null;
@@ -21044,9 +21070,9 @@ declare const eden: {
21044
21070
  details: import("@prisma/client/runtime/client").JsonValue;
21045
21071
  error: string;
21046
21072
  preComputeProcessingStarted: number;
21047
- preComputeStatus: import("@package/databases/api").RunStatus;
21073
+ preComputeStatus: import("@package/databases").RunStatus;
21048
21074
  processingStarted: number;
21049
- status: import("@package/databases/api").RunStatus;
21075
+ status: import("@package/databases").RunStatus;
21050
21076
  } & {
21051
21077
  delay?: number | undefined;
21052
21078
  })[] | undefined;
@@ -21353,7 +21379,7 @@ declare const eden: {
21353
21379
  breakdowns: ({
21354
21380
  identifier: string;
21355
21381
  timestamp: bigint;
21356
- type: import("@package/databases/api").AprType;
21382
+ type: import("@package/databases").AprType;
21357
21383
  value: number;
21358
21384
  } & {
21359
21385
  campaignId?: string | undefined;
@@ -21365,7 +21391,7 @@ declare const eden: {
21365
21391
  tvl: {
21366
21392
  breakdowns: ({
21367
21393
  identifier: string;
21368
- type: import("@package/databases/api").TvlType;
21394
+ type: import("@package/databases").TvlType;
21369
21395
  value: number;
21370
21396
  } & {})[];
21371
21397
  timestamp: bigint;
@@ -21408,7 +21434,7 @@ declare const eden: {
21408
21434
  breakdowns: ({
21409
21435
  identifier: string;
21410
21436
  timestamp: bigint;
21411
- type: import("@package/databases/api").AprType;
21437
+ type: import("@package/databases").AprType;
21412
21438
  value: number;
21413
21439
  } & {
21414
21440
  campaignId?: string | undefined;
@@ -21420,7 +21446,7 @@ declare const eden: {
21420
21446
  tvl: {
21421
21447
  breakdowns: ({
21422
21448
  identifier: string;
21423
- type: import("@package/databases/api").TvlType;
21449
+ type: import("@package/databases").TvlType;
21424
21450
  value: number;
21425
21451
  } & {})[];
21426
21452
  timestamp: bigint;