@berachain/graphql 0.5.1-beta.0 → 0.5.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.
@@ -174,150 +174,6 @@ type paths = {
174
174
  patch?: never;
175
175
  trace?: never;
176
176
  };
177
- "/v0/stake/{vault}/rewards-received": {
178
- parameters: {
179
- query?: never;
180
- header?: never;
181
- path?: never;
182
- cookie?: never;
183
- };
184
- get: {
185
- parameters: {
186
- query?: {
187
- groupBy?: "day";
188
- page?: components["schemas"]["BigUintStr"];
189
- perPage?: components["schemas"]["BigUintStr"];
190
- };
191
- header?: never;
192
- path: {
193
- vault: components["schemas"]["EvmAddress"];
194
- };
195
- cookie?: never;
196
- };
197
- requestBody?: never;
198
- responses: {
199
- 200: {
200
- headers: {
201
- [name: string]: unknown;
202
- };
203
- content: {
204
- "application/json": {
205
- contract: string;
206
- height: components["schemas"]["BigIntStr"];
207
- logIndex: number;
208
- txHash: string;
209
- sender: string;
210
- amount: string;
211
- totalAssets: string;
212
- totalSupply: string;
213
- timestamp: number;
214
- }[] | {
215
- day: string;
216
- contract: string;
217
- eventCount: number;
218
- amountSum: string;
219
- totalAssets: string;
220
- totalSupply: string;
221
- }[];
222
- };
223
- };
224
- };
225
- };
226
- put?: never;
227
- post?: never;
228
- delete?: never;
229
- options?: never;
230
- head?: never;
231
- patch?: never;
232
- trace?: never;
233
- };
234
- "/v0/stake/{vault}/daily-yield/{owner}": {
235
- parameters: {
236
- query?: never;
237
- header?: never;
238
- path?: never;
239
- cookie?: never;
240
- };
241
- get: {
242
- parameters: {
243
- query?: {
244
- start?: string;
245
- };
246
- header?: never;
247
- path: {
248
- vault: components["schemas"]["EvmAddress"];
249
- owner: components["schemas"]["EvmAddress"];
250
- };
251
- cookie?: never;
252
- };
253
- requestBody?: never;
254
- responses: {
255
- 200: {
256
- headers: {
257
- [name: string]: unknown;
258
- };
259
- content: {
260
- "application/json": {
261
- timestamp: number;
262
- yieldAssets: number;
263
- }[];
264
- };
265
- };
266
- };
267
- };
268
- put?: never;
269
- post?: never;
270
- delete?: never;
271
- options?: never;
272
- head?: never;
273
- patch?: never;
274
- trace?: never;
275
- };
276
- "/v0/stake/{vault}/daily-assets/{owner}": {
277
- parameters: {
278
- query?: never;
279
- header?: never;
280
- path?: never;
281
- cookie?: never;
282
- };
283
- get: {
284
- parameters: {
285
- query?: {
286
- start?: string;
287
- end?: string;
288
- };
289
- header?: never;
290
- path: {
291
- vault: components["schemas"]["EvmAddress"];
292
- owner: components["schemas"]["EvmAddress"];
293
- };
294
- cookie?: never;
295
- };
296
- requestBody?: never;
297
- responses: {
298
- 200: {
299
- headers: {
300
- [name: string]: unknown;
301
- };
302
- content: {
303
- "application/json": {
304
- timestamp: number;
305
- balance: number;
306
- deposited: number;
307
- yield: number;
308
- }[];
309
- };
310
- };
311
- };
312
- };
313
- put?: never;
314
- post?: never;
315
- delete?: never;
316
- options?: never;
317
- head?: never;
318
- patch?: never;
319
- trace?: never;
320
- };
321
177
  "/v0/validators": {
322
178
  parameters: {
323
179
  query?: never;
@@ -370,14 +226,14 @@ type paths = {
370
226
  get: {
371
227
  parameters: {
372
228
  query?: {
373
- interval?: "day" | "hour";
374
- page?: components["schemas"]["BigUintStr"];
375
- perPage?: components["schemas"]["BigUintStr"];
229
+ interval?: "hour" | "day";
376
230
  after?: components["schemas"]["BigUintStr"];
231
+ page?: string;
232
+ perPage?: string;
377
233
  };
378
234
  header?: never;
379
235
  path: {
380
- pubkey: string;
236
+ pubkey: components["schemas"]["ValidatorPubkeyParam"];
381
237
  };
382
238
  cookie?: never;
383
239
  };
@@ -391,14 +247,22 @@ type paths = {
391
247
  "application/json": {
392
248
  timestamp: number;
393
249
  blockCount: number;
394
- earnedBGTAmount: components["schemas"]["DecimalStr"];
395
- distributedBGTAmount: components["schemas"]["DecimalStr"];
250
+ earnedRewardAmount: components["schemas"]["DecimalStr"];
251
+ distributedRewardAmount: components["schemas"]["DecimalStr"];
396
252
  allTimeBlockCount: number;
397
- allTimeEarnedBGTAmount: components["schemas"]["DecimalStr"];
398
- allTimeDistributedBGTAmount: components["schemas"]["DecimalStr"];
253
+ allTimeEarnedRewardAmount: components["schemas"]["DecimalStr"];
254
+ allTimeDistributedRewardAmount: components["schemas"]["DecimalStr"];
399
255
  }[];
400
256
  };
401
257
  };
258
+ 400: {
259
+ headers: {
260
+ [name: string]: unknown;
261
+ };
262
+ content: {
263
+ "application/json": unknown;
264
+ };
265
+ };
402
266
  };
403
267
  };
404
268
  put?: never;
@@ -419,14 +283,14 @@ type paths = {
419
283
  get: {
420
284
  parameters: {
421
285
  query?: {
422
- interval?: "day" | "hour";
423
- page?: components["schemas"]["BigUintStr"];
424
- perPage?: components["schemas"]["BigUintStr"];
286
+ interval?: "hour" | "day";
425
287
  after?: components["schemas"]["BigUintStr"];
288
+ page?: string;
289
+ perPage?: string;
426
290
  };
427
291
  header?: never;
428
292
  path: {
429
- pubkey: string;
293
+ pubkey: components["schemas"]["ValidatorPubkeyParam"];
430
294
  };
431
295
  cookie?: never;
432
296
  };
@@ -446,6 +310,14 @@ type paths = {
446
310
  }[];
447
311
  };
448
312
  };
313
+ 400: {
314
+ headers: {
315
+ [name: string]: unknown;
316
+ };
317
+ content: {
318
+ "application/json": unknown;
319
+ };
320
+ };
449
321
  };
450
322
  };
451
323
  put?: never;
@@ -466,10 +338,10 @@ type paths = {
466
338
  get: {
467
339
  parameters: {
468
340
  query?: {
469
- interval?: "day" | "hour";
470
- page?: components["schemas"]["BigUintStr"];
471
- perPage?: components["schemas"]["BigUintStr"];
341
+ interval?: "hour" | "day";
472
342
  after?: components["schemas"]["BigUintStr"];
343
+ page?: string;
344
+ perPage?: string;
473
345
  };
474
346
  header?: never;
475
347
  path?: never;
@@ -485,14 +357,22 @@ type paths = {
485
357
  "application/json": {
486
358
  timestamp: number;
487
359
  blockCount: number;
488
- earnedBGTAmount: components["schemas"]["DecimalStr"];
489
- distributedBGTAmount: components["schemas"]["DecimalStr"];
360
+ earnedRewardAmount: components["schemas"]["DecimalStr"];
361
+ distributedRewardAmount: components["schemas"]["DecimalStr"];
490
362
  allTimeBlockCount: number;
491
- allTimeEarnedBGTAmount: components["schemas"]["DecimalStr"];
492
- allTimeDistributedBGTAmount: components["schemas"]["DecimalStr"];
363
+ allTimeEarnedRewardAmount: components["schemas"]["DecimalStr"];
364
+ allTimeDistributedRewardAmount: components["schemas"]["DecimalStr"];
493
365
  }[];
494
366
  };
495
367
  };
368
+ 400: {
369
+ headers: {
370
+ [name: string]: unknown;
371
+ };
372
+ content: {
373
+ "application/json": unknown;
374
+ };
375
+ };
496
376
  };
497
377
  };
498
378
  put?: never;
@@ -513,6 +393,7 @@ type paths = {
513
393
  get: {
514
394
  parameters: {
515
395
  query?: {
396
+ type?: "MINT" | "REDEEM";
516
397
  page?: string;
517
398
  perPage?: string;
518
399
  };
@@ -542,6 +423,14 @@ type paths = {
542
423
  }[];
543
424
  };
544
425
  };
426
+ 400: {
427
+ headers: {
428
+ [name: string]: unknown;
429
+ };
430
+ content: {
431
+ "application/json": unknown;
432
+ };
433
+ };
545
434
  };
546
435
  };
547
436
  put?: never;
@@ -567,7 +456,7 @@ type paths = {
567
456
  };
568
457
  header?: never;
569
458
  path: {
570
- interval: "day" | "hour" | "week" | "month";
459
+ interval: "hour" | "day" | "week" | "month";
571
460
  };
572
461
  cookie?: never;
573
462
  };
@@ -784,6 +673,45 @@ type paths = {
784
673
  patch?: never;
785
674
  trace?: never;
786
675
  };
676
+ "/v0/stats/bera": {
677
+ parameters: {
678
+ query?: never;
679
+ header?: never;
680
+ path?: never;
681
+ cookie?: never;
682
+ };
683
+ get: {
684
+ parameters: {
685
+ query?: never;
686
+ header?: never;
687
+ path?: never;
688
+ cookie?: never;
689
+ };
690
+ requestBody?: never;
691
+ responses: {
692
+ 200: {
693
+ headers: {
694
+ [name: string]: unknown;
695
+ };
696
+ content: {
697
+ "application/json": {
698
+ /** @description Total BERA supply: genesis allocation plus PoL emissions minus BGT still outstanding. */
699
+ totalSupply: components["schemas"]["DecimalStr"];
700
+ /** @description Circulating BERA: Total BERA supply minus the amount of BERA that is locked up in the genesis vesting schedule. */
701
+ circulatingSupply: components["schemas"]["DecimalStr"];
702
+ };
703
+ };
704
+ };
705
+ };
706
+ };
707
+ put?: never;
708
+ post?: never;
709
+ delete?: never;
710
+ options?: never;
711
+ head?: never;
712
+ patch?: never;
713
+ trace?: never;
714
+ };
787
715
  "/v0/reward-vaults": {
788
716
  parameters: {
789
717
  query?: never;
@@ -794,10 +722,10 @@ type paths = {
794
722
  get: {
795
723
  parameters: {
796
724
  query?: {
797
- page?: components["schemas"]["BigUintStr"];
798
- perPage?: components["schemas"]["BigUintStr"];
799
725
  orderBy?: "stakingTokenAmount" | "address";
800
726
  orderDirection?: "asc" | "desc";
727
+ page?: string;
728
+ perPage?: string;
801
729
  };
802
730
  header?: never;
803
731
  path?: never;
@@ -811,7 +739,6 @@ type paths = {
811
739
  };
812
740
  content: {
813
741
  "application/json": {
814
- id: string;
815
742
  address: string;
816
743
  stakingToken: string;
817
744
  stakingTokenAmount: components["schemas"]["DecimalStr"];
@@ -819,6 +746,14 @@ type paths = {
819
746
  }[];
820
747
  };
821
748
  };
749
+ 400: {
750
+ headers: {
751
+ [name: string]: unknown;
752
+ };
753
+ content: {
754
+ "application/json": unknown;
755
+ };
756
+ };
822
757
  };
823
758
  };
824
759
  put?: never;
@@ -839,10 +774,10 @@ type paths = {
839
774
  get: {
840
775
  parameters: {
841
776
  query?: {
842
- interval?: "day" | "hour";
843
- page?: components["schemas"]["BigUintStr"];
844
- perPage?: components["schemas"]["BigUintStr"];
777
+ interval?: "hour" | "day";
845
778
  after?: components["schemas"]["BigUintStr"];
779
+ page?: string;
780
+ perPage?: string;
846
781
  };
847
782
  header?: never;
848
783
  path: {
@@ -860,11 +795,19 @@ type paths = {
860
795
  "application/json": {
861
796
  timestamp: number;
862
797
  vaultId: string;
863
- receivedBGTAmount: components["schemas"]["DecimalStr"];
864
- allTimeReceivedBGTAmount: components["schemas"]["DecimalStr"];
798
+ receivedRewardAmount: components["schemas"]["DecimalStr"];
799
+ allTimeReceivedRewardAmount: components["schemas"]["DecimalStr"];
865
800
  }[];
866
801
  };
867
802
  };
803
+ 400: {
804
+ headers: {
805
+ [name: string]: unknown;
806
+ };
807
+ content: {
808
+ "application/json": unknown;
809
+ };
810
+ };
868
811
  };
869
812
  };
870
813
  put?: never;
@@ -927,8 +870,8 @@ type paths = {
927
870
  afterBlock?: components["schemas"]["BigUintStr"];
928
871
  orderBy?: "updatedAtBlock" | "amount" | "id";
929
872
  orderDirection?: "asc" | "desc";
930
- page?: components["schemas"]["BigUintStr"];
931
- perPage?: components["schemas"]["BigUintStr"];
873
+ page?: string;
874
+ perPage?: string;
932
875
  };
933
876
  header?: never;
934
877
  path?: never;
@@ -950,6 +893,14 @@ type paths = {
950
893
  }[];
951
894
  };
952
895
  };
896
+ 400: {
897
+ headers: {
898
+ [name: string]: unknown;
899
+ };
900
+ content: {
901
+ "application/json": unknown;
902
+ };
903
+ };
953
904
  };
954
905
  };
955
906
  put?: never;
@@ -964,14 +915,16 @@ type paths = {
964
915
  type webhooks = Record<string, never>;
965
916
  type components = {
966
917
  schemas: {
967
- /** @description Validated EVM address type */
968
- EvmAddress: `0x${string}`;
969
- /** @description BigInt as string type */
918
+ /** @description 20-byte EVM address: 0x followed by 40 hex characters */
919
+ EvmAddress: string;
920
+ /** @description Signed integer encoded as a base-10 string (digits only, optional leading '-') */
970
921
  BigIntStr: string;
971
- /** @description Decimal as string type */
922
+ /** @description Decimal number encoded as a string (e.g. '12', '-3.5') */
972
923
  DecimalStr: string;
973
- /** @description Unsigned BigInt as string type */
924
+ /** @description Non-negative integer encoded as a base-10 string (digits only) */
974
925
  BigUintStr: string;
926
+ /** @description 48-byte BLS validator pubkey: 0x followed by 96 hex characters */
927
+ ValidatorPubkeyParam: string;
975
928
  };
976
929
  responses: never;
977
930
  parameters: never;
@@ -997,11 +950,9 @@ type EvmAddress = components["schemas"]["EvmAddress"];
997
950
  type BigIntStr = components["schemas"]["BigIntStr"];
998
951
  type DecimalStr = components["schemas"]["DecimalStr"];
999
952
  type BigUintStr = components["schemas"]["BigUintStr"];
953
+ type ValidatorPubkeyParam = components["schemas"]["ValidatorPubkeyParam"];
1000
954
  type StakeEarningResponse = paths["/v0/stake/{vault}/earnings/{owner}"]["get"]["responses"][200]["content"]["application/json"];
1001
955
  type StakeStatsByDayResponse = paths["/v0/stake/{vault}/stats-by-day"]["get"]["responses"][200]["content"]["application/json"];
1002
- type StakeRewardsReceivedResponse = paths["/v0/stake/{vault}/rewards-received"]["get"]["responses"][200]["content"]["application/json"];
1003
- type StakeDailyYieldResponse = paths["/v0/stake/{vault}/daily-yield/{owner}"]["get"]["responses"][200]["content"]["application/json"];
1004
- type StakeDailyAssetResponse = paths["/v0/stake/{vault}/daily-assets/{owner}"]["get"]["responses"][200]["content"]["application/json"];
1005
956
  type ValidatorsResponse = paths["/v0/validators"]["get"]["responses"][200]["content"]["application/json"];
1006
957
  type ValidatorBlockStatsResponse = paths["/v0/validators/{pubkey}/block-stats"]["get"]["responses"][200]["content"]["application/json"];
1007
958
  type ValidatorIncentivesResponse = paths["/v0/validators/{pubkey}/incentives"]["get"]["responses"][200]["content"]["application/json"];
@@ -1012,9 +963,10 @@ type EarnEarningResponse = paths["/v0/earn/{vault}/earnings/{owner}"]["get"]["re
1012
963
  type EarnTotalAssetsByDayResponse = paths["/v0/earn/{vault}/total-assets-by-day"]["get"]["responses"][200]["content"]["application/json"];
1013
964
  type EarnStatsByDayResponse = paths["/v0/earn/{vault}/stats-by-day"]["get"]["responses"][200]["content"]["application/json"];
1014
965
  type EarnDailyAssetResponse = paths["/v0/earn/{vault}/daily-assets/{owner}"]["get"]["responses"][200]["content"]["application/json"];
966
+ type StatsBeraResponse = paths["/v0/stats/bera"]["get"]["responses"][200]["content"]["application/json"];
1015
967
  type RewardVaultsResponse = paths["/v0/reward-vaults"]["get"]["responses"][200]["content"]["application/json"];
1016
968
  type RewardVaultDistributionsResponse = paths["/v0/reward-vaults/{vault}/distributions"]["get"]["responses"][200]["content"]["application/json"];
1017
969
  type RewardVaultsGlobalInfoResponse = paths["/v0/reward-vaults/global-info"]["get"]["responses"][200]["content"]["application/json"];
1018
970
  type RewardVaultsUserVaultStakesResponse = paths["/v0/reward-vaults/user-vault-stakes"]["get"]["responses"][200]["content"]["application/json"];
1019
971
 
1020
- export type { $defs, ApiGetResponse, ApiSchema, BigIntStr, BigUintStr, BlocksBlockStatsResponse, DecimalStr, EarnDailyAssetResponse, EarnEarningResponse, EarnStatsByDayResponse, EarnTotalAssetsByDayResponse, EvmAddress, HoneySnapshotResponse, HoneyTransactionsLatestResponse, RewardVaultDistributionsResponse, RewardVaultsGlobalInfoResponse, RewardVaultsResponse, RewardVaultsUserVaultStakesResponse, StakeDailyAssetResponse, StakeDailyYieldResponse, StakeEarningResponse, StakeRewardsReceivedResponse, StakeStatsByDayResponse, ValidatorBlockStatsResponse, ValidatorIncentivesResponse, ValidatorsResponse, components, operations, paths, webhooks };
972
+ export type { $defs, ApiGetResponse, ApiSchema, BigIntStr, BigUintStr, BlocksBlockStatsResponse, DecimalStr, EarnDailyAssetResponse, EarnEarningResponse, EarnStatsByDayResponse, EarnTotalAssetsByDayResponse, EvmAddress, HoneySnapshotResponse, HoneyTransactionsLatestResponse, RewardVaultDistributionsResponse, RewardVaultsGlobalInfoResponse, RewardVaultsResponse, RewardVaultsUserVaultStakesResponse, StakeEarningResponse, StakeStatsByDayResponse, StatsBeraResponse, ValidatorBlockStatsResponse, ValidatorIncentivesResponse, ValidatorPubkeyParam, ValidatorsResponse, components, operations, paths, webhooks };
@@ -514,6 +514,22 @@ declare enum HoneyTxn_OrderBy {
514
514
  To = "to",
515
515
  Type = "type"
516
516
  }
517
+ /**
518
+ * The severity level of a log entry.
519
+ * Log levels are ordered from most to least severe: CRITICAL > ERROR > WARNING > INFO > DEBUG
520
+ */
521
+ declare enum LogLevel {
522
+ /** Critical errors that require immediate attention */
523
+ Critical = "CRITICAL",
524
+ /** Detailed diagnostic information for debugging */
525
+ Debug = "DEBUG",
526
+ /** Error conditions that indicate a failure */
527
+ Error = "ERROR",
528
+ /** Informational messages about normal operations */
529
+ Info = "INFO",
530
+ /** Warning conditions that may require attention */
531
+ Warning = "WARNING"
532
+ }
517
533
  /** Defines the order direction, either ascending or descending */
518
534
  declare enum OrderDirection {
519
535
  Asc = "asc",
@@ -521,6 +537,8 @@ declare enum OrderDirection {
521
537
  }
522
538
  type Query = {
523
539
  __typename?: 'Query';
540
+ /** Query execution logs emitted by the subgraph during indexing. Results are sorted by timestamp in descending order (newest first). */
541
+ _logs: Array<_Log_>;
524
542
  /** Access to subgraph metadata */
525
543
  _meta?: Maybe<_Meta_>;
526
544
  chainTransaction?: Maybe<ChainTransaction>;
@@ -536,6 +554,15 @@ type Query = {
536
554
  honeyTxnTimeseries_collection: Array<HoneyTxnTimeseries>;
537
555
  honeyTxns: Array<HoneyTxn>;
538
556
  };
557
+ type Query_LogsArgs = {
558
+ first?: InputMaybe<Scalars['Int']['input']>;
559
+ from?: InputMaybe<Scalars['String']['input']>;
560
+ level?: InputMaybe<LogLevel>;
561
+ orderDirection?: InputMaybe<OrderDirection>;
562
+ search?: InputMaybe<Scalars['String']['input']>;
563
+ skip?: InputMaybe<Scalars['Int']['input']>;
564
+ to?: InputMaybe<Scalars['String']['input']>;
565
+ };
539
566
  type Query_MetaArgs = {
540
567
  block?: InputMaybe<Block_Height>;
541
568
  };
@@ -635,6 +662,51 @@ type _Block_ = {
635
662
  /** Integer representation of the timestamp stored in blocks for the chain */
636
663
  timestamp?: Maybe<Scalars['Int']['output']>;
637
664
  };
665
+ /**
666
+ * A key-value pair of additional data associated with a log entry.
667
+ * These correspond to arguments passed to the log function in the subgraph code.
668
+ */
669
+ type _LogArgument_ = {
670
+ __typename?: '_LogArgument_';
671
+ /** The parameter name */
672
+ key: Scalars['String']['output'];
673
+ /** The parameter value, serialized as a string */
674
+ value: Scalars['String']['output'];
675
+ };
676
+ /**
677
+ * Source code location metadata for a log entry.
678
+ * Indicates where in the subgraph's AssemblyScript code the log statement was executed.
679
+ */
680
+ type _LogMeta_ = {
681
+ __typename?: '_LogMeta_';
682
+ /** The column number in the source file */
683
+ column: Scalars['Int']['output'];
684
+ /** The line number in the source file */
685
+ line: Scalars['Int']['output'];
686
+ /** The module or file path where the log was emitted */
687
+ module: Scalars['String']['output'];
688
+ };
689
+ /**
690
+ * A log entry emitted by a subgraph during indexing.
691
+ * Logs can be generated by the subgraph's AssemblyScript code using the `log.*` functions.
692
+ */
693
+ type _Log_ = {
694
+ __typename?: '_Log_';
695
+ /** Additional structured data passed to the log function as key-value pairs */
696
+ arguments: Array<_LogArgument_>;
697
+ /** Unique identifier for this log entry */
698
+ id: Scalars['String']['output'];
699
+ /** The severity level of the log entry */
700
+ level: LogLevel;
701
+ /** Metadata about the source location in the subgraph code where the log was emitted */
702
+ meta: _LogMeta_;
703
+ /** The deployment hash of the subgraph that emitted this log */
704
+ subgraphId: Scalars['String']['output'];
705
+ /** The log message text */
706
+ text: Scalars['String']['output'];
707
+ /** The timestamp when the log was emitted, in RFC3339 format (e.g., '2024-01-15T10:30:00Z') */
708
+ timestamp: Scalars['String']['output'];
709
+ };
638
710
  /** The type for the top-level _meta field */
639
711
  type _Meta_ = {
640
712
  __typename?: '_Meta_';
@@ -732,4 +804,4 @@ interface PossibleTypesResultData {
732
804
  }
733
805
  declare const result: PossibleTypesResultData;
734
806
 
735
- export { Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetHoneyTxn, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetSnapshots, type GetSnapshotsQuery, type GetSnapshotsQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySnapshot, HoneySnapshotData, type HoneySnapshotDataFragment, type HoneySnapshot_Filter, HoneySnapshot_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxnTimeseries, type HoneyTxnTimeseries_Filter, HoneyTxnTimeseries_OrderBy, type HoneyTxn_Filter, HoneyTxn_OrderBy, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryChainTransactionArgs, type QueryChainTransactionsArgs, type QueryHoneyCollateralArgs, type QueryHoneyCollateralsArgs, type QueryHoneySnapshotsArgs, type QueryHoneySupplyDayDataArgs, type QueryHoneySupplyDayDatasArgs, type QueryHoneyTxnArgs, type QueryHoneyTxnTimeseriesArgs, type QueryHoneyTxnTimeseries_CollectionArgs, type QueryHoneyTxnsArgs, type Query_MetaArgs, type Scalars, TxnType, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
807
+ export { Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetHoneyTxn, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetSnapshots, type GetSnapshotsQuery, type GetSnapshotsQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySnapshot, HoneySnapshotData, type HoneySnapshotDataFragment, type HoneySnapshot_Filter, HoneySnapshot_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxnTimeseries, type HoneyTxnTimeseries_Filter, HoneyTxnTimeseries_OrderBy, type HoneyTxn_Filter, HoneyTxn_OrderBy, type Incremental, type InputMaybe, LogLevel, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryChainTransactionArgs, type QueryChainTransactionsArgs, type QueryHoneyCollateralArgs, type QueryHoneyCollateralsArgs, type QueryHoneySnapshotsArgs, type QueryHoneySupplyDayDataArgs, type QueryHoneySupplyDayDatasArgs, type QueryHoneyTxnArgs, type QueryHoneyTxnTimeseriesArgs, type QueryHoneyTxnTimeseries_CollectionArgs, type QueryHoneyTxnsArgs, type Query_LogsArgs, type Query_MetaArgs, type Scalars, TxnType, type _Block_, type _LogArgument_, type _LogMeta_, type _Log_, type _Meta_, _SubgraphErrorPolicy_, result as default };
@@ -76,6 +76,14 @@ var HoneyTxn_OrderBy = /* @__PURE__ */ ((HoneyTxn_OrderBy2) => {
76
76
  HoneyTxn_OrderBy2["Type"] = "type";
77
77
  return HoneyTxn_OrderBy2;
78
78
  })(HoneyTxn_OrderBy || {});
79
+ var LogLevel = /* @__PURE__ */ ((LogLevel2) => {
80
+ LogLevel2["Critical"] = "CRITICAL";
81
+ LogLevel2["Debug"] = "DEBUG";
82
+ LogLevel2["Error"] = "ERROR";
83
+ LogLevel2["Info"] = "INFO";
84
+ LogLevel2["Warning"] = "WARNING";
85
+ return LogLevel2;
86
+ })(LogLevel || {});
79
87
  var OrderDirection = /* @__PURE__ */ ((OrderDirection2) => {
80
88
  OrderDirection2["Asc"] = "asc";
81
89
  OrderDirection2["Desc"] = "desc";
@@ -153,6 +161,7 @@ export {
153
161
  HoneyTxnData,
154
162
  HoneyTxnTimeseries_OrderBy,
155
163
  HoneyTxn_OrderBy,
164
+ LogLevel,
156
165
  OrderDirection,
157
166
  TxnType,
158
167
  _SubgraphErrorPolicy_,
@@ -1446,6 +1446,22 @@ declare enum IncentiveTokensByValidator_OrderBy {
1446
1446
  ValidatorUsersQueuedBoostCount = "validator__usersQueuedBoostCount",
1447
1447
  ValidatorUsersQueuedDropBoostCount = "validator__usersQueuedDropBoostCount"
1448
1448
  }
1449
+ /**
1450
+ * The severity level of a log entry.
1451
+ * Log levels are ordered from most to least severe: CRITICAL > ERROR > WARNING > INFO > DEBUG
1452
+ */
1453
+ declare enum LogLevel {
1454
+ /** Critical errors that require immediate attention */
1455
+ Critical = "CRITICAL",
1456
+ /** Detailed diagnostic information for debugging */
1457
+ Debug = "DEBUG",
1458
+ /** Error conditions that indicate a failure */
1459
+ Error = "ERROR",
1460
+ /** Informational messages about normal operations */
1461
+ Info = "INFO",
1462
+ /** Warning conditions that may require attention */
1463
+ Warning = "WARNING"
1464
+ }
1449
1465
  /** Defines the order direction, either ascending or descending */
1450
1466
  declare enum OrderDirection {
1451
1467
  Asc = "asc",
@@ -1453,6 +1469,8 @@ declare enum OrderDirection {
1453
1469
  }
1454
1470
  type Query = {
1455
1471
  __typename?: 'Query';
1472
+ /** Query execution logs emitted by the subgraph during indexing. Results are sorted by timestamp in descending order (newest first). */
1473
+ _logs: Array<_Log_>;
1456
1474
  /** Access to subgraph metadata */
1457
1475
  _meta?: Maybe<_Meta_>;
1458
1476
  activeIncentive?: Maybe<ActiveIncentive>;
@@ -1522,6 +1540,15 @@ type Query = {
1522
1540
  whitelistedToken?: Maybe<WhitelistedToken>;
1523
1541
  whitelistedTokens: Array<WhitelistedToken>;
1524
1542
  };
1543
+ type Query_LogsArgs = {
1544
+ first?: InputMaybe<Scalars['Int']['input']>;
1545
+ from?: InputMaybe<Scalars['String']['input']>;
1546
+ level?: InputMaybe<LogLevel>;
1547
+ orderDirection?: InputMaybe<OrderDirection>;
1548
+ search?: InputMaybe<Scalars['String']['input']>;
1549
+ skip?: InputMaybe<Scalars['Int']['input']>;
1550
+ to?: InputMaybe<Scalars['String']['input']>;
1551
+ };
1525
1552
  type Query_MetaArgs = {
1526
1553
  block?: InputMaybe<Block_Height>;
1527
1554
  };
@@ -3962,6 +3989,51 @@ type _Block_ = {
3962
3989
  /** Integer representation of the timestamp stored in blocks for the chain */
3963
3990
  timestamp?: Maybe<Scalars['Int']['output']>;
3964
3991
  };
3992
+ /**
3993
+ * A key-value pair of additional data associated with a log entry.
3994
+ * These correspond to arguments passed to the log function in the subgraph code.
3995
+ */
3996
+ type _LogArgument_ = {
3997
+ __typename?: '_LogArgument_';
3998
+ /** The parameter name */
3999
+ key: Scalars['String']['output'];
4000
+ /** The parameter value, serialized as a string */
4001
+ value: Scalars['String']['output'];
4002
+ };
4003
+ /**
4004
+ * Source code location metadata for a log entry.
4005
+ * Indicates where in the subgraph's AssemblyScript code the log statement was executed.
4006
+ */
4007
+ type _LogMeta_ = {
4008
+ __typename?: '_LogMeta_';
4009
+ /** The column number in the source file */
4010
+ column: Scalars['Int']['output'];
4011
+ /** The line number in the source file */
4012
+ line: Scalars['Int']['output'];
4013
+ /** The module or file path where the log was emitted */
4014
+ module: Scalars['String']['output'];
4015
+ };
4016
+ /**
4017
+ * A log entry emitted by a subgraph during indexing.
4018
+ * Logs can be generated by the subgraph's AssemblyScript code using the `log.*` functions.
4019
+ */
4020
+ type _Log_ = {
4021
+ __typename?: '_Log_';
4022
+ /** Additional structured data passed to the log function as key-value pairs */
4023
+ arguments: Array<_LogArgument_>;
4024
+ /** Unique identifier for this log entry */
4025
+ id: Scalars['String']['output'];
4026
+ /** The severity level of the log entry */
4027
+ level: LogLevel;
4028
+ /** Metadata about the source location in the subgraph code where the log was emitted */
4029
+ meta: _LogMeta_;
4030
+ /** The deployment hash of the subgraph that emitted this log */
4031
+ subgraphId: Scalars['String']['output'];
4032
+ /** The log message text */
4033
+ text: Scalars['String']['output'];
4034
+ /** The timestamp when the log was emitted, in RFC3339 format (e.g., '2024-01-15T10:30:00Z') */
4035
+ timestamp: Scalars['String']['output'];
4036
+ };
3965
4037
  /** The type for the top-level _meta field */
3966
4038
  type _Meta_ = {
3967
4039
  __typename?: '_Meta_';
@@ -4138,4 +4210,4 @@ interface PossibleTypesResultData {
4138
4210
  }
4139
4211
  declare const result: PossibleTypesResultData;
4140
4212
 
4141
- export { type ActiveIncentive, type ActiveIncentive_Filter, ActiveIncentive_OrderBy, Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type BlockReward, type BlockRewardStats, BlockRewardStatsByValidator, type BlockRewardStatsByValidatorFragment, type BlockRewardStatsByValidator_Filter, BlockRewardStatsByValidator_OrderBy, type BlockRewardStats_Filter, BlockRewardStats_OrderBy, type BlockReward_Filter, BlockReward_OrderBy, type BlockStats, type BlockStatsByValidator, type BlockStatsByValidator_Filter, BlockStatsByValidator_OrderBy, type BlockStats_Filter, BlockStats_OrderBy, type Block_Height, type Boost, BoostByValidator, type BoostByValidatorFragment, type BoostByValidator_Filter, BoostByValidator_OrderBy, type Boost_Filter, Boost_OrderBy, type Exact, GetIncentiveFeeClaimStats, type GetIncentiveFeeClaimStatsQuery, type GetIncentiveFeeClaimStatsQueryVariables, GetValidatorAnalytics, type GetValidatorAnalyticsQuery, type GetValidatorAnalyticsQueryVariables, GetValidatorBlockStats, type GetValidatorBlockStatsQuery, type GetValidatorBlockStatsQueryVariables, GetValidatorIncentiveDistribution, type GetValidatorIncentiveDistributionQuery, type GetValidatorIncentiveDistributionQueryVariables, type GlobalInfo, type GlobalInfo_Filter, GlobalInfo_OrderBy, type GlobalRewardDistribution, type GlobalRewardDistribution_Filter, GlobalRewardDistribution_OrderBy, type IncentiveDistribution, type IncentiveDistributionByValidator, type IncentiveDistributionByValidator_Filter, IncentiveDistributionByValidator_OrderBy, type IncentiveDistributionByVault, type IncentiveDistributionByVault_Filter, IncentiveDistributionByVault_OrderBy, type IncentiveDistribution_Filter, IncentiveDistribution_OrderBy, type IncentiveFeeClaim, type IncentiveFeeClaimStats, type IncentiveFeeClaimStats_Filter, IncentiveFeeClaimStats_OrderBy, type IncentiveFeeClaim_Filter, IncentiveFeeClaim_OrderBy, type IncentiveFeePayoutAmountHistory, type IncentiveFeePayoutAmountHistory_Filter, IncentiveFeePayoutAmountHistory_OrderBy, type IncentiveTokensByValidator, type IncentiveTokensByValidator_Filter, IncentiveTokensByValidator_OrderBy, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryActiveIncentiveArgs, type QueryActiveIncentivesArgs, type QueryBlockRewardArgs, type QueryBlockRewardStatsByValidatorsArgs, type QueryBlockRewardStats_CollectionArgs, type QueryBlockRewardsArgs, type QueryBlockStatsByValidatorsArgs, type QueryBlockStats_CollectionArgs, type QueryBoostArgs, type QueryBoostByValidatorsArgs, type QueryBoostsArgs, type QueryGlobalInfoArgs, type QueryGlobalInfosArgs, type QueryGlobalRewardDistributionsArgs, type QueryIncentiveDistributionArgs, type QueryIncentiveDistributionByValidatorsArgs, type QueryIncentiveDistributionByVaultsArgs, type QueryIncentiveDistributionsArgs, type QueryIncentiveFeeClaimArgs, type QueryIncentiveFeeClaimStats_CollectionArgs, type QueryIncentiveFeeClaimsArgs, type QueryIncentiveFeePayoutAmountHistoriesArgs, type QueryIncentiveFeePayoutAmountHistoryArgs, type QueryIncentiveTokensByValidatorArgs, type QueryIncentiveTokensByValidatorsArgs, type QueryRewardAllocationActivationArgs, type QueryRewardAllocationActivationsArgs, type QueryRewardAllocationArgs, type QueryRewardAllocationMaxWeightHistoriesArgs, type QueryRewardAllocationMaxWeightHistoryArgs, type QueryRewardAllocationQueueArgs, type QueryRewardAllocationQueuesArgs, type QueryRewardAllocationWeightArgs, type QueryRewardAllocationWeightsArgs, type QueryRewardAllocationsArgs, type QueryRewardDistributionArgs, type QueryRewardDistributionByVaultsArgs, type QueryRewardDistributionsArgs, type QueryRewardsDistributionByValidatorsArgs, type QueryTokenInformationArgs, type QueryTokenInformationsArgs, type QueryUserBoostArgs, type QueryUserBoostsArgs, type QueryUserFeeHistoriesArgs, type QueryUserFeeHistoryArgs, type QueryUserVaultStakeArgs, type QueryUserVaultStakesArgs, type QueryValidatorArgs, type QueryValidatorCommissionHistoriesArgs, type QueryValidatorCommissionHistoryArgs, type QueryValidatorsArgs, type QueryVaultArgs, type QueryVaultsArgs, type QueryWhitelistedTokenArgs, type QueryWhitelistedTokensArgs, type Query_MetaArgs, type RewardAllocation, type RewardAllocationActivation, type RewardAllocationActivation_Filter, RewardAllocationActivation_OrderBy, type RewardAllocationActivationsArgs, type RewardAllocationMaxWeightHistory, type RewardAllocationMaxWeightHistory_Filter, RewardAllocationMaxWeightHistory_OrderBy, type RewardAllocationQueue, type RewardAllocationQueue_Filter, RewardAllocationQueue_OrderBy, type RewardAllocationQueuesArgs, type RewardAllocationWeight, type RewardAllocationWeight_Filter, RewardAllocationWeight_OrderBy, type RewardAllocationWeightsArgs, type RewardAllocation_Filter, RewardAllocation_OrderBy, type RewardDistribution, type RewardDistributionByVault, type RewardDistributionByVault_Filter, RewardDistributionByVault_OrderBy, type RewardDistribution_Filter, RewardDistribution_OrderBy, type RewardsDistributionByValidator, type RewardsDistributionByValidator_Filter, RewardsDistributionByValidator_OrderBy, type Scalars, StakingToken, type StakingTokenFragment, type TokenInformation, type TokenInformationActiveIncentivesArgs, type TokenInformationDistributedIncentivesArgs, type TokenInformationDistributedIncentivesByVaultArgs, type TokenInformationReceivedValidatorsArgs, type TokenInformationStakedVaultsArgs, type TokenInformationWhitelistedVaultsArgs, type TokenInformation_Filter, TokenInformation_OrderBy, type UserBoost, type UserBoost_Filter, UserBoost_OrderBy, type UserFeeHistory, type UserFeeHistory_Filter, UserFeeHistory_OrderBy, type UserVaultStake, type UserVaultStake_Filter, UserVaultStake_OrderBy, type Validator, type ValidatorBlockRewardsArgs, type ValidatorBoostHistoryArgs, type ValidatorBoostStatsArgs, type ValidatorCommissionHistory, type ValidatorCommissionHistory_Filter, ValidatorCommissionHistory_OrderBy, type ValidatorDistributedIncentivesArgs, ValidatorMinimal, type ValidatorMinimalFragment, type ValidatorReceivedIncentiveTokensArgs, type ValidatorRewardAllocationActivationHistoryArgs, type ValidatorRewardAllocationQueueHistoryArgs, type ValidatorUserBoostsArgs, type Validator_Filter, Validator_OrderBy, type Vault, type VaultActiveIncentivesArgs, type VaultDistributedIncentivesArgs, type VaultRewardAllocationWeightsArgs, type VaultStakedUsersArgs, type VaultWhitelistedTokensArgs, type Vault_Filter, Vault_OrderBy, type WhitelistedToken, type WhitelistedToken_Filter, WhitelistedToken_OrderBy, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
4213
+ export { type ActiveIncentive, type ActiveIncentive_Filter, ActiveIncentive_OrderBy, Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type BlockReward, type BlockRewardStats, BlockRewardStatsByValidator, type BlockRewardStatsByValidatorFragment, type BlockRewardStatsByValidator_Filter, BlockRewardStatsByValidator_OrderBy, type BlockRewardStats_Filter, BlockRewardStats_OrderBy, type BlockReward_Filter, BlockReward_OrderBy, type BlockStats, type BlockStatsByValidator, type BlockStatsByValidator_Filter, BlockStatsByValidator_OrderBy, type BlockStats_Filter, BlockStats_OrderBy, type Block_Height, type Boost, BoostByValidator, type BoostByValidatorFragment, type BoostByValidator_Filter, BoostByValidator_OrderBy, type Boost_Filter, Boost_OrderBy, type Exact, GetIncentiveFeeClaimStats, type GetIncentiveFeeClaimStatsQuery, type GetIncentiveFeeClaimStatsQueryVariables, GetValidatorAnalytics, type GetValidatorAnalyticsQuery, type GetValidatorAnalyticsQueryVariables, GetValidatorBlockStats, type GetValidatorBlockStatsQuery, type GetValidatorBlockStatsQueryVariables, GetValidatorIncentiveDistribution, type GetValidatorIncentiveDistributionQuery, type GetValidatorIncentiveDistributionQueryVariables, type GlobalInfo, type GlobalInfo_Filter, GlobalInfo_OrderBy, type GlobalRewardDistribution, type GlobalRewardDistribution_Filter, GlobalRewardDistribution_OrderBy, type IncentiveDistribution, type IncentiveDistributionByValidator, type IncentiveDistributionByValidator_Filter, IncentiveDistributionByValidator_OrderBy, type IncentiveDistributionByVault, type IncentiveDistributionByVault_Filter, IncentiveDistributionByVault_OrderBy, type IncentiveDistribution_Filter, IncentiveDistribution_OrderBy, type IncentiveFeeClaim, type IncentiveFeeClaimStats, type IncentiveFeeClaimStats_Filter, IncentiveFeeClaimStats_OrderBy, type IncentiveFeeClaim_Filter, IncentiveFeeClaim_OrderBy, type IncentiveFeePayoutAmountHistory, type IncentiveFeePayoutAmountHistory_Filter, IncentiveFeePayoutAmountHistory_OrderBy, type IncentiveTokensByValidator, type IncentiveTokensByValidator_Filter, IncentiveTokensByValidator_OrderBy, type Incremental, type InputMaybe, LogLevel, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryActiveIncentiveArgs, type QueryActiveIncentivesArgs, type QueryBlockRewardArgs, type QueryBlockRewardStatsByValidatorsArgs, type QueryBlockRewardStats_CollectionArgs, type QueryBlockRewardsArgs, type QueryBlockStatsByValidatorsArgs, type QueryBlockStats_CollectionArgs, type QueryBoostArgs, type QueryBoostByValidatorsArgs, type QueryBoostsArgs, type QueryGlobalInfoArgs, type QueryGlobalInfosArgs, type QueryGlobalRewardDistributionsArgs, type QueryIncentiveDistributionArgs, type QueryIncentiveDistributionByValidatorsArgs, type QueryIncentiveDistributionByVaultsArgs, type QueryIncentiveDistributionsArgs, type QueryIncentiveFeeClaimArgs, type QueryIncentiveFeeClaimStats_CollectionArgs, type QueryIncentiveFeeClaimsArgs, type QueryIncentiveFeePayoutAmountHistoriesArgs, type QueryIncentiveFeePayoutAmountHistoryArgs, type QueryIncentiveTokensByValidatorArgs, type QueryIncentiveTokensByValidatorsArgs, type QueryRewardAllocationActivationArgs, type QueryRewardAllocationActivationsArgs, type QueryRewardAllocationArgs, type QueryRewardAllocationMaxWeightHistoriesArgs, type QueryRewardAllocationMaxWeightHistoryArgs, type QueryRewardAllocationQueueArgs, type QueryRewardAllocationQueuesArgs, type QueryRewardAllocationWeightArgs, type QueryRewardAllocationWeightsArgs, type QueryRewardAllocationsArgs, type QueryRewardDistributionArgs, type QueryRewardDistributionByVaultsArgs, type QueryRewardDistributionsArgs, type QueryRewardsDistributionByValidatorsArgs, type QueryTokenInformationArgs, type QueryTokenInformationsArgs, type QueryUserBoostArgs, type QueryUserBoostsArgs, type QueryUserFeeHistoriesArgs, type QueryUserFeeHistoryArgs, type QueryUserVaultStakeArgs, type QueryUserVaultStakesArgs, type QueryValidatorArgs, type QueryValidatorCommissionHistoriesArgs, type QueryValidatorCommissionHistoryArgs, type QueryValidatorsArgs, type QueryVaultArgs, type QueryVaultsArgs, type QueryWhitelistedTokenArgs, type QueryWhitelistedTokensArgs, type Query_LogsArgs, type Query_MetaArgs, type RewardAllocation, type RewardAllocationActivation, type RewardAllocationActivation_Filter, RewardAllocationActivation_OrderBy, type RewardAllocationActivationsArgs, type RewardAllocationMaxWeightHistory, type RewardAllocationMaxWeightHistory_Filter, RewardAllocationMaxWeightHistory_OrderBy, type RewardAllocationQueue, type RewardAllocationQueue_Filter, RewardAllocationQueue_OrderBy, type RewardAllocationQueuesArgs, type RewardAllocationWeight, type RewardAllocationWeight_Filter, RewardAllocationWeight_OrderBy, type RewardAllocationWeightsArgs, type RewardAllocation_Filter, RewardAllocation_OrderBy, type RewardDistribution, type RewardDistributionByVault, type RewardDistributionByVault_Filter, RewardDistributionByVault_OrderBy, type RewardDistribution_Filter, RewardDistribution_OrderBy, type RewardsDistributionByValidator, type RewardsDistributionByValidator_Filter, RewardsDistributionByValidator_OrderBy, type Scalars, StakingToken, type StakingTokenFragment, type TokenInformation, type TokenInformationActiveIncentivesArgs, type TokenInformationDistributedIncentivesArgs, type TokenInformationDistributedIncentivesByVaultArgs, type TokenInformationReceivedValidatorsArgs, type TokenInformationStakedVaultsArgs, type TokenInformationWhitelistedVaultsArgs, type TokenInformation_Filter, TokenInformation_OrderBy, type UserBoost, type UserBoost_Filter, UserBoost_OrderBy, type UserFeeHistory, type UserFeeHistory_Filter, UserFeeHistory_OrderBy, type UserVaultStake, type UserVaultStake_Filter, UserVaultStake_OrderBy, type Validator, type ValidatorBlockRewardsArgs, type ValidatorBoostHistoryArgs, type ValidatorBoostStatsArgs, type ValidatorCommissionHistory, type ValidatorCommissionHistory_Filter, ValidatorCommissionHistory_OrderBy, type ValidatorDistributedIncentivesArgs, ValidatorMinimal, type ValidatorMinimalFragment, type ValidatorReceivedIncentiveTokensArgs, type ValidatorRewardAllocationActivationHistoryArgs, type ValidatorRewardAllocationQueueHistoryArgs, type ValidatorUserBoostsArgs, type Validator_Filter, Validator_OrderBy, type Vault, type VaultActiveIncentivesArgs, type VaultDistributedIncentivesArgs, type VaultRewardAllocationWeightsArgs, type VaultStakedUsersArgs, type VaultWhitelistedTokensArgs, type Vault_Filter, Vault_OrderBy, type WhitelistedToken, type WhitelistedToken_Filter, WhitelistedToken_OrderBy, type _Block_, type _LogArgument_, type _LogMeta_, type _Log_, type _Meta_, _SubgraphErrorPolicy_, result as default };
@@ -349,6 +349,14 @@ var IncentiveTokensByValidator_OrderBy = /* @__PURE__ */ ((IncentiveTokensByVali
349
349
  IncentiveTokensByValidator_OrderBy2["ValidatorUsersQueuedDropBoostCount"] = "validator__usersQueuedDropBoostCount";
350
350
  return IncentiveTokensByValidator_OrderBy2;
351
351
  })(IncentiveTokensByValidator_OrderBy || {});
352
+ var LogLevel = /* @__PURE__ */ ((LogLevel2) => {
353
+ LogLevel2["Critical"] = "CRITICAL";
354
+ LogLevel2["Debug"] = "DEBUG";
355
+ LogLevel2["Error"] = "ERROR";
356
+ LogLevel2["Info"] = "INFO";
357
+ LogLevel2["Warning"] = "WARNING";
358
+ return LogLevel2;
359
+ })(LogLevel || {});
352
360
  var OrderDirection = /* @__PURE__ */ ((OrderDirection2) => {
353
361
  OrderDirection2["Asc"] = "asc";
354
362
  OrderDirection2["Desc"] = "desc";
@@ -834,6 +842,7 @@ export {
834
842
  IncentiveFeeClaim_OrderBy,
835
843
  IncentiveFeePayoutAmountHistory_OrderBy,
836
844
  IncentiveTokensByValidator_OrderBy,
845
+ LogLevel,
837
846
  OrderDirection,
838
847
  RewardAllocationActivation_OrderBy,
839
848
  RewardAllocationMaxWeightHistory_OrderBy,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@berachain/graphql",
3
- "version": "0.5.1-beta.0",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -31,7 +31,7 @@
31
31
  "openapi-typescript": "7.13.0",
32
32
  "tsup": "8.5.1",
33
33
  "typescript": "5.5.4",
34
- "@berachain/config": "^0.1.18-beta.0"
34
+ "@berachain/config": "^0.1.20"
35
35
  },
36
36
  "exports": {
37
37
  "./governance": {