@merkl/api 0.20.4 → 0.20.6

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 (35) hide show
  1. package/dist/database/api/.generated/drizzle/schema.d.ts +0 -102
  2. package/dist/database/api/.generated/drizzle/schema.js +5 -11
  3. package/dist/database/api/.generated/drizzle/schema.ts +5 -11
  4. package/dist/database/api/.generated/edge.js +8 -15
  5. package/dist/database/api/.generated/index-browser.js +5 -12
  6. package/dist/database/api/.generated/index.d.ts +149 -464
  7. package/dist/database/api/.generated/index.js +8 -15
  8. package/dist/database/api/.generated/package.json +1 -1
  9. package/dist/database/api/.generated/schema.prisma +5 -11
  10. package/dist/database/api/.generated/wasm.js +5 -12
  11. package/dist/src/eden/index.d.ts +65 -90
  12. package/dist/src/index.d.ts +13 -18
  13. package/dist/src/jobs/update-dynamic-data.js +2 -0
  14. package/dist/src/modules/v4/apr/apr.model.d.ts +3 -3
  15. package/dist/src/modules/v4/apr/apr.model.js +1 -1
  16. package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +1 -3
  17. package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +1 -3
  18. package/dist/src/modules/v4/computedValue/computedValue.repository.js +0 -2
  19. package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +1 -3
  20. package/dist/src/modules/v4/dynamicData/dynamicData.service.js +2 -5
  21. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +12 -15
  22. package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +6 -6
  23. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +19 -36
  24. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +17 -26
  25. package/dist/src/modules/v4/opportunity/opportunity.service.js +1 -1
  26. package/dist/src/modules/v4/reward/reward.model.d.ts +4 -4
  27. package/dist/src/modules/v4/reward/reward.model.js +1 -1
  28. package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -4
  29. package/dist/src/modules/v4/reward/reward.service.d.ts +5 -10
  30. package/dist/src/modules/v4/reward/reward.service.js +1 -1
  31. package/dist/src/modules/v4/router.d.ts +13 -18
  32. package/dist/src/modules/v4/tvl/tvl.model.d.ts +3 -3
  33. package/dist/src/modules/v4/tvl/tvl.model.js +1 -1
  34. package/dist/tsconfig.package.tsbuildinfo +1 -1
  35. package/package.json +1 -1
@@ -159,7 +159,7 @@ declare const eden: {
159
159
  timestamp: string | bigint;
160
160
  cumulated: number;
161
161
  breakdowns: {
162
- id: number;
162
+ id: string;
163
163
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
164
164
  identifier: string;
165
165
  value: number;
@@ -170,7 +170,7 @@ declare const eden: {
170
170
  total: number;
171
171
  timestamp: string | bigint;
172
172
  breakdowns: {
173
- id: number;
173
+ id: string;
174
174
  type: "TOKEN" | "PROTOCOL";
175
175
  identifier: string;
176
176
  value: number;
@@ -182,7 +182,7 @@ declare const eden: {
182
182
  total: number;
183
183
  timestamp: string | bigint;
184
184
  breakdowns: {
185
- id: number;
185
+ id: string;
186
186
  token: {
187
187
  price?: number | null | undefined;
188
188
  symbol: string;
@@ -264,7 +264,7 @@ declare const eden: {
264
264
  timestamp: string | bigint;
265
265
  cumulated: number;
266
266
  breakdowns: {
267
- id: number;
267
+ id: string;
268
268
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
269
269
  identifier: string;
270
270
  value: number;
@@ -275,7 +275,7 @@ declare const eden: {
275
275
  total: number;
276
276
  timestamp: string | bigint;
277
277
  breakdowns: {
278
- id: number;
278
+ id: string;
279
279
  type: "TOKEN" | "PROTOCOL";
280
280
  identifier: string;
281
281
  value: number;
@@ -287,7 +287,7 @@ declare const eden: {
287
287
  total: number;
288
288
  timestamp: string | bigint;
289
289
  breakdowns: {
290
- id: number;
290
+ id: string;
291
291
  token: {
292
292
  price?: number | null | undefined;
293
293
  symbol: string;
@@ -499,9 +499,8 @@ declare const eden: {
499
499
  cumulated: number;
500
500
  timestamp: bigint;
501
501
  breakdowns: {
502
- id: number;
502
+ id: string;
503
503
  type: import("@db/api").$Enums.AprType;
504
- uuid: string;
505
504
  identifier: string;
506
505
  value: number;
507
506
  aprRecordId: string;
@@ -512,9 +511,8 @@ declare const eden: {
512
511
  total: number;
513
512
  timestamp: bigint;
514
513
  breakdowns: {
515
- id: number;
514
+ id: string;
516
515
  type: import("@db/api").$Enums.TvlType;
517
- uuid: string;
518
516
  identifier: string;
519
517
  value: number;
520
518
  tvlRecordId: string;
@@ -525,8 +523,7 @@ declare const eden: {
525
523
  total: number;
526
524
  timestamp: bigint;
527
525
  breakdowns: {
528
- id: number;
529
- uuid: string;
526
+ id: string;
530
527
  value: number;
531
528
  campaignId: string;
532
529
  dailyRewardsRecordId: string;
@@ -735,7 +732,7 @@ declare const eden: {
735
732
  timestamp: string | bigint;
736
733
  cumulated: number;
737
734
  breakdowns: {
738
- id: number;
735
+ id: string;
739
736
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
740
737
  identifier: string;
741
738
  value: number;
@@ -746,7 +743,7 @@ declare const eden: {
746
743
  total: number;
747
744
  timestamp: string | bigint;
748
745
  breakdowns: {
749
- id: number;
746
+ id: string;
750
747
  type: "TOKEN" | "PROTOCOL";
751
748
  identifier: string;
752
749
  value: number;
@@ -758,7 +755,7 @@ declare const eden: {
758
755
  total: number;
759
756
  timestamp: string | bigint;
760
757
  breakdowns: {
761
- id: number;
758
+ id: string;
762
759
  token: {
763
760
  price?: number | null | undefined;
764
761
  symbol: string;
@@ -3682,11 +3679,9 @@ declare const eden: {
3682
3679
  fetch?: RequestInit | undefined;
3683
3680
  } | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
3684
3681
  200: {
3685
- id: number;
3682
+ id: string;
3686
3683
  reason: string;
3687
- uuid: string;
3688
3684
  campaignId: string;
3689
- stringId: string;
3690
3685
  boost: number | null;
3691
3686
  }[];
3692
3687
  }>>;
@@ -3915,7 +3910,7 @@ declare const eden: {
3915
3910
  timestamp: string | bigint;
3916
3911
  cumulated: number;
3917
3912
  breakdowns: {
3918
- id: number;
3913
+ id: string;
3919
3914
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
3920
3915
  identifier: string;
3921
3916
  value: number;
@@ -3926,7 +3921,7 @@ declare const eden: {
3926
3921
  total: number;
3927
3922
  timestamp: string | bigint;
3928
3923
  breakdowns: {
3929
- id: number;
3924
+ id: string;
3930
3925
  type: "TOKEN" | "PROTOCOL";
3931
3926
  identifier: string;
3932
3927
  value: number;
@@ -3938,7 +3933,7 @@ declare const eden: {
3938
3933
  total: number;
3939
3934
  timestamp: string | bigint;
3940
3935
  breakdowns: {
3941
- id: number;
3936
+ id: string;
3942
3937
  token: {
3943
3938
  price?: number | null | undefined;
3944
3939
  symbol: string;
@@ -4020,7 +4015,7 @@ declare const eden: {
4020
4015
  timestamp: string | bigint;
4021
4016
  cumulated: number;
4022
4017
  breakdowns: {
4023
- id: number;
4018
+ id: string;
4024
4019
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
4025
4020
  identifier: string;
4026
4021
  value: number;
@@ -4031,7 +4026,7 @@ declare const eden: {
4031
4026
  total: number;
4032
4027
  timestamp: string | bigint;
4033
4028
  breakdowns: {
4034
- id: number;
4029
+ id: string;
4035
4030
  type: "TOKEN" | "PROTOCOL";
4036
4031
  identifier: string;
4037
4032
  value: number;
@@ -4043,7 +4038,7 @@ declare const eden: {
4043
4038
  total: number;
4044
4039
  timestamp: string | bigint;
4045
4040
  breakdowns: {
4046
- id: number;
4041
+ id: string;
4047
4042
  token: {
4048
4043
  price?: number | null | undefined;
4049
4044
  symbol: string;
@@ -4255,9 +4250,8 @@ declare const eden: {
4255
4250
  cumulated: number;
4256
4251
  timestamp: bigint;
4257
4252
  breakdowns: {
4258
- id: number;
4253
+ id: string;
4259
4254
  type: import("@db/api").$Enums.AprType;
4260
- uuid: string;
4261
4255
  identifier: string;
4262
4256
  value: number;
4263
4257
  aprRecordId: string;
@@ -4268,9 +4262,8 @@ declare const eden: {
4268
4262
  total: number;
4269
4263
  timestamp: bigint;
4270
4264
  breakdowns: {
4271
- id: number;
4265
+ id: string;
4272
4266
  type: import("@db/api").$Enums.TvlType;
4273
- uuid: string;
4274
4267
  identifier: string;
4275
4268
  value: number;
4276
4269
  tvlRecordId: string;
@@ -4281,8 +4274,7 @@ declare const eden: {
4281
4274
  total: number;
4282
4275
  timestamp: bigint;
4283
4276
  breakdowns: {
4284
- id: number;
4285
- uuid: string;
4277
+ id: string;
4286
4278
  value: number;
4287
4279
  campaignId: string;
4288
4280
  dailyRewardsRecordId: string;
@@ -4491,7 +4483,7 @@ declare const eden: {
4491
4483
  timestamp: string | bigint;
4492
4484
  cumulated: number;
4493
4485
  breakdowns: {
4494
- id: number;
4486
+ id: string;
4495
4487
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
4496
4488
  identifier: string;
4497
4489
  value: number;
@@ -4502,7 +4494,7 @@ declare const eden: {
4502
4494
  total: number;
4503
4495
  timestamp: string | bigint;
4504
4496
  breakdowns: {
4505
- id: number;
4497
+ id: string;
4506
4498
  type: "TOKEN" | "PROTOCOL";
4507
4499
  identifier: string;
4508
4500
  value: number;
@@ -4514,7 +4506,7 @@ declare const eden: {
4514
4506
  total: number;
4515
4507
  timestamp: string | bigint;
4516
4508
  breakdowns: {
4517
- id: number;
4509
+ id: string;
4518
4510
  token: {
4519
4511
  price?: number | null | undefined;
4520
4512
  symbol: string;
@@ -7438,11 +7430,9 @@ declare const eden: {
7438
7430
  fetch?: RequestInit | undefined;
7439
7431
  } | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
7440
7432
  200: {
7441
- id: number;
7433
+ id: string;
7442
7434
  reason: string;
7443
- uuid: string;
7444
7435
  campaignId: string;
7445
- stringId: string;
7446
7436
  boost: number | null;
7447
7437
  }[];
7448
7438
  }>>;
@@ -8460,9 +8450,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8460
8450
  cumulated: number;
8461
8451
  timestamp: bigint;
8462
8452
  breakdowns: {
8463
- id: number;
8453
+ id: string;
8464
8454
  type: import("@db/api").$Enums.AprType;
8465
- uuid: string;
8466
8455
  identifier: string;
8467
8456
  value: number;
8468
8457
  aprRecordId: string;
@@ -8473,9 +8462,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8473
8462
  total: number;
8474
8463
  timestamp: bigint;
8475
8464
  breakdowns: {
8476
- id: number;
8465
+ id: string;
8477
8466
  type: import("@db/api").$Enums.TvlType;
8478
- uuid: string;
8479
8467
  identifier: string;
8480
8468
  value: number;
8481
8469
  tvlRecordId: string;
@@ -8486,8 +8474,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8486
8474
  total: number;
8487
8475
  timestamp: bigint;
8488
8476
  breakdowns: {
8489
- id: number;
8490
- uuid: string;
8477
+ id: string;
8491
8478
  value: number;
8492
8479
  campaignId: string;
8493
8480
  dailyRewardsRecordId: string;
@@ -8688,7 +8675,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8688
8675
  timestamp: string | bigint;
8689
8676
  cumulated: number;
8690
8677
  breakdowns: {
8691
- id: number;
8678
+ id: string;
8692
8679
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
8693
8680
  identifier: string;
8694
8681
  value: number;
@@ -8699,7 +8686,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8699
8686
  total: number;
8700
8687
  timestamp: string | bigint;
8701
8688
  breakdowns: {
8702
- id: number;
8689
+ id: string;
8703
8690
  type: "TOKEN" | "PROTOCOL";
8704
8691
  identifier: string;
8705
8692
  value: number;
@@ -8711,7 +8698,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8711
8698
  total: number;
8712
8699
  timestamp: string | bigint;
8713
8700
  breakdowns: {
8714
- id: number;
8701
+ id: string;
8715
8702
  token: {
8716
8703
  price?: number | null | undefined;
8717
8704
  symbol: string;
@@ -8819,7 +8806,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8819
8806
  timestamp: string | bigint;
8820
8807
  cumulated: number;
8821
8808
  breakdowns: {
8822
- id: number;
8809
+ id: string;
8823
8810
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
8824
8811
  identifier: string;
8825
8812
  value: number;
@@ -8830,7 +8817,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8830
8817
  total: number;
8831
8818
  timestamp: string | bigint;
8832
8819
  breakdowns: {
8833
- id: number;
8820
+ id: string;
8834
8821
  type: "TOKEN" | "PROTOCOL";
8835
8822
  identifier: string;
8836
8823
  value: number;
@@ -8842,7 +8829,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8842
8829
  total: number;
8843
8830
  timestamp: string | bigint;
8844
8831
  breakdowns: {
8845
- id: number;
8832
+ id: string;
8846
8833
  token: {
8847
8834
  price?: number | null | undefined;
8848
8835
  symbol: string;
@@ -8984,7 +8971,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8984
8971
  timestamp: string | bigint;
8985
8972
  cumulated: number;
8986
8973
  breakdowns: {
8987
- id: number;
8974
+ id: string;
8988
8975
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
8989
8976
  identifier: string;
8990
8977
  value: number;
@@ -8995,7 +8982,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8995
8982
  total: number;
8996
8983
  timestamp: string | bigint;
8997
8984
  breakdowns: {
8998
- id: number;
8985
+ id: string;
8999
8986
  type: "TOKEN" | "PROTOCOL";
9000
8987
  identifier: string;
9001
8988
  value: number;
@@ -9007,7 +8994,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9007
8994
  total: number;
9008
8995
  timestamp: string | bigint;
9009
8996
  breakdowns: {
9010
- id: number;
8997
+ id: string;
9011
8998
  token: {
9012
8999
  price?: number | null | undefined;
9013
9000
  symbol: string;
@@ -12763,11 +12750,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12763
12750
  headers: unknown;
12764
12751
  response: {
12765
12752
  200: {
12766
- id: number;
12753
+ id: string;
12767
12754
  reason: string;
12768
- uuid: string;
12769
12755
  campaignId: string;
12770
- stringId: string;
12771
12756
  boost: number | null;
12772
12757
  }[];
12773
12758
  };
@@ -13880,7 +13865,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13880
13865
  timestamp: string | bigint;
13881
13866
  cumulated: number;
13882
13867
  breakdowns: {
13883
- id: number;
13868
+ id: string;
13884
13869
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
13885
13870
  identifier: string;
13886
13871
  value: number;
@@ -13891,7 +13876,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13891
13876
  total: number;
13892
13877
  timestamp: string | bigint;
13893
13878
  breakdowns: {
13894
- id: number;
13879
+ id: string;
13895
13880
  type: "TOKEN" | "PROTOCOL";
13896
13881
  identifier: string;
13897
13882
  value: number;
@@ -13903,7 +13888,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13903
13888
  total: number;
13904
13889
  timestamp: string | bigint;
13905
13890
  breakdowns: {
13906
- id: number;
13891
+ id: string;
13907
13892
  token: {
13908
13893
  price?: number | null | undefined;
13909
13894
  symbol: string;
@@ -13985,7 +13970,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13985
13970
  timestamp: string | bigint;
13986
13971
  cumulated: number;
13987
13972
  breakdowns: {
13988
- id: number;
13973
+ id: string;
13989
13974
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
13990
13975
  identifier: string;
13991
13976
  value: number;
@@ -13996,7 +13981,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13996
13981
  total: number;
13997
13982
  timestamp: string | bigint;
13998
13983
  breakdowns: {
13999
- id: number;
13984
+ id: string;
14000
13985
  type: "TOKEN" | "PROTOCOL";
14001
13986
  identifier: string;
14002
13987
  value: number;
@@ -14008,7 +13993,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14008
13993
  total: number;
14009
13994
  timestamp: string | bigint;
14010
13995
  breakdowns: {
14011
- id: number;
13996
+ id: string;
14012
13997
  token: {
14013
13998
  price?: number | null | undefined;
14014
13999
  symbol: string;
@@ -14220,9 +14205,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14220
14205
  cumulated: number;
14221
14206
  timestamp: bigint;
14222
14207
  breakdowns: {
14223
- id: number;
14208
+ id: string;
14224
14209
  type: import("@db/api").$Enums.AprType;
14225
- uuid: string;
14226
14210
  identifier: string;
14227
14211
  value: number;
14228
14212
  aprRecordId: string;
@@ -14233,9 +14217,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14233
14217
  total: number;
14234
14218
  timestamp: bigint;
14235
14219
  breakdowns: {
14236
- id: number;
14220
+ id: string;
14237
14221
  type: import("@db/api").$Enums.TvlType;
14238
- uuid: string;
14239
14222
  identifier: string;
14240
14223
  value: number;
14241
14224
  tvlRecordId: string;
@@ -14246,8 +14229,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14246
14229
  total: number;
14247
14230
  timestamp: bigint;
14248
14231
  breakdowns: {
14249
- id: number;
14250
- uuid: string;
14232
+ id: string;
14251
14233
  value: number;
14252
14234
  campaignId: string;
14253
14235
  dailyRewardsRecordId: string;
@@ -14456,7 +14438,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14456
14438
  timestamp: string | bigint;
14457
14439
  cumulated: number;
14458
14440
  breakdowns: {
14459
- id: number;
14441
+ id: string;
14460
14442
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
14461
14443
  identifier: string;
14462
14444
  value: number;
@@ -14467,7 +14449,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14467
14449
  total: number;
14468
14450
  timestamp: string | bigint;
14469
14451
  breakdowns: {
14470
- id: number;
14452
+ id: string;
14471
14453
  type: "TOKEN" | "PROTOCOL";
14472
14454
  identifier: string;
14473
14455
  value: number;
@@ -14479,7 +14461,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14479
14461
  total: number;
14480
14462
  timestamp: string | bigint;
14481
14463
  breakdowns: {
14482
- id: number;
14464
+ id: string;
14483
14465
  token: {
14484
14466
  price?: number | null | undefined;
14485
14467
  symbol: string;
@@ -17403,11 +17385,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17403
17385
  fetch?: RequestInit | undefined;
17404
17386
  } | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
17405
17387
  200: {
17406
- id: number;
17388
+ id: string;
17407
17389
  reason: string;
17408
- uuid: string;
17409
17390
  campaignId: string;
17410
- stringId: string;
17411
17391
  boost: number | null;
17412
17392
  }[];
17413
17393
  }>>;
@@ -17636,7 +17616,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17636
17616
  timestamp: string | bigint;
17637
17617
  cumulated: number;
17638
17618
  breakdowns: {
17639
- id: number;
17619
+ id: string;
17640
17620
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
17641
17621
  identifier: string;
17642
17622
  value: number;
@@ -17647,7 +17627,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17647
17627
  total: number;
17648
17628
  timestamp: string | bigint;
17649
17629
  breakdowns: {
17650
- id: number;
17630
+ id: string;
17651
17631
  type: "TOKEN" | "PROTOCOL";
17652
17632
  identifier: string;
17653
17633
  value: number;
@@ -17659,7 +17639,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17659
17639
  total: number;
17660
17640
  timestamp: string | bigint;
17661
17641
  breakdowns: {
17662
- id: number;
17642
+ id: string;
17663
17643
  token: {
17664
17644
  price?: number | null | undefined;
17665
17645
  symbol: string;
@@ -17741,7 +17721,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17741
17721
  timestamp: string | bigint;
17742
17722
  cumulated: number;
17743
17723
  breakdowns: {
17744
- id: number;
17724
+ id: string;
17745
17725
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
17746
17726
  identifier: string;
17747
17727
  value: number;
@@ -17752,7 +17732,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17752
17732
  total: number;
17753
17733
  timestamp: string | bigint;
17754
17734
  breakdowns: {
17755
- id: number;
17735
+ id: string;
17756
17736
  type: "TOKEN" | "PROTOCOL";
17757
17737
  identifier: string;
17758
17738
  value: number;
@@ -17764,7 +17744,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17764
17744
  total: number;
17765
17745
  timestamp: string | bigint;
17766
17746
  breakdowns: {
17767
- id: number;
17747
+ id: string;
17768
17748
  token: {
17769
17749
  price?: number | null | undefined;
17770
17750
  symbol: string;
@@ -17976,9 +17956,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17976
17956
  cumulated: number;
17977
17957
  timestamp: bigint;
17978
17958
  breakdowns: {
17979
- id: number;
17959
+ id: string;
17980
17960
  type: import("@db/api").$Enums.AprType;
17981
- uuid: string;
17982
17961
  identifier: string;
17983
17962
  value: number;
17984
17963
  aprRecordId: string;
@@ -17989,9 +17968,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17989
17968
  total: number;
17990
17969
  timestamp: bigint;
17991
17970
  breakdowns: {
17992
- id: number;
17971
+ id: string;
17993
17972
  type: import("@db/api").$Enums.TvlType;
17994
- uuid: string;
17995
17973
  identifier: string;
17996
17974
  value: number;
17997
17975
  tvlRecordId: string;
@@ -18002,8 +17980,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18002
17980
  total: number;
18003
17981
  timestamp: bigint;
18004
17982
  breakdowns: {
18005
- id: number;
18006
- uuid: string;
17983
+ id: string;
18007
17984
  value: number;
18008
17985
  campaignId: string;
18009
17986
  dailyRewardsRecordId: string;
@@ -18212,7 +18189,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18212
18189
  timestamp: string | bigint;
18213
18190
  cumulated: number;
18214
18191
  breakdowns: {
18215
- id: number;
18192
+ id: string;
18216
18193
  type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
18217
18194
  identifier: string;
18218
18195
  value: number;
@@ -18223,7 +18200,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18223
18200
  total: number;
18224
18201
  timestamp: string | bigint;
18225
18202
  breakdowns: {
18226
- id: number;
18203
+ id: string;
18227
18204
  type: "TOKEN" | "PROTOCOL";
18228
18205
  identifier: string;
18229
18206
  value: number;
@@ -18235,7 +18212,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18235
18212
  total: number;
18236
18213
  timestamp: string | bigint;
18237
18214
  breakdowns: {
18238
- id: number;
18215
+ id: string;
18239
18216
  token: {
18240
18217
  price?: number | null | undefined;
18241
18218
  symbol: string;
@@ -21159,11 +21136,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
21159
21136
  fetch?: RequestInit | undefined;
21160
21137
  } | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
21161
21138
  200: {
21162
- id: number;
21139
+ id: string;
21163
21140
  reason: string;
21164
- uuid: string;
21165
21141
  campaignId: string;
21166
- stringId: string;
21167
21142
  boost: number | null;
21168
21143
  }[];
21169
21144
  }>>;