@berachain/graphql 0.1.0-alpha.3 → 0.1.0-alpha.4
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/README.md +17 -5
- package/dist/bend/whisk.codegen.cjs +424 -0
- package/dist/bend/whisk.codegen.d.cts +1798 -0
- package/dist/bend/whisk.codegen.d.ts +93 -1
- package/dist/bend/whisk.codegen.js +8 -8
- package/dist/chain/chain.codegen.cjs +12 -0
- package/dist/chain/chain.codegen.d.cts +376 -0
- package/dist/dex/api.codegen.cjs +199 -0
- package/dist/dex/api.codegen.d.cts +3836 -0
- package/dist/dex/subgraph.codegen.cjs +88 -0
- package/dist/dex/subgraph.codegen.d.cts +5887 -0
- package/dist/governance/governance.codegen.cjs +116 -0
- package/dist/governance/governance.codegen.d.cts +1622 -0
- package/dist/honey/honey.codegen.cjs +104 -0
- package/dist/honey/honey.codegen.d.cts +936 -0
- package/dist/pol/api.codegen.cjs +301 -0
- package/dist/pol/api.codegen.d.cts +3622 -0
- package/dist/pol/subgraph.codegen.cjs +197 -0
- package/dist/pol/subgraph.codegen.d.cts +4671 -0
- package/package.json +27 -23
|
@@ -0,0 +1,936 @@
|
|
|
1
|
+
import * as _apollo_client from '@apollo/client';
|
|
2
|
+
|
|
3
|
+
type Maybe<T> = T | null;
|
|
4
|
+
type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
type Exact<T extends {
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
}> = {
|
|
8
|
+
[K in keyof T]: T[K];
|
|
9
|
+
};
|
|
10
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
13
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
|
+
};
|
|
16
|
+
type MakeEmpty<T extends {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}, K extends keyof T> = {
|
|
19
|
+
[_ in K]?: never;
|
|
20
|
+
};
|
|
21
|
+
type Incremental<T> = T | {
|
|
22
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
23
|
+
};
|
|
24
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
|
+
type Scalars = {
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
BigDecimal: {
|
|
47
|
+
input: any;
|
|
48
|
+
output: any;
|
|
49
|
+
};
|
|
50
|
+
BigInt: {
|
|
51
|
+
input: any;
|
|
52
|
+
output: any;
|
|
53
|
+
};
|
|
54
|
+
Bytes: {
|
|
55
|
+
input: any;
|
|
56
|
+
output: any;
|
|
57
|
+
};
|
|
58
|
+
Int8: {
|
|
59
|
+
input: any;
|
|
60
|
+
output: any;
|
|
61
|
+
};
|
|
62
|
+
Timestamp: {
|
|
63
|
+
input: any;
|
|
64
|
+
output: any;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
declare enum Aggregation_Interval {
|
|
68
|
+
Day = "day",
|
|
69
|
+
Hour = "hour"
|
|
70
|
+
}
|
|
71
|
+
type BlockChangedFilter = {
|
|
72
|
+
number_gte: Scalars['Int']['input'];
|
|
73
|
+
};
|
|
74
|
+
type Block_Height = {
|
|
75
|
+
hash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
76
|
+
number?: InputMaybe<Scalars['Int']['input']>;
|
|
77
|
+
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
78
|
+
};
|
|
79
|
+
type ChainTransaction = {
|
|
80
|
+
__typename?: 'ChainTransaction';
|
|
81
|
+
honeyTxn: Array<Maybe<HoneyTxn>>;
|
|
82
|
+
id: Scalars['Bytes']['output'];
|
|
83
|
+
isBasketMode: Scalars['Boolean']['output'];
|
|
84
|
+
txHash: Scalars['Bytes']['output'];
|
|
85
|
+
type: TxnType;
|
|
86
|
+
};
|
|
87
|
+
type ChainTransactionHoneyTxnArgs = {
|
|
88
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89
|
+
orderBy?: InputMaybe<HoneyTxn_OrderBy>;
|
|
90
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
91
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
92
|
+
where?: InputMaybe<HoneyTxn_Filter>;
|
|
93
|
+
};
|
|
94
|
+
type ChainTransaction_Filter = {
|
|
95
|
+
/** Filter for the block changed event. */
|
|
96
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
97
|
+
and?: InputMaybe<Array<InputMaybe<ChainTransaction_Filter>>>;
|
|
98
|
+
honeyTxn_?: InputMaybe<HoneyTxn_Filter>;
|
|
99
|
+
id?: InputMaybe<Scalars['Bytes']['input']>;
|
|
100
|
+
id_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
101
|
+
id_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
102
|
+
id_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
103
|
+
id_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
104
|
+
id_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
105
|
+
id_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
106
|
+
id_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
107
|
+
id_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
108
|
+
id_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
109
|
+
isBasketMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
110
|
+
isBasketMode_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
111
|
+
isBasketMode_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
112
|
+
isBasketMode_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
113
|
+
or?: InputMaybe<Array<InputMaybe<ChainTransaction_Filter>>>;
|
|
114
|
+
txHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
115
|
+
txHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
116
|
+
txHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
117
|
+
txHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
118
|
+
txHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
119
|
+
txHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
120
|
+
txHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
121
|
+
txHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
122
|
+
txHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
123
|
+
txHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
124
|
+
type?: InputMaybe<TxnType>;
|
|
125
|
+
type_in?: InputMaybe<Array<TxnType>>;
|
|
126
|
+
type_not?: InputMaybe<TxnType>;
|
|
127
|
+
type_not_in?: InputMaybe<Array<TxnType>>;
|
|
128
|
+
};
|
|
129
|
+
declare enum ChainTransaction_OrderBy {
|
|
130
|
+
HoneyTxn = "honeyTxn",
|
|
131
|
+
Id = "id",
|
|
132
|
+
IsBasketMode = "isBasketMode",
|
|
133
|
+
TxHash = "txHash",
|
|
134
|
+
Type = "type"
|
|
135
|
+
}
|
|
136
|
+
type HoneyCollateral = {
|
|
137
|
+
__typename?: 'HoneyCollateral';
|
|
138
|
+
collateral: Scalars['Bytes']['output'];
|
|
139
|
+
collateralAmount: Scalars['BigDecimal']['output'];
|
|
140
|
+
honeyTxn: HoneyTxn;
|
|
141
|
+
id: Scalars['ID']['output'];
|
|
142
|
+
};
|
|
143
|
+
type HoneyCollateral_Filter = {
|
|
144
|
+
/** Filter for the block changed event. */
|
|
145
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
146
|
+
and?: InputMaybe<Array<InputMaybe<HoneyCollateral_Filter>>>;
|
|
147
|
+
collateral?: InputMaybe<Scalars['Bytes']['input']>;
|
|
148
|
+
collateralAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
149
|
+
collateralAmount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
150
|
+
collateralAmount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
151
|
+
collateralAmount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
152
|
+
collateralAmount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
153
|
+
collateralAmount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
154
|
+
collateralAmount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
155
|
+
collateralAmount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
156
|
+
collateral_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
157
|
+
collateral_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
158
|
+
collateral_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
159
|
+
collateral_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
160
|
+
collateral_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
161
|
+
collateral_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
162
|
+
collateral_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
163
|
+
collateral_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
164
|
+
collateral_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
165
|
+
honeyTxn?: InputMaybe<Scalars['String']['input']>;
|
|
166
|
+
honeyTxn_?: InputMaybe<HoneyTxn_Filter>;
|
|
167
|
+
honeyTxn_contains?: InputMaybe<Scalars['String']['input']>;
|
|
168
|
+
honeyTxn_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
169
|
+
honeyTxn_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
170
|
+
honeyTxn_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
171
|
+
honeyTxn_gt?: InputMaybe<Scalars['String']['input']>;
|
|
172
|
+
honeyTxn_gte?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
+
honeyTxn_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
174
|
+
honeyTxn_lt?: InputMaybe<Scalars['String']['input']>;
|
|
175
|
+
honeyTxn_lte?: InputMaybe<Scalars['String']['input']>;
|
|
176
|
+
honeyTxn_not?: InputMaybe<Scalars['String']['input']>;
|
|
177
|
+
honeyTxn_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
178
|
+
honeyTxn_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
179
|
+
honeyTxn_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
180
|
+
honeyTxn_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
181
|
+
honeyTxn_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
182
|
+
honeyTxn_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
183
|
+
honeyTxn_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
184
|
+
honeyTxn_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
185
|
+
honeyTxn_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
186
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
187
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
188
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
189
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
191
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
192
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
193
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
194
|
+
or?: InputMaybe<Array<InputMaybe<HoneyCollateral_Filter>>>;
|
|
195
|
+
};
|
|
196
|
+
declare enum HoneyCollateral_OrderBy {
|
|
197
|
+
Collateral = "collateral",
|
|
198
|
+
CollateralAmount = "collateralAmount",
|
|
199
|
+
HoneyTxn = "honeyTxn",
|
|
200
|
+
HoneyTxnFrom = "honeyTxn__from",
|
|
201
|
+
HoneyTxnHoneyAmount = "honeyTxn__honeyAmount",
|
|
202
|
+
HoneyTxnId = "honeyTxn__id",
|
|
203
|
+
HoneyTxnIsBasketMode = "honeyTxn__isBasketMode",
|
|
204
|
+
HoneyTxnTimestamp = "honeyTxn__timestamp",
|
|
205
|
+
HoneyTxnTo = "honeyTxn__to",
|
|
206
|
+
HoneyTxnType = "honeyTxn__type",
|
|
207
|
+
Id = "id"
|
|
208
|
+
}
|
|
209
|
+
type HoneySupplyDayData = {
|
|
210
|
+
__typename?: 'HoneySupplyDayData';
|
|
211
|
+
amount: Scalars['BigDecimal']['output'];
|
|
212
|
+
id: Scalars['ID']['output'];
|
|
213
|
+
timestamp: Scalars['Int']['output'];
|
|
214
|
+
};
|
|
215
|
+
type HoneySupplyDayData_Filter = {
|
|
216
|
+
/** Filter for the block changed event. */
|
|
217
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
218
|
+
amount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
219
|
+
amount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
220
|
+
amount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
221
|
+
amount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
222
|
+
amount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
223
|
+
amount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
224
|
+
amount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
225
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
226
|
+
and?: InputMaybe<Array<InputMaybe<HoneySupplyDayData_Filter>>>;
|
|
227
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
228
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
229
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
230
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
231
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
232
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
233
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
234
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
235
|
+
or?: InputMaybe<Array<InputMaybe<HoneySupplyDayData_Filter>>>;
|
|
236
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
237
|
+
timestamp_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
238
|
+
timestamp_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
239
|
+
timestamp_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
240
|
+
timestamp_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
241
|
+
timestamp_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
242
|
+
timestamp_not?: InputMaybe<Scalars['Int']['input']>;
|
|
243
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
244
|
+
};
|
|
245
|
+
declare enum HoneySupplyDayData_OrderBy {
|
|
246
|
+
Amount = "amount",
|
|
247
|
+
Id = "id",
|
|
248
|
+
Timestamp = "timestamp"
|
|
249
|
+
}
|
|
250
|
+
type HoneySupplyHourData = {
|
|
251
|
+
__typename?: 'HoneySupplyHourData';
|
|
252
|
+
amount: Scalars['BigDecimal']['output'];
|
|
253
|
+
id: Scalars['ID']['output'];
|
|
254
|
+
timestamp: Scalars['Int']['output'];
|
|
255
|
+
};
|
|
256
|
+
type HoneySupplyHourData_Filter = {
|
|
257
|
+
/** Filter for the block changed event. */
|
|
258
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
259
|
+
amount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
260
|
+
amount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
261
|
+
amount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
262
|
+
amount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
263
|
+
amount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
264
|
+
amount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
265
|
+
amount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
266
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
267
|
+
and?: InputMaybe<Array<InputMaybe<HoneySupplyHourData_Filter>>>;
|
|
268
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
269
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
270
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
271
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
272
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
273
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
274
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
275
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
276
|
+
or?: InputMaybe<Array<InputMaybe<HoneySupplyHourData_Filter>>>;
|
|
277
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
278
|
+
timestamp_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
279
|
+
timestamp_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
280
|
+
timestamp_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
281
|
+
timestamp_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
282
|
+
timestamp_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
283
|
+
timestamp_not?: InputMaybe<Scalars['Int']['input']>;
|
|
284
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
285
|
+
};
|
|
286
|
+
declare enum HoneySupplyHourData_OrderBy {
|
|
287
|
+
Amount = "amount",
|
|
288
|
+
Id = "id",
|
|
289
|
+
Timestamp = "timestamp"
|
|
290
|
+
}
|
|
291
|
+
type HoneyTxn = {
|
|
292
|
+
__typename?: 'HoneyTxn';
|
|
293
|
+
chainTransaction: ChainTransaction;
|
|
294
|
+
collateral: Array<HoneyCollateral>;
|
|
295
|
+
from: Scalars['Bytes']['output'];
|
|
296
|
+
honeyAmount: Scalars['BigDecimal']['output'];
|
|
297
|
+
id: Scalars['ID']['output'];
|
|
298
|
+
isBasketMode: Scalars['Boolean']['output'];
|
|
299
|
+
timestamp: Scalars['BigInt']['output'];
|
|
300
|
+
to: Scalars['Bytes']['output'];
|
|
301
|
+
type?: Maybe<TxnType>;
|
|
302
|
+
};
|
|
303
|
+
type HoneyTxnCollateralArgs = {
|
|
304
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
305
|
+
orderBy?: InputMaybe<HoneyCollateral_OrderBy>;
|
|
306
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
307
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
308
|
+
where?: InputMaybe<HoneyCollateral_Filter>;
|
|
309
|
+
};
|
|
310
|
+
type HoneyTxn_Filter = {
|
|
311
|
+
/** Filter for the block changed event. */
|
|
312
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
313
|
+
and?: InputMaybe<Array<InputMaybe<HoneyTxn_Filter>>>;
|
|
314
|
+
chainTransaction?: InputMaybe<Scalars['String']['input']>;
|
|
315
|
+
chainTransaction_?: InputMaybe<ChainTransaction_Filter>;
|
|
316
|
+
chainTransaction_contains?: InputMaybe<Scalars['String']['input']>;
|
|
317
|
+
chainTransaction_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
318
|
+
chainTransaction_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
319
|
+
chainTransaction_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
320
|
+
chainTransaction_gt?: InputMaybe<Scalars['String']['input']>;
|
|
321
|
+
chainTransaction_gte?: InputMaybe<Scalars['String']['input']>;
|
|
322
|
+
chainTransaction_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
323
|
+
chainTransaction_lt?: InputMaybe<Scalars['String']['input']>;
|
|
324
|
+
chainTransaction_lte?: InputMaybe<Scalars['String']['input']>;
|
|
325
|
+
chainTransaction_not?: InputMaybe<Scalars['String']['input']>;
|
|
326
|
+
chainTransaction_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
327
|
+
chainTransaction_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
328
|
+
chainTransaction_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
329
|
+
chainTransaction_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
330
|
+
chainTransaction_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
331
|
+
chainTransaction_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
332
|
+
chainTransaction_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
333
|
+
chainTransaction_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
334
|
+
chainTransaction_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
335
|
+
collateral_?: InputMaybe<HoneyCollateral_Filter>;
|
|
336
|
+
from?: InputMaybe<Scalars['Bytes']['input']>;
|
|
337
|
+
from_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
338
|
+
from_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
339
|
+
from_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
340
|
+
from_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
341
|
+
from_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
342
|
+
from_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
343
|
+
from_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
344
|
+
from_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
345
|
+
from_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
346
|
+
honeyAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
347
|
+
honeyAmount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
348
|
+
honeyAmount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
349
|
+
honeyAmount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
350
|
+
honeyAmount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
351
|
+
honeyAmount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
352
|
+
honeyAmount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
353
|
+
honeyAmount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
354
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
355
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
356
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
357
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
358
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
359
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
360
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
361
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
362
|
+
isBasketMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
363
|
+
isBasketMode_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
364
|
+
isBasketMode_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
365
|
+
isBasketMode_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
366
|
+
or?: InputMaybe<Array<InputMaybe<HoneyTxn_Filter>>>;
|
|
367
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
368
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
369
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
370
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
371
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
372
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
373
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
374
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
375
|
+
to?: InputMaybe<Scalars['Bytes']['input']>;
|
|
376
|
+
to_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
377
|
+
to_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
378
|
+
to_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
379
|
+
to_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
380
|
+
to_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
381
|
+
to_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
382
|
+
to_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
383
|
+
to_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
384
|
+
to_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
385
|
+
type?: InputMaybe<TxnType>;
|
|
386
|
+
type_in?: InputMaybe<Array<TxnType>>;
|
|
387
|
+
type_not?: InputMaybe<TxnType>;
|
|
388
|
+
type_not_in?: InputMaybe<Array<TxnType>>;
|
|
389
|
+
};
|
|
390
|
+
declare enum HoneyTxn_OrderBy {
|
|
391
|
+
ChainTransaction = "chainTransaction",
|
|
392
|
+
ChainTransactionId = "chainTransaction__id",
|
|
393
|
+
ChainTransactionIsBasketMode = "chainTransaction__isBasketMode",
|
|
394
|
+
ChainTransactionTxHash = "chainTransaction__txHash",
|
|
395
|
+
ChainTransactionType = "chainTransaction__type",
|
|
396
|
+
Collateral = "collateral",
|
|
397
|
+
From = "from",
|
|
398
|
+
HoneyAmount = "honeyAmount",
|
|
399
|
+
Id = "id",
|
|
400
|
+
IsBasketMode = "isBasketMode",
|
|
401
|
+
Timestamp = "timestamp",
|
|
402
|
+
To = "to",
|
|
403
|
+
Type = "type"
|
|
404
|
+
}
|
|
405
|
+
type HoneyVolumeDayData = {
|
|
406
|
+
__typename?: 'HoneyVolumeDayData';
|
|
407
|
+
amount: Scalars['BigDecimal']['output'];
|
|
408
|
+
id: Scalars['ID']['output'];
|
|
409
|
+
timestamp: Scalars['Int']['output'];
|
|
410
|
+
};
|
|
411
|
+
type HoneyVolumeDayData_Filter = {
|
|
412
|
+
/** Filter for the block changed event. */
|
|
413
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
414
|
+
amount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
415
|
+
amount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
416
|
+
amount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
417
|
+
amount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
418
|
+
amount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
419
|
+
amount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
420
|
+
amount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
421
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
422
|
+
and?: InputMaybe<Array<InputMaybe<HoneyVolumeDayData_Filter>>>;
|
|
423
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
424
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
425
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
426
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
427
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
428
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
429
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
430
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
431
|
+
or?: InputMaybe<Array<InputMaybe<HoneyVolumeDayData_Filter>>>;
|
|
432
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
433
|
+
timestamp_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
434
|
+
timestamp_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
435
|
+
timestamp_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
436
|
+
timestamp_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
437
|
+
timestamp_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
438
|
+
timestamp_not?: InputMaybe<Scalars['Int']['input']>;
|
|
439
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
440
|
+
};
|
|
441
|
+
declare enum HoneyVolumeDayData_OrderBy {
|
|
442
|
+
Amount = "amount",
|
|
443
|
+
Id = "id",
|
|
444
|
+
Timestamp = "timestamp"
|
|
445
|
+
}
|
|
446
|
+
type HoneyVolumeHourData = {
|
|
447
|
+
__typename?: 'HoneyVolumeHourData';
|
|
448
|
+
amount: Scalars['BigDecimal']['output'];
|
|
449
|
+
id: Scalars['ID']['output'];
|
|
450
|
+
timestamp: Scalars['Int']['output'];
|
|
451
|
+
};
|
|
452
|
+
type HoneyVolumeHourData_Filter = {
|
|
453
|
+
/** Filter for the block changed event. */
|
|
454
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
455
|
+
amount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
456
|
+
amount_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
457
|
+
amount_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
458
|
+
amount_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
459
|
+
amount_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
460
|
+
amount_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
461
|
+
amount_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
462
|
+
amount_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
463
|
+
and?: InputMaybe<Array<InputMaybe<HoneyVolumeHourData_Filter>>>;
|
|
464
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
465
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
466
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
467
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
468
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
469
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
470
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
471
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
472
|
+
or?: InputMaybe<Array<InputMaybe<HoneyVolumeHourData_Filter>>>;
|
|
473
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
474
|
+
timestamp_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
475
|
+
timestamp_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
476
|
+
timestamp_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
477
|
+
timestamp_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
478
|
+
timestamp_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
479
|
+
timestamp_not?: InputMaybe<Scalars['Int']['input']>;
|
|
480
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
481
|
+
};
|
|
482
|
+
declare enum HoneyVolumeHourData_OrderBy {
|
|
483
|
+
Amount = "amount",
|
|
484
|
+
Id = "id",
|
|
485
|
+
Timestamp = "timestamp"
|
|
486
|
+
}
|
|
487
|
+
/** Defines the order direction, either ascending or descending */
|
|
488
|
+
declare enum OrderDirection {
|
|
489
|
+
Asc = "asc",
|
|
490
|
+
Desc = "desc"
|
|
491
|
+
}
|
|
492
|
+
type Query = {
|
|
493
|
+
__typename?: 'Query';
|
|
494
|
+
/** Access to subgraph metadata */
|
|
495
|
+
_meta?: Maybe<_Meta_>;
|
|
496
|
+
chainTransaction?: Maybe<ChainTransaction>;
|
|
497
|
+
chainTransactions: Array<ChainTransaction>;
|
|
498
|
+
honeyCollateral?: Maybe<HoneyCollateral>;
|
|
499
|
+
honeyCollaterals: Array<HoneyCollateral>;
|
|
500
|
+
honeySupplyDayData?: Maybe<HoneySupplyDayData>;
|
|
501
|
+
honeySupplyDayDatas: Array<HoneySupplyDayData>;
|
|
502
|
+
honeySupplyHourData?: Maybe<HoneySupplyHourData>;
|
|
503
|
+
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
504
|
+
honeyTxn?: Maybe<HoneyTxn>;
|
|
505
|
+
honeyTxns: Array<HoneyTxn>;
|
|
506
|
+
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
507
|
+
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
508
|
+
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
509
|
+
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
510
|
+
};
|
|
511
|
+
type Query_MetaArgs = {
|
|
512
|
+
block?: InputMaybe<Block_Height>;
|
|
513
|
+
};
|
|
514
|
+
type QueryChainTransactionArgs = {
|
|
515
|
+
block?: InputMaybe<Block_Height>;
|
|
516
|
+
id: Scalars['ID']['input'];
|
|
517
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
518
|
+
};
|
|
519
|
+
type QueryChainTransactionsArgs = {
|
|
520
|
+
block?: InputMaybe<Block_Height>;
|
|
521
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
522
|
+
orderBy?: InputMaybe<ChainTransaction_OrderBy>;
|
|
523
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
524
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
525
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
526
|
+
where?: InputMaybe<ChainTransaction_Filter>;
|
|
527
|
+
};
|
|
528
|
+
type QueryHoneyCollateralArgs = {
|
|
529
|
+
block?: InputMaybe<Block_Height>;
|
|
530
|
+
id: Scalars['ID']['input'];
|
|
531
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
532
|
+
};
|
|
533
|
+
type QueryHoneyCollateralsArgs = {
|
|
534
|
+
block?: InputMaybe<Block_Height>;
|
|
535
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
536
|
+
orderBy?: InputMaybe<HoneyCollateral_OrderBy>;
|
|
537
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
538
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
539
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
540
|
+
where?: InputMaybe<HoneyCollateral_Filter>;
|
|
541
|
+
};
|
|
542
|
+
type QueryHoneySupplyDayDataArgs = {
|
|
543
|
+
block?: InputMaybe<Block_Height>;
|
|
544
|
+
id: Scalars['ID']['input'];
|
|
545
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
546
|
+
};
|
|
547
|
+
type QueryHoneySupplyDayDatasArgs = {
|
|
548
|
+
block?: InputMaybe<Block_Height>;
|
|
549
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
550
|
+
orderBy?: InputMaybe<HoneySupplyDayData_OrderBy>;
|
|
551
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
552
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
553
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
554
|
+
where?: InputMaybe<HoneySupplyDayData_Filter>;
|
|
555
|
+
};
|
|
556
|
+
type QueryHoneySupplyHourDataArgs = {
|
|
557
|
+
block?: InputMaybe<Block_Height>;
|
|
558
|
+
id: Scalars['ID']['input'];
|
|
559
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
560
|
+
};
|
|
561
|
+
type QueryHoneySupplyHourDatasArgs = {
|
|
562
|
+
block?: InputMaybe<Block_Height>;
|
|
563
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
564
|
+
orderBy?: InputMaybe<HoneySupplyHourData_OrderBy>;
|
|
565
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
566
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
567
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
568
|
+
where?: InputMaybe<HoneySupplyHourData_Filter>;
|
|
569
|
+
};
|
|
570
|
+
type QueryHoneyTxnArgs = {
|
|
571
|
+
block?: InputMaybe<Block_Height>;
|
|
572
|
+
id: Scalars['ID']['input'];
|
|
573
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
574
|
+
};
|
|
575
|
+
type QueryHoneyTxnsArgs = {
|
|
576
|
+
block?: InputMaybe<Block_Height>;
|
|
577
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
578
|
+
orderBy?: InputMaybe<HoneyTxn_OrderBy>;
|
|
579
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
580
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
581
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
582
|
+
where?: InputMaybe<HoneyTxn_Filter>;
|
|
583
|
+
};
|
|
584
|
+
type QueryHoneyVolumeDayDataArgs = {
|
|
585
|
+
block?: InputMaybe<Block_Height>;
|
|
586
|
+
id: Scalars['ID']['input'];
|
|
587
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
588
|
+
};
|
|
589
|
+
type QueryHoneyVolumeDayDatasArgs = {
|
|
590
|
+
block?: InputMaybe<Block_Height>;
|
|
591
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
592
|
+
orderBy?: InputMaybe<HoneyVolumeDayData_OrderBy>;
|
|
593
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
594
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
595
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
596
|
+
where?: InputMaybe<HoneyVolumeDayData_Filter>;
|
|
597
|
+
};
|
|
598
|
+
type QueryHoneyVolumeHourDataArgs = {
|
|
599
|
+
block?: InputMaybe<Block_Height>;
|
|
600
|
+
id: Scalars['ID']['input'];
|
|
601
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
602
|
+
};
|
|
603
|
+
type QueryHoneyVolumeHourDatasArgs = {
|
|
604
|
+
block?: InputMaybe<Block_Height>;
|
|
605
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
606
|
+
orderBy?: InputMaybe<HoneyVolumeHourData_OrderBy>;
|
|
607
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
608
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
609
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
610
|
+
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
611
|
+
};
|
|
612
|
+
type Subscription = {
|
|
613
|
+
__typename?: 'Subscription';
|
|
614
|
+
/** Access to subgraph metadata */
|
|
615
|
+
_meta?: Maybe<_Meta_>;
|
|
616
|
+
chainTransaction?: Maybe<ChainTransaction>;
|
|
617
|
+
chainTransactions: Array<ChainTransaction>;
|
|
618
|
+
honeyCollateral?: Maybe<HoneyCollateral>;
|
|
619
|
+
honeyCollaterals: Array<HoneyCollateral>;
|
|
620
|
+
honeySupplyDayData?: Maybe<HoneySupplyDayData>;
|
|
621
|
+
honeySupplyDayDatas: Array<HoneySupplyDayData>;
|
|
622
|
+
honeySupplyHourData?: Maybe<HoneySupplyHourData>;
|
|
623
|
+
honeySupplyHourDatas: Array<HoneySupplyHourData>;
|
|
624
|
+
honeyTxn?: Maybe<HoneyTxn>;
|
|
625
|
+
honeyTxns: Array<HoneyTxn>;
|
|
626
|
+
honeyVolumeDayData?: Maybe<HoneyVolumeDayData>;
|
|
627
|
+
honeyVolumeDayDatas: Array<HoneyVolumeDayData>;
|
|
628
|
+
honeyVolumeHourData?: Maybe<HoneyVolumeHourData>;
|
|
629
|
+
honeyVolumeHourDatas: Array<HoneyVolumeHourData>;
|
|
630
|
+
};
|
|
631
|
+
type Subscription_MetaArgs = {
|
|
632
|
+
block?: InputMaybe<Block_Height>;
|
|
633
|
+
};
|
|
634
|
+
type SubscriptionChainTransactionArgs = {
|
|
635
|
+
block?: InputMaybe<Block_Height>;
|
|
636
|
+
id: Scalars['ID']['input'];
|
|
637
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
638
|
+
};
|
|
639
|
+
type SubscriptionChainTransactionsArgs = {
|
|
640
|
+
block?: InputMaybe<Block_Height>;
|
|
641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
642
|
+
orderBy?: InputMaybe<ChainTransaction_OrderBy>;
|
|
643
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
644
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
645
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
646
|
+
where?: InputMaybe<ChainTransaction_Filter>;
|
|
647
|
+
};
|
|
648
|
+
type SubscriptionHoneyCollateralArgs = {
|
|
649
|
+
block?: InputMaybe<Block_Height>;
|
|
650
|
+
id: Scalars['ID']['input'];
|
|
651
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
652
|
+
};
|
|
653
|
+
type SubscriptionHoneyCollateralsArgs = {
|
|
654
|
+
block?: InputMaybe<Block_Height>;
|
|
655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
656
|
+
orderBy?: InputMaybe<HoneyCollateral_OrderBy>;
|
|
657
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
658
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
659
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
660
|
+
where?: InputMaybe<HoneyCollateral_Filter>;
|
|
661
|
+
};
|
|
662
|
+
type SubscriptionHoneySupplyDayDataArgs = {
|
|
663
|
+
block?: InputMaybe<Block_Height>;
|
|
664
|
+
id: Scalars['ID']['input'];
|
|
665
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
666
|
+
};
|
|
667
|
+
type SubscriptionHoneySupplyDayDatasArgs = {
|
|
668
|
+
block?: InputMaybe<Block_Height>;
|
|
669
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
670
|
+
orderBy?: InputMaybe<HoneySupplyDayData_OrderBy>;
|
|
671
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
672
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
673
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
674
|
+
where?: InputMaybe<HoneySupplyDayData_Filter>;
|
|
675
|
+
};
|
|
676
|
+
type SubscriptionHoneySupplyHourDataArgs = {
|
|
677
|
+
block?: InputMaybe<Block_Height>;
|
|
678
|
+
id: Scalars['ID']['input'];
|
|
679
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
680
|
+
};
|
|
681
|
+
type SubscriptionHoneySupplyHourDatasArgs = {
|
|
682
|
+
block?: InputMaybe<Block_Height>;
|
|
683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
684
|
+
orderBy?: InputMaybe<HoneySupplyHourData_OrderBy>;
|
|
685
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
686
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
687
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
688
|
+
where?: InputMaybe<HoneySupplyHourData_Filter>;
|
|
689
|
+
};
|
|
690
|
+
type SubscriptionHoneyTxnArgs = {
|
|
691
|
+
block?: InputMaybe<Block_Height>;
|
|
692
|
+
id: Scalars['ID']['input'];
|
|
693
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
694
|
+
};
|
|
695
|
+
type SubscriptionHoneyTxnsArgs = {
|
|
696
|
+
block?: InputMaybe<Block_Height>;
|
|
697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
698
|
+
orderBy?: InputMaybe<HoneyTxn_OrderBy>;
|
|
699
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
700
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
701
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
702
|
+
where?: InputMaybe<HoneyTxn_Filter>;
|
|
703
|
+
};
|
|
704
|
+
type SubscriptionHoneyVolumeDayDataArgs = {
|
|
705
|
+
block?: InputMaybe<Block_Height>;
|
|
706
|
+
id: Scalars['ID']['input'];
|
|
707
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
708
|
+
};
|
|
709
|
+
type SubscriptionHoneyVolumeDayDatasArgs = {
|
|
710
|
+
block?: InputMaybe<Block_Height>;
|
|
711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
712
|
+
orderBy?: InputMaybe<HoneyVolumeDayData_OrderBy>;
|
|
713
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
714
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
715
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
716
|
+
where?: InputMaybe<HoneyVolumeDayData_Filter>;
|
|
717
|
+
};
|
|
718
|
+
type SubscriptionHoneyVolumeHourDataArgs = {
|
|
719
|
+
block?: InputMaybe<Block_Height>;
|
|
720
|
+
id: Scalars['ID']['input'];
|
|
721
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
722
|
+
};
|
|
723
|
+
type SubscriptionHoneyVolumeHourDatasArgs = {
|
|
724
|
+
block?: InputMaybe<Block_Height>;
|
|
725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
726
|
+
orderBy?: InputMaybe<HoneyVolumeHourData_OrderBy>;
|
|
727
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
728
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
729
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
730
|
+
where?: InputMaybe<HoneyVolumeHourData_Filter>;
|
|
731
|
+
};
|
|
732
|
+
declare enum TxnType {
|
|
733
|
+
Mint = "MINT",
|
|
734
|
+
Redeem = "REDEEM"
|
|
735
|
+
}
|
|
736
|
+
type _Block_ = {
|
|
737
|
+
__typename?: '_Block_';
|
|
738
|
+
/** The hash of the block */
|
|
739
|
+
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
740
|
+
/** The block number */
|
|
741
|
+
number: Scalars['Int']['output'];
|
|
742
|
+
/** The hash of the parent block */
|
|
743
|
+
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
744
|
+
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
745
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
746
|
+
};
|
|
747
|
+
/** The type for the top-level _meta field */
|
|
748
|
+
type _Meta_ = {
|
|
749
|
+
__typename?: '_Meta_';
|
|
750
|
+
/**
|
|
751
|
+
* Information about a specific subgraph block. The hash of the block
|
|
752
|
+
* will be null if the _meta field has a block constraint that asks for
|
|
753
|
+
* a block number. It will be filled if the _meta field has no block constraint
|
|
754
|
+
* and therefore asks for the latest block
|
|
755
|
+
*
|
|
756
|
+
*/
|
|
757
|
+
block: _Block_;
|
|
758
|
+
/** The deployment ID */
|
|
759
|
+
deployment: Scalars['String']['output'];
|
|
760
|
+
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
761
|
+
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
762
|
+
};
|
|
763
|
+
declare enum _SubgraphErrorPolicy_ {
|
|
764
|
+
/** Data will be returned even if the subgraph has indexing errors */
|
|
765
|
+
Allow = "allow",
|
|
766
|
+
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
767
|
+
Deny = "deny"
|
|
768
|
+
}
|
|
769
|
+
type HoneyTxnDataFragment = {
|
|
770
|
+
__typename?: 'HoneyTxn';
|
|
771
|
+
id: string;
|
|
772
|
+
timestamp: any;
|
|
773
|
+
from: any;
|
|
774
|
+
to: any;
|
|
775
|
+
type?: TxnType | null;
|
|
776
|
+
honeyAmount: any;
|
|
777
|
+
chainTransaction: {
|
|
778
|
+
__typename?: 'ChainTransaction';
|
|
779
|
+
id: any;
|
|
780
|
+
txHash: any;
|
|
781
|
+
};
|
|
782
|
+
collateral: Array<{
|
|
783
|
+
__typename?: 'HoneyCollateral';
|
|
784
|
+
collateral: any;
|
|
785
|
+
collateralAmount: any;
|
|
786
|
+
id: string;
|
|
787
|
+
}>;
|
|
788
|
+
};
|
|
789
|
+
type GetHoneyTxnByTypeQueryVariables = Exact<{
|
|
790
|
+
page: Scalars['Int']['input'];
|
|
791
|
+
limit: Scalars['Int']['input'];
|
|
792
|
+
type: TxnType;
|
|
793
|
+
}>;
|
|
794
|
+
type GetHoneyTxnByTypeQuery = {
|
|
795
|
+
__typename?: 'Query';
|
|
796
|
+
honeyTxns: Array<{
|
|
797
|
+
__typename?: 'HoneyTxn';
|
|
798
|
+
id: string;
|
|
799
|
+
timestamp: any;
|
|
800
|
+
from: any;
|
|
801
|
+
to: any;
|
|
802
|
+
type?: TxnType | null;
|
|
803
|
+
honeyAmount: any;
|
|
804
|
+
chainTransaction: {
|
|
805
|
+
__typename?: 'ChainTransaction';
|
|
806
|
+
id: any;
|
|
807
|
+
txHash: any;
|
|
808
|
+
};
|
|
809
|
+
collateral: Array<{
|
|
810
|
+
__typename?: 'HoneyCollateral';
|
|
811
|
+
collateral: any;
|
|
812
|
+
collateralAmount: any;
|
|
813
|
+
id: string;
|
|
814
|
+
}>;
|
|
815
|
+
}>;
|
|
816
|
+
};
|
|
817
|
+
type GetHoneyTxnQueryVariables = Exact<{
|
|
818
|
+
page: Scalars['Int']['input'];
|
|
819
|
+
limit: Scalars['Int']['input'];
|
|
820
|
+
}>;
|
|
821
|
+
type GetHoneyTxnQuery = {
|
|
822
|
+
__typename?: 'Query';
|
|
823
|
+
honeyTxns: Array<{
|
|
824
|
+
__typename?: 'HoneyTxn';
|
|
825
|
+
id: string;
|
|
826
|
+
timestamp: any;
|
|
827
|
+
from: any;
|
|
828
|
+
to: any;
|
|
829
|
+
type?: TxnType | null;
|
|
830
|
+
honeyAmount: any;
|
|
831
|
+
chainTransaction: {
|
|
832
|
+
__typename?: 'ChainTransaction';
|
|
833
|
+
id: any;
|
|
834
|
+
txHash: any;
|
|
835
|
+
};
|
|
836
|
+
collateral: Array<{
|
|
837
|
+
__typename?: 'HoneyCollateral';
|
|
838
|
+
collateral: any;
|
|
839
|
+
collateralAmount: any;
|
|
840
|
+
id: string;
|
|
841
|
+
}>;
|
|
842
|
+
}>;
|
|
843
|
+
};
|
|
844
|
+
type GetSupplyDayQueryVariables = Exact<{
|
|
845
|
+
timestamp_gt: Scalars['Int']['input'];
|
|
846
|
+
}>;
|
|
847
|
+
type GetSupplyDayQuery = {
|
|
848
|
+
__typename?: 'Query';
|
|
849
|
+
honeySupplyDayDatas: Array<{
|
|
850
|
+
__typename?: 'HoneySupplyDayData';
|
|
851
|
+
id: string;
|
|
852
|
+
timestamp: number;
|
|
853
|
+
amount: any;
|
|
854
|
+
}>;
|
|
855
|
+
};
|
|
856
|
+
type GetSupplyHourQueryVariables = Exact<{
|
|
857
|
+
timestamp_gt: Scalars['Int']['input'];
|
|
858
|
+
}>;
|
|
859
|
+
type GetSupplyHourQuery = {
|
|
860
|
+
__typename?: 'Query';
|
|
861
|
+
honeySupplyHourDatas: Array<{
|
|
862
|
+
__typename?: 'HoneySupplyHourData';
|
|
863
|
+
id: string;
|
|
864
|
+
timestamp: number;
|
|
865
|
+
amount: any;
|
|
866
|
+
}>;
|
|
867
|
+
};
|
|
868
|
+
type GetVolumeDayQueryVariables = Exact<{
|
|
869
|
+
timestamp_gt: Scalars['Int']['input'];
|
|
870
|
+
}>;
|
|
871
|
+
type GetVolumeDayQuery = {
|
|
872
|
+
__typename?: 'Query';
|
|
873
|
+
honeyVolumeDayDatas: Array<{
|
|
874
|
+
__typename?: 'HoneyVolumeDayData';
|
|
875
|
+
id: string;
|
|
876
|
+
timestamp: number;
|
|
877
|
+
amount: any;
|
|
878
|
+
}>;
|
|
879
|
+
};
|
|
880
|
+
type GetVolumeHourQueryVariables = Exact<{
|
|
881
|
+
timestamp_gt: Scalars['Int']['input'];
|
|
882
|
+
}>;
|
|
883
|
+
type GetVolumeHourQuery = {
|
|
884
|
+
__typename?: 'Query';
|
|
885
|
+
honeyVolumeHourDatas: Array<{
|
|
886
|
+
__typename?: 'HoneyVolumeHourData';
|
|
887
|
+
id: string;
|
|
888
|
+
timestamp: number;
|
|
889
|
+
amount: any;
|
|
890
|
+
}>;
|
|
891
|
+
};
|
|
892
|
+
type GetGlobalDataQueryVariables = Exact<{
|
|
893
|
+
[key: string]: never;
|
|
894
|
+
}>;
|
|
895
|
+
type GetGlobalDataQuery = {
|
|
896
|
+
__typename?: 'Query';
|
|
897
|
+
honeyVolumeDayDatas: Array<{
|
|
898
|
+
__typename?: 'HoneyVolumeDayData';
|
|
899
|
+
id: string;
|
|
900
|
+
timestamp: number;
|
|
901
|
+
amount: any;
|
|
902
|
+
}>;
|
|
903
|
+
honeySupplyHourDatas: Array<{
|
|
904
|
+
__typename?: 'HoneySupplyHourData';
|
|
905
|
+
id: string;
|
|
906
|
+
timestamp: number;
|
|
907
|
+
amount: any;
|
|
908
|
+
}>;
|
|
909
|
+
};
|
|
910
|
+
type GetFirstHoneyTxnDateQueryVariables = Exact<{
|
|
911
|
+
[key: string]: never;
|
|
912
|
+
}>;
|
|
913
|
+
type GetFirstHoneyTxnDateQuery = {
|
|
914
|
+
__typename?: 'Query';
|
|
915
|
+
honeyTxns: Array<{
|
|
916
|
+
__typename?: 'HoneyTxn';
|
|
917
|
+
timestamp: any;
|
|
918
|
+
}>;
|
|
919
|
+
};
|
|
920
|
+
declare const HoneyTxnData: _apollo_client.DocumentNode;
|
|
921
|
+
declare const GetHoneyTxnByType: _apollo_client.DocumentNode;
|
|
922
|
+
declare const GetHoneyTxn: _apollo_client.DocumentNode;
|
|
923
|
+
declare const GetSupplyDay: _apollo_client.DocumentNode;
|
|
924
|
+
declare const GetSupplyHour: _apollo_client.DocumentNode;
|
|
925
|
+
declare const GetVolumeDay: _apollo_client.DocumentNode;
|
|
926
|
+
declare const GetVolumeHour: _apollo_client.DocumentNode;
|
|
927
|
+
declare const GetGlobalData: _apollo_client.DocumentNode;
|
|
928
|
+
declare const GetFirstHoneyTxnDate: _apollo_client.DocumentNode;
|
|
929
|
+
interface PossibleTypesResultData {
|
|
930
|
+
possibleTypes: {
|
|
931
|
+
[key: string]: string[];
|
|
932
|
+
};
|
|
933
|
+
}
|
|
934
|
+
declare const result: PossibleTypesResultData;
|
|
935
|
+
|
|
936
|
+
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, GetSupplyDay, type GetSupplyDayQuery, type GetSupplyDayQueryVariables, GetSupplyHour, type GetSupplyHourQuery, type GetSupplyHourQueryVariables, GetVolumeDay, type GetVolumeDayQuery, type GetVolumeDayQueryVariables, 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 };
|