@merkl/api 1.13.0 → 1.13.1

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 (58) hide show
  1. package/dist/src/eden/index.d.ts +390 -212
  2. package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.d.ts +25 -25
  3. package/dist/src/engine/implementations/Blend/metadata.d.ts +32 -0
  4. package/dist/src/engine/implementations/Blend/metadata.js.map +1 -0
  5. package/dist/src/engine/implementations/SacHolder/metadata.d.ts +16 -0
  6. package/dist/src/engine/implementations/SacHolder/metadata.js.map +1 -0
  7. package/dist/src/engine/metadata/factory.js.map +1 -1
  8. package/dist/src/engine/nativeAPR/factory.js.map +1 -1
  9. package/dist/src/engine/tvl/factory.js.map +1 -1
  10. package/dist/src/index.d.ts +390 -212
  11. package/dist/src/modules/v4/campaign/campaign.controller.d.ts +64 -5
  12. package/dist/src/modules/v4/campaign/campaign.query-transformer.d.ts +10 -2
  13. package/dist/src/modules/v4/campaign/campaign.query-transformer.js.map +1 -1
  14. package/dist/src/modules/v4/campaign/campaign.service.d.ts +49 -12
  15. package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +36 -48
  16. package/dist/src/modules/v4/carousel/carousel.controller.d.ts +84 -50
  17. package/dist/src/modules/v4/carousel/carousel.repository.d.ts +64 -68
  18. package/dist/src/modules/v4/carousel/carousel.repository.js.map +1 -1
  19. package/dist/src/modules/v4/carousel/carousel.service.d.ts +86 -70
  20. package/dist/src/modules/v4/config/config.controller.d.ts +9 -12
  21. package/dist/src/modules/v4/config/config.service.d.ts +9 -12
  22. package/dist/src/modules/v4/creator/creator.controller.d.ts +8 -1
  23. package/dist/src/modules/v4/leaf/leaf.repository.d.ts +18 -22
  24. package/dist/src/modules/v4/leaf/leaf.repository.js.map +1 -1
  25. package/dist/src/modules/v4/leaf/leaf.service.d.ts +18 -22
  26. package/dist/src/modules/v4/opportunity/depositUrl.formatter.d.ts +20 -0
  27. package/dist/src/modules/v4/opportunity/depositUrl.formatter.js.map +1 -0
  28. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +88 -31
  29. package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +25 -1
  30. package/dist/src/modules/v4/opportunity/opportunity.formatter.js.map +1 -1
  31. package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +69 -5
  32. package/dist/src/modules/v4/opportunity/opportunity.model.js.map +1 -1
  33. package/dist/src/modules/v4/opportunity/opportunity.query-transformer.d.ts +1 -1
  34. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +54 -67
  35. package/dist/src/modules/v4/opportunity/opportunity.repository.js.map +1 -1
  36. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +93 -60
  37. package/dist/src/modules/v4/opportunity/opportunity.service.js.map +1 -1
  38. package/dist/src/modules/v4/payload/payload.controller.d.ts +27 -36
  39. package/dist/src/modules/v4/payload/payload.service.d.ts +36 -48
  40. package/dist/src/modules/v4/program/program.controller.d.ts +32 -4
  41. package/dist/src/modules/v4/program/program.repository.d.ts +41 -45
  42. package/dist/src/modules/v4/program/program.repository.js.map +1 -1
  43. package/dist/src/modules/v4/program/program.service.d.ts +32 -4
  44. package/dist/src/modules/v4/protocol/protocol.repository.js.map +1 -1
  45. package/dist/src/modules/v4/reward/reward.repository.d.ts +18 -22
  46. package/dist/src/modules/v4/reward/reward.repository.js.map +1 -1
  47. package/dist/src/modules/v4/reward/reward.service.d.ts +107 -122
  48. package/dist/src/modules/v4/router.d.ts +390 -212
  49. package/dist/src/modules/v4/transaction/transaction.service.d.ts +2006 -1936
  50. package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +16 -2
  51. package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +8 -1
  52. package/dist/src/modules/v4/user/user.controller.d.ts +26 -23
  53. package/dist/src/scripts/exportOpportunities.js.map +1 -1
  54. package/dist/src/scripts/importOpportunities.js.map +1 -1
  55. package/dist/src/utils/getAPR.d.ts +38 -3
  56. package/dist/src/utils/parseDistributionType.d.ts +1087 -1052
  57. package/dist/tsconfig.tsbuildinfo +1 -1
  58. package/package.json +1 -1
@@ -925,6 +925,14 @@ declare const app: Elysia<"", {
925
925
  name: string;
926
926
  slug: string | null;
927
927
  }[];
928
+ depositUrls: {
929
+ id: string;
930
+ title: string;
931
+ url: string;
932
+ subtitle?: string | undefined;
933
+ icon?: string | undefined;
934
+ priority: number;
935
+ }[] | undefined;
928
936
  id: string;
929
937
  hidden: true | undefined;
930
938
  nativeApr: number | undefined;
@@ -1115,9 +1123,16 @@ declare const app: Elysia<"", {
1115
1123
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
1116
1124
  description?: string | undefined;
1117
1125
  howToSteps?: string[] | undefined;
1118
- protocols?: string[] | undefined;
1119
1126
  mainProtocol?: string | undefined;
1120
1127
  depositUrl?: string | undefined;
1128
+ depositUrls?: {
1129
+ id: string;
1130
+ title: string;
1131
+ url: string;
1132
+ subtitle?: string | undefined;
1133
+ icon?: string | undefined;
1134
+ priority: number;
1135
+ }[] | undefined;
1121
1136
  explorerAddress?: string | undefined;
1122
1137
  tags?: string[] | undefined;
1123
1138
  chainId: number;
@@ -1415,9 +1430,16 @@ declare const app: Elysia<"", {
1415
1430
  status: "LIVE" | "NONE" | "PAST" | "SOON";
1416
1431
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
1417
1432
  tags: string[];
1418
- protocols?: string[] | undefined;
1419
1433
  mainProtocol?: string | undefined;
1420
1434
  depositUrl?: string | undefined;
1435
+ depositUrls?: {
1436
+ id: string;
1437
+ title: string;
1438
+ url: string;
1439
+ subtitle?: string | undefined;
1440
+ icon?: string | undefined;
1441
+ priority: number;
1442
+ }[] | undefined;
1421
1443
  explorerAddress?: string | undefined;
1422
1444
  hidden?: boolean | undefined;
1423
1445
  tvl: number;
@@ -1688,9 +1710,16 @@ declare const app: Elysia<"", {
1688
1710
  status: "LIVE" | "NONE" | "PAST" | "SOON";
1689
1711
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
1690
1712
  tags: string[];
1691
- protocols?: string[] | undefined;
1692
1713
  mainProtocol?: string | undefined;
1693
1714
  depositUrl?: string | undefined;
1715
+ depositUrls?: {
1716
+ id: string;
1717
+ title: string;
1718
+ url: string;
1719
+ subtitle?: string | undefined;
1720
+ icon?: string | undefined;
1721
+ priority: number;
1722
+ }[] | undefined;
1694
1723
  explorerAddress?: string | undefined;
1695
1724
  hidden?: boolean | undefined;
1696
1725
  tvl: number;
@@ -1961,9 +1990,16 @@ declare const app: Elysia<"", {
1961
1990
  status: "LIVE" | "NONE" | "PAST" | "SOON";
1962
1991
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
1963
1992
  tags: string[];
1964
- protocols?: string[] | undefined;
1965
1993
  mainProtocol?: string | undefined;
1966
1994
  depositUrl?: string | undefined;
1995
+ depositUrls?: {
1996
+ id: string;
1997
+ title: string;
1998
+ url: string;
1999
+ subtitle?: string | undefined;
2000
+ icon?: string | undefined;
2001
+ priority: number;
2002
+ }[] | undefined;
1967
2003
  explorerAddress?: string | undefined;
1968
2004
  hidden?: boolean | undefined;
1969
2005
  tvl: number;
@@ -2558,9 +2594,16 @@ declare const app: Elysia<"", {
2558
2594
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
2559
2595
  description?: string | undefined;
2560
2596
  howToSteps?: string[] | undefined;
2561
- protocols?: string[] | undefined;
2562
2597
  mainProtocol?: string | undefined;
2563
2598
  depositUrl?: string | undefined;
2599
+ depositUrls?: {
2600
+ id: string;
2601
+ title: string;
2602
+ url: string;
2603
+ subtitle?: string | undefined;
2604
+ icon?: string | undefined;
2605
+ priority: number;
2606
+ }[] | undefined;
2564
2607
  explorerAddress?: string | undefined;
2565
2608
  tags?: string[] | undefined;
2566
2609
  chainId: number;
@@ -3038,6 +3081,14 @@ declare const app: Elysia<"", {
3038
3081
  name: string;
3039
3082
  slug: string | null;
3040
3083
  }[];
3084
+ depositUrls: {
3085
+ id: string;
3086
+ title: string;
3087
+ url: string;
3088
+ subtitle?: string | undefined;
3089
+ icon?: string | undefined;
3090
+ priority: number;
3091
+ }[] | undefined;
3041
3092
  id: string;
3042
3093
  hidden: true | undefined;
3043
3094
  nativeApr: number | undefined;
@@ -3219,6 +3270,14 @@ declare const app: Elysia<"", {
3219
3270
  name: string;
3220
3271
  slug: string | null;
3221
3272
  }[];
3273
+ depositUrls: {
3274
+ id: string;
3275
+ title: string;
3276
+ url: string;
3277
+ subtitle?: string | undefined;
3278
+ icon?: string | undefined;
3279
+ priority: number;
3280
+ }[] | undefined;
3222
3281
  id: string;
3223
3282
  hidden: true | undefined;
3224
3283
  nativeApr: number | undefined;
@@ -3949,7 +4008,6 @@ declare const app: Elysia<"", {
3949
4008
  address: string;
3950
4009
  chainId: number;
3951
4010
  }[];
3952
- protocols?: string[] | undefined;
3953
4011
  mainProtocol?: string | undefined;
3954
4012
  depositUrl?: string | undefined;
3955
4013
  explorerAddress?: string | undefined;
@@ -4060,6 +4118,15 @@ declare const app: Elysia<"", {
4060
4118
  total: number;
4061
4119
  opportunityId: string;
4062
4120
  })[];
4121
+ DepositUrls: {
4122
+ id: string;
4123
+ title: string;
4124
+ url: string;
4125
+ subtitle: string | null;
4126
+ icon: string | null;
4127
+ priority: number;
4128
+ opportunityId: string;
4129
+ }[];
4063
4130
  MainProtocol: {
4064
4131
  id: string;
4065
4132
  tags: string[];
@@ -4100,17 +4167,6 @@ declare const app: Elysia<"", {
4100
4167
  rewardTokenId: string | null;
4101
4168
  opportunityId: string;
4102
4169
  })[];
4103
- Protocols: {
4104
- id: string;
4105
- tags: string[];
4106
- name: string;
4107
- description: string;
4108
- url: string;
4109
- icon: string;
4110
- banner: string | null;
4111
- opportunityBannerLight: string | null;
4112
- opportunityBannerDark: string | null;
4113
- }[];
4114
4170
  Tokens: {
4115
4171
  id: string;
4116
4172
  name: string | null;
@@ -4814,7 +4870,6 @@ declare const app: Elysia<"", {
4814
4870
  address: string;
4815
4871
  chainId: number;
4816
4872
  }[];
4817
- protocols?: string[] | undefined;
4818
4873
  mainProtocol?: string | undefined;
4819
4874
  depositUrl?: string | undefined;
4820
4875
  explorerAddress?: string | undefined;
@@ -4925,6 +4980,15 @@ declare const app: Elysia<"", {
4925
4980
  total: number;
4926
4981
  opportunityId: string;
4927
4982
  })[];
4983
+ DepositUrls: {
4984
+ id: string;
4985
+ title: string;
4986
+ url: string;
4987
+ subtitle: string | null;
4988
+ icon: string | null;
4989
+ priority: number;
4990
+ opportunityId: string;
4991
+ }[];
4928
4992
  MainProtocol: {
4929
4993
  id: string;
4930
4994
  tags: string[];
@@ -4965,17 +5029,6 @@ declare const app: Elysia<"", {
4965
5029
  rewardTokenId: string | null;
4966
5030
  opportunityId: string;
4967
5031
  })[];
4968
- Protocols: {
4969
- id: string;
4970
- tags: string[];
4971
- name: string;
4972
- description: string;
4973
- url: string;
4974
- icon: string;
4975
- banner: string | null;
4976
- opportunityBannerLight: string | null;
4977
- opportunityBannerDark: string | null;
4978
- }[];
4979
5032
  Tokens: {
4980
5033
  id: string;
4981
5034
  name: string | null;
@@ -5078,7 +5131,6 @@ declare const app: Elysia<"", {
5078
5131
  address: string;
5079
5132
  chainId: number;
5080
5133
  }[];
5081
- protocols?: string[] | undefined;
5082
5134
  mainProtocol?: string | undefined;
5083
5135
  depositUrl?: string | undefined;
5084
5136
  explorerAddress?: string | undefined;
@@ -5189,6 +5241,15 @@ declare const app: Elysia<"", {
5189
5241
  total: number;
5190
5242
  opportunityId: string;
5191
5243
  })[];
5244
+ DepositUrls: {
5245
+ id: string;
5246
+ title: string;
5247
+ url: string;
5248
+ subtitle: string | null;
5249
+ icon: string | null;
5250
+ priority: number;
5251
+ opportunityId: string;
5252
+ }[];
5192
5253
  MainProtocol: {
5193
5254
  id: string;
5194
5255
  tags: string[];
@@ -5229,17 +5290,6 @@ declare const app: Elysia<"", {
5229
5290
  rewardTokenId: string | null;
5230
5291
  opportunityId: string;
5231
5292
  })[];
5232
- Protocols: {
5233
- id: string;
5234
- tags: string[];
5235
- name: string;
5236
- description: string;
5237
- url: string;
5238
- icon: string;
5239
- banner: string | null;
5240
- opportunityBannerLight: string | null;
5241
- opportunityBannerDark: string | null;
5242
- }[];
5243
5293
  Tokens: {
5244
5294
  id: string;
5245
5295
  name: string | null;
@@ -5341,7 +5391,6 @@ declare const app: Elysia<"", {
5341
5391
  address: string;
5342
5392
  chainId: number;
5343
5393
  }[];
5344
- protocols?: string[] | undefined;
5345
5394
  mainProtocol?: string | undefined;
5346
5395
  depositUrl?: string | undefined;
5347
5396
  explorerAddress?: string | undefined;
@@ -5452,6 +5501,15 @@ declare const app: Elysia<"", {
5452
5501
  total: number;
5453
5502
  opportunityId: string;
5454
5503
  })[];
5504
+ DepositUrls: {
5505
+ id: string;
5506
+ title: string;
5507
+ url: string;
5508
+ subtitle: string | null;
5509
+ icon: string | null;
5510
+ priority: number;
5511
+ opportunityId: string;
5512
+ }[];
5455
5513
  MainProtocol: {
5456
5514
  id: string;
5457
5515
  tags: string[];
@@ -5492,17 +5550,6 @@ declare const app: Elysia<"", {
5492
5550
  rewardTokenId: string | null;
5493
5551
  opportunityId: string;
5494
5552
  })[];
5495
- Protocols: {
5496
- id: string;
5497
- tags: string[];
5498
- name: string;
5499
- description: string;
5500
- url: string;
5501
- icon: string;
5502
- banner: string | null;
5503
- opportunityBannerLight: string | null;
5504
- opportunityBannerDark: string | null;
5505
- }[];
5506
5553
  Tokens: {
5507
5554
  id: string;
5508
5555
  name: string | null;
@@ -5923,9 +5970,16 @@ declare const app: Elysia<"", {
5923
5970
  status: "LIVE" | "NONE" | "PAST" | "SOON";
5924
5971
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
5925
5972
  tags: string[];
5926
- protocols?: string[] | undefined;
5927
5973
  mainProtocol?: string | undefined;
5928
5974
  depositUrl?: string | undefined;
5975
+ depositUrls?: {
5976
+ id: string;
5977
+ title: string;
5978
+ url: string;
5979
+ subtitle?: string | undefined;
5980
+ icon?: string | undefined;
5981
+ priority: number;
5982
+ }[] | undefined;
5929
5983
  explorerAddress?: string | undefined;
5930
5984
  hidden?: boolean | undefined;
5931
5985
  tvl: number;
@@ -6092,9 +6146,16 @@ declare const app: Elysia<"", {
6092
6146
  status: "LIVE" | "NONE" | "PAST" | "SOON";
6093
6147
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
6094
6148
  tags: string[];
6095
- protocols?: string[] | undefined;
6096
6149
  mainProtocol?: string | undefined;
6097
6150
  depositUrl?: string | undefined;
6151
+ depositUrls?: {
6152
+ id: string;
6153
+ title: string;
6154
+ url: string;
6155
+ subtitle?: string | undefined;
6156
+ icon?: string | undefined;
6157
+ priority: number;
6158
+ }[] | undefined;
6098
6159
  explorerAddress?: string | undefined;
6099
6160
  hidden?: boolean | undefined;
6100
6161
  tvl: number;
@@ -6318,9 +6379,16 @@ declare const app: Elysia<"", {
6318
6379
  status: "LIVE" | "NONE" | "PAST" | "SOON";
6319
6380
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
6320
6381
  tags: string[];
6321
- protocols?: string[] | undefined;
6322
6382
  mainProtocol?: string | undefined;
6323
6383
  depositUrl?: string | undefined;
6384
+ depositUrls?: {
6385
+ id: string;
6386
+ title: string;
6387
+ url: string;
6388
+ subtitle?: string | undefined;
6389
+ icon?: string | undefined;
6390
+ priority: number;
6391
+ }[] | undefined;
6324
6392
  explorerAddress?: string | undefined;
6325
6393
  hidden?: boolean | undefined;
6326
6394
  tvl: number;
@@ -6487,9 +6555,16 @@ declare const app: Elysia<"", {
6487
6555
  status: "LIVE" | "NONE" | "PAST" | "SOON";
6488
6556
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
6489
6557
  tags: string[];
6490
- protocols?: string[] | undefined;
6491
6558
  mainProtocol?: string | undefined;
6492
6559
  depositUrl?: string | undefined;
6560
+ depositUrls?: {
6561
+ id: string;
6562
+ title: string;
6563
+ url: string;
6564
+ subtitle?: string | undefined;
6565
+ icon?: string | undefined;
6566
+ priority: number;
6567
+ }[] | undefined;
6493
6568
  explorerAddress?: string | undefined;
6494
6569
  hidden?: boolean | undefined;
6495
6570
  tvl: number;
@@ -6727,18 +6802,16 @@ declare const app: Elysia<"", {
6727
6802
  endOfDisputePeriod: number;
6728
6803
  lastClaimsOnchainFetchTimestamp: string | null;
6729
6804
  };
6730
- MainProtocol: {
6805
+ DepositUrls: {
6731
6806
  id: string;
6732
- tags: string[];
6733
- name: string;
6734
- description: string;
6807
+ title: string;
6735
6808
  url: string;
6736
- icon: string;
6737
- banner: string | null;
6738
- opportunityBannerLight: string | null;
6739
- opportunityBannerDark: string | null;
6740
- } | null;
6741
- Protocols: {
6809
+ subtitle: string | null;
6810
+ icon: string | null;
6811
+ priority: number;
6812
+ opportunityId: string;
6813
+ }[];
6814
+ MainProtocol: {
6742
6815
  id: string;
6743
6816
  tags: string[];
6744
6817
  name: string;
@@ -6748,7 +6821,7 @@ declare const app: Elysia<"", {
6748
6821
  banner: string | null;
6749
6822
  opportunityBannerLight: string | null;
6750
6823
  opportunityBannerDark: string | null;
6751
- }[];
6824
+ } | null;
6752
6825
  Tokens: {
6753
6826
  id: string;
6754
6827
  name: string | null;
@@ -6812,18 +6885,16 @@ declare const app: Elysia<"", {
6812
6885
  endOfDisputePeriod: number;
6813
6886
  lastClaimsOnchainFetchTimestamp: string | null;
6814
6887
  };
6815
- MainProtocol: {
6888
+ DepositUrls: {
6816
6889
  id: string;
6817
- tags: string[];
6818
- name: string;
6819
- description: string;
6890
+ title: string;
6820
6891
  url: string;
6821
- icon: string;
6822
- banner: string | null;
6823
- opportunityBannerLight: string | null;
6824
- opportunityBannerDark: string | null;
6825
- } | null;
6826
- Protocols: {
6892
+ subtitle: string | null;
6893
+ icon: string | null;
6894
+ priority: number;
6895
+ opportunityId: string;
6896
+ }[];
6897
+ MainProtocol: {
6827
6898
  id: string;
6828
6899
  tags: string[];
6829
6900
  name: string;
@@ -6833,7 +6904,7 @@ declare const app: Elysia<"", {
6833
6904
  banner: string | null;
6834
6905
  opportunityBannerLight: string | null;
6835
6906
  opportunityBannerDark: string | null;
6836
- }[];
6907
+ } | null;
6837
6908
  Tokens: {
6838
6909
  id: string;
6839
6910
  name: string | null;
@@ -6984,9 +7055,16 @@ declare const app: Elysia<"", {
6984
7055
  status: "LIVE" | "NONE" | "PAST" | "SOON";
6985
7056
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
6986
7057
  tags: string[];
6987
- protocols?: string[] | undefined;
6988
7058
  mainProtocol?: string | undefined;
6989
7059
  depositUrl?: string | undefined;
7060
+ depositUrls?: {
7061
+ id: string;
7062
+ title: string;
7063
+ url: string;
7064
+ subtitle?: string | undefined;
7065
+ icon?: string | undefined;
7066
+ priority: number;
7067
+ }[] | undefined;
6990
7068
  explorerAddress?: string | undefined;
6991
7069
  hidden?: boolean | undefined;
6992
7070
  tvl: number;
@@ -7153,9 +7231,16 @@ declare const app: Elysia<"", {
7153
7231
  status: "LIVE" | "NONE" | "PAST" | "SOON";
7154
7232
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
7155
7233
  tags: string[];
7156
- protocols?: string[] | undefined;
7157
7234
  mainProtocol?: string | undefined;
7158
7235
  depositUrl?: string | undefined;
7236
+ depositUrls?: {
7237
+ id: string;
7238
+ title: string;
7239
+ url: string;
7240
+ subtitle?: string | undefined;
7241
+ icon?: string | undefined;
7242
+ priority: number;
7243
+ }[] | undefined;
7159
7244
  explorerAddress?: string | undefined;
7160
7245
  hidden?: boolean | undefined;
7161
7246
  tvl: number;
@@ -7416,18 +7501,16 @@ declare const app: Elysia<"", {
7416
7501
  endOfDisputePeriod: number;
7417
7502
  lastClaimsOnchainFetchTimestamp: string | null;
7418
7503
  };
7419
- MainProtocol: {
7504
+ DepositUrls: {
7420
7505
  id: string;
7421
- tags: string[];
7422
- name: string;
7423
- description: string;
7506
+ title: string;
7424
7507
  url: string;
7425
- icon: string;
7426
- banner: string | null;
7427
- opportunityBannerLight: string | null;
7428
- opportunityBannerDark: string | null;
7429
- } | null;
7430
- Protocols: {
7508
+ subtitle: string | null;
7509
+ icon: string | null;
7510
+ priority: number;
7511
+ opportunityId: string;
7512
+ }[];
7513
+ MainProtocol: {
7431
7514
  id: string;
7432
7515
  tags: string[];
7433
7516
  name: string;
@@ -7437,7 +7520,7 @@ declare const app: Elysia<"", {
7437
7520
  banner: string | null;
7438
7521
  opportunityBannerLight: string | null;
7439
7522
  opportunityBannerDark: string | null;
7440
- }[];
7523
+ } | null;
7441
7524
  Tokens: {
7442
7525
  id: string;
7443
7526
  name: string | null;
@@ -7501,18 +7584,16 @@ declare const app: Elysia<"", {
7501
7584
  endOfDisputePeriod: number;
7502
7585
  lastClaimsOnchainFetchTimestamp: string | null;
7503
7586
  };
7504
- MainProtocol: {
7587
+ DepositUrls: {
7505
7588
  id: string;
7506
- tags: string[];
7507
- name: string;
7508
- description: string;
7589
+ title: string;
7509
7590
  url: string;
7510
- icon: string;
7511
- banner: string | null;
7512
- opportunityBannerLight: string | null;
7513
- opportunityBannerDark: string | null;
7514
- } | null;
7515
- Protocols: {
7591
+ subtitle: string | null;
7592
+ icon: string | null;
7593
+ priority: number;
7594
+ opportunityId: string;
7595
+ }[];
7596
+ MainProtocol: {
7516
7597
  id: string;
7517
7598
  tags: string[];
7518
7599
  name: string;
@@ -7522,7 +7603,7 @@ declare const app: Elysia<"", {
7522
7603
  banner: string | null;
7523
7604
  opportunityBannerLight: string | null;
7524
7605
  opportunityBannerDark: string | null;
7525
- }[];
7606
+ } | null;
7526
7607
  Tokens: {
7527
7608
  id: string;
7528
7609
  name: string | null;
@@ -8726,7 +8807,6 @@ declare const app: Elysia<"", {
8726
8807
  address: string;
8727
8808
  chainId: number;
8728
8809
  }[];
8729
- protocols?: string[] | undefined;
8730
8810
  mainProtocol?: string | undefined;
8731
8811
  depositUrl?: string | undefined;
8732
8812
  explorerAddress?: string | undefined;
@@ -8837,6 +8917,15 @@ declare const app: Elysia<"", {
8837
8917
  total: number;
8838
8918
  opportunityId: string;
8839
8919
  })[];
8920
+ DepositUrls: {
8921
+ id: string;
8922
+ title: string;
8923
+ url: string;
8924
+ subtitle: string | null;
8925
+ icon: string | null;
8926
+ priority: number;
8927
+ opportunityId: string;
8928
+ }[];
8840
8929
  MainProtocol: {
8841
8930
  id: string;
8842
8931
  tags: string[];
@@ -8877,17 +8966,6 @@ declare const app: Elysia<"", {
8877
8966
  rewardTokenId: string | null;
8878
8967
  opportunityId: string;
8879
8968
  })[];
8880
- Protocols: {
8881
- id: string;
8882
- tags: string[];
8883
- name: string;
8884
- description: string;
8885
- url: string;
8886
- icon: string;
8887
- banner: string | null;
8888
- opportunityBannerLight: string | null;
8889
- opportunityBannerDark: string | null;
8890
- }[];
8891
8969
  Tokens: {
8892
8970
  id: string;
8893
8971
  name: string | null;
@@ -9852,9 +9930,16 @@ declare const app: Elysia<"", {
9852
9930
  status: "LIVE" | "NONE" | "PAST" | "SOON";
9853
9931
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
9854
9932
  tags: string[];
9855
- protocols?: string[] | undefined;
9856
9933
  mainProtocol?: string | undefined;
9857
9934
  depositUrl?: string | undefined;
9935
+ depositUrls?: {
9936
+ id: string;
9937
+ title: string;
9938
+ url: string;
9939
+ subtitle?: string | undefined;
9940
+ icon?: string | undefined;
9941
+ priority: number;
9942
+ }[] | undefined;
9858
9943
  explorerAddress?: string | undefined;
9859
9944
  hidden?: boolean | undefined;
9860
9945
  tvl: number;
@@ -11557,9 +11642,16 @@ declare const app: Elysia<"", {
11557
11642
  status: "LIVE" | "NONE" | "PAST" | "SOON";
11558
11643
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
11559
11644
  tags: string[];
11560
- protocols?: string[] | undefined;
11561
11645
  mainProtocol?: string | undefined;
11562
11646
  depositUrl?: string | undefined;
11647
+ depositUrls?: {
11648
+ id: string;
11649
+ title: string;
11650
+ url: string;
11651
+ subtitle?: string | undefined;
11652
+ icon?: string | undefined;
11653
+ priority: number;
11654
+ }[] | undefined;
11563
11655
  explorerAddress?: string | undefined;
11564
11656
  hidden?: boolean | undefined;
11565
11657
  tvl: number;
@@ -11869,9 +11961,16 @@ declare const app: Elysia<"", {
11869
11961
  status: "LIVE" | "NONE" | "PAST" | "SOON";
11870
11962
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
11871
11963
  tags: string[];
11872
- protocols?: string[] | undefined;
11873
11964
  mainProtocol?: string | undefined;
11874
11965
  depositUrl?: string | undefined;
11966
+ depositUrls?: {
11967
+ id: string;
11968
+ title: string;
11969
+ url: string;
11970
+ subtitle?: string | undefined;
11971
+ icon?: string | undefined;
11972
+ priority: number;
11973
+ }[] | undefined;
11875
11974
  explorerAddress?: string | undefined;
11876
11975
  hidden?: boolean | undefined;
11877
11976
  tvl: number;
@@ -12141,9 +12240,16 @@ declare const app: Elysia<"", {
12141
12240
  status: "LIVE" | "NONE" | "PAST" | "SOON";
12142
12241
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
12143
12242
  tags: string[];
12144
- protocols?: string[] | undefined;
12145
12243
  mainProtocol?: string | undefined;
12146
12244
  depositUrl?: string | undefined;
12245
+ depositUrls?: {
12246
+ id: string;
12247
+ title: string;
12248
+ url: string;
12249
+ subtitle?: string | undefined;
12250
+ icon?: string | undefined;
12251
+ priority: number;
12252
+ }[] | undefined;
12147
12253
  explorerAddress?: string | undefined;
12148
12254
  hidden?: boolean | undefined;
12149
12255
  tvl: number;
@@ -12454,9 +12560,16 @@ declare const app: Elysia<"", {
12454
12560
  status: "LIVE" | "NONE" | "PAST" | "SOON";
12455
12561
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
12456
12562
  tags: string[];
12457
- protocols?: string[] | undefined;
12458
12563
  mainProtocol?: string | undefined;
12459
12564
  depositUrl?: string | undefined;
12565
+ depositUrls?: {
12566
+ id: string;
12567
+ title: string;
12568
+ url: string;
12569
+ subtitle?: string | undefined;
12570
+ icon?: string | undefined;
12571
+ priority: number;
12572
+ }[] | undefined;
12460
12573
  explorerAddress?: string | undefined;
12461
12574
  hidden?: boolean | undefined;
12462
12575
  tvl: number;
@@ -12863,9 +12976,16 @@ declare const app: Elysia<"", {
12863
12976
  status: "LIVE" | "NONE" | "PAST" | "SOON";
12864
12977
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
12865
12978
  tags: string[];
12866
- protocols?: string[] | undefined;
12867
12979
  mainProtocol?: string | undefined;
12868
12980
  depositUrl?: string | undefined;
12981
+ depositUrls?: {
12982
+ id: string;
12983
+ title: string;
12984
+ url: string;
12985
+ subtitle?: string | undefined;
12986
+ icon?: string | undefined;
12987
+ priority: number;
12988
+ }[] | undefined;
12869
12989
  explorerAddress?: string | undefined;
12870
12990
  hidden?: boolean | undefined;
12871
12991
  tvl: number;
@@ -13135,9 +13255,16 @@ declare const app: Elysia<"", {
13135
13255
  status: "LIVE" | "NONE" | "PAST" | "SOON";
13136
13256
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
13137
13257
  tags: string[];
13138
- protocols?: string[] | undefined;
13139
13258
  mainProtocol?: string | undefined;
13140
13259
  depositUrl?: string | undefined;
13260
+ depositUrls?: {
13261
+ id: string;
13262
+ title: string;
13263
+ url: string;
13264
+ subtitle?: string | undefined;
13265
+ icon?: string | undefined;
13266
+ priority: number;
13267
+ }[] | undefined;
13141
13268
  explorerAddress?: string | undefined;
13142
13269
  hidden?: boolean | undefined;
13143
13270
  tvl: number;
@@ -13902,7 +14029,6 @@ declare const app: Elysia<"", {
13902
14029
  address: string;
13903
14030
  chainId: number;
13904
14031
  }[];
13905
- protocols?: string[] | undefined;
13906
14032
  mainProtocol?: string | undefined;
13907
14033
  depositUrl?: string | undefined;
13908
14034
  explorerAddress?: string | undefined;
@@ -14013,6 +14139,15 @@ declare const app: Elysia<"", {
14013
14139
  total: number;
14014
14140
  opportunityId: string;
14015
14141
  })[];
14142
+ DepositUrls: {
14143
+ id: string;
14144
+ title: string;
14145
+ url: string;
14146
+ subtitle: string | null;
14147
+ icon: string | null;
14148
+ priority: number;
14149
+ opportunityId: string;
14150
+ }[];
14016
14151
  MainProtocol: {
14017
14152
  id: string;
14018
14153
  tags: string[];
@@ -14053,17 +14188,6 @@ declare const app: Elysia<"", {
14053
14188
  rewardTokenId: string | null;
14054
14189
  opportunityId: string;
14055
14190
  })[];
14056
- Protocols: {
14057
- id: string;
14058
- tags: string[];
14059
- name: string;
14060
- description: string;
14061
- url: string;
14062
- icon: string;
14063
- banner: string | null;
14064
- opportunityBannerLight: string | null;
14065
- opportunityBannerDark: string | null;
14066
- }[];
14067
14191
  Tokens: {
14068
14192
  id: string;
14069
14193
  name: string | null;
@@ -14310,6 +14434,27 @@ declare const app: Elysia<"", {
14310
14434
  id: string;
14311
14435
  }[] | undefined;
14312
14436
  } | undefined;
14437
+ DepositUrls?: {
14438
+ create?: {
14439
+ title: string;
14440
+ url: string;
14441
+ subtitle?: string | undefined;
14442
+ icon?: string | undefined;
14443
+ priority?: number | undefined;
14444
+ }[] | undefined;
14445
+ update?: ({
14446
+ id: string;
14447
+ } & {
14448
+ title: string;
14449
+ url: string;
14450
+ subtitle?: string | undefined;
14451
+ icon?: string | undefined;
14452
+ priority?: number | undefined;
14453
+ })[] | undefined;
14454
+ delete?: {
14455
+ id: string;
14456
+ }[] | undefined;
14457
+ } | undefined;
14313
14458
  };
14314
14459
  params: {
14315
14460
  id: string;
@@ -14364,7 +14509,7 @@ declare const app: Elysia<"", {
14364
14509
  ":id": {
14365
14510
  override: {
14366
14511
  delete: {
14367
- body: ("Tokens" | "action" | "depositUrl" | "description" | "explorerAddress" | "howToSteps" | "mainProtocolId" | "name")[];
14512
+ body: ("DepositUrls" | "Tokens" | "action" | "depositUrl" | "description" | "explorerAddress" | "howToSteps" | "mainProtocolId" | "name")[];
14368
14513
  params: {
14369
14514
  id: string;
14370
14515
  };
@@ -14384,7 +14529,6 @@ declare const app: Elysia<"", {
14384
14529
  address: string;
14385
14530
  chainId: number;
14386
14531
  }[];
14387
- protocols?: string[] | undefined;
14388
14532
  mainProtocol?: string | undefined;
14389
14533
  depositUrl?: string | undefined;
14390
14534
  explorerAddress?: string | undefined;
@@ -14495,6 +14639,15 @@ declare const app: Elysia<"", {
14495
14639
  total: number;
14496
14640
  opportunityId: string;
14497
14641
  })[];
14642
+ DepositUrls: {
14643
+ id: string;
14644
+ title: string;
14645
+ url: string;
14646
+ subtitle: string | null;
14647
+ icon: string | null;
14648
+ priority: number;
14649
+ opportunityId: string;
14650
+ }[];
14498
14651
  MainProtocol: {
14499
14652
  id: string;
14500
14653
  tags: string[];
@@ -14535,17 +14688,6 @@ declare const app: Elysia<"", {
14535
14688
  rewardTokenId: string | null;
14536
14689
  opportunityId: string;
14537
14690
  })[];
14538
- Protocols: {
14539
- id: string;
14540
- tags: string[];
14541
- name: string;
14542
- description: string;
14543
- url: string;
14544
- icon: string;
14545
- banner: string | null;
14546
- opportunityBannerLight: string | null;
14547
- opportunityBannerDark: string | null;
14548
- }[];
14549
14691
  Tokens: {
14550
14692
  id: string;
14551
14693
  name: string | null;
@@ -14972,7 +15114,6 @@ declare const app: Elysia<"", {
14972
15114
  address: string;
14973
15115
  chainId: number;
14974
15116
  }[];
14975
- protocols?: string[] | undefined;
14976
15117
  mainProtocol?: string | undefined;
14977
15118
  depositUrl?: string | undefined;
14978
15119
  explorerAddress?: string | undefined;
@@ -15083,6 +15224,15 @@ declare const app: Elysia<"", {
15083
15224
  total: number;
15084
15225
  opportunityId: string;
15085
15226
  })[];
15227
+ DepositUrls: {
15228
+ id: string;
15229
+ title: string;
15230
+ url: string;
15231
+ subtitle: string | null;
15232
+ icon: string | null;
15233
+ priority: number;
15234
+ opportunityId: string;
15235
+ }[];
15086
15236
  MainProtocol: {
15087
15237
  id: string;
15088
15238
  tags: string[];
@@ -15123,17 +15273,6 @@ declare const app: Elysia<"", {
15123
15273
  rewardTokenId: string | null;
15124
15274
  opportunityId: string;
15125
15275
  })[];
15126
- Protocols: {
15127
- id: string;
15128
- tags: string[];
15129
- name: string;
15130
- description: string;
15131
- url: string;
15132
- icon: string;
15133
- banner: string | null;
15134
- opportunityBannerLight: string | null;
15135
- opportunityBannerDark: string | null;
15136
- }[];
15137
15276
  Tokens: {
15138
15277
  id: string;
15139
15278
  name: string | null;
@@ -15254,7 +15393,6 @@ declare const app: Elysia<"", {
15254
15393
  address: string;
15255
15394
  chainId: number;
15256
15395
  }[];
15257
- protocols?: string[] | undefined;
15258
15396
  mainProtocol?: string | undefined;
15259
15397
  depositUrl?: string | undefined;
15260
15398
  explorerAddress?: string | undefined;
@@ -15365,6 +15503,15 @@ declare const app: Elysia<"", {
15365
15503
  total: number;
15366
15504
  opportunityId: string;
15367
15505
  })[];
15506
+ DepositUrls: {
15507
+ id: string;
15508
+ title: string;
15509
+ url: string;
15510
+ subtitle: string | null;
15511
+ icon: string | null;
15512
+ priority: number;
15513
+ opportunityId: string;
15514
+ }[];
15368
15515
  MainProtocol: {
15369
15516
  id: string;
15370
15517
  tags: string[];
@@ -15405,17 +15552,6 @@ declare const app: Elysia<"", {
15405
15552
  rewardTokenId: string | null;
15406
15553
  opportunityId: string;
15407
15554
  })[];
15408
- Protocols: {
15409
- id: string;
15410
- tags: string[];
15411
- name: string;
15412
- description: string;
15413
- url: string;
15414
- icon: string;
15415
- banner: string | null;
15416
- opportunityBannerLight: string | null;
15417
- opportunityBannerDark: string | null;
15418
- }[];
15419
15555
  Tokens: {
15420
15556
  id: string;
15421
15557
  name: string | null;
@@ -15537,7 +15673,6 @@ declare const app: Elysia<"", {
15537
15673
  address: string;
15538
15674
  chainId: number;
15539
15675
  }[];
15540
- protocols?: string[] | undefined;
15541
15676
  mainProtocol?: string | undefined;
15542
15677
  depositUrl?: string | undefined;
15543
15678
  explorerAddress?: string | undefined;
@@ -15648,6 +15783,15 @@ declare const app: Elysia<"", {
15648
15783
  total: number;
15649
15784
  opportunityId: string;
15650
15785
  })[];
15786
+ DepositUrls: {
15787
+ id: string;
15788
+ title: string;
15789
+ url: string;
15790
+ subtitle: string | null;
15791
+ icon: string | null;
15792
+ priority: number;
15793
+ opportunityId: string;
15794
+ }[];
15651
15795
  MainProtocol: {
15652
15796
  id: string;
15653
15797
  tags: string[];
@@ -15688,17 +15832,6 @@ declare const app: Elysia<"", {
15688
15832
  rewardTokenId: string | null;
15689
15833
  opportunityId: string;
15690
15834
  })[];
15691
- Protocols: {
15692
- id: string;
15693
- tags: string[];
15694
- name: string;
15695
- description: string;
15696
- url: string;
15697
- icon: string;
15698
- banner: string | null;
15699
- opportunityBannerLight: string | null;
15700
- opportunityBannerDark: string | null;
15701
- }[];
15702
15835
  Tokens: {
15703
15836
  id: string;
15704
15837
  name: string | null;
@@ -16252,9 +16385,16 @@ declare const app: Elysia<"", {
16252
16385
  status: "LIVE" | "NONE" | "PAST" | "SOON";
16253
16386
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
16254
16387
  tags: string[];
16255
- protocols?: string[] | undefined;
16256
16388
  mainProtocol?: string | undefined;
16257
16389
  depositUrl?: string | undefined;
16390
+ depositUrls?: {
16391
+ id: string;
16392
+ title: string;
16393
+ url: string;
16394
+ subtitle?: string | undefined;
16395
+ icon?: string | undefined;
16396
+ priority: number;
16397
+ }[] | undefined;
16258
16398
  explorerAddress?: string | undefined;
16259
16399
  hidden?: boolean | undefined;
16260
16400
  tvl: number;
@@ -16445,9 +16585,16 @@ declare const app: Elysia<"", {
16445
16585
  status: "LIVE" | "NONE" | "PAST" | "SOON";
16446
16586
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
16447
16587
  tags: string[];
16448
- protocols?: string[] | undefined;
16449
16588
  mainProtocol?: string | undefined;
16450
16589
  depositUrl?: string | undefined;
16590
+ depositUrls?: {
16591
+ id: string;
16592
+ title: string;
16593
+ url: string;
16594
+ subtitle?: string | undefined;
16595
+ icon?: string | undefined;
16596
+ priority: number;
16597
+ }[] | undefined;
16451
16598
  explorerAddress?: string | undefined;
16452
16599
  hidden?: boolean | undefined;
16453
16600
  tvl: number;
@@ -16658,9 +16805,16 @@ declare const app: Elysia<"", {
16658
16805
  status: "LIVE" | "NONE" | "PAST" | "SOON";
16659
16806
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
16660
16807
  tags: string[];
16661
- protocols?: string[] | undefined;
16662
16808
  mainProtocol?: string | undefined;
16663
16809
  depositUrl?: string | undefined;
16810
+ depositUrls?: {
16811
+ id: string;
16812
+ title: string;
16813
+ url: string;
16814
+ subtitle?: string | undefined;
16815
+ icon?: string | undefined;
16816
+ priority: number;
16817
+ }[] | undefined;
16664
16818
  explorerAddress?: string | undefined;
16665
16819
  hidden?: boolean | undefined;
16666
16820
  tvl: number;
@@ -16860,9 +17014,16 @@ declare const app: Elysia<"", {
16860
17014
  status: "LIVE" | "NONE" | "PAST" | "SOON";
16861
17015
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
16862
17016
  tags: string[];
16863
- protocols?: string[] | undefined;
16864
17017
  mainProtocol?: string | undefined;
16865
17018
  depositUrl?: string | undefined;
17019
+ depositUrls?: {
17020
+ id: string;
17021
+ title: string;
17022
+ url: string;
17023
+ subtitle?: string | undefined;
17024
+ icon?: string | undefined;
17025
+ priority: number;
17026
+ }[] | undefined;
16866
17027
  explorerAddress?: string | undefined;
16867
17028
  hidden?: boolean | undefined;
16868
17029
  tvl: number;
@@ -19115,9 +19276,16 @@ declare const app: Elysia<"", {
19115
19276
  status: "LIVE" | "NONE" | "PAST" | "SOON";
19116
19277
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
19117
19278
  tags: string[];
19118
- protocols?: string[] | undefined;
19119
19279
  mainProtocol?: string | undefined;
19120
19280
  depositUrl?: string | undefined;
19281
+ depositUrls?: {
19282
+ id: string;
19283
+ title: string;
19284
+ url: string;
19285
+ subtitle?: string | undefined;
19286
+ icon?: string | undefined;
19287
+ priority: number;
19288
+ }[] | undefined;
19121
19289
  explorerAddress?: string | undefined;
19122
19290
  hidden?: boolean | undefined;
19123
19291
  tvl: number;
@@ -19332,9 +19500,16 @@ declare const app: Elysia<"", {
19332
19500
  status: "LIVE" | "NONE" | "PAST" | "SOON";
19333
19501
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
19334
19502
  tags: string[];
19335
- protocols?: string[] | undefined;
19336
19503
  mainProtocol?: string | undefined;
19337
19504
  depositUrl?: string | undefined;
19505
+ depositUrls?: {
19506
+ id: string;
19507
+ title: string;
19508
+ url: string;
19509
+ subtitle?: string | undefined;
19510
+ icon?: string | undefined;
19511
+ priority: number;
19512
+ }[] | undefined;
19338
19513
  explorerAddress?: string | undefined;
19339
19514
  hidden?: boolean | undefined;
19340
19515
  tvl: number;
@@ -20917,18 +21092,16 @@ declare const app: Elysia<"", {
20917
21092
  endOfDisputePeriod: number;
20918
21093
  lastClaimsOnchainFetchTimestamp: string | null;
20919
21094
  };
20920
- MainProtocol: {
21095
+ DepositUrls: {
20921
21096
  id: string;
20922
- tags: string[];
20923
- name: string;
20924
- description: string;
21097
+ title: string;
20925
21098
  url: string;
20926
- icon: string;
20927
- banner: string | null;
20928
- opportunityBannerLight: string | null;
20929
- opportunityBannerDark: string | null;
20930
- } | null;
20931
- Protocols: {
21099
+ subtitle: string | null;
21100
+ icon: string | null;
21101
+ priority: number;
21102
+ opportunityId: string;
21103
+ }[];
21104
+ MainProtocol: {
20932
21105
  id: string;
20933
21106
  tags: string[];
20934
21107
  name: string;
@@ -20938,7 +21111,7 @@ declare const app: Elysia<"", {
20938
21111
  banner: string | null;
20939
21112
  opportunityBannerLight: string | null;
20940
21113
  opportunityBannerDark: string | null;
20941
- }[];
21114
+ } | null;
20942
21115
  Tokens: {
20943
21116
  id: string;
20944
21117
  name: string | null;
@@ -21051,18 +21224,16 @@ declare const app: Elysia<"", {
21051
21224
  endOfDisputePeriod: number;
21052
21225
  lastClaimsOnchainFetchTimestamp: string | null;
21053
21226
  };
21054
- MainProtocol: {
21227
+ DepositUrls: {
21055
21228
  id: string;
21056
- tags: string[];
21057
- name: string;
21058
- description: string;
21229
+ title: string;
21059
21230
  url: string;
21060
- icon: string;
21061
- banner: string | null;
21062
- opportunityBannerLight: string | null;
21063
- opportunityBannerDark: string | null;
21064
- } | null;
21065
- Protocols: {
21231
+ subtitle: string | null;
21232
+ icon: string | null;
21233
+ priority: number;
21234
+ opportunityId: string;
21235
+ }[];
21236
+ MainProtocol: {
21066
21237
  id: string;
21067
21238
  tags: string[];
21068
21239
  name: string;
@@ -21072,7 +21243,7 @@ declare const app: Elysia<"", {
21072
21243
  banner: string | null;
21073
21244
  opportunityBannerLight: string | null;
21074
21245
  opportunityBannerDark: string | null;
21075
- }[];
21246
+ } | null;
21076
21247
  Tokens: {
21077
21248
  id: string;
21078
21249
  name: string | null;
@@ -21136,9 +21307,16 @@ declare const app: Elysia<"", {
21136
21307
  status: "LIVE" | "NONE" | "PAST" | "SOON";
21137
21308
  action: "BORROW" | "DROP" | "HOLD" | "INVALID" | "LEND" | "LONG" | "POOL" | "SHORT" | "STAKE" | "SWAP";
21138
21309
  tags: string[];
21139
- protocols?: string[] | undefined;
21140
21310
  mainProtocol?: string | undefined;
21141
21311
  depositUrl?: string | undefined;
21312
+ depositUrls?: {
21313
+ id: string;
21314
+ title: string;
21315
+ url: string;
21316
+ subtitle?: string | undefined;
21317
+ icon?: string | undefined;
21318
+ priority: number;
21319
+ }[] | undefined;
21142
21320
  explorerAddress?: string | undefined;
21143
21321
  hidden?: boolean | undefined;
21144
21322
  tvl: number;