@berachain/graphql 0.5.1-beta.1 → 0.5.2-beta.0
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/beep/beep.codegen.d.ts +117 -200
- package/dist/dex/api.codegen.d.ts +1 -8
- package/dist/pol/api.codegen.d.ts +1 -8
- package/dist/pol/subgraph.codegen.d.ts +1 -29
- package/dist/pol/subgraph.codegen.mjs +0 -25
- package/package.json +3 -30
- package/dist/api/api.codegen.d.ts +0 -740
- package/dist/api/api.codegen.mjs +0 -0
- package/dist/honey/honey.codegen.d.ts +0 -807
- package/dist/honey/honey.codegen.mjs +0 -169
|
@@ -105,8 +105,8 @@ type paths = {
|
|
|
105
105
|
shares: components["schemas"]["BigIntStr"];
|
|
106
106
|
/** @enum {string} */
|
|
107
107
|
_type: "deposit" | "withdrawal";
|
|
108
|
-
sender:
|
|
109
|
-
owner:
|
|
108
|
+
sender: components["schemas"]["EvmAddress"];
|
|
109
|
+
owner: components["schemas"]["EvmAddress"];
|
|
110
110
|
total_assets: components["schemas"]["BigIntStr"];
|
|
111
111
|
} | {
|
|
112
112
|
_height: components["schemas"]["BigIntStr"];
|
|
@@ -115,8 +115,8 @@ type paths = {
|
|
|
115
115
|
shares: components["schemas"]["BigIntStr"];
|
|
116
116
|
/** @enum {string} */
|
|
117
117
|
_type: "transfer";
|
|
118
|
-
from:
|
|
119
|
-
to:
|
|
118
|
+
from: components["schemas"]["EvmAddress"];
|
|
119
|
+
to: components["schemas"]["EvmAddress"];
|
|
120
120
|
value: components["schemas"]["BigIntStr"];
|
|
121
121
|
})[];
|
|
122
122
|
};
|
|
@@ -174,150 +174,6 @@ type paths = {
|
|
|
174
174
|
patch?: never;
|
|
175
175
|
trace?: never;
|
|
176
176
|
};
|
|
177
|
-
"/v0/stake/{vault}/rewards-received": {
|
|
178
|
-
parameters: {
|
|
179
|
-
query?: never;
|
|
180
|
-
header?: never;
|
|
181
|
-
path?: never;
|
|
182
|
-
cookie?: never;
|
|
183
|
-
};
|
|
184
|
-
get: {
|
|
185
|
-
parameters: {
|
|
186
|
-
query?: {
|
|
187
|
-
groupBy?: "day";
|
|
188
|
-
page?: components["schemas"]["BigUintStr"];
|
|
189
|
-
perPage?: components["schemas"]["BigUintStr"];
|
|
190
|
-
};
|
|
191
|
-
header?: never;
|
|
192
|
-
path: {
|
|
193
|
-
vault: components["schemas"]["EvmAddress"];
|
|
194
|
-
};
|
|
195
|
-
cookie?: never;
|
|
196
|
-
};
|
|
197
|
-
requestBody?: never;
|
|
198
|
-
responses: {
|
|
199
|
-
200: {
|
|
200
|
-
headers: {
|
|
201
|
-
[name: string]: unknown;
|
|
202
|
-
};
|
|
203
|
-
content: {
|
|
204
|
-
"application/json": {
|
|
205
|
-
contract: string;
|
|
206
|
-
height: components["schemas"]["BigIntStr"];
|
|
207
|
-
logIndex: number;
|
|
208
|
-
txHash: string;
|
|
209
|
-
sender: string;
|
|
210
|
-
amount: string;
|
|
211
|
-
totalAssets: string;
|
|
212
|
-
totalSupply: string;
|
|
213
|
-
timestamp: number;
|
|
214
|
-
}[] | {
|
|
215
|
-
day: string;
|
|
216
|
-
contract: string;
|
|
217
|
-
eventCount: number;
|
|
218
|
-
amountSum: string;
|
|
219
|
-
totalAssets: string;
|
|
220
|
-
totalSupply: string;
|
|
221
|
-
}[];
|
|
222
|
-
};
|
|
223
|
-
};
|
|
224
|
-
};
|
|
225
|
-
};
|
|
226
|
-
put?: never;
|
|
227
|
-
post?: never;
|
|
228
|
-
delete?: never;
|
|
229
|
-
options?: never;
|
|
230
|
-
head?: never;
|
|
231
|
-
patch?: never;
|
|
232
|
-
trace?: never;
|
|
233
|
-
};
|
|
234
|
-
"/v0/stake/{vault}/daily-yield/{owner}": {
|
|
235
|
-
parameters: {
|
|
236
|
-
query?: never;
|
|
237
|
-
header?: never;
|
|
238
|
-
path?: never;
|
|
239
|
-
cookie?: never;
|
|
240
|
-
};
|
|
241
|
-
get: {
|
|
242
|
-
parameters: {
|
|
243
|
-
query?: {
|
|
244
|
-
start?: string;
|
|
245
|
-
};
|
|
246
|
-
header?: never;
|
|
247
|
-
path: {
|
|
248
|
-
vault: components["schemas"]["EvmAddress"];
|
|
249
|
-
owner: components["schemas"]["EvmAddress"];
|
|
250
|
-
};
|
|
251
|
-
cookie?: never;
|
|
252
|
-
};
|
|
253
|
-
requestBody?: never;
|
|
254
|
-
responses: {
|
|
255
|
-
200: {
|
|
256
|
-
headers: {
|
|
257
|
-
[name: string]: unknown;
|
|
258
|
-
};
|
|
259
|
-
content: {
|
|
260
|
-
"application/json": {
|
|
261
|
-
timestamp: number;
|
|
262
|
-
yieldAssets: number;
|
|
263
|
-
}[];
|
|
264
|
-
};
|
|
265
|
-
};
|
|
266
|
-
};
|
|
267
|
-
};
|
|
268
|
-
put?: never;
|
|
269
|
-
post?: never;
|
|
270
|
-
delete?: never;
|
|
271
|
-
options?: never;
|
|
272
|
-
head?: never;
|
|
273
|
-
patch?: never;
|
|
274
|
-
trace?: never;
|
|
275
|
-
};
|
|
276
|
-
"/v0/stake/{vault}/daily-assets/{owner}": {
|
|
277
|
-
parameters: {
|
|
278
|
-
query?: never;
|
|
279
|
-
header?: never;
|
|
280
|
-
path?: never;
|
|
281
|
-
cookie?: never;
|
|
282
|
-
};
|
|
283
|
-
get: {
|
|
284
|
-
parameters: {
|
|
285
|
-
query?: {
|
|
286
|
-
start?: string;
|
|
287
|
-
end?: string;
|
|
288
|
-
};
|
|
289
|
-
header?: never;
|
|
290
|
-
path: {
|
|
291
|
-
vault: components["schemas"]["EvmAddress"];
|
|
292
|
-
owner: components["schemas"]["EvmAddress"];
|
|
293
|
-
};
|
|
294
|
-
cookie?: never;
|
|
295
|
-
};
|
|
296
|
-
requestBody?: never;
|
|
297
|
-
responses: {
|
|
298
|
-
200: {
|
|
299
|
-
headers: {
|
|
300
|
-
[name: string]: unknown;
|
|
301
|
-
};
|
|
302
|
-
content: {
|
|
303
|
-
"application/json": {
|
|
304
|
-
timestamp: number;
|
|
305
|
-
balance: number;
|
|
306
|
-
deposited: number;
|
|
307
|
-
yield: number;
|
|
308
|
-
}[];
|
|
309
|
-
};
|
|
310
|
-
};
|
|
311
|
-
};
|
|
312
|
-
};
|
|
313
|
-
put?: never;
|
|
314
|
-
post?: never;
|
|
315
|
-
delete?: never;
|
|
316
|
-
options?: never;
|
|
317
|
-
head?: never;
|
|
318
|
-
patch?: never;
|
|
319
|
-
trace?: never;
|
|
320
|
-
};
|
|
321
177
|
"/v0/validators": {
|
|
322
178
|
parameters: {
|
|
323
179
|
query?: never;
|
|
@@ -340,11 +196,11 @@ type paths = {
|
|
|
340
196
|
};
|
|
341
197
|
content: {
|
|
342
198
|
"application/json": {
|
|
343
|
-
id:
|
|
344
|
-
pubkey:
|
|
345
|
-
operator:
|
|
346
|
-
credentials:
|
|
347
|
-
rewardAllocator:
|
|
199
|
+
id: components["schemas"]["Bytes32Hex"];
|
|
200
|
+
pubkey: components["schemas"]["ValidatorPubkeyStr"];
|
|
201
|
+
operator: components["schemas"]["EvmAddress"];
|
|
202
|
+
credentials: components["schemas"]["Bytes32Hex"];
|
|
203
|
+
rewardAllocator: components["schemas"]["EvmAddress"];
|
|
348
204
|
queuedBoosts: components["schemas"]["DecimalStr"];
|
|
349
205
|
queuedDropBoosts: components["schemas"]["DecimalStr"];
|
|
350
206
|
}[];
|
|
@@ -370,14 +226,14 @@ type paths = {
|
|
|
370
226
|
get: {
|
|
371
227
|
parameters: {
|
|
372
228
|
query?: {
|
|
373
|
-
interval?: "
|
|
374
|
-
page?: components["schemas"]["BigUintStr"];
|
|
375
|
-
perPage?: components["schemas"]["BigUintStr"];
|
|
229
|
+
interval?: "hour" | "day";
|
|
376
230
|
after?: components["schemas"]["BigUintStr"];
|
|
231
|
+
page?: string;
|
|
232
|
+
perPage?: string;
|
|
377
233
|
};
|
|
378
234
|
header?: never;
|
|
379
235
|
path: {
|
|
380
|
-
pubkey:
|
|
236
|
+
pubkey: components["schemas"]["ValidatorPubkeyParam"];
|
|
381
237
|
};
|
|
382
238
|
cookie?: never;
|
|
383
239
|
};
|
|
@@ -391,14 +247,22 @@ type paths = {
|
|
|
391
247
|
"application/json": {
|
|
392
248
|
timestamp: number;
|
|
393
249
|
blockCount: number;
|
|
394
|
-
|
|
395
|
-
|
|
250
|
+
earnedRewardAmount: components["schemas"]["DecimalStr"];
|
|
251
|
+
distributedRewardAmount: components["schemas"]["DecimalStr"];
|
|
396
252
|
allTimeBlockCount: number;
|
|
397
|
-
|
|
398
|
-
|
|
253
|
+
allTimeEarnedRewardAmount: components["schemas"]["DecimalStr"];
|
|
254
|
+
allTimeDistributedRewardAmount: components["schemas"]["DecimalStr"];
|
|
399
255
|
}[];
|
|
400
256
|
};
|
|
401
257
|
};
|
|
258
|
+
400: {
|
|
259
|
+
headers: {
|
|
260
|
+
[name: string]: unknown;
|
|
261
|
+
};
|
|
262
|
+
content: {
|
|
263
|
+
"application/json": unknown;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
402
266
|
};
|
|
403
267
|
};
|
|
404
268
|
put?: never;
|
|
@@ -419,14 +283,14 @@ type paths = {
|
|
|
419
283
|
get: {
|
|
420
284
|
parameters: {
|
|
421
285
|
query?: {
|
|
422
|
-
interval?: "
|
|
423
|
-
page?: components["schemas"]["BigUintStr"];
|
|
424
|
-
perPage?: components["schemas"]["BigUintStr"];
|
|
286
|
+
interval?: "hour" | "day";
|
|
425
287
|
after?: components["schemas"]["BigUintStr"];
|
|
288
|
+
page?: string;
|
|
289
|
+
perPage?: string;
|
|
426
290
|
};
|
|
427
291
|
header?: never;
|
|
428
292
|
path: {
|
|
429
|
-
pubkey:
|
|
293
|
+
pubkey: components["schemas"]["ValidatorPubkeyParam"];
|
|
430
294
|
};
|
|
431
295
|
cookie?: never;
|
|
432
296
|
};
|
|
@@ -439,13 +303,21 @@ type paths = {
|
|
|
439
303
|
content: {
|
|
440
304
|
"application/json": {
|
|
441
305
|
timestamp: number;
|
|
442
|
-
validatorId:
|
|
443
|
-
token:
|
|
306
|
+
validatorId: components["schemas"]["Bytes32Hex"];
|
|
307
|
+
token: components["schemas"]["EvmAddress"];
|
|
444
308
|
receivedTokenAmount: components["schemas"]["DecimalStr"];
|
|
445
309
|
allTimeReceivedTokenAmount: components["schemas"]["DecimalStr"];
|
|
446
310
|
}[];
|
|
447
311
|
};
|
|
448
312
|
};
|
|
313
|
+
400: {
|
|
314
|
+
headers: {
|
|
315
|
+
[name: string]: unknown;
|
|
316
|
+
};
|
|
317
|
+
content: {
|
|
318
|
+
"application/json": unknown;
|
|
319
|
+
};
|
|
320
|
+
};
|
|
449
321
|
};
|
|
450
322
|
};
|
|
451
323
|
put?: never;
|
|
@@ -466,10 +338,10 @@ type paths = {
|
|
|
466
338
|
get: {
|
|
467
339
|
parameters: {
|
|
468
340
|
query?: {
|
|
469
|
-
interval?: "
|
|
470
|
-
page?: components["schemas"]["BigUintStr"];
|
|
471
|
-
perPage?: components["schemas"]["BigUintStr"];
|
|
341
|
+
interval?: "hour" | "day";
|
|
472
342
|
after?: components["schemas"]["BigUintStr"];
|
|
343
|
+
page?: string;
|
|
344
|
+
perPage?: string;
|
|
473
345
|
};
|
|
474
346
|
header?: never;
|
|
475
347
|
path?: never;
|
|
@@ -485,14 +357,22 @@ type paths = {
|
|
|
485
357
|
"application/json": {
|
|
486
358
|
timestamp: number;
|
|
487
359
|
blockCount: number;
|
|
488
|
-
|
|
489
|
-
|
|
360
|
+
earnedRewardAmount: components["schemas"]["DecimalStr"];
|
|
361
|
+
distributedRewardAmount: components["schemas"]["DecimalStr"];
|
|
490
362
|
allTimeBlockCount: number;
|
|
491
|
-
|
|
492
|
-
|
|
363
|
+
allTimeEarnedRewardAmount: components["schemas"]["DecimalStr"];
|
|
364
|
+
allTimeDistributedRewardAmount: components["schemas"]["DecimalStr"];
|
|
493
365
|
}[];
|
|
494
366
|
};
|
|
495
367
|
};
|
|
368
|
+
400: {
|
|
369
|
+
headers: {
|
|
370
|
+
[name: string]: unknown;
|
|
371
|
+
};
|
|
372
|
+
content: {
|
|
373
|
+
"application/json": unknown;
|
|
374
|
+
};
|
|
375
|
+
};
|
|
496
376
|
};
|
|
497
377
|
};
|
|
498
378
|
put?: never;
|
|
@@ -513,9 +393,9 @@ type paths = {
|
|
|
513
393
|
get: {
|
|
514
394
|
parameters: {
|
|
515
395
|
query?: {
|
|
396
|
+
type?: "MINT" | "REDEEM";
|
|
516
397
|
page?: string;
|
|
517
398
|
perPage?: string;
|
|
518
|
-
type?: "MINT" | "REDEEM";
|
|
519
399
|
};
|
|
520
400
|
header?: never;
|
|
521
401
|
path?: never;
|
|
@@ -543,6 +423,14 @@ type paths = {
|
|
|
543
423
|
}[];
|
|
544
424
|
};
|
|
545
425
|
};
|
|
426
|
+
400: {
|
|
427
|
+
headers: {
|
|
428
|
+
[name: string]: unknown;
|
|
429
|
+
};
|
|
430
|
+
content: {
|
|
431
|
+
"application/json": unknown;
|
|
432
|
+
};
|
|
433
|
+
};
|
|
546
434
|
};
|
|
547
435
|
};
|
|
548
436
|
put?: never;
|
|
@@ -568,7 +456,7 @@ type paths = {
|
|
|
568
456
|
};
|
|
569
457
|
header?: never;
|
|
570
458
|
path: {
|
|
571
|
-
interval: "
|
|
459
|
+
interval: "hour" | "day" | "week" | "month";
|
|
572
460
|
};
|
|
573
461
|
cookie?: never;
|
|
574
462
|
};
|
|
@@ -834,10 +722,10 @@ type paths = {
|
|
|
834
722
|
get: {
|
|
835
723
|
parameters: {
|
|
836
724
|
query?: {
|
|
837
|
-
page?: components["schemas"]["BigUintStr"];
|
|
838
|
-
perPage?: components["schemas"]["BigUintStr"];
|
|
839
725
|
orderBy?: "stakingTokenAmount" | "address";
|
|
840
726
|
orderDirection?: "asc" | "desc";
|
|
727
|
+
page?: string;
|
|
728
|
+
perPage?: string;
|
|
841
729
|
};
|
|
842
730
|
header?: never;
|
|
843
731
|
path?: never;
|
|
@@ -851,14 +739,21 @@ type paths = {
|
|
|
851
739
|
};
|
|
852
740
|
content: {
|
|
853
741
|
"application/json": {
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
stakingToken: string;
|
|
742
|
+
address: components["schemas"]["EvmAddress"];
|
|
743
|
+
stakingToken: components["schemas"]["EvmAddress"];
|
|
857
744
|
stakingTokenAmount: components["schemas"]["DecimalStr"];
|
|
858
745
|
isWhitelisted: boolean;
|
|
859
746
|
}[];
|
|
860
747
|
};
|
|
861
748
|
};
|
|
749
|
+
400: {
|
|
750
|
+
headers: {
|
|
751
|
+
[name: string]: unknown;
|
|
752
|
+
};
|
|
753
|
+
content: {
|
|
754
|
+
"application/json": unknown;
|
|
755
|
+
};
|
|
756
|
+
};
|
|
862
757
|
};
|
|
863
758
|
};
|
|
864
759
|
put?: never;
|
|
@@ -879,10 +774,10 @@ type paths = {
|
|
|
879
774
|
get: {
|
|
880
775
|
parameters: {
|
|
881
776
|
query?: {
|
|
882
|
-
interval?: "
|
|
883
|
-
page?: components["schemas"]["BigUintStr"];
|
|
884
|
-
perPage?: components["schemas"]["BigUintStr"];
|
|
777
|
+
interval?: "hour" | "day";
|
|
885
778
|
after?: components["schemas"]["BigUintStr"];
|
|
779
|
+
page?: string;
|
|
780
|
+
perPage?: string;
|
|
886
781
|
};
|
|
887
782
|
header?: never;
|
|
888
783
|
path: {
|
|
@@ -899,12 +794,20 @@ type paths = {
|
|
|
899
794
|
content: {
|
|
900
795
|
"application/json": {
|
|
901
796
|
timestamp: number;
|
|
902
|
-
vaultId:
|
|
903
|
-
|
|
904
|
-
|
|
797
|
+
vaultId: components["schemas"]["EvmAddress"];
|
|
798
|
+
receivedRewardAmount: components["schemas"]["DecimalStr"];
|
|
799
|
+
allTimeReceivedRewardAmount: components["schemas"]["DecimalStr"];
|
|
905
800
|
}[];
|
|
906
801
|
};
|
|
907
802
|
};
|
|
803
|
+
400: {
|
|
804
|
+
headers: {
|
|
805
|
+
[name: string]: unknown;
|
|
806
|
+
};
|
|
807
|
+
content: {
|
|
808
|
+
"application/json": unknown;
|
|
809
|
+
};
|
|
810
|
+
};
|
|
908
811
|
};
|
|
909
812
|
};
|
|
910
813
|
put?: never;
|
|
@@ -967,8 +870,8 @@ type paths = {
|
|
|
967
870
|
afterBlock?: components["schemas"]["BigUintStr"];
|
|
968
871
|
orderBy?: "updatedAtBlock" | "amount" | "id";
|
|
969
872
|
orderDirection?: "asc" | "desc";
|
|
970
|
-
page?:
|
|
971
|
-
perPage?:
|
|
873
|
+
page?: string;
|
|
874
|
+
perPage?: string;
|
|
972
875
|
};
|
|
973
876
|
header?: never;
|
|
974
877
|
path?: never;
|
|
@@ -983,13 +886,21 @@ type paths = {
|
|
|
983
886
|
content: {
|
|
984
887
|
"application/json": {
|
|
985
888
|
id: string;
|
|
986
|
-
user:
|
|
987
|
-
vaultId:
|
|
889
|
+
user: components["schemas"]["EvmAddress"];
|
|
890
|
+
vaultId: components["schemas"]["EvmAddress"];
|
|
988
891
|
amount: components["schemas"]["DecimalStr"];
|
|
989
892
|
updatedAtBlock: number;
|
|
990
893
|
}[];
|
|
991
894
|
};
|
|
992
895
|
};
|
|
896
|
+
400: {
|
|
897
|
+
headers: {
|
|
898
|
+
[name: string]: unknown;
|
|
899
|
+
};
|
|
900
|
+
content: {
|
|
901
|
+
"application/json": unknown;
|
|
902
|
+
};
|
|
903
|
+
};
|
|
993
904
|
};
|
|
994
905
|
};
|
|
995
906
|
put?: never;
|
|
@@ -1004,14 +915,20 @@ type paths = {
|
|
|
1004
915
|
type webhooks = Record<string, never>;
|
|
1005
916
|
type components = {
|
|
1006
917
|
schemas: {
|
|
1007
|
-
/** @description
|
|
1008
|
-
EvmAddress:
|
|
1009
|
-
/** @description
|
|
918
|
+
/** @description 20-byte EVM address: 0x followed by 40 hex characters */
|
|
919
|
+
EvmAddress: string;
|
|
920
|
+
/** @description Signed integer encoded as a base-10 string (digits only, optional leading '-') */
|
|
1010
921
|
BigIntStr: string;
|
|
1011
|
-
/** @description Decimal as string
|
|
922
|
+
/** @description Decimal number encoded as a string (e.g. '12', '-3.5') */
|
|
1012
923
|
DecimalStr: string;
|
|
1013
|
-
/** @description
|
|
924
|
+
/** @description 32-byte hex value: 0x followed by 64 hex characters (e.g. keccak256 hash or withdrawal credentials) */
|
|
925
|
+
Bytes32Hex: string;
|
|
926
|
+
/** @description 48-byte BLS validator pubkey: 0x followed by 96 hex characters */
|
|
927
|
+
ValidatorPubkeyStr: string;
|
|
928
|
+
/** @description Non-negative integer encoded as a base-10 string (digits only) */
|
|
1014
929
|
BigUintStr: string;
|
|
930
|
+
/** @description 48-byte BLS validator pubkey: 0x followed by 96 hex characters */
|
|
931
|
+
ValidatorPubkeyParam: string;
|
|
1015
932
|
};
|
|
1016
933
|
responses: never;
|
|
1017
934
|
parameters: never;
|
|
@@ -1036,12 +953,12 @@ type ApiGetResponse<TPath extends keyof paths> = paths[TPath] extends {
|
|
|
1036
953
|
type EvmAddress = components["schemas"]["EvmAddress"];
|
|
1037
954
|
type BigIntStr = components["schemas"]["BigIntStr"];
|
|
1038
955
|
type DecimalStr = components["schemas"]["DecimalStr"];
|
|
956
|
+
type Bytes32Hex = components["schemas"]["Bytes32Hex"];
|
|
957
|
+
type ValidatorPubkeyStr = components["schemas"]["ValidatorPubkeyStr"];
|
|
1039
958
|
type BigUintStr = components["schemas"]["BigUintStr"];
|
|
959
|
+
type ValidatorPubkeyParam = components["schemas"]["ValidatorPubkeyParam"];
|
|
1040
960
|
type StakeEarningResponse = paths["/v0/stake/{vault}/earnings/{owner}"]["get"]["responses"][200]["content"]["application/json"];
|
|
1041
961
|
type StakeStatsByDayResponse = paths["/v0/stake/{vault}/stats-by-day"]["get"]["responses"][200]["content"]["application/json"];
|
|
1042
|
-
type StakeRewardsReceivedResponse = paths["/v0/stake/{vault}/rewards-received"]["get"]["responses"][200]["content"]["application/json"];
|
|
1043
|
-
type StakeDailyYieldResponse = paths["/v0/stake/{vault}/daily-yield/{owner}"]["get"]["responses"][200]["content"]["application/json"];
|
|
1044
|
-
type StakeDailyAssetResponse = paths["/v0/stake/{vault}/daily-assets/{owner}"]["get"]["responses"][200]["content"]["application/json"];
|
|
1045
962
|
type ValidatorsResponse = paths["/v0/validators"]["get"]["responses"][200]["content"]["application/json"];
|
|
1046
963
|
type ValidatorBlockStatsResponse = paths["/v0/validators/{pubkey}/block-stats"]["get"]["responses"][200]["content"]["application/json"];
|
|
1047
964
|
type ValidatorIncentivesResponse = paths["/v0/validators/{pubkey}/incentives"]["get"]["responses"][200]["content"]["application/json"];
|
|
@@ -1058,4 +975,4 @@ type RewardVaultDistributionsResponse = paths["/v0/reward-vaults/{vault}/distrib
|
|
|
1058
975
|
type RewardVaultsGlobalInfoResponse = paths["/v0/reward-vaults/global-info"]["get"]["responses"][200]["content"]["application/json"];
|
|
1059
976
|
type RewardVaultsUserVaultStakesResponse = paths["/v0/reward-vaults/user-vault-stakes"]["get"]["responses"][200]["content"]["application/json"];
|
|
1060
977
|
|
|
1061
|
-
export type { $defs, ApiGetResponse, ApiSchema, BigIntStr, BigUintStr, BlocksBlockStatsResponse, DecimalStr, EarnDailyAssetResponse, EarnEarningResponse, EarnStatsByDayResponse, EarnTotalAssetsByDayResponse, EvmAddress, HoneySnapshotResponse, HoneyTransactionsLatestResponse, RewardVaultDistributionsResponse, RewardVaultsGlobalInfoResponse, RewardVaultsResponse, RewardVaultsUserVaultStakesResponse,
|
|
978
|
+
export type { $defs, ApiGetResponse, ApiSchema, BigIntStr, BigUintStr, BlocksBlockStatsResponse, Bytes32Hex, DecimalStr, EarnDailyAssetResponse, EarnEarningResponse, EarnStatsByDayResponse, EarnTotalAssetsByDayResponse, EvmAddress, HoneySnapshotResponse, HoneyTransactionsLatestResponse, RewardVaultDistributionsResponse, RewardVaultsGlobalInfoResponse, RewardVaultsResponse, RewardVaultsUserVaultStakesResponse, StakeEarningResponse, StakeStatsByDayResponse, StatsBeraResponse, ValidatorBlockStatsResponse, ValidatorIncentivesResponse, ValidatorPubkeyParam, ValidatorPubkeyStr, ValidatorsResponse, components, operations, paths, webhooks };
|
|
@@ -1895,13 +1895,6 @@ declare enum GqlValidatorBoostOrderDirection {
|
|
|
1895
1895
|
Asc = "asc",
|
|
1896
1896
|
Desc = "desc"
|
|
1897
1897
|
}
|
|
1898
|
-
type GqlValidatorCommissionHistory = {
|
|
1899
|
-
__typename?: 'GqlValidatorCommissionHistory';
|
|
1900
|
-
blockNumber: Scalars['Int']['output'];
|
|
1901
|
-
commissionOnIncentives: Scalars['Int']['output'];
|
|
1902
|
-
timestamp: Scalars['Int']['output'];
|
|
1903
|
-
validatorId: Scalars['Bytes']['output'];
|
|
1904
|
-
};
|
|
1905
1898
|
type GqlValidatorDynamicData = {
|
|
1906
1899
|
__typename?: 'GqlValidatorDynamicData';
|
|
1907
1900
|
activeBoostAmount: Scalars['String']['output'];
|
|
@@ -3607,4 +3600,4 @@ interface PossibleTypesResultData {
|
|
|
3607
3600
|
}
|
|
3608
3601
|
declare const result: PossibleTypesResultData;
|
|
3609
3602
|
|
|
3610
|
-
export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type
|
|
3603
|
+
export { type BendVaultDynamicData, type BendVaultResponse, DynamicData, type DynamicDataFragment, type Exact, GetGlobalLiquidityAndSwapVolume, type GetGlobalLiquidityAndSwapVolumeQuery, type GetGlobalLiquidityAndSwapVolumeQueryVariables, GetPool, GetPoolEvents, type GetPoolEventsQuery, type GetPoolEventsQueryVariables, GetPoolHistoricalData, type GetPoolHistoricalDataQuery, type GetPoolHistoricalDataQueryVariables, type GetPoolQuery, type GetPoolQueryVariables, GetPools, type GetPoolsQuery, type GetPoolsQueryVariables, GetTokenCurrentPrices, type GetTokenCurrentPricesQuery, type GetTokenCurrentPricesQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, GqlPoolAddRemoveEventV3, type GqlPoolAddRemoveEventV3Fragment, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, GqlPoolSwapEventCowAmm, type GqlPoolSwapEventCowAmmFragment, GqlPoolSwapEventV3, type GqlPoolSwapEventV3Fragment, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, MinimalPool, type MinimalPoolFragment, MinimalPoolInList, type MinimalPoolInListFragment, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, PoolEvent, type PoolEventFragment, PoolHistoricalData, type PoolHistoricalDataFragment, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, RewardVault, type RewardVaultFragment, type Scalars, type Token, UserBalance, type UserBalanceFragment, result as default };
|
|
@@ -1995,13 +1995,6 @@ declare enum GqlValidatorBoostOrderDirection {
|
|
|
1995
1995
|
Asc = "asc",
|
|
1996
1996
|
Desc = "desc"
|
|
1997
1997
|
}
|
|
1998
|
-
type GqlValidatorCommissionHistory = {
|
|
1999
|
-
__typename?: 'GqlValidatorCommissionHistory';
|
|
2000
|
-
blockNumber: Scalars['Int']['output'];
|
|
2001
|
-
commissionOnIncentives: Scalars['Int']['output'];
|
|
2002
|
-
timestamp: Scalars['Int']['output'];
|
|
2003
|
-
validatorId: Scalars['Bytes']['output'];
|
|
2004
|
-
};
|
|
2005
1998
|
type GqlValidatorDynamicData = {
|
|
2006
1999
|
__typename?: 'GqlValidatorDynamicData';
|
|
2007
2000
|
activeBoostAmount: Scalars['String']['output'];
|
|
@@ -3595,4 +3588,4 @@ interface PossibleTypesResultData {
|
|
|
3595
3588
|
}
|
|
3596
3589
|
declare const result: PossibleTypesResultData;
|
|
3597
3590
|
|
|
3598
|
-
export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetBendVaults, type GetBendVaultsQuery, type GetBendVaultsQueryVariables, GetHeroEarnVaults, type GetHeroEarnVaultsQuery, type GetHeroEarnVaultsQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type
|
|
3591
|
+
export { ApiMinimalVaultIncentive, type ApiMinimalVaultIncentiveFragment, ApiRewardAllocationWeight, type ApiRewardAllocationWeightFragment, ApiValidator, ApiValidatorBlockUptime, type ApiValidatorBlockUptimeFragment, type ApiValidatorFragment, ApiValidatorInList, type ApiValidatorInListFragment, ApiValidatorIncentive, type ApiValidatorIncentiveFragment, ApiValidatorMinimal, type ApiValidatorMinimalFragment, ApiValidatorRewardAllocationWeight, type ApiValidatorRewardAllocationWeightFragment, ApiVault, type ApiVaultFragment, ApiVaultIncentive, type ApiVaultIncentiveFragment, type BendVaultDynamicData, type BendVaultResponse, type Exact, GetBendVaults, type GetBendVaultsQuery, type GetBendVaultsQueryVariables, GetHeroEarnVaults, type GetHeroEarnVaultsQuery, type GetHeroEarnVaultsQueryVariables, GetRewardVault, type GetRewardVaultQuery, type GetRewardVaultQueryVariables, GetSWberaVaultMetadata, type GetSWberaVaultMetadataQuery, type GetSWberaVaultMetadataQueryVariables, GetSWberaVaultSnapshots, type GetSWberaVaultSnapshotsQuery, type GetSWberaVaultSnapshotsQueryVariables, GetUserValidatorInformation, type GetUserValidatorInformationQuery, type GetUserValidatorInformationQueryVariables, GetUserVaults, type GetUserVaultsQuery, type GetUserVaultsQueryVariables, GetValidator, type GetValidatorQuery, type GetValidatorQueryVariables, GetValidators, type GetValidatorsQuery, type GetValidatorsQueryVariables, GetVaultHistory, type GetVaultHistoryQuery, type GetVaultHistoryQueryVariables, GetVaultValidators, type GetVaultValidatorsQuery, type GetVaultValidatorsQueryVariables, GetVaults, type GetVaultsQuery, type GetVaultsQueryVariables, GlobalData, type GlobalDataQuery, type GlobalDataQueryVariables, type GqlBalancePoolAprItem, type GqlBalancePoolAprSubItem, GqlChain, type GqlDefaultRewardAllocation, type GqlDefaultRewardAllocationWeight, type GqlGlobalInfo, type GqlGraphTraversalConfigInput, type GqlHistoricalTokenPrice, type GqlHistoricalTokenPriceEntry, type GqlIncentive, type GqlLatestSyncedBlocks, type GqlNestedPool, type GqlPagination, type GqlPoolAddRemoveEventV3, type GqlPoolAggregator, type GqlPoolApr, type GqlPoolAprItem, GqlPoolAprItemType, type GqlPoolAprRange, type GqlPoolAprTotal, type GqlPoolAprValue, type GqlPoolBase, type GqlPoolBatchSwap, type GqlPoolBatchSwapPool, type GqlPoolBatchSwapSwap, type GqlPoolComposableStable, type GqlPoolComposableStableNested, type GqlPoolDynamicData, type GqlPoolElement, type GqlPoolEvent, type GqlPoolEventAmount, GqlPoolEventType, GqlPoolEventsDataRange, type GqlPoolEventsFilter, type GqlPoolFilter, GqlPoolFilterCategory, type GqlPoolFx, type GqlPoolGyro, type GqlPoolInvestConfig, type GqlPoolInvestOption, type GqlPoolJoinExit, type GqlPoolJoinExitAmount, type GqlPoolJoinExitFilter, GqlPoolJoinExitType, type GqlPoolLiquidityBootstrapping, type GqlPoolMetaStable, type GqlPoolMinimal, type GqlPoolNestedUnion, GqlPoolNestingType, GqlPoolOrderBy, GqlPoolOrderDirection, type GqlPoolSnapshot, GqlPoolSnapshotDataRange, type GqlPoolStable, type GqlPoolStableComposablePoolData, type GqlPoolSwap, type GqlPoolSwapEventCowAmm, type GqlPoolSwapEventV3, type GqlPoolSwapFilter, type GqlPoolTimePeriod, type GqlPoolToken, type GqlPoolTokenBase, type GqlPoolTokenComposableStable, type GqlPoolTokenComposableStableNestedUnion, type GqlPoolTokenDetail, type GqlPoolTokenDisplay, type GqlPoolTokenExpanded, type GqlPoolTokenUnion, GqlPoolType, type GqlPoolUnion, type GqlPoolUserBalance, type GqlPoolUserSwapVolume, type GqlPoolWeighted, type GqlPoolWithdrawConfig, type GqlPoolWithdrawOption, type GqlPriceImpact, type GqlPriceRateProviderData, type GqlPriceRateProviderUpgradeableComponent, type GqlProtocolMetricsAggregated, type GqlProtocolMetricsChain, type GqlRelicSnapshot, type GqlRewardVault, type GqlRewardVaultDynamicData, type GqlRewardVaultFilter, type GqlRewardVaultIncentive, GqlRewardVaultIncentiveOrderBy, GqlRewardVaultIncentiveOrderDirection, type GqlRewardVaultMetadata, GqlRewardVaultOrderBy, GqlRewardVaultOrderDirection, type GqlRewardVaultSnapshot, GqlRewardVaultSnapshotDataRange, GqlRewardVaultSnapshotResolution, type GqlRewardVaultWhitelistedToken, type GqlSWberaVaultMetadata, GqlSWberaVaultMetadataResolution, type GqlSWberaVaultSnapshot, type GqlSorCallData, type GqlSorGetSwapPaths, type GqlSorGetSwapsResponse, type GqlSorPath, type GqlSorSwap, type GqlSorSwapOptionsInput, type GqlSorSwapRoute, type GqlSorSwapRouteHop, GqlSorSwapType, type GqlSwapCallDataInput, type GqlToken, type GqlTokenAmountHumanReadable, type GqlTokenCandlestickChartDataItem, GqlTokenChartDataRange, type GqlTokenData, type GqlTokenDynamicData, type GqlTokenMutationResult, type GqlTokenPrice, type GqlTokenPriceChartDataItem, GqlTokenType, type GqlUserSwapVolumeFilter, type GqlUserVaultDeposit, type GqlUserVaultDepositMinimal, GqlUserVaultDepositOrderBy, GqlUserVaultDepositOrderDirection, type GqlValidator, type GqlValidatorBlockUptime, GqlValidatorBlockUptimeStatus, type GqlValidatorBoost, GqlValidatorBoostOrderBy, GqlValidatorBoostOrderDirection, type GqlValidatorDynamicData, type GqlValidatorFilter, type GqlValidatorInList, type GqlValidatorIncentive, type GqlValidatorMetadata, GqlValidatorOrderBy, GqlValidatorOrderDirection, type GqlValidatorRewardAllocationWeight, type GqlValidatorStats, GqlVaultSnapshotDataRange, type Hook, type HookData, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type PaginatedRewardVaultIncentivesResponse, type PaginatedRewardVaultsResponse, type PaginatedUserVaultDepositsResponse, type PaginatedValidatorBlockUptimesResponse, type PaginatedValidatorBoostsResponse, type PaginatedValidatorsResponse, type PossibleTypesResultData, type Query, type QueryBendVaultArgs, type QueryHooksArgs, type QueryPolGetActiveIncentivesArgs, type QueryPolGetGlobalInfoArgs, type QueryPolGetRewardVaultArgs, type QueryPolGetRewardVaultSnapshotsArgs, type QueryPolGetRewardVaultsArgs, type QueryPolGetSWberaVaultMetadataArgs, type QueryPolGetSWberaVaultSnapshotsArgs, type QueryPolGetTopVaultDepositsArgs, type QueryPolGetUserVaultDepositsArgs, type QueryPolGetValidatorArgs, type QueryPolGetValidatorBlockUptimesArgs, type QueryPolGetValidatorBoostsArgs, type QueryPolGetValidatorsArgs, type QueryPoolEventsArgs, type QueryPoolGetAggregatorPoolsArgs, type QueryPoolGetEventsArgs, type QueryPoolGetPoolArgs, type QueryPoolGetPoolsArgs, type QueryPoolGetPoolsCountArgs, type QueryPoolGetSnapshotsArgs, type QueryProtocolMetricsAggregatedArgs, type QueryProtocolMetricsChainArgs, type QuerySorGetSwapPathsArgs, type QuerySorGetSwapsArgs, type QueryTokenGetCurrentPriceArgs, type QueryTokenGetCurrentPricesArgs, type QueryTokenGetHistoricalPricesArgs, type QueryTokenGetTokenArgs, type QueryTokenGetTokenDynamicDataArgs, type QueryTokenGetTokensArgs, type QueryTokenGetTokensDynamicDataArgs, type Scalars, type Token, result as default };
|