@berachain/graphql 0.2.4-beta.1 → 0.2.4-beta.2
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 +173 -64
- package/dist/bend/whisk.codegen.d.cts +203 -68
- package/dist/bend/whisk.codegen.d.ts +203 -68
- package/dist/bend/whisk.codegen.mjs +159 -50
- package/dist/honey/honey.codegen.cjs +13 -15
- package/dist/honey/honey.codegen.d.cts +188 -11
- package/dist/honey/honey.codegen.d.ts +188 -11
- package/dist/honey/honey.codegen.mjs +13 -15
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var s=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var A=(u,r)=>{for(var a in r)s(u,a,{get:r[a],enumerable:!0})},k=(u,r,a,t)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of H(r))!d.call(u,o)&&o!==a&&s(u,o,{get:()=>r[o],enumerable:!(t=B(r,o))||t.enumerable});return u};var V=u=>k(s({},"__esModule",{value:!0}),u);var G={};A(G,{Aggregation_Interval:()=>c,ChainTransaction_OrderBy:()=>I,GetFirstHoneyTxnDate:()=>Q,GetGlobalData:()=>w,GetHoneyTxn:()=>F,GetHoneyTxnByType:()=>E,GetVolumeAndSupplyDay:()=>f,GetVolumeHour:()=>C,HoneyCollateral_OrderBy:()=>b,HoneySupplyDayData_OrderBy:()=>m,HoneySupplyHourData_OrderBy:()=>_,HoneyTxnData:()=>l,HoneyTxn_OrderBy:()=>M,HoneyVolumeDayData_OrderBy:()=>S,HoneyVolumeHourData_OrderBy:()=>g,HoneyVolumeTimeseries_OrderBy:()=>h,OrderDirection:()=>D,TxnType:()=>x,_SubgraphErrorPolicy_:()=>T,default:()=>$});module.exports=V(G);var i=require("@apollo/client"),c=(a=>(a.Day="day",a.Hour="hour",a))(c||{}),I=(y=>(y.HoneyTxn="honeyTxn",y.Id="id",y.IsBasketMode="isBasketMode",y.TxHash="txHash",y.Type="type",y))(I||{}),b=(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))(b||{}),m=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(m||{}),_=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(_||{}),M=(n=>(n.ChainTransaction="chainTransaction",n.ChainTransactionId="chainTransaction__id",n.ChainTransactionIsBasketMode="chainTransaction__isBasketMode",n.ChainTransactionTxHash="chainTransaction__txHash",n.ChainTransactionType="chainTransaction__type",n.Collateral="collateral",n.From="from",n.HoneyAmount="honeyAmount",n.Id="id",n.IsBasketMode="isBasketMode",n.Timestamp="timestamp",n.To="to",n.Type="type",n))(M||{}),S=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(S||{}),g=(t=>(t.Amount="amount",t.Id="id",t.Timestamp="timestamp",t))(g||{}),h=(p=>(p.BlockNumber="blockNumber",p.From="from",p.HoneyAmount="honeyAmount",p.Id="id",p.Timestamp="timestamp",p.To="to",p.TxHash="txHash",p.TxnType="txnType",p))(h||{}),D=(a=>(a.Asc="asc",a.Desc="desc",a))(D||{}),x=(a=>(a.Mint="MINT",a.Redeem="REDEEM",a))(x||{}),T=(a=>(a.Allow="allow",a.Deny="deny",a))(T||{}),l=i.gql`
|
|
2
2
|
fragment HoneyTxnData on HoneyTxn {
|
|
3
3
|
id
|
|
4
4
|
timestamp
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
id
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
`,
|
|
19
|
+
`,E=i.gql`
|
|
20
20
|
query GetHoneyTxnByType($page: Int!, $limit: Int!, $type: TxnType!) {
|
|
21
21
|
honeyTxns(
|
|
22
22
|
skip: $page
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
...HoneyTxnData
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
${
|
|
31
|
+
${l}`,F=i.gql`
|
|
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
|
+
${l}`,f=i.gql`
|
|
38
38
|
query GetVolumeAndSupplyDay($timestamp_gt: Int!) {
|
|
39
39
|
honeyVolumeDayDatas(
|
|
40
40
|
where: {timestamp_gt: $timestamp_gt}
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
amount
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
-
`,
|
|
58
|
+
`,C=i.gql`
|
|
59
59
|
query GetVolumeHour($timestamp_gt: Int!) {
|
|
60
60
|
honeyVolumeHourDatas(
|
|
61
61
|
where: {timestamp_gt: $timestamp_gt}
|
|
@@ -67,23 +67,21 @@
|
|
|
67
67
|
amount
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
`,
|
|
70
|
+
`,w=i.gql`
|
|
71
71
|
query GetGlobalData {
|
|
72
|
-
|
|
72
|
+
honeyVolumeAggregations(interval: hour, first: 24) {
|
|
73
|
+
allTimeVolume
|
|
73
74
|
id
|
|
75
|
+
mintVolume
|
|
76
|
+
redeemVolume
|
|
74
77
|
timestamp
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
honeySupplyHourDatas(first: 1, orderBy: timestamp, orderDirection: desc) {
|
|
78
|
-
id
|
|
79
|
-
timestamp
|
|
80
|
-
amount
|
|
78
|
+
totalVolume
|
|
81
79
|
}
|
|
82
80
|
}
|
|
83
|
-
`,
|
|
81
|
+
`,Q=i.gql`
|
|
84
82
|
query GetFirstHoneyTxnDate {
|
|
85
83
|
honeyTxns(first: 1) {
|
|
86
84
|
timestamp
|
|
87
85
|
}
|
|
88
86
|
}
|
|
89
|
-
`,
|
|
87
|
+
`,P={possibleTypes:{}},$=P;0&&(module.exports={Aggregation_Interval,ChainTransaction_OrderBy,GetFirstHoneyTxnDate,GetGlobalData,GetHoneyTxn,GetHoneyTxnByType,GetVolumeAndSupplyDay,GetVolumeHour,HoneyCollateral_OrderBy,HoneySupplyDayData_OrderBy,HoneySupplyHourData_OrderBy,HoneyTxnData,HoneyTxn_OrderBy,HoneyVolumeDayData_OrderBy,HoneyVolumeHourData_OrderBy,HoneyVolumeTimeseries_OrderBy,OrderDirection,TxnType,_SubgraphErrorPolicy_});
|
|
@@ -402,6 +402,37 @@ 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
|
+
};
|
|
405
436
|
type HoneyVolumeDayData = {
|
|
406
437
|
__typename?: 'HoneyVolumeDayData';
|
|
407
438
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -484,6 +515,103 @@ declare enum HoneyVolumeHourData_OrderBy {
|
|
|
484
515
|
Id = "id",
|
|
485
516
|
Timestamp = "timestamp"
|
|
486
517
|
}
|
|
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
|
+
}
|
|
487
615
|
/** Defines the order direction, either ascending or descending */
|
|
488
616
|
declare enum OrderDirection {
|
|
489
617
|
Asc = "asc",
|
|
@@ -503,10 +631,14 @@ type Query = {
|
|
|
503
631
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
504
632
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
505
633
|
honeyTxns: Array<HoneyTxn>;
|
|
634
|
+
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
635
|
+
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
506
636
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
507
637
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
508
638
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
509
639
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
640
|
+
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
641
|
+
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
510
642
|
};
|
|
511
643
|
type Query_MetaArgs = {
|
|
512
644
|
block?: InputMaybe<Block_Height>;
|
|
@@ -581,6 +713,14 @@ type QueryHoneyTxnsArgs = {
|
|
|
581
713
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
582
714
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
583
715
|
};
|
|
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
|
+
};
|
|
584
724
|
type QueryHoneyVolumeDayDataArgs = {
|
|
585
725
|
block?: InputMaybe<Block_Height>;
|
|
586
726
|
id: Scalars['ID']['input'];
|
|
@@ -609,6 +749,20 @@ type QueryHoneyVolumeHourDatasArgs = {
|
|
|
609
749
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
610
750
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
611
751
|
};
|
|
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
|
+
};
|
|
612
766
|
type Subscription = {
|
|
613
767
|
__typename?: 'Subscription';
|
|
614
768
|
/** Access to subgraph metadata */
|
|
@@ -623,10 +777,14 @@ type Subscription = {
|
|
|
623
777
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
624
778
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
625
779
|
honeyTxns: Array<HoneyTxn>;
|
|
780
|
+
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
781
|
+
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
626
782
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
627
783
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
628
784
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
629
785
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
786
|
+
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
787
|
+
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
630
788
|
};
|
|
631
789
|
type Subscription_MetaArgs = {
|
|
632
790
|
block?: InputMaybe<Block_Height>;
|
|
@@ -701,6 +859,14 @@ type SubscriptionHoneyTxnsArgs = {
|
|
|
701
859
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
702
860
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
703
861
|
};
|
|
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
|
+
};
|
|
704
870
|
type SubscriptionHoneyVolumeDayDataArgs = {
|
|
705
871
|
block?: InputMaybe<Block_Height>;
|
|
706
872
|
id: Scalars['ID']['input'];
|
|
@@ -729,6 +895,20 @@ type SubscriptionHoneyVolumeHourDatasArgs = {
|
|
|
729
895
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
730
896
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
731
897
|
};
|
|
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
|
+
};
|
|
732
912
|
declare enum TxnType {
|
|
733
913
|
Mint = "MINT",
|
|
734
914
|
Redeem = "REDEEM"
|
|
@@ -876,17 +1056,14 @@ type GetGlobalDataQueryVariables = Exact<{
|
|
|
876
1056
|
}>;
|
|
877
1057
|
type GetGlobalDataQuery = {
|
|
878
1058
|
__typename?: 'Query';
|
|
879
|
-
|
|
880
|
-
__typename?: '
|
|
1059
|
+
honeyVolumeAggregations: Array<{
|
|
1060
|
+
__typename?: 'HoneyVolumeAggregation';
|
|
1061
|
+
allTimeVolume: string;
|
|
881
1062
|
id: string;
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
__typename?: 'HoneySupplyHourData';
|
|
887
|
-
id: string;
|
|
888
|
-
timestamp: number;
|
|
889
|
-
amount: string;
|
|
1063
|
+
mintVolume: string;
|
|
1064
|
+
redeemVolume: string;
|
|
1065
|
+
timestamp: string;
|
|
1066
|
+
totalVolume: string;
|
|
890
1067
|
}>;
|
|
891
1068
|
};
|
|
892
1069
|
type GetFirstHoneyTxnDateQueryVariables = Exact<{
|
|
@@ -913,4 +1090,4 @@ interface PossibleTypesResultData {
|
|
|
913
1090
|
}
|
|
914
1091
|
declare const result: PossibleTypesResultData;
|
|
915
1092
|
|
|
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 };
|
|
1093
|
+
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 HoneyVolumeAggregation, type HoneyVolumeAggregation_Filter, type HoneyVolumeDayData, type HoneyVolumeDayData_Filter, HoneyVolumeDayData_OrderBy, type HoneyVolumeHourData, type HoneyVolumeHourData_Filter, HoneyVolumeHourData_OrderBy, type HoneyVolumeTimeseries, type HoneyVolumeTimeseries_Filter, HoneyVolumeTimeseries_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 QueryHoneyVolumeAggregationsArgs, type QueryHoneyVolumeDayDataArgs, type QueryHoneyVolumeDayDatasArgs, type QueryHoneyVolumeHourDataArgs, type QueryHoneyVolumeHourDatasArgs, type QueryHoneyVolumeTimeseriesArgs, type QueryHoneyVolumeTimeseries_CollectionArgs, 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 SubscriptionHoneyVolumeAggregationsArgs, type SubscriptionHoneyVolumeDayDataArgs, type SubscriptionHoneyVolumeDayDatasArgs, type SubscriptionHoneyVolumeHourDataArgs, type SubscriptionHoneyVolumeHourDatasArgs, type SubscriptionHoneyVolumeTimeseriesArgs, type SubscriptionHoneyVolumeTimeseries_CollectionArgs, type Subscription_MetaArgs, TxnType, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|
|
@@ -402,6 +402,37 @@ 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
|
+
};
|
|
405
436
|
type HoneyVolumeDayData = {
|
|
406
437
|
__typename?: 'HoneyVolumeDayData';
|
|
407
438
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -484,6 +515,103 @@ declare enum HoneyVolumeHourData_OrderBy {
|
|
|
484
515
|
Id = "id",
|
|
485
516
|
Timestamp = "timestamp"
|
|
486
517
|
}
|
|
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
|
+
}
|
|
487
615
|
/** Defines the order direction, either ascending or descending */
|
|
488
616
|
declare enum OrderDirection {
|
|
489
617
|
Asc = "asc",
|
|
@@ -503,10 +631,14 @@ type Query = {
|
|
|
503
631
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
504
632
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
505
633
|
honeyTxns: Array<HoneyTxn>;
|
|
634
|
+
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
635
|
+
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
506
636
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
507
637
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
508
638
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
509
639
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
640
|
+
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
641
|
+
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
510
642
|
};
|
|
511
643
|
type Query_MetaArgs = {
|
|
512
644
|
block?: InputMaybe<Block_Height>;
|
|
@@ -581,6 +713,14 @@ type QueryHoneyTxnsArgs = {
|
|
|
581
713
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
582
714
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
583
715
|
};
|
|
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
|
+
};
|
|
584
724
|
type QueryHoneyVolumeDayDataArgs = {
|
|
585
725
|
block?: InputMaybe<Block_Height>;
|
|
586
726
|
id: Scalars['ID']['input'];
|
|
@@ -609,6 +749,20 @@ type QueryHoneyVolumeHourDatasArgs = {
|
|
|
609
749
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
610
750
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
611
751
|
};
|
|
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
|
+
};
|
|
612
766
|
type Subscription = {
|
|
613
767
|
__typename?: 'Subscription';
|
|
614
768
|
/** Access to subgraph metadata */
|
|
@@ -623,10 +777,14 @@ type Subscription = {
|
|
|
623
777
|
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
624
778
|
honeyTxn?: Maybe<HoneyTxn>;
|
|
625
779
|
honeyTxns: Array<HoneyTxn>;
|
|
780
|
+
/** Collection of aggregated `HoneyVolumeAggregation` values */
|
|
781
|
+
honeyVolumeAggregations: Array<HoneyVolumeAggregation>;
|
|
626
782
|
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
627
783
|
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
628
784
|
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
629
785
|
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
786
|
+
honeyVolumeTimeseries?: Maybe<HoneyVolumeTimeseries>;
|
|
787
|
+
honeyVolumeTimeseries_collection: Array<HoneyVolumeTimeseries>;
|
|
630
788
|
};
|
|
631
789
|
type Subscription_MetaArgs = {
|
|
632
790
|
block?: InputMaybe<Block_Height>;
|
|
@@ -701,6 +859,14 @@ type SubscriptionHoneyTxnsArgs = {
|
|
|
701
859
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
702
860
|
where?: InputMaybe<HoneyTxn_Filter>;
|
|
703
861
|
};
|
|
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
|
+
};
|
|
704
870
|
type SubscriptionHoneyVolumeDayDataArgs = {
|
|
705
871
|
block?: InputMaybe<Block_Height>;
|
|
706
872
|
id: Scalars['ID']['input'];
|
|
@@ -729,6 +895,20 @@ type SubscriptionHoneyVolumeHourDatasArgs = {
|
|
|
729
895
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
730
896
|
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
731
897
|
};
|
|
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
|
+
};
|
|
732
912
|
declare enum TxnType {
|
|
733
913
|
Mint = "MINT",
|
|
734
914
|
Redeem = "REDEEM"
|
|
@@ -876,17 +1056,14 @@ type GetGlobalDataQueryVariables = Exact<{
|
|
|
876
1056
|
}>;
|
|
877
1057
|
type GetGlobalDataQuery = {
|
|
878
1058
|
__typename?: 'Query';
|
|
879
|
-
|
|
880
|
-
__typename?: '
|
|
1059
|
+
honeyVolumeAggregations: Array<{
|
|
1060
|
+
__typename?: 'HoneyVolumeAggregation';
|
|
1061
|
+
allTimeVolume: string;
|
|
881
1062
|
id: string;
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
__typename?: 'HoneySupplyHourData';
|
|
887
|
-
id: string;
|
|
888
|
-
timestamp: number;
|
|
889
|
-
amount: string;
|
|
1063
|
+
mintVolume: string;
|
|
1064
|
+
redeemVolume: string;
|
|
1065
|
+
timestamp: string;
|
|
1066
|
+
totalVolume: string;
|
|
890
1067
|
}>;
|
|
891
1068
|
};
|
|
892
1069
|
type GetFirstHoneyTxnDateQueryVariables = Exact<{
|
|
@@ -913,4 +1090,4 @@ interface PossibleTypesResultData {
|
|
|
913
1090
|
}
|
|
914
1091
|
declare const result: PossibleTypesResultData;
|
|
915
1092
|
|
|
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 };
|
|
1093
|
+
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 HoneyVolumeAggregation, type HoneyVolumeAggregation_Filter, type HoneyVolumeDayData, type HoneyVolumeDayData_Filter, HoneyVolumeDayData_OrderBy, type HoneyVolumeHourData, type HoneyVolumeHourData_Filter, HoneyVolumeHourData_OrderBy, type HoneyVolumeTimeseries, type HoneyVolumeTimeseries_Filter, HoneyVolumeTimeseries_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 QueryHoneyVolumeAggregationsArgs, type QueryHoneyVolumeDayDataArgs, type QueryHoneyVolumeDayDatasArgs, type QueryHoneyVolumeHourDataArgs, type QueryHoneyVolumeHourDatasArgs, type QueryHoneyVolumeTimeseriesArgs, type QueryHoneyVolumeTimeseries_CollectionArgs, 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 SubscriptionHoneyVolumeAggregationsArgs, type SubscriptionHoneyVolumeDayDataArgs, type SubscriptionHoneyVolumeDayDatasArgs, type SubscriptionHoneyVolumeHourDataArgs, type SubscriptionHoneyVolumeHourDatasArgs, type SubscriptionHoneyVolumeTimeseriesArgs, type SubscriptionHoneyVolumeTimeseries_CollectionArgs, type Subscription_MetaArgs, TxnType, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|