@berachain/graphql 0.2.3-beta.4 → 0.2.4-beta.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.
- package/dist/bend/whisk.codegen.cjs +150 -19
- package/dist/bend/whisk.codegen.d.cts +196 -1
- package/dist/bend/whisk.codegen.d.ts +196 -1
- package/dist/bend/whisk.codegen.mjs +146 -15
- package/dist/honey/honey.codegen.cjs +10 -13
- package/dist/honey/honey.codegen.d.cts +5 -188
- package/dist/honey/honey.codegen.d.ts +5 -188
- package/dist/honey/honey.codegen.mjs +10 -13
- package/package.json +1 -1
|
@@ -402,37 +402,6 @@ declare enum HoneyTxn_OrderBy {
|
|
|
402
402
|
To = "to",
|
|
403
403
|
Type = "type"
|
|
404
404
|
}
|
|
405
|
-
/**
|
|
406
|
-
* Aggregation for honey volume by hour or day
|
|
407
|
-
*
|
|
408
|
-
*/
|
|
409
|
-
type HoneyVolumeAggregation = {
|
|
410
|
-
__typename?: 'HoneyVolumeAggregation';
|
|
411
|
-
allTimeVolume: Scalars['BigDecimal']['output'];
|
|
412
|
-
id: Scalars['Int8']['output'];
|
|
413
|
-
mintVolume: Scalars['BigDecimal']['output'];
|
|
414
|
-
redeemVolume: Scalars['BigDecimal']['output'];
|
|
415
|
-
timestamp: Scalars['Timestamp']['output'];
|
|
416
|
-
totalVolume: Scalars['BigDecimal']['output'];
|
|
417
|
-
};
|
|
418
|
-
type HoneyVolumeAggregation_Filter = {
|
|
419
|
-
/** Filter for the block changed event. */
|
|
420
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
421
|
-
and?: InputMaybe<Array<InputMaybe<HoneyVolumeAggregation_Filter>>>;
|
|
422
|
-
id?: InputMaybe<Scalars['Int8']['input']>;
|
|
423
|
-
id_gt?: InputMaybe<Scalars['Int8']['input']>;
|
|
424
|
-
id_gte?: InputMaybe<Scalars['Int8']['input']>;
|
|
425
|
-
id_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
426
|
-
id_lt?: InputMaybe<Scalars['Int8']['input']>;
|
|
427
|
-
id_lte?: InputMaybe<Scalars['Int8']['input']>;
|
|
428
|
-
or?: InputMaybe<Array<InputMaybe<HoneyVolumeAggregation_Filter>>>;
|
|
429
|
-
timestamp?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
430
|
-
timestamp_gt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
431
|
-
timestamp_gte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
432
|
-
timestamp_in?: InputMaybe<Array<Scalars['Timestamp']['input']>>;
|
|
433
|
-
timestamp_lt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
434
|
-
timestamp_lte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
435
|
-
};
|
|
436
405
|
type HoneyVolumeDayData = {
|
|
437
406
|
__typename?: 'HoneyVolumeDayData';
|
|
438
407
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -515,103 +484,6 @@ declare enum HoneyVolumeHourData_OrderBy {
|
|
|
515
484
|
Id = "id",
|
|
516
485
|
Timestamp = "timestamp"
|
|
517
486
|
}
|
|
518
|
-
/**
|
|
519
|
-
* Timeseries data for honey volume transactions
|
|
520
|
-
*
|
|
521
|
-
*/
|
|
522
|
-
type HoneyVolumeTimeseries = {
|
|
523
|
-
__typename?: 'HoneyVolumeTimeseries';
|
|
524
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
525
|
-
from: Scalars['Bytes']['output'];
|
|
526
|
-
honeyAmount: Scalars['BigDecimal']['output'];
|
|
527
|
-
id: Scalars['Int8']['output'];
|
|
528
|
-
timestamp: Scalars['Timestamp']['output'];
|
|
529
|
-
to: Scalars['Bytes']['output'];
|
|
530
|
-
txHash: Scalars['Bytes']['output'];
|
|
531
|
-
txnType: TxnType;
|
|
532
|
-
};
|
|
533
|
-
type HoneyVolumeTimeseries_Filter = {
|
|
534
|
-
/** Filter for the block changed event. */
|
|
535
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
536
|
-
and?: InputMaybe<Array<InputMaybe<HoneyVolumeTimeseries_Filter>>>;
|
|
537
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
538
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
539
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
540
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
541
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
542
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
543
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
544
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
545
|
-
from?: InputMaybe<Scalars['Bytes']['input']>;
|
|
546
|
-
from_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
547
|
-
from_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
548
|
-
from_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
549
|
-
from_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
550
|
-
from_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
551
|
-
from_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
552
|
-
from_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
553
|
-
from_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
554
|
-
from_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
555
|
-
honeyAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
556
|
-
honeyAmount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
557
|
-
honeyAmount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
558
|
-
honeyAmount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
559
|
-
honeyAmount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
560
|
-
honeyAmount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
561
|
-
honeyAmount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
562
|
-
honeyAmount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
563
|
-
id?: InputMaybe<Scalars['Int8']['input']>;
|
|
564
|
-
id_gt?: InputMaybe<Scalars['Int8']['input']>;
|
|
565
|
-
id_gte?: InputMaybe<Scalars['Int8']['input']>;
|
|
566
|
-
id_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
567
|
-
id_lt?: InputMaybe<Scalars['Int8']['input']>;
|
|
568
|
-
id_lte?: InputMaybe<Scalars['Int8']['input']>;
|
|
569
|
-
id_not?: InputMaybe<Scalars['Int8']['input']>;
|
|
570
|
-
id_not_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
571
|
-
or?: InputMaybe<Array<InputMaybe<HoneyVolumeTimeseries_Filter>>>;
|
|
572
|
-
timestamp?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
573
|
-
timestamp_gt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
574
|
-
timestamp_gte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
575
|
-
timestamp_in?: InputMaybe<Array<Scalars['Timestamp']['input']>>;
|
|
576
|
-
timestamp_lt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
577
|
-
timestamp_lte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
578
|
-
timestamp_not?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
579
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['Timestamp']['input']>>;
|
|
580
|
-
to?: InputMaybe<Scalars['Bytes']['input']>;
|
|
581
|
-
to_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
582
|
-
to_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
583
|
-
to_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
584
|
-
to_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
585
|
-
to_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
586
|
-
to_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
587
|
-
to_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
588
|
-
to_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
589
|
-
to_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
590
|
-
txHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
591
|
-
txHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
592
|
-
txHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
593
|
-
txHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
594
|
-
txHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
595
|
-
txHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
596
|
-
txHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
597
|
-
txHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
598
|
-
txHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
599
|
-
txHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
600
|
-
txnType?: InputMaybe<TxnType>;
|
|
601
|
-
txnType_in?: InputMaybe<Array<TxnType>>;
|
|
602
|
-
txnType_not?: InputMaybe<TxnType>;
|
|
603
|
-
txnType_not_in?: InputMaybe<Array<TxnType>>;
|
|
604
|
-
};
|
|
605
|
-
declare enum HoneyVolumeTimeseries_OrderBy {
|
|
606
|
-
BlockNumber = "blockNumber",
|
|
607
|
-
From = "from",
|
|
608
|
-
HoneyAmount = "honeyAmount",
|
|
609
|
-
Id = "id",
|
|
610
|
-
Timestamp = "timestamp",
|
|
611
|
-
To = "to",
|
|
612
|
-
TxHash = "txHash",
|
|
613
|
-
TxnType = "txnType"
|
|
614
|
-
}
|
|
615
487
|
/** Defines the order direction, either ascending or descending */
|
|
616
488
|
declare enum OrderDirection {
|
|
617
489
|
Asc = "asc",
|
|
@@ -631,14 +503,10 @@ type Query = {
|
|
|
631
503
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
632
504
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
633
505
|
honeyTxns: Array<HoneyTxn>;
|
|
634
|
-
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
635
|
-
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
636
506
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
637
507
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
638
508
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
639
509
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
640
|
-
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
641
|
-
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
642
510
|
};
|
|
643
511
|
type Query_MetaArgs = {
|
|
644
512
|
block?: InputMaybe<Block_Height>;
|
|
@@ -713,14 +581,6 @@ type QueryHoneyTxnsArgs = {
|
|
|
713
581
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
714
582
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
715
583
|
};
|
|
716
|
-
type QueryHoneyVolumeAggregationsArgs = {
|
|
717
|
-
block?: InputMaybe<Block_Height>;
|
|
718
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
719
|
-
interval: Aggregation_Interval;
|
|
720
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
721
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
722
|
-
where?: InputMaybe<HoneyVolumeAggregation_Filter>;
|
|
723
|
-
};
|
|
724
584
|
type QueryHoneyVolumeDayDataArgs = {
|
|
725
585
|
block?: InputMaybe<Block_Height>;
|
|
726
586
|
id: Scalars['ID']['input'];
|
|
@@ -749,20 +609,6 @@ type QueryHoneyVolumeHourDatasArgs = {
|
|
|
749
609
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
750
610
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
751
611
|
};
|
|
752
|
-
type QueryHoneyVolumeTimeseriesArgs = {
|
|
753
|
-
block?: InputMaybe<Block_Height>;
|
|
754
|
-
id: Scalars['ID']['input'];
|
|
755
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
756
|
-
};
|
|
757
|
-
type QueryHoneyVolumeTimeseries_CollectionArgs = {
|
|
758
|
-
block?: InputMaybe<Block_Height>;
|
|
759
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
760
|
-
orderBy?: InputMaybe<HoneyVolumeTimeseries_OrderBy>;
|
|
761
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
762
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
763
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
764
|
-
where?: InputMaybe<HoneyVolumeTimeseries_Filter>;
|
|
765
|
-
};
|
|
766
612
|
type Subscription = {
|
|
767
613
|
__typename?: 'Subscription';
|
|
768
614
|
/** Access to subgraph metadata */
|
|
@@ -777,14 +623,10 @@ type Subscription = {
|
|
|
777
623
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
778
624
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
779
625
|
honeyTxns: Array<HoneyTxn>;
|
|
780
|
-
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
781
|
-
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
782
626
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
783
627
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
784
628
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
785
629
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
786
|
-
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
787
|
-
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
788
630
|
};
|
|
789
631
|
type Subscription_MetaArgs = {
|
|
790
632
|
block?: InputMaybe<Block_Height>;
|
|
@@ -859,14 +701,6 @@ type SubscriptionHoneyTxnsArgs = {
|
|
|
859
701
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
860
702
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
861
703
|
};
|
|
862
|
-
type SubscriptionHoneyVolumeAggregationsArgs = {
|
|
863
|
-
block?: InputMaybe<Block_Height>;
|
|
864
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
865
|
-
interval: Aggregation_Interval;
|
|
866
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
867
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
868
|
-
where?: InputMaybe<HoneyVolumeAggregation_Filter>;
|
|
869
|
-
};
|
|
870
704
|
type SubscriptionHoneyVolumeDayDataArgs = {
|
|
871
705
|
block?: InputMaybe<Block_Height>;
|
|
872
706
|
id: Scalars['ID']['input'];
|
|
@@ -895,20 +729,6 @@ type SubscriptionHoneyVolumeHourDatasArgs = {
|
|
|
895
729
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
896
730
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
897
731
|
};
|
|
898
|
-
type SubscriptionHoneyVolumeTimeseriesArgs = {
|
|
899
|
-
block?: InputMaybe<Block_Height>;
|
|
900
|
-
id: Scalars['ID']['input'];
|
|
901
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
902
|
-
};
|
|
903
|
-
type SubscriptionHoneyVolumeTimeseries_CollectionArgs = {
|
|
904
|
-
block?: InputMaybe<Block_Height>;
|
|
905
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
906
|
-
orderBy?: InputMaybe<HoneyVolumeTimeseries_OrderBy>;
|
|
907
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
908
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
909
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
910
|
-
where?: InputMaybe<HoneyVolumeTimeseries_Filter>;
|
|
911
|
-
};
|
|
912
732
|
declare enum TxnType {
|
|
913
733
|
Mint = "MINT",
|
|
914
734
|
Redeem = "REDEEM"
|
|
@@ -1056,14 +876,11 @@ type GetGlobalDataQueryVariables = Exact<{
|
|
|
1056
876
|
}>;
|
|
1057
877
|
type GetGlobalDataQuery = {
|
|
1058
878
|
__typename?: 'Query';
|
|
1059
|
-
|
|
1060
|
-
__typename?: '
|
|
1061
|
-
allTimeVolume: string;
|
|
879
|
+
honeyVolumeDayDatas: Array<{
|
|
880
|
+
__typename?: 'HoneyVolumeDayData';
|
|
1062
881
|
id: string;
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
timestamp: string;
|
|
1066
|
-
totalVolume: string;
|
|
882
|
+
timestamp: number;
|
|
883
|
+
amount: string;
|
|
1067
884
|
}>;
|
|
1068
885
|
honeySupplyHourDatas: Array<{
|
|
1069
886
|
__typename?: 'HoneySupplyHourData';
|
|
@@ -1096,4 +913,4 @@ interface PossibleTypesResultData {
|
|
|
1096
913
|
}
|
|
1097
914
|
declare const result: PossibleTypesResultData;
|
|
1098
915
|
|
|
1099
|
-
export { Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetFirstHoneyTxnDate, type GetFirstHoneyTxnDateQuery, type GetFirstHoneyTxnDateQueryVariables, GetGlobalData, type GetGlobalDataQuery, type GetGlobalDataQueryVariables, GetHoneyTxn, GetHoneyTxnByType, type GetHoneyTxnByTypeQuery, type GetHoneyTxnByTypeQueryVariables, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetVolumeAndSupplyDay, type GetVolumeAndSupplyDayQuery, type GetVolumeAndSupplyDayQueryVariables, GetVolumeHour, type GetVolumeHourQuery, type GetVolumeHourQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneySupplyHourData, type HoneySupplyHourData_Filter, HoneySupplyHourData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxn_Filter, HoneyTxn_OrderBy, type
|
|
916
|
+
export { Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetFirstHoneyTxnDate, type GetFirstHoneyTxnDateQuery, type GetFirstHoneyTxnDateQueryVariables, GetGlobalData, type GetGlobalDataQuery, type GetGlobalDataQueryVariables, GetHoneyTxn, GetHoneyTxnByType, type GetHoneyTxnByTypeQuery, type GetHoneyTxnByTypeQueryVariables, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetVolumeAndSupplyDay, type GetVolumeAndSupplyDayQuery, type GetVolumeAndSupplyDayQueryVariables, GetVolumeHour, type GetVolumeHourQuery, type GetVolumeHourQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneySupplyHourData, type HoneySupplyHourData_Filter, HoneySupplyHourData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxn_Filter, HoneyTxn_OrderBy, type HoneyVolumeDayData, type HoneyVolumeDayData_Filter, HoneyVolumeDayData_OrderBy, type HoneyVolumeHourData, type HoneyVolumeHourData_Filter, HoneyVolumeHourData_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 QueryHoneySupplyDayDataArgs, type QueryHoneySupplyDayDatasArgs, type QueryHoneySupplyHourDataArgs, type QueryHoneySupplyHourDatasArgs, type QueryHoneyTxnArgs, type QueryHoneyTxnsArgs, type QueryHoneyVolumeDayDataArgs, type QueryHoneyVolumeDayDatasArgs, type QueryHoneyVolumeHourDataArgs, type QueryHoneyVolumeHourDatasArgs, type Query_MetaArgs, type Scalars, type Subscription, type SubscriptionChainTransactionArgs, type SubscriptionChainTransactionsArgs, type SubscriptionHoneyCollateralArgs, type SubscriptionHoneyCollateralsArgs, type SubscriptionHoneySupplyDayDataArgs, type SubscriptionHoneySupplyDayDatasArgs, type SubscriptionHoneySupplyHourDataArgs, type SubscriptionHoneySupplyHourDatasArgs, type SubscriptionHoneyTxnArgs, type SubscriptionHoneyTxnsArgs, type SubscriptionHoneyVolumeDayDataArgs, type SubscriptionHoneyVolumeDayDatasArgs, type SubscriptionHoneyVolumeHourDataArgs, type SubscriptionHoneyVolumeHourDatasArgs, type Subscription_MetaArgs, TxnType, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|
|
@@ -402,37 +402,6 @@ declare enum HoneyTxn_OrderBy {
|
|
|
402
402
|
To = "to",
|
|
403
403
|
Type = "type"
|
|
404
404
|
}
|
|
405
|
-
/**
|
|
406
|
-
* Aggregation for honey volume by hour or day
|
|
407
|
-
*
|
|
408
|
-
*/
|
|
409
|
-
type HoneyVolumeAggregation = {
|
|
410
|
-
__typename?: 'HoneyVolumeAggregation';
|
|
411
|
-
allTimeVolume: Scalars['BigDecimal']['output'];
|
|
412
|
-
id: Scalars['Int8']['output'];
|
|
413
|
-
mintVolume: Scalars['BigDecimal']['output'];
|
|
414
|
-
redeemVolume: Scalars['BigDecimal']['output'];
|
|
415
|
-
timestamp: Scalars['Timestamp']['output'];
|
|
416
|
-
totalVolume: Scalars['BigDecimal']['output'];
|
|
417
|
-
};
|
|
418
|
-
type HoneyVolumeAggregation_Filter = {
|
|
419
|
-
/** Filter for the block changed event. */
|
|
420
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
421
|
-
and?: InputMaybe<Array<InputMaybe<HoneyVolumeAggregation_Filter>>>;
|
|
422
|
-
id?: InputMaybe<Scalars['Int8']['input']>;
|
|
423
|
-
id_gt?: InputMaybe<Scalars['Int8']['input']>;
|
|
424
|
-
id_gte?: InputMaybe<Scalars['Int8']['input']>;
|
|
425
|
-
id_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
426
|
-
id_lt?: InputMaybe<Scalars['Int8']['input']>;
|
|
427
|
-
id_lte?: InputMaybe<Scalars['Int8']['input']>;
|
|
428
|
-
or?: InputMaybe<Array<InputMaybe<HoneyVolumeAggregation_Filter>>>;
|
|
429
|
-
timestamp?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
430
|
-
timestamp_gt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
431
|
-
timestamp_gte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
432
|
-
timestamp_in?: InputMaybe<Array<Scalars['Timestamp']['input']>>;
|
|
433
|
-
timestamp_lt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
434
|
-
timestamp_lte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
435
|
-
};
|
|
436
405
|
type HoneyVolumeDayData = {
|
|
437
406
|
__typename?: 'HoneyVolumeDayData';
|
|
438
407
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -515,103 +484,6 @@ declare enum HoneyVolumeHourData_OrderBy {
|
|
|
515
484
|
Id = "id",
|
|
516
485
|
Timestamp = "timestamp"
|
|
517
486
|
}
|
|
518
|
-
/**
|
|
519
|
-
* Timeseries data for honey volume transactions
|
|
520
|
-
*
|
|
521
|
-
*/
|
|
522
|
-
type HoneyVolumeTimeseries = {
|
|
523
|
-
__typename?: 'HoneyVolumeTimeseries';
|
|
524
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
525
|
-
from: Scalars['Bytes']['output'];
|
|
526
|
-
honeyAmount: Scalars['BigDecimal']['output'];
|
|
527
|
-
id: Scalars['Int8']['output'];
|
|
528
|
-
timestamp: Scalars['Timestamp']['output'];
|
|
529
|
-
to: Scalars['Bytes']['output'];
|
|
530
|
-
txHash: Scalars['Bytes']['output'];
|
|
531
|
-
txnType: TxnType;
|
|
532
|
-
};
|
|
533
|
-
type HoneyVolumeTimeseries_Filter = {
|
|
534
|
-
/** Filter for the block changed event. */
|
|
535
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
536
|
-
and?: InputMaybe<Array<InputMaybe<HoneyVolumeTimeseries_Filter>>>;
|
|
537
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
538
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
539
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
540
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
541
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
542
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
543
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
544
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
545
|
-
from?: InputMaybe<Scalars['Bytes']['input']>;
|
|
546
|
-
from_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
547
|
-
from_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
548
|
-
from_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
549
|
-
from_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
550
|
-
from_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
551
|
-
from_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
552
|
-
from_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
553
|
-
from_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
554
|
-
from_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
555
|
-
honeyAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
556
|
-
honeyAmount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
557
|
-
honeyAmount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
558
|
-
honeyAmount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
559
|
-
honeyAmount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
560
|
-
honeyAmount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
561
|
-
honeyAmount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
562
|
-
honeyAmount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
563
|
-
id?: InputMaybe<Scalars['Int8']['input']>;
|
|
564
|
-
id_gt?: InputMaybe<Scalars['Int8']['input']>;
|
|
565
|
-
id_gte?: InputMaybe<Scalars['Int8']['input']>;
|
|
566
|
-
id_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
567
|
-
id_lt?: InputMaybe<Scalars['Int8']['input']>;
|
|
568
|
-
id_lte?: InputMaybe<Scalars['Int8']['input']>;
|
|
569
|
-
id_not?: InputMaybe<Scalars['Int8']['input']>;
|
|
570
|
-
id_not_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
571
|
-
or?: InputMaybe<Array<InputMaybe<HoneyVolumeTimeseries_Filter>>>;
|
|
572
|
-
timestamp?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
573
|
-
timestamp_gt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
574
|
-
timestamp_gte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
575
|
-
timestamp_in?: InputMaybe<Array<Scalars['Timestamp']['input']>>;
|
|
576
|
-
timestamp_lt?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
577
|
-
timestamp_lte?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
578
|
-
timestamp_not?: InputMaybe<Scalars['Timestamp']['input']>;
|
|
579
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['Timestamp']['input']>>;
|
|
580
|
-
to?: InputMaybe<Scalars['Bytes']['input']>;
|
|
581
|
-
to_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
582
|
-
to_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
583
|
-
to_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
584
|
-
to_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
585
|
-
to_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
586
|
-
to_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
587
|
-
to_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
588
|
-
to_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
589
|
-
to_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
590
|
-
txHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
591
|
-
txHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
592
|
-
txHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
593
|
-
txHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
594
|
-
txHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
595
|
-
txHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
596
|
-
txHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
597
|
-
txHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
598
|
-
txHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
599
|
-
txHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
600
|
-
txnType?: InputMaybe<TxnType>;
|
|
601
|
-
txnType_in?: InputMaybe<Array<TxnType>>;
|
|
602
|
-
txnType_not?: InputMaybe<TxnType>;
|
|
603
|
-
txnType_not_in?: InputMaybe<Array<TxnType>>;
|
|
604
|
-
};
|
|
605
|
-
declare enum HoneyVolumeTimeseries_OrderBy {
|
|
606
|
-
BlockNumber = "blockNumber",
|
|
607
|
-
From = "from",
|
|
608
|
-
HoneyAmount = "honeyAmount",
|
|
609
|
-
Id = "id",
|
|
610
|
-
Timestamp = "timestamp",
|
|
611
|
-
To = "to",
|
|
612
|
-
TxHash = "txHash",
|
|
613
|
-
TxnType = "txnType"
|
|
614
|
-
}
|
|
615
487
|
/** Defines the order direction, either ascending or descending */
|
|
616
488
|
declare enum OrderDirection {
|
|
617
489
|
Asc = "asc",
|
|
@@ -631,14 +503,10 @@ type Query = {
|
|
|
631
503
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
632
504
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
633
505
|
honeyTxns: Array<HoneyTxn>;
|
|
634
|
-
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
635
|
-
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
636
506
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
637
507
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
638
508
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
639
509
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
640
|
-
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
641
|
-
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
642
510
|
};
|
|
643
511
|
type Query_MetaArgs = {
|
|
644
512
|
block?: InputMaybe<Block_Height>;
|
|
@@ -713,14 +581,6 @@ type QueryHoneyTxnsArgs = {
|
|
|
713
581
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
714
582
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
715
583
|
};
|
|
716
|
-
type QueryHoneyVolumeAggregationsArgs = {
|
|
717
|
-
block?: InputMaybe<Block_Height>;
|
|
718
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
719
|
-
interval: Aggregation_Interval;
|
|
720
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
721
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
722
|
-
where?: InputMaybe<HoneyVolumeAggregation_Filter>;
|
|
723
|
-
};
|
|
724
584
|
type QueryHoneyVolumeDayDataArgs = {
|
|
725
585
|
block?: InputMaybe<Block_Height>;
|
|
726
586
|
id: Scalars['ID']['input'];
|
|
@@ -749,20 +609,6 @@ type QueryHoneyVolumeHourDatasArgs = {
|
|
|
749
609
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
750
610
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
751
611
|
};
|
|
752
|
-
type QueryHoneyVolumeTimeseriesArgs = {
|
|
753
|
-
block?: InputMaybe<Block_Height>;
|
|
754
|
-
id: Scalars['ID']['input'];
|
|
755
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
756
|
-
};
|
|
757
|
-
type QueryHoneyVolumeTimeseries_CollectionArgs = {
|
|
758
|
-
block?: InputMaybe<Block_Height>;
|
|
759
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
760
|
-
orderBy?: InputMaybe<HoneyVolumeTimeseries_OrderBy>;
|
|
761
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
762
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
763
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
764
|
-
where?: InputMaybe<HoneyVolumeTimeseries_Filter>;
|
|
765
|
-
};
|
|
766
612
|
type Subscription = {
|
|
767
613
|
__typename?: 'Subscription';
|
|
768
614
|
/** Access to subgraph metadata */
|
|
@@ -777,14 +623,10 @@ type Subscription = {
|
|
|
777
623
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
778
624
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
779
625
|
honeyTxns: Array<HoneyTxn>;
|
|
780
|
-
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
781
|
-
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
782
626
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
783
627
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
784
628
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
785
629
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
786
|
-
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
787
|
-
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
788
630
|
};
|
|
789
631
|
type Subscription_MetaArgs = {
|
|
790
632
|
block?: InputMaybe<Block_Height>;
|
|
@@ -859,14 +701,6 @@ type SubscriptionHoneyTxnsArgs = {
|
|
|
859
701
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
860
702
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
861
703
|
};
|
|
862
|
-
type SubscriptionHoneyVolumeAggregationsArgs = {
|
|
863
|
-
block?: InputMaybe<Block_Height>;
|
|
864
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
865
|
-
interval: Aggregation_Interval;
|
|
866
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
867
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
868
|
-
where?: InputMaybe<HoneyVolumeAggregation_Filter>;
|
|
869
|
-
};
|
|
870
704
|
type SubscriptionHoneyVolumeDayDataArgs = {
|
|
871
705
|
block?: InputMaybe<Block_Height>;
|
|
872
706
|
id: Scalars['ID']['input'];
|
|
@@ -895,20 +729,6 @@ type SubscriptionHoneyVolumeHourDatasArgs = {
|
|
|
895
729
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
896
730
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
897
731
|
};
|
|
898
|
-
type SubscriptionHoneyVolumeTimeseriesArgs = {
|
|
899
|
-
block?: InputMaybe<Block_Height>;
|
|
900
|
-
id: Scalars['ID']['input'];
|
|
901
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
902
|
-
};
|
|
903
|
-
type SubscriptionHoneyVolumeTimeseries_CollectionArgs = {
|
|
904
|
-
block?: InputMaybe<Block_Height>;
|
|
905
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
906
|
-
orderBy?: InputMaybe<HoneyVolumeTimeseries_OrderBy>;
|
|
907
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
908
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
909
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
910
|
-
where?: InputMaybe<HoneyVolumeTimeseries_Filter>;
|
|
911
|
-
};
|
|
912
732
|
declare enum TxnType {
|
|
913
733
|
Mint = "MINT",
|
|
914
734
|
Redeem = "REDEEM"
|
|
@@ -1056,14 +876,11 @@ type GetGlobalDataQueryVariables = Exact<{
|
|
|
1056
876
|
}>;
|
|
1057
877
|
type GetGlobalDataQuery = {
|
|
1058
878
|
__typename?: 'Query';
|
|
1059
|
-
|
|
1060
|
-
__typename?: '
|
|
1061
|
-
allTimeVolume: string;
|
|
879
|
+
honeyVolumeDayDatas: Array<{
|
|
880
|
+
__typename?: 'HoneyVolumeDayData';
|
|
1062
881
|
id: string;
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
timestamp: string;
|
|
1066
|
-
totalVolume: string;
|
|
882
|
+
timestamp: number;
|
|
883
|
+
amount: string;
|
|
1067
884
|
}>;
|
|
1068
885
|
honeySupplyHourDatas: Array<{
|
|
1069
886
|
__typename?: 'HoneySupplyHourData';
|
|
@@ -1096,4 +913,4 @@ interface PossibleTypesResultData {
|
|
|
1096
913
|
}
|
|
1097
914
|
declare const result: PossibleTypesResultData;
|
|
1098
915
|
|
|
1099
|
-
export { Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetFirstHoneyTxnDate, type GetFirstHoneyTxnDateQuery, type GetFirstHoneyTxnDateQueryVariables, GetGlobalData, type GetGlobalDataQuery, type GetGlobalDataQueryVariables, GetHoneyTxn, GetHoneyTxnByType, type GetHoneyTxnByTypeQuery, type GetHoneyTxnByTypeQueryVariables, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetVolumeAndSupplyDay, type GetVolumeAndSupplyDayQuery, type GetVolumeAndSupplyDayQueryVariables, GetVolumeHour, type GetVolumeHourQuery, type GetVolumeHourQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneySupplyHourData, type HoneySupplyHourData_Filter, HoneySupplyHourData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxn_Filter, HoneyTxn_OrderBy, type
|
|
916
|
+
export { Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetFirstHoneyTxnDate, type GetFirstHoneyTxnDateQuery, type GetFirstHoneyTxnDateQueryVariables, GetGlobalData, type GetGlobalDataQuery, type GetGlobalDataQueryVariables, GetHoneyTxn, GetHoneyTxnByType, type GetHoneyTxnByTypeQuery, type GetHoneyTxnByTypeQueryVariables, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetVolumeAndSupplyDay, type GetVolumeAndSupplyDayQuery, type GetVolumeAndSupplyDayQueryVariables, GetVolumeHour, type GetVolumeHourQuery, type GetVolumeHourQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneySupplyHourData, type HoneySupplyHourData_Filter, HoneySupplyHourData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxn_Filter, HoneyTxn_OrderBy, type HoneyVolumeDayData, type HoneyVolumeDayData_Filter, HoneyVolumeDayData_OrderBy, type HoneyVolumeHourData, type HoneyVolumeHourData_Filter, HoneyVolumeHourData_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 QueryHoneySupplyDayDataArgs, type QueryHoneySupplyDayDatasArgs, type QueryHoneySupplyHourDataArgs, type QueryHoneySupplyHourDatasArgs, type QueryHoneyTxnArgs, type QueryHoneyTxnsArgs, type QueryHoneyVolumeDayDataArgs, type QueryHoneyVolumeDayDatasArgs, type QueryHoneyVolumeHourDataArgs, type QueryHoneyVolumeHourDatasArgs, type Query_MetaArgs, type Scalars, type Subscription, type SubscriptionChainTransactionArgs, type SubscriptionChainTransactionsArgs, type SubscriptionHoneyCollateralArgs, type SubscriptionHoneyCollateralsArgs, type SubscriptionHoneySupplyDayDataArgs, type SubscriptionHoneySupplyDayDatasArgs, type SubscriptionHoneySupplyHourDataArgs, type SubscriptionHoneySupplyHourDatasArgs, type SubscriptionHoneyTxnArgs, type SubscriptionHoneyTxnsArgs, type SubscriptionHoneyVolumeDayDataArgs, type SubscriptionHoneyVolumeDayDatasArgs, type SubscriptionHoneyVolumeHourDataArgs, type SubscriptionHoneyVolumeHourDatasArgs, type Subscription_MetaArgs, TxnType, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{gql as
|
|
1
|
+
import{gql as r}from"@apollo/client";var u=(n=>(n.Day="day",n.Hour="hour",n))(u||{}),o=(p=>(p.HoneyTxn="honeyTxn",p.Id="id",p.IsBasketMode="isBasketMode",p.TxHash="txHash",p.Type="type",p))(o||{}),y=(e=>(e.Collateral="collateral",e.CollateralAmount="collateralAmount",e.HoneyTxn="honeyTxn",e.HoneyTxnFrom="honeyTxn__from",e.HoneyTxnHoneyAmount="honeyTxn__honeyAmount",e.HoneyTxnId="honeyTxn__id",e.HoneyTxnIsBasketMode="honeyTxn__isBasketMode",e.HoneyTxnTimestamp="honeyTxn__timestamp",e.HoneyTxnTo="honeyTxn__to",e.HoneyTxnType="honeyTxn__type",e.Id="id",e))(y||{}),s=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(s||{}),l=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(l||{}),c=(a=>(a.ChainTransaction="chainTransaction",a.ChainTransactionId="chainTransaction__id",a.ChainTransactionIsBasketMode="chainTransaction__isBasketMode",a.ChainTransactionTxHash="chainTransaction__txHash",a.ChainTransactionType="chainTransaction__type",a.Collateral="collateral",a.From="from",a.HoneyAmount="honeyAmount",a.Id="id",a.IsBasketMode="isBasketMode",a.Timestamp="timestamp",a.To="to",a.Type="type",a))(c||{}),I=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(I||{}),b=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(b||{}),_=(n=>(n.Asc="asc",n.Desc="desc",n))(_||{}),m=(n=>(n.Mint="MINT",n.Redeem="REDEEM",n))(m||{}),S=(n=>(n.Allow="allow",n.Deny="deny",n))(S||{}),i=r`
|
|
2
2
|
fragment HoneyTxnData on HoneyTxn {
|
|
3
3
|
id
|
|
4
4
|
timestamp
|
|
@@ -16,7 +16,7 @@ import{gql as p}from"@apollo/client";var o=(n=>(n.Day="day",n.Hour="hour",n))(o|
|
|
|
16
16
|
id
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
`,
|
|
19
|
+
`,D=r`
|
|
20
20
|
query GetHoneyTxnByType($page: Int!, $limit: Int!, $type: TxnType!) {
|
|
21
21
|
honeyTxns(
|
|
22
22
|
skip: $page
|
|
@@ -28,13 +28,13 @@ import{gql as p}from"@apollo/client";var o=(n=>(n.Day="day",n.Hour="hour",n))(o|
|
|
|
28
28
|
...HoneyTxnData
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
${
|
|
31
|
+
${i}`,h=r`
|
|
32
32
|
query GetHoneyTxn($page: Int!, $limit: Int!) {
|
|
33
33
|
honeyTxns(skip: $page, first: $limit, orderBy: timestamp, orderDirection: desc) {
|
|
34
34
|
...HoneyTxnData
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
${
|
|
37
|
+
${i}`,x=r`
|
|
38
38
|
query GetVolumeAndSupplyDay($timestamp_gt: Int!) {
|
|
39
39
|
honeyVolumeDayDatas(
|
|
40
40
|
where: {timestamp_gt: $timestamp_gt}
|
|
@@ -55,7 +55,7 @@ import{gql as p}from"@apollo/client";var o=(n=>(n.Day="day",n.Hour="hour",n))(o|
|
|
|
55
55
|
amount
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
-
`,H=
|
|
58
|
+
`,H=r`
|
|
59
59
|
query GetVolumeHour($timestamp_gt: Int!) {
|
|
60
60
|
honeyVolumeHourDatas(
|
|
61
61
|
where: {timestamp_gt: $timestamp_gt}
|
|
@@ -67,15 +67,12 @@ import{gql as p}from"@apollo/client";var o=(n=>(n.Day="day",n.Hour="hour",n))(o|
|
|
|
67
67
|
amount
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
`,d=
|
|
70
|
+
`,d=r`
|
|
71
71
|
query GetGlobalData {
|
|
72
|
-
|
|
73
|
-
allTimeVolume
|
|
72
|
+
honeyVolumeDayDatas(first: 1, orderBy: timestamp, orderDirection: desc) {
|
|
74
73
|
id
|
|
75
|
-
mintVolume
|
|
76
|
-
redeemVolume
|
|
77
74
|
timestamp
|
|
78
|
-
|
|
75
|
+
amount
|
|
79
76
|
}
|
|
80
77
|
honeySupplyHourDatas(first: 1, orderBy: timestamp, orderDirection: desc) {
|
|
81
78
|
id
|
|
@@ -83,10 +80,10 @@ import{gql as p}from"@apollo/client";var o=(n=>(n.Day="day",n.Hour="hour",n))(o|
|
|
|
83
80
|
amount
|
|
84
81
|
}
|
|
85
82
|
}
|
|
86
|
-
`,
|
|
83
|
+
`,T=r`
|
|
87
84
|
query GetFirstHoneyTxnDate {
|
|
88
85
|
honeyTxns(first: 1) {
|
|
89
86
|
timestamp
|
|
90
87
|
}
|
|
91
88
|
}
|
|
92
|
-
`,
|
|
89
|
+
`,M={possibleTypes:{}},B=M;export{u as Aggregation_Interval,o as ChainTransaction_OrderBy,T as GetFirstHoneyTxnDate,d as GetGlobalData,h as GetHoneyTxn,D as GetHoneyTxnByType,x as GetVolumeAndSupplyDay,H as GetVolumeHour,y as HoneyCollateral_OrderBy,s as HoneySupplyDayData_OrderBy,l as HoneySupplyHourData_OrderBy,i as HoneyTxnData,c as HoneyTxn_OrderBy,I as HoneyVolumeDayData_OrderBy,b as HoneyVolumeHourData_OrderBy,_ as OrderDirection,m as TxnType,S as _SubgraphErrorPolicy_,B as default};
|