@wildcatfi/wildcat-sdk 3.0.58-beta → 3.0.59-beta
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/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/gql/graphql.d.ts +902 -18
- package/dist/gql/graphql.d.ts.map +1 -1
- package/dist/gql/graphql.js +191 -10
- package/dist/gql/graphql.js.map +1 -1
- package/package.json +1 -1
package/dist/gql/graphql.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export type Scalars = {
|
|
|
66
66
|
export type SubgraphAccountAccessGranted = {
|
|
67
67
|
__typename: "AccountAccessGranted";
|
|
68
68
|
account: SubgraphLenderHooksAccess;
|
|
69
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
69
70
|
blockNumber: Scalars["Int"]["output"];
|
|
70
71
|
blockTimestamp: Scalars["Int"]["output"];
|
|
71
72
|
credentialTimestamp: Scalars["Int"]["output"];
|
|
@@ -100,6 +101,14 @@ export type SubgraphAccountAccessGranted_Filter = {
|
|
|
100
101
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
101
102
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
102
103
|
and?: InputMaybe<Array<InputMaybe<SubgraphAccountAccessGranted_Filter>>>;
|
|
104
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
105
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
106
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
107
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
108
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
109
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
110
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
111
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
103
112
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
104
113
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
105
114
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -202,6 +211,7 @@ export declare enum SubgraphAccountAccessGranted_OrderBy {
|
|
|
202
211
|
AccountIsBlockedFromDeposits = "account__isBlockedFromDeposits",
|
|
203
212
|
AccountLastApprovalTimestamp = "account__lastApprovalTimestamp",
|
|
204
213
|
AccountLender = "account__lender",
|
|
214
|
+
BlockLogIndex = "blockLogIndex",
|
|
205
215
|
BlockNumber = "blockNumber",
|
|
206
216
|
BlockTimestamp = "blockTimestamp",
|
|
207
217
|
CredentialTimestamp = "credentialTimestamp",
|
|
@@ -228,6 +238,7 @@ export declare enum SubgraphAccountAccessGranted_OrderBy {
|
|
|
228
238
|
export type SubgraphAccountAccessRevoked = {
|
|
229
239
|
__typename: "AccountAccessRevoked";
|
|
230
240
|
account: SubgraphLenderHooksAccess;
|
|
241
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
231
242
|
blockNumber: Scalars["Int"]["output"];
|
|
232
243
|
blockTimestamp: Scalars["Int"]["output"];
|
|
233
244
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -260,6 +271,14 @@ export type SubgraphAccountAccessRevoked_Filter = {
|
|
|
260
271
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
261
272
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
262
273
|
and?: InputMaybe<Array<InputMaybe<SubgraphAccountAccessRevoked_Filter>>>;
|
|
274
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
275
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
276
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
277
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
278
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
279
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
280
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
281
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
263
282
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
264
283
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
265
284
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -333,6 +352,7 @@ export declare enum SubgraphAccountAccessRevoked_OrderBy {
|
|
|
333
352
|
AccountIsBlockedFromDeposits = "account__isBlockedFromDeposits",
|
|
334
353
|
AccountLastApprovalTimestamp = "account__lastApprovalTimestamp",
|
|
335
354
|
AccountLender = "account__lender",
|
|
355
|
+
BlockLogIndex = "blockLogIndex",
|
|
336
356
|
BlockNumber = "blockNumber",
|
|
337
357
|
BlockTimestamp = "blockTimestamp",
|
|
338
358
|
EventIndex = "eventIndex",
|
|
@@ -349,6 +369,7 @@ export declare enum SubgraphAccountAccessRevoked_OrderBy {
|
|
|
349
369
|
export type SubgraphAccountBlockedFromDeposits = {
|
|
350
370
|
__typename: "AccountBlockedFromDeposits";
|
|
351
371
|
account: SubgraphLenderHooksAccess;
|
|
372
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
352
373
|
blockNumber: Scalars["Int"]["output"];
|
|
353
374
|
blockTimestamp: Scalars["Int"]["output"];
|
|
354
375
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -381,6 +402,14 @@ export type SubgraphAccountBlockedFromDeposits_Filter = {
|
|
|
381
402
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
382
403
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
383
404
|
and?: InputMaybe<Array<InputMaybe<SubgraphAccountBlockedFromDeposits_Filter>>>;
|
|
405
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
406
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
407
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
408
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
409
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
410
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
411
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
412
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
384
413
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
385
414
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
386
415
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -454,6 +483,7 @@ export declare enum SubgraphAccountBlockedFromDeposits_OrderBy {
|
|
|
454
483
|
AccountIsBlockedFromDeposits = "account__isBlockedFromDeposits",
|
|
455
484
|
AccountLastApprovalTimestamp = "account__lastApprovalTimestamp",
|
|
456
485
|
AccountLender = "account__lender",
|
|
486
|
+
BlockLogIndex = "blockLogIndex",
|
|
457
487
|
BlockNumber = "blockNumber",
|
|
458
488
|
BlockTimestamp = "blockTimestamp",
|
|
459
489
|
EventIndex = "eventIndex",
|
|
@@ -469,6 +499,7 @@ export declare enum SubgraphAccountBlockedFromDeposits_OrderBy {
|
|
|
469
499
|
}
|
|
470
500
|
export type SubgraphAccountMadeFirstDeposit = {
|
|
471
501
|
__typename: "AccountMadeFirstDeposit";
|
|
502
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
472
503
|
blockNumber: Scalars["Int"]["output"];
|
|
473
504
|
blockTimestamp: Scalars["Int"]["output"];
|
|
474
505
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -482,6 +513,14 @@ export type SubgraphAccountMadeFirstDeposit_Filter = {
|
|
|
482
513
|
/** Filter for the block changed event. */
|
|
483
514
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
484
515
|
and?: InputMaybe<Array<InputMaybe<SubgraphAccountMadeFirstDeposit_Filter>>>;
|
|
516
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
517
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
518
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
519
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
520
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
521
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
522
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
523
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
485
524
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
486
525
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
487
526
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -590,6 +629,7 @@ export type SubgraphAccountMadeFirstDeposit_Filter = {
|
|
|
590
629
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
591
630
|
};
|
|
592
631
|
export declare enum SubgraphAccountMadeFirstDeposit_OrderBy {
|
|
632
|
+
BlockLogIndex = "blockLogIndex",
|
|
593
633
|
BlockNumber = "blockNumber",
|
|
594
634
|
BlockTimestamp = "blockTimestamp",
|
|
595
635
|
EventIndex = "eventIndex",
|
|
@@ -606,6 +646,7 @@ export declare enum SubgraphAccountMadeFirstDeposit_OrderBy {
|
|
|
606
646
|
LenderAccountAddress = "lenderAccount__address",
|
|
607
647
|
LenderAccountId = "lenderAccount__id",
|
|
608
648
|
LenderAccountLastScaleFactor = "lenderAccount__lastScaleFactor",
|
|
649
|
+
LenderAccountLastUpdatedBlockNumber = "lenderAccount__lastUpdatedBlockNumber",
|
|
609
650
|
LenderAccountLastUpdatedTimestamp = "lenderAccount__lastUpdatedTimestamp",
|
|
610
651
|
LenderAccountNumPendingWithdrawalBatches = "lenderAccount__numPendingWithdrawalBatches",
|
|
611
652
|
LenderAccountRole = "lenderAccount__role",
|
|
@@ -634,6 +675,7 @@ export declare enum SubgraphAccountMadeFirstDeposit_OrderBy {
|
|
|
634
675
|
MarketIsDelinquent = "market__isDelinquent",
|
|
635
676
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
636
677
|
MarketIsRegistered = "market__isRegistered",
|
|
678
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
637
679
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
638
680
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
639
681
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -670,6 +712,7 @@ export declare enum SubgraphAccountMadeFirstDeposit_OrderBy {
|
|
|
670
712
|
export type SubgraphAccountUnblockedFromDeposits = {
|
|
671
713
|
__typename: "AccountUnblockedFromDeposits";
|
|
672
714
|
account: SubgraphLenderHooksAccess;
|
|
715
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
673
716
|
blockNumber: Scalars["Int"]["output"];
|
|
674
717
|
blockTimestamp: Scalars["Int"]["output"];
|
|
675
718
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -702,6 +745,14 @@ export type SubgraphAccountUnblockedFromDeposits_Filter = {
|
|
|
702
745
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
703
746
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
704
747
|
and?: InputMaybe<Array<InputMaybe<SubgraphAccountUnblockedFromDeposits_Filter>>>;
|
|
748
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
749
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
750
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
751
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
752
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
753
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
754
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
755
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
705
756
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
706
757
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
707
758
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -775,6 +826,7 @@ export declare enum SubgraphAccountUnblockedFromDeposits_OrderBy {
|
|
|
775
826
|
AccountIsBlockedFromDeposits = "account__isBlockedFromDeposits",
|
|
776
827
|
AccountLastApprovalTimestamp = "account__lastApprovalTimestamp",
|
|
777
828
|
AccountLender = "account__lender",
|
|
829
|
+
BlockLogIndex = "blockLogIndex",
|
|
778
830
|
BlockNumber = "blockNumber",
|
|
779
831
|
BlockTimestamp = "blockTimestamp",
|
|
780
832
|
EventIndex = "eventIndex",
|
|
@@ -795,6 +847,7 @@ export declare enum SubgraphAggregation_Interval {
|
|
|
795
847
|
export type SubgraphAnnualInterestBipsUpdated = {
|
|
796
848
|
__typename: "AnnualInterestBipsUpdated";
|
|
797
849
|
annualInterestBipsUpdatedIndex: Scalars["Int"]["output"];
|
|
850
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
798
851
|
blockNumber: Scalars["Int"]["output"];
|
|
799
852
|
blockTimestamp: Scalars["Int"]["output"];
|
|
800
853
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -816,6 +869,14 @@ export type SubgraphAnnualInterestBipsUpdated_Filter = {
|
|
|
816
869
|
annualInterestBipsUpdatedIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
817
870
|
annualInterestBipsUpdatedIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
818
871
|
annualInterestBipsUpdatedIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
872
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
873
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
874
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
875
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
876
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
877
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
878
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
879
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
819
880
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
820
881
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
821
882
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -899,6 +960,7 @@ export type SubgraphAnnualInterestBipsUpdated_Filter = {
|
|
|
899
960
|
};
|
|
900
961
|
export declare enum SubgraphAnnualInterestBipsUpdated_OrderBy {
|
|
901
962
|
AnnualInterestBipsUpdatedIndex = "annualInterestBipsUpdatedIndex",
|
|
963
|
+
BlockLogIndex = "blockLogIndex",
|
|
902
964
|
BlockNumber = "blockNumber",
|
|
903
965
|
BlockTimestamp = "blockTimestamp",
|
|
904
966
|
EventIndex = "eventIndex",
|
|
@@ -925,6 +987,7 @@ export declare enum SubgraphAnnualInterestBipsUpdated_OrderBy {
|
|
|
925
987
|
MarketIsDelinquent = "market__isDelinquent",
|
|
926
988
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
927
989
|
MarketIsRegistered = "market__isRegistered",
|
|
990
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
928
991
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
929
992
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
930
993
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -962,6 +1025,7 @@ export declare enum SubgraphAnnualInterestBipsUpdated_OrderBy {
|
|
|
962
1025
|
}
|
|
963
1026
|
export type SubgraphApproval = {
|
|
964
1027
|
__typename: "Approval";
|
|
1028
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
965
1029
|
blockNumber: Scalars["Int"]["output"];
|
|
966
1030
|
blockTimestamp: Scalars["Int"]["output"];
|
|
967
1031
|
id: Scalars["ID"]["output"];
|
|
@@ -974,6 +1038,14 @@ export type SubgraphApproval_Filter = {
|
|
|
974
1038
|
/** Filter for the block changed event. */
|
|
975
1039
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
976
1040
|
and?: InputMaybe<Array<InputMaybe<SubgraphApproval_Filter>>>;
|
|
1041
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1042
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1043
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1044
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1045
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1046
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1047
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1048
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
977
1049
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
978
1050
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
979
1051
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1039,6 +1111,7 @@ export type SubgraphApproval_Filter = {
|
|
|
1039
1111
|
value_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1040
1112
|
};
|
|
1041
1113
|
export declare enum SubgraphApproval_OrderBy {
|
|
1114
|
+
BlockLogIndex = "blockLogIndex",
|
|
1042
1115
|
BlockNumber = "blockNumber",
|
|
1043
1116
|
BlockTimestamp = "blockTimestamp",
|
|
1044
1117
|
Id = "id",
|
|
@@ -1252,6 +1325,7 @@ export type SubgraphBlock_Height = {
|
|
|
1252
1325
|
export type SubgraphBorrow = {
|
|
1253
1326
|
__typename: "Borrow";
|
|
1254
1327
|
assetAmount: Scalars["BigInt"]["output"];
|
|
1328
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1255
1329
|
blockNumber: Scalars["Int"]["output"];
|
|
1256
1330
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1257
1331
|
borrowIndex: Scalars["Int"]["output"];
|
|
@@ -1272,6 +1346,14 @@ export type SubgraphBorrow_Filter = {
|
|
|
1272
1346
|
assetAmount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1273
1347
|
assetAmount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1274
1348
|
assetAmount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1349
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1350
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1351
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1352
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1353
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1354
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1355
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1356
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1275
1357
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1276
1358
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1277
1359
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1347,6 +1429,7 @@ export type SubgraphBorrow_Filter = {
|
|
|
1347
1429
|
};
|
|
1348
1430
|
export declare enum SubgraphBorrow_OrderBy {
|
|
1349
1431
|
AssetAmount = "assetAmount",
|
|
1432
|
+
BlockLogIndex = "blockLogIndex",
|
|
1350
1433
|
BlockNumber = "blockNumber",
|
|
1351
1434
|
BlockTimestamp = "blockTimestamp",
|
|
1352
1435
|
BorrowIndex = "borrowIndex",
|
|
@@ -1374,6 +1457,7 @@ export declare enum SubgraphBorrow_OrderBy {
|
|
|
1374
1457
|
MarketIsDelinquent = "market__isDelinquent",
|
|
1375
1458
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
1376
1459
|
MarketIsRegistered = "market__isRegistered",
|
|
1460
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
1377
1461
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
1378
1462
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
1379
1463
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -1409,6 +1493,7 @@ export declare enum SubgraphBorrow_OrderBy {
|
|
|
1409
1493
|
}
|
|
1410
1494
|
export type SubgraphBorrowerRegistrationChange = {
|
|
1411
1495
|
__typename: "BorrowerRegistrationChange";
|
|
1496
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1412
1497
|
blockNumber: Scalars["Int"]["output"];
|
|
1413
1498
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1414
1499
|
id: Scalars["ID"]["output"];
|
|
@@ -1420,6 +1505,14 @@ export type SubgraphBorrowerRegistrationChange_Filter = {
|
|
|
1420
1505
|
/** Filter for the block changed event. */
|
|
1421
1506
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
1422
1507
|
and?: InputMaybe<Array<InputMaybe<SubgraphBorrowerRegistrationChange_Filter>>>;
|
|
1508
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1509
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1510
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1511
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1512
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1513
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1514
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1515
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1423
1516
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1424
1517
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1425
1518
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1482,6 +1575,7 @@ export type SubgraphBorrowerRegistrationChange_Filter = {
|
|
|
1482
1575
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1483
1576
|
};
|
|
1484
1577
|
export declare enum SubgraphBorrowerRegistrationChange_OrderBy {
|
|
1578
|
+
BlockLogIndex = "blockLogIndex",
|
|
1485
1579
|
BlockNumber = "blockNumber",
|
|
1486
1580
|
BlockTimestamp = "blockTimestamp",
|
|
1487
1581
|
Id = "id",
|
|
@@ -1494,6 +1588,7 @@ export declare enum SubgraphBorrowerRegistrationChange_OrderBy {
|
|
|
1494
1588
|
}
|
|
1495
1589
|
export type SubgraphCollateralExchangeApproved = {
|
|
1496
1590
|
__typename: "CollateralExchangeApproved";
|
|
1591
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1497
1592
|
blockNumber: Scalars["Int"]["output"];
|
|
1498
1593
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1499
1594
|
exchange: Scalars["Bytes"]["output"];
|
|
@@ -1505,6 +1600,14 @@ export type SubgraphCollateralExchangeApproved_Filter = {
|
|
|
1505
1600
|
/** Filter for the block changed event. */
|
|
1506
1601
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
1507
1602
|
and?: InputMaybe<Array<InputMaybe<SubgraphCollateralExchangeApproved_Filter>>>;
|
|
1603
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1604
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1605
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1606
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1607
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1608
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1609
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1610
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1508
1611
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1509
1612
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1510
1613
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1573,6 +1676,7 @@ export type SubgraphCollateralExchangeApproved_Filter = {
|
|
|
1573
1676
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1574
1677
|
};
|
|
1575
1678
|
export declare enum SubgraphCollateralExchangeApproved_OrderBy {
|
|
1679
|
+
BlockLogIndex = "blockLogIndex",
|
|
1576
1680
|
BlockNumber = "blockNumber",
|
|
1577
1681
|
BlockTimestamp = "blockTimestamp",
|
|
1578
1682
|
Exchange = "exchange",
|
|
@@ -1583,6 +1687,7 @@ export declare enum SubgraphCollateralExchangeApproved_OrderBy {
|
|
|
1583
1687
|
}
|
|
1584
1688
|
export type SubgraphCollateralExchangeRemoved = {
|
|
1585
1689
|
__typename: "CollateralExchangeRemoved";
|
|
1690
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1586
1691
|
blockNumber: Scalars["Int"]["output"];
|
|
1587
1692
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1588
1693
|
exchange: Scalars["Bytes"]["output"];
|
|
@@ -1594,6 +1699,14 @@ export type SubgraphCollateralExchangeRemoved_Filter = {
|
|
|
1594
1699
|
/** Filter for the block changed event. */
|
|
1595
1700
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
1596
1701
|
and?: InputMaybe<Array<InputMaybe<SubgraphCollateralExchangeRemoved_Filter>>>;
|
|
1702
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1703
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1704
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1705
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1706
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1707
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1708
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1709
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1597
1710
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1598
1711
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1599
1712
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1662,6 +1775,7 @@ export type SubgraphCollateralExchangeRemoved_Filter = {
|
|
|
1662
1775
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1663
1776
|
};
|
|
1664
1777
|
export declare enum SubgraphCollateralExchangeRemoved_OrderBy {
|
|
1778
|
+
BlockLogIndex = "blockLogIndex",
|
|
1665
1779
|
BlockNumber = "blockNumber",
|
|
1666
1780
|
BlockTimestamp = "blockTimestamp",
|
|
1667
1781
|
Exchange = "exchange",
|
|
@@ -1700,6 +1814,7 @@ export type SubgraphControllerAuthorizedLendersArgs = {
|
|
|
1700
1814
|
export type SubgraphControllerMarketsArgs = SubgraphArchControllerMarketsArgs;
|
|
1701
1815
|
export type SubgraphControllerAdded = {
|
|
1702
1816
|
__typename: "ControllerAdded";
|
|
1817
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1703
1818
|
blockNumber: Scalars["Int"]["output"];
|
|
1704
1819
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1705
1820
|
controller: SubgraphController;
|
|
@@ -1711,6 +1826,14 @@ export type SubgraphControllerAdded_Filter = {
|
|
|
1711
1826
|
/** Filter for the block changed event. */
|
|
1712
1827
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
1713
1828
|
and?: InputMaybe<Array<InputMaybe<SubgraphControllerAdded_Filter>>>;
|
|
1829
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1830
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1831
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1832
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1833
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1834
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1835
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1836
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1714
1837
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1715
1838
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1716
1839
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1790,6 +1913,7 @@ export type SubgraphControllerAdded_Filter = {
|
|
|
1790
1913
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1791
1914
|
};
|
|
1792
1915
|
export declare enum SubgraphControllerAdded_OrderBy {
|
|
1916
|
+
BlockLogIndex = "blockLogIndex",
|
|
1793
1917
|
BlockNumber = "blockNumber",
|
|
1794
1918
|
BlockTimestamp = "blockTimestamp",
|
|
1795
1919
|
Controller = "controller",
|
|
@@ -1824,6 +1948,7 @@ export type SubgraphControllerFactory = {
|
|
|
1824
1948
|
export type SubgraphControllerFactoryControllersArgs = SubgraphArchControllerControllersArgs;
|
|
1825
1949
|
export type SubgraphControllerFactoryAdded = {
|
|
1826
1950
|
__typename: "ControllerFactoryAdded";
|
|
1951
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1827
1952
|
blockNumber: Scalars["Int"]["output"];
|
|
1828
1953
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1829
1954
|
controllerFactory: SubgraphControllerFactory;
|
|
@@ -1834,6 +1959,14 @@ export type SubgraphControllerFactoryAdded_Filter = {
|
|
|
1834
1959
|
/** Filter for the block changed event. */
|
|
1835
1960
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
1836
1961
|
and?: InputMaybe<Array<InputMaybe<SubgraphControllerFactoryAdded_Filter>>>;
|
|
1962
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1963
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1964
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1965
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1966
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1967
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1968
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1969
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1837
1970
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1838
1971
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1839
1972
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1892,6 +2025,7 @@ export type SubgraphControllerFactoryAdded_Filter = {
|
|
|
1892
2025
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1893
2026
|
};
|
|
1894
2027
|
export declare enum SubgraphControllerFactoryAdded_OrderBy {
|
|
2028
|
+
BlockLogIndex = "blockLogIndex",
|
|
1895
2029
|
BlockNumber = "blockNumber",
|
|
1896
2030
|
BlockTimestamp = "blockTimestamp",
|
|
1897
2031
|
ControllerFactory = "controllerFactory",
|
|
@@ -1906,6 +2040,7 @@ export declare enum SubgraphControllerFactoryAdded_OrderBy {
|
|
|
1906
2040
|
}
|
|
1907
2041
|
export type SubgraphControllerFactoryRemoved = {
|
|
1908
2042
|
__typename: "ControllerFactoryRemoved";
|
|
2043
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
1909
2044
|
blockNumber: Scalars["Int"]["output"];
|
|
1910
2045
|
blockTimestamp: Scalars["Int"]["output"];
|
|
1911
2046
|
controllerFactory: SubgraphControllerFactory;
|
|
@@ -1916,6 +2051,14 @@ export type SubgraphControllerFactoryRemoved_Filter = {
|
|
|
1916
2051
|
/** Filter for the block changed event. */
|
|
1917
2052
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
1918
2053
|
and?: InputMaybe<Array<InputMaybe<SubgraphControllerFactoryRemoved_Filter>>>;
|
|
2054
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2055
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2056
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2057
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2058
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2059
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2060
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2061
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
1919
2062
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1920
2063
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1921
2064
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -1974,6 +2117,7 @@ export type SubgraphControllerFactoryRemoved_Filter = {
|
|
|
1974
2117
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1975
2118
|
};
|
|
1976
2119
|
export declare enum SubgraphControllerFactoryRemoved_OrderBy {
|
|
2120
|
+
BlockLogIndex = "blockLogIndex",
|
|
1977
2121
|
BlockNumber = "blockNumber",
|
|
1978
2122
|
BlockTimestamp = "blockTimestamp",
|
|
1979
2123
|
ControllerFactory = "controllerFactory",
|
|
@@ -2134,6 +2278,7 @@ export declare enum SubgraphControllerFactory_OrderBy {
|
|
|
2134
2278
|
OriginationFeeAssetSymbol = "originationFeeAsset__symbol",
|
|
2135
2279
|
ProtocolFeeBips = "protocolFeeBips",
|
|
2136
2280
|
Removal = "removal",
|
|
2281
|
+
RemovalBlockLogIndex = "removal__blockLogIndex",
|
|
2137
2282
|
RemovalBlockNumber = "removal__blockNumber",
|
|
2138
2283
|
RemovalBlockTimestamp = "removal__blockTimestamp",
|
|
2139
2284
|
RemovalId = "removal__id",
|
|
@@ -2142,6 +2287,7 @@ export declare enum SubgraphControllerFactory_OrderBy {
|
|
|
2142
2287
|
}
|
|
2143
2288
|
export type SubgraphControllerRemoved = {
|
|
2144
2289
|
__typename: "ControllerRemoved";
|
|
2290
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
2145
2291
|
blockNumber: Scalars["Int"]["output"];
|
|
2146
2292
|
blockTimestamp: Scalars["Int"]["output"];
|
|
2147
2293
|
controller: SubgraphController;
|
|
@@ -2152,6 +2298,14 @@ export type SubgraphControllerRemoved_Filter = {
|
|
|
2152
2298
|
/** Filter for the block changed event. */
|
|
2153
2299
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
2154
2300
|
and?: InputMaybe<Array<InputMaybe<SubgraphControllerRemoved_Filter>>>;
|
|
2301
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2302
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2303
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2304
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2305
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2306
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2307
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2308
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2155
2309
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2156
2310
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2157
2311
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -2210,6 +2364,7 @@ export type SubgraphControllerRemoved_Filter = {
|
|
|
2210
2364
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
2211
2365
|
};
|
|
2212
2366
|
export declare enum SubgraphControllerRemoved_OrderBy {
|
|
2367
|
+
BlockLogIndex = "blockLogIndex",
|
|
2213
2368
|
BlockNumber = "blockNumber",
|
|
2214
2369
|
BlockTimestamp = "blockTimestamp",
|
|
2215
2370
|
Controller = "controller",
|
|
@@ -2320,6 +2475,7 @@ export declare enum SubgraphController_OrderBy {
|
|
|
2320
2475
|
Markets = "markets",
|
|
2321
2476
|
NumMarkets = "numMarkets",
|
|
2322
2477
|
Removal = "removal",
|
|
2478
|
+
RemovalBlockLogIndex = "removal__blockLogIndex",
|
|
2323
2479
|
RemovalBlockNumber = "removal__blockNumber",
|
|
2324
2480
|
RemovalBlockTimestamp = "removal__blockTimestamp",
|
|
2325
2481
|
RemovalId = "removal__id",
|
|
@@ -2328,6 +2484,7 @@ export declare enum SubgraphController_OrderBy {
|
|
|
2328
2484
|
export type SubgraphDebtRepaid = {
|
|
2329
2485
|
__typename: "DebtRepaid";
|
|
2330
2486
|
assetAmount: Scalars["BigInt"]["output"];
|
|
2487
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
2331
2488
|
blockNumber: Scalars["Int"]["output"];
|
|
2332
2489
|
blockTimestamp: Scalars["Int"]["output"];
|
|
2333
2490
|
debtRepaidIndex: Scalars["Int"]["output"];
|
|
@@ -2349,6 +2506,14 @@ export type SubgraphDebtRepaid_Filter = {
|
|
|
2349
2506
|
assetAmount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
2350
2507
|
assetAmount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
2351
2508
|
assetAmount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
2509
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2510
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2511
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2512
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2513
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2514
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2515
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2516
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2352
2517
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2353
2518
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2354
2519
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -2434,6 +2599,7 @@ export type SubgraphDebtRepaid_Filter = {
|
|
|
2434
2599
|
};
|
|
2435
2600
|
export declare enum SubgraphDebtRepaid_OrderBy {
|
|
2436
2601
|
AssetAmount = "assetAmount",
|
|
2602
|
+
BlockLogIndex = "blockLogIndex",
|
|
2437
2603
|
BlockNumber = "blockNumber",
|
|
2438
2604
|
BlockTimestamp = "blockTimestamp",
|
|
2439
2605
|
DebtRepaidIndex = "debtRepaidIndex",
|
|
@@ -2462,6 +2628,7 @@ export declare enum SubgraphDebtRepaid_OrderBy {
|
|
|
2462
2628
|
MarketIsDelinquent = "market__isDelinquent",
|
|
2463
2629
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
2464
2630
|
MarketIsRegistered = "market__isRegistered",
|
|
2631
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
2465
2632
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
2466
2633
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
2467
2634
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -2635,6 +2802,7 @@ export declare enum SubgraphDelinquencyStatusChanged_OrderBy {
|
|
|
2635
2802
|
MarketIsDelinquent = "market__isDelinquent",
|
|
2636
2803
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
2637
2804
|
MarketIsRegistered = "market__isRegistered",
|
|
2805
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
2638
2806
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
2639
2807
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
2640
2808
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -2673,6 +2841,7 @@ export type SubgraphDeposit = {
|
|
|
2673
2841
|
__typename: "Deposit";
|
|
2674
2842
|
account: SubgraphLenderAccount;
|
|
2675
2843
|
assetAmount: Scalars["BigInt"]["output"];
|
|
2844
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
2676
2845
|
blockNumber: Scalars["Int"]["output"];
|
|
2677
2846
|
blockTimestamp: Scalars["Int"]["output"];
|
|
2678
2847
|
depositIndex: Scalars["Int"]["output"];
|
|
@@ -2715,6 +2884,14 @@ export type SubgraphDeposit_Filter = {
|
|
|
2715
2884
|
assetAmount_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
2716
2885
|
assetAmount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
2717
2886
|
assetAmount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
2887
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2888
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2889
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2890
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2891
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2892
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2893
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2894
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2718
2895
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2719
2896
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2720
2897
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -2802,6 +2979,7 @@ export declare enum SubgraphDeposit_OrderBy {
|
|
|
2802
2979
|
AccountAddress = "account__address",
|
|
2803
2980
|
AccountId = "account__id",
|
|
2804
2981
|
AccountLastScaleFactor = "account__lastScaleFactor",
|
|
2982
|
+
AccountLastUpdatedBlockNumber = "account__lastUpdatedBlockNumber",
|
|
2805
2983
|
AccountLastUpdatedTimestamp = "account__lastUpdatedTimestamp",
|
|
2806
2984
|
AccountNumPendingWithdrawalBatches = "account__numPendingWithdrawalBatches",
|
|
2807
2985
|
AccountRole = "account__role",
|
|
@@ -2809,6 +2987,7 @@ export declare enum SubgraphDeposit_OrderBy {
|
|
|
2809
2987
|
AccountTotalDeposited = "account__totalDeposited",
|
|
2810
2988
|
AccountTotalInterestEarned = "account__totalInterestEarned",
|
|
2811
2989
|
AssetAmount = "assetAmount",
|
|
2990
|
+
BlockLogIndex = "blockLogIndex",
|
|
2812
2991
|
BlockNumber = "blockNumber",
|
|
2813
2992
|
BlockTimestamp = "blockTimestamp",
|
|
2814
2993
|
DepositIndex = "depositIndex",
|
|
@@ -2836,6 +3015,7 @@ export declare enum SubgraphDeposit_OrderBy {
|
|
|
2836
3015
|
MarketIsDelinquent = "market__isDelinquent",
|
|
2837
3016
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
2838
3017
|
MarketIsRegistered = "market__isRegistered",
|
|
3018
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
2839
3019
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
2840
3020
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
2841
3021
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -2872,6 +3052,7 @@ export declare enum SubgraphDeposit_OrderBy {
|
|
|
2872
3052
|
}
|
|
2873
3053
|
export type SubgraphDisabledForceBuyBacks = {
|
|
2874
3054
|
__typename: "DisabledForceBuyBacks";
|
|
3055
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
2875
3056
|
blockNumber: Scalars["Int"]["output"];
|
|
2876
3057
|
blockTimestamp: Scalars["Int"]["output"];
|
|
2877
3058
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -2884,6 +3065,14 @@ export type SubgraphDisabledForceBuyBacks_Filter = {
|
|
|
2884
3065
|
/** Filter for the block changed event. */
|
|
2885
3066
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
2886
3067
|
and?: InputMaybe<Array<InputMaybe<SubgraphDisabledForceBuyBacks_Filter>>>;
|
|
3068
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3069
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3070
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3071
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3072
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3073
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3074
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3075
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
2887
3076
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2888
3077
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2889
3078
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -2971,6 +3160,7 @@ export type SubgraphDisabledForceBuyBacks_Filter = {
|
|
|
2971
3160
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
2972
3161
|
};
|
|
2973
3162
|
export declare enum SubgraphDisabledForceBuyBacks_OrderBy {
|
|
3163
|
+
BlockLogIndex = "blockLogIndex",
|
|
2974
3164
|
BlockNumber = "blockNumber",
|
|
2975
3165
|
BlockTimestamp = "blockTimestamp",
|
|
2976
3166
|
EventIndex = "eventIndex",
|
|
@@ -3004,6 +3194,7 @@ export declare enum SubgraphDisabledForceBuyBacks_OrderBy {
|
|
|
3004
3194
|
MarketIsDelinquent = "market__isDelinquent",
|
|
3005
3195
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
3006
3196
|
MarketIsRegistered = "market__isRegistered",
|
|
3197
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
3007
3198
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
3008
3199
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
3009
3200
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -3039,6 +3230,7 @@ export declare enum SubgraphDisabledForceBuyBacks_OrderBy {
|
|
|
3039
3230
|
}
|
|
3040
3231
|
export type SubgraphFeesCollected = {
|
|
3041
3232
|
__typename: "FeesCollected";
|
|
3233
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
3042
3234
|
blockNumber: Scalars["Int"]["output"];
|
|
3043
3235
|
blockTimestamp: Scalars["Int"]["output"];
|
|
3044
3236
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -3052,6 +3244,14 @@ export type SubgraphFeesCollected_Filter = {
|
|
|
3052
3244
|
/** Filter for the block changed event. */
|
|
3053
3245
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
3054
3246
|
and?: InputMaybe<Array<InputMaybe<SubgraphFeesCollected_Filter>>>;
|
|
3247
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3248
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3249
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3250
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3251
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3252
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3253
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3254
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3055
3255
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3056
3256
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3057
3257
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -3134,6 +3334,7 @@ export type SubgraphFeesCollected_Filter = {
|
|
|
3134
3334
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
3135
3335
|
};
|
|
3136
3336
|
export declare enum SubgraphFeesCollected_OrderBy {
|
|
3337
|
+
BlockLogIndex = "blockLogIndex",
|
|
3137
3338
|
BlockNumber = "blockNumber",
|
|
3138
3339
|
BlockTimestamp = "blockTimestamp",
|
|
3139
3340
|
EventIndex = "eventIndex",
|
|
@@ -3162,6 +3363,7 @@ export declare enum SubgraphFeesCollected_OrderBy {
|
|
|
3162
3363
|
MarketIsDelinquent = "market__isDelinquent",
|
|
3163
3364
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
3164
3365
|
MarketIsRegistered = "market__isRegistered",
|
|
3366
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
3165
3367
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
3166
3368
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
3167
3369
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -3197,6 +3399,7 @@ export declare enum SubgraphFeesCollected_OrderBy {
|
|
|
3197
3399
|
}
|
|
3198
3400
|
export type SubgraphFixedTermUpdated = {
|
|
3199
3401
|
__typename: "FixedTermUpdated";
|
|
3402
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
3200
3403
|
blockNumber: Scalars["Int"]["output"];
|
|
3201
3404
|
blockTimestamp: Scalars["Int"]["output"];
|
|
3202
3405
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -3212,6 +3415,14 @@ export type SubgraphFixedTermUpdated_Filter = {
|
|
|
3212
3415
|
/** Filter for the block changed event. */
|
|
3213
3416
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
3214
3417
|
and?: InputMaybe<Array<InputMaybe<SubgraphFixedTermUpdated_Filter>>>;
|
|
3418
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3419
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3420
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3421
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3422
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3423
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3424
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3425
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3215
3426
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3216
3427
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3217
3428
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -3323,6 +3534,7 @@ export type SubgraphFixedTermUpdated_Filter = {
|
|
|
3323
3534
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
3324
3535
|
};
|
|
3325
3536
|
export declare enum SubgraphFixedTermUpdated_OrderBy {
|
|
3537
|
+
BlockLogIndex = "blockLogIndex",
|
|
3326
3538
|
BlockNumber = "blockNumber",
|
|
3327
3539
|
BlockTimestamp = "blockTimestamp",
|
|
3328
3540
|
EventIndex = "eventIndex",
|
|
@@ -3357,6 +3569,7 @@ export declare enum SubgraphFixedTermUpdated_OrderBy {
|
|
|
3357
3569
|
MarketIsDelinquent = "market__isDelinquent",
|
|
3358
3570
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
3359
3571
|
MarketIsRegistered = "market__isRegistered",
|
|
3572
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
3360
3573
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
3361
3574
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
3362
3575
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -3395,6 +3608,7 @@ export declare enum SubgraphFixedTermUpdated_OrderBy {
|
|
|
3395
3608
|
export type SubgraphForceBuyBack = {
|
|
3396
3609
|
__typename: "ForceBuyBack";
|
|
3397
3610
|
account: SubgraphLenderAccount;
|
|
3611
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
3398
3612
|
blockNumber: Scalars["Int"]["output"];
|
|
3399
3613
|
blockTimestamp: Scalars["Int"]["output"];
|
|
3400
3614
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -3431,6 +3645,14 @@ export type SubgraphForceBuyBack_Filter = {
|
|
|
3431
3645
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
3432
3646
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
3433
3647
|
and?: InputMaybe<Array<InputMaybe<SubgraphForceBuyBack_Filter>>>;
|
|
3648
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3649
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3650
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3651
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3652
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3653
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3654
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3655
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
3434
3656
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3435
3657
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3436
3658
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -3534,12 +3756,14 @@ export declare enum SubgraphForceBuyBack_OrderBy {
|
|
|
3534
3756
|
AccountAddress = "account__address",
|
|
3535
3757
|
AccountId = "account__id",
|
|
3536
3758
|
AccountLastScaleFactor = "account__lastScaleFactor",
|
|
3759
|
+
AccountLastUpdatedBlockNumber = "account__lastUpdatedBlockNumber",
|
|
3537
3760
|
AccountLastUpdatedTimestamp = "account__lastUpdatedTimestamp",
|
|
3538
3761
|
AccountNumPendingWithdrawalBatches = "account__numPendingWithdrawalBatches",
|
|
3539
3762
|
AccountRole = "account__role",
|
|
3540
3763
|
AccountScaledBalance = "account__scaledBalance",
|
|
3541
3764
|
AccountTotalDeposited = "account__totalDeposited",
|
|
3542
3765
|
AccountTotalInterestEarned = "account__totalInterestEarned",
|
|
3766
|
+
BlockLogIndex = "blockLogIndex",
|
|
3543
3767
|
BlockNumber = "blockNumber",
|
|
3544
3768
|
BlockTimestamp = "blockTimestamp",
|
|
3545
3769
|
EventIndex = "eventIndex",
|
|
@@ -3567,6 +3791,7 @@ export declare enum SubgraphForceBuyBack_OrderBy {
|
|
|
3567
3791
|
MarketIsDelinquent = "market__isDelinquent",
|
|
3568
3792
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
3569
3793
|
MarketIsRegistered = "market__isRegistered",
|
|
3794
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
3570
3795
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
3571
3796
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
3572
3797
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -3809,6 +4034,7 @@ export declare enum SubgraphHooksConfig_OrderBy {
|
|
|
3809
4034
|
MarketIsDelinquent = "market__isDelinquent",
|
|
3810
4035
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
3811
4036
|
MarketIsRegistered = "market__isRegistered",
|
|
4037
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
3812
4038
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
3813
4039
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
3814
4040
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -4036,6 +4262,7 @@ export type SubgraphHooksInstanceRoleProviderUpdatedRecordsArgs = {
|
|
|
4036
4262
|
};
|
|
4037
4263
|
export type SubgraphHooksInstanceDeployed = {
|
|
4038
4264
|
__typename: "HooksInstanceDeployed";
|
|
4265
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
4039
4266
|
blockNumber: Scalars["Int"]["output"];
|
|
4040
4267
|
blockTimestamp: Scalars["Int"]["output"];
|
|
4041
4268
|
hooks: SubgraphHooksInstance;
|
|
@@ -4047,6 +4274,14 @@ export type SubgraphHooksInstanceDeployed_Filter = {
|
|
|
4047
4274
|
/** Filter for the block changed event. */
|
|
4048
4275
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
4049
4276
|
and?: InputMaybe<Array<InputMaybe<SubgraphHooksInstanceDeployed_Filter>>>;
|
|
4277
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4278
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4279
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4280
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4281
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4282
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4283
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4284
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4050
4285
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4051
4286
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4052
4287
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -4126,6 +4361,7 @@ export type SubgraphHooksInstanceDeployed_Filter = {
|
|
|
4126
4361
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
4127
4362
|
};
|
|
4128
4363
|
export declare enum SubgraphHooksInstanceDeployed_OrderBy {
|
|
4364
|
+
BlockLogIndex = "blockLogIndex",
|
|
4129
4365
|
BlockNumber = "blockNumber",
|
|
4130
4366
|
BlockTimestamp = "blockTimestamp",
|
|
4131
4367
|
Hooks = "hooks",
|
|
@@ -4298,6 +4534,7 @@ export declare enum SubgraphHooksKind {
|
|
|
4298
4534
|
}
|
|
4299
4535
|
export type SubgraphHooksNameUpdated = {
|
|
4300
4536
|
__typename: "HooksNameUpdated";
|
|
4537
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
4301
4538
|
blockNumber: Scalars["Int"]["output"];
|
|
4302
4539
|
blockTimestamp: Scalars["Int"]["output"];
|
|
4303
4540
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -4311,6 +4548,14 @@ export type SubgraphHooksNameUpdated_Filter = {
|
|
|
4311
4548
|
/** Filter for the block changed event. */
|
|
4312
4549
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
4313
4550
|
and?: InputMaybe<Array<InputMaybe<SubgraphHooksNameUpdated_Filter>>>;
|
|
4551
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4552
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4553
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4554
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4555
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4556
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4557
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4558
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4314
4559
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4315
4560
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4316
4561
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -4417,6 +4662,7 @@ export type SubgraphHooksNameUpdated_Filter = {
|
|
|
4417
4662
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
4418
4663
|
};
|
|
4419
4664
|
export declare enum SubgraphHooksNameUpdated_OrderBy {
|
|
4665
|
+
BlockLogIndex = "blockLogIndex",
|
|
4420
4666
|
BlockNumber = "blockNumber",
|
|
4421
4667
|
BlockTimestamp = "blockTimestamp",
|
|
4422
4668
|
EventIndex = "eventIndex",
|
|
@@ -4453,6 +4699,7 @@ export type SubgraphHooksTemplateDeployedInstancesArgs = {
|
|
|
4453
4699
|
};
|
|
4454
4700
|
export type SubgraphHooksTemplateAdded = {
|
|
4455
4701
|
__typename: "HooksTemplateAdded";
|
|
4702
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
4456
4703
|
blockNumber: Scalars["Int"]["output"];
|
|
4457
4704
|
blockTimestamp: Scalars["Int"]["output"];
|
|
4458
4705
|
feeRecipient: Scalars["Bytes"]["output"];
|
|
@@ -4467,6 +4714,14 @@ export type SubgraphHooksTemplateAdded_Filter = {
|
|
|
4467
4714
|
/** Filter for the block changed event. */
|
|
4468
4715
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
4469
4716
|
and?: InputMaybe<Array<InputMaybe<SubgraphHooksTemplateAdded_Filter>>>;
|
|
4717
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4718
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4719
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4720
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4721
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4722
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4723
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4724
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4470
4725
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4471
4726
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4472
4727
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -4572,6 +4827,7 @@ export type SubgraphHooksTemplateAdded_Filter = {
|
|
|
4572
4827
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
4573
4828
|
};
|
|
4574
4829
|
export declare enum SubgraphHooksTemplateAdded_OrderBy {
|
|
4830
|
+
BlockLogIndex = "blockLogIndex",
|
|
4575
4831
|
BlockNumber = "blockNumber",
|
|
4576
4832
|
BlockTimestamp = "blockTimestamp",
|
|
4577
4833
|
FeeRecipient = "feeRecipient",
|
|
@@ -4596,6 +4852,7 @@ export declare enum SubgraphHooksTemplateAdded_OrderBy {
|
|
|
4596
4852
|
}
|
|
4597
4853
|
export type SubgraphHooksTemplateDisabled = {
|
|
4598
4854
|
__typename: "HooksTemplateDisabled";
|
|
4855
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
4599
4856
|
blockNumber: Scalars["Int"]["output"];
|
|
4600
4857
|
blockTimestamp: Scalars["Int"]["output"];
|
|
4601
4858
|
hooksTemplate: SubgraphHooksTemplate;
|
|
@@ -4606,6 +4863,14 @@ export type SubgraphHooksTemplateDisabled_Filter = {
|
|
|
4606
4863
|
/** Filter for the block changed event. */
|
|
4607
4864
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
4608
4865
|
and?: InputMaybe<Array<InputMaybe<SubgraphHooksTemplateDisabled_Filter>>>;
|
|
4866
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4867
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4868
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4869
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4870
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4871
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4872
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4873
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4609
4874
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4610
4875
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4611
4876
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -4664,6 +4929,7 @@ export type SubgraphHooksTemplateDisabled_Filter = {
|
|
|
4664
4929
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
4665
4930
|
};
|
|
4666
4931
|
export declare enum SubgraphHooksTemplateDisabled_OrderBy {
|
|
4932
|
+
BlockLogIndex = "blockLogIndex",
|
|
4667
4933
|
BlockNumber = "blockNumber",
|
|
4668
4934
|
BlockTimestamp = "blockTimestamp",
|
|
4669
4935
|
HooksTemplate = "hooksTemplate",
|
|
@@ -4678,6 +4944,7 @@ export declare enum SubgraphHooksTemplateDisabled_OrderBy {
|
|
|
4678
4944
|
}
|
|
4679
4945
|
export type SubgraphHooksTemplateFeesUpdated = {
|
|
4680
4946
|
__typename: "HooksTemplateFeesUpdated";
|
|
4947
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
4681
4948
|
blockNumber: Scalars["Int"]["output"];
|
|
4682
4949
|
blockTimestamp: Scalars["Int"]["output"];
|
|
4683
4950
|
feeRecipient: Scalars["Bytes"]["output"];
|
|
@@ -4692,6 +4959,14 @@ export type SubgraphHooksTemplateFeesUpdated_Filter = {
|
|
|
4692
4959
|
/** Filter for the block changed event. */
|
|
4693
4960
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
4694
4961
|
and?: InputMaybe<Array<InputMaybe<SubgraphHooksTemplateFeesUpdated_Filter>>>;
|
|
4962
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4963
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4964
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4965
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4966
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4967
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4968
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4969
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
4695
4970
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4696
4971
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4697
4972
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -4797,6 +5072,7 @@ export type SubgraphHooksTemplateFeesUpdated_Filter = {
|
|
|
4797
5072
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
4798
5073
|
};
|
|
4799
5074
|
export declare enum SubgraphHooksTemplateFeesUpdated_OrderBy {
|
|
5075
|
+
BlockLogIndex = "blockLogIndex",
|
|
4800
5076
|
BlockNumber = "blockNumber",
|
|
4801
5077
|
BlockTimestamp = "blockTimestamp",
|
|
4802
5078
|
FeeRecipient = "feeRecipient",
|
|
@@ -5045,6 +5321,7 @@ export declare enum SubgraphKnownLenderStatus_OrderBy {
|
|
|
5045
5321
|
LenderAccountAddress = "lenderAccount__address",
|
|
5046
5322
|
LenderAccountId = "lenderAccount__id",
|
|
5047
5323
|
LenderAccountLastScaleFactor = "lenderAccount__lastScaleFactor",
|
|
5324
|
+
LenderAccountLastUpdatedBlockNumber = "lenderAccount__lastUpdatedBlockNumber",
|
|
5048
5325
|
LenderAccountLastUpdatedTimestamp = "lenderAccount__lastUpdatedTimestamp",
|
|
5049
5326
|
LenderAccountNumPendingWithdrawalBatches = "lenderAccount__numPendingWithdrawalBatches",
|
|
5050
5327
|
LenderAccountRole = "lenderAccount__role",
|
|
@@ -5073,6 +5350,7 @@ export declare enum SubgraphKnownLenderStatus_OrderBy {
|
|
|
5073
5350
|
MarketIsDelinquent = "market__isDelinquent",
|
|
5074
5351
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
5075
5352
|
MarketIsRegistered = "market__isRegistered",
|
|
5353
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
5076
5354
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
5077
5355
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
5078
5356
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -5116,6 +5394,7 @@ export type SubgraphLenderAccount = {
|
|
|
5116
5394
|
interestAccrualRecords: SubgraphLenderInterestAccrued[];
|
|
5117
5395
|
knownLenderStatus?: Maybe<SubgraphKnownLenderStatus>;
|
|
5118
5396
|
lastScaleFactor: Scalars["BigInt"]["output"];
|
|
5397
|
+
lastUpdatedBlockNumber: Scalars["Int"]["output"];
|
|
5119
5398
|
lastUpdatedTimestamp: Scalars["Int"]["output"];
|
|
5120
5399
|
market: SubgraphMarket;
|
|
5121
5400
|
numPendingWithdrawalBatches: Scalars["Int"]["output"];
|
|
@@ -5229,6 +5508,14 @@ export type SubgraphLenderAccount_Filter = {
|
|
|
5229
5508
|
lastScaleFactor_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5230
5509
|
lastScaleFactor_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
5231
5510
|
lastScaleFactor_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
5511
|
+
lastUpdatedBlockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5512
|
+
lastUpdatedBlockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5513
|
+
lastUpdatedBlockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5514
|
+
lastUpdatedBlockNumber_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
5515
|
+
lastUpdatedBlockNumber_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5516
|
+
lastUpdatedBlockNumber_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5517
|
+
lastUpdatedBlockNumber_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5518
|
+
lastUpdatedBlockNumber_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
5232
5519
|
lastUpdatedTimestamp?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5233
5520
|
lastUpdatedTimestamp_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5234
5521
|
lastUpdatedTimestamp_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -5318,6 +5605,7 @@ export declare enum SubgraphLenderAccount_OrderBy {
|
|
|
5318
5605
|
KnownLenderStatus = "knownLenderStatus",
|
|
5319
5606
|
KnownLenderStatusId = "knownLenderStatus__id",
|
|
5320
5607
|
LastScaleFactor = "lastScaleFactor",
|
|
5608
|
+
LastUpdatedBlockNumber = "lastUpdatedBlockNumber",
|
|
5321
5609
|
LastUpdatedTimestamp = "lastUpdatedTimestamp",
|
|
5322
5610
|
Market = "market",
|
|
5323
5611
|
MarketAnnualInterestBips = "market__annualInterestBips",
|
|
@@ -5341,6 +5629,7 @@ export declare enum SubgraphLenderAccount_OrderBy {
|
|
|
5341
5629
|
MarketIsDelinquent = "market__isDelinquent",
|
|
5342
5630
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
5343
5631
|
MarketIsRegistered = "market__isRegistered",
|
|
5632
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
5344
5633
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
5345
5634
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
5346
5635
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -5401,6 +5690,7 @@ export type SubgraphLenderAuthorizationChange = {
|
|
|
5401
5690
|
__typename: "LenderAuthorizationChange";
|
|
5402
5691
|
authorization: SubgraphLenderAuthorization;
|
|
5403
5692
|
authorized: Scalars["Boolean"]["output"];
|
|
5693
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
5404
5694
|
blockNumber: Scalars["Int"]["output"];
|
|
5405
5695
|
blockTimestamp: Scalars["Int"]["output"];
|
|
5406
5696
|
controller: SubgraphController;
|
|
@@ -5437,6 +5727,14 @@ export type SubgraphLenderAuthorizationChange_Filter = {
|
|
|
5437
5727
|
authorized_in?: InputMaybe<Array<Scalars["Boolean"]["input"]>>;
|
|
5438
5728
|
authorized_not?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5439
5729
|
authorized_not_in?: InputMaybe<Array<Scalars["Boolean"]["input"]>>;
|
|
5730
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5731
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5732
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5733
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
5734
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5735
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5736
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5737
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
5440
5738
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5441
5739
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5442
5740
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -5511,6 +5809,7 @@ export declare enum SubgraphLenderAuthorizationChange_OrderBy {
|
|
|
5511
5809
|
AuthorizationId = "authorization__id",
|
|
5512
5810
|
AuthorizationLender = "authorization__lender",
|
|
5513
5811
|
Authorized = "authorized",
|
|
5812
|
+
BlockLogIndex = "blockLogIndex",
|
|
5514
5813
|
BlockNumber = "blockNumber",
|
|
5515
5814
|
BlockTimestamp = "blockTimestamp",
|
|
5516
5815
|
Controller = "controller",
|
|
@@ -5861,6 +6160,7 @@ export declare enum SubgraphLenderInterestAccrued_OrderBy {
|
|
|
5861
6160
|
AccountAddress = "account__address",
|
|
5862
6161
|
AccountId = "account__id",
|
|
5863
6162
|
AccountLastScaleFactor = "account__lastScaleFactor",
|
|
6163
|
+
AccountLastUpdatedBlockNumber = "account__lastUpdatedBlockNumber",
|
|
5864
6164
|
AccountLastUpdatedTimestamp = "account__lastUpdatedTimestamp",
|
|
5865
6165
|
AccountNumPendingWithdrawalBatches = "account__numPendingWithdrawalBatches",
|
|
5866
6166
|
AccountRole = "account__role",
|
|
@@ -5893,6 +6193,7 @@ export declare enum SubgraphLenderInterestAccrued_OrderBy {
|
|
|
5893
6193
|
MarketIsDelinquent = "market__isDelinquent",
|
|
5894
6194
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
5895
6195
|
MarketIsRegistered = "market__isRegistered",
|
|
6196
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
5896
6197
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
5897
6198
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
5898
6199
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -6068,6 +6369,7 @@ export declare enum SubgraphLenderWithdrawalStatus_OrderBy {
|
|
|
6068
6369
|
AccountAddress = "account__address",
|
|
6069
6370
|
AccountId = "account__id",
|
|
6070
6371
|
AccountLastScaleFactor = "account__lastScaleFactor",
|
|
6372
|
+
AccountLastUpdatedBlockNumber = "account__lastUpdatedBlockNumber",
|
|
6071
6373
|
AccountLastUpdatedTimestamp = "account__lastUpdatedTimestamp",
|
|
6072
6374
|
AccountNumPendingWithdrawalBatches = "account__numPendingWithdrawalBatches",
|
|
6073
6375
|
AccountRole = "account__role",
|
|
@@ -6103,6 +6405,7 @@ export declare enum SubgraphLenderWithdrawalStatus_OrderBy {
|
|
|
6103
6405
|
}
|
|
6104
6406
|
export type SubgraphLiquidatorApproved = {
|
|
6105
6407
|
__typename: "LiquidatorApproved";
|
|
6408
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
6106
6409
|
blockNumber: Scalars["Int"]["output"];
|
|
6107
6410
|
blockTimestamp: Scalars["Int"]["output"];
|
|
6108
6411
|
factory: SubgraphSimpleCollateralFactory;
|
|
@@ -6114,6 +6417,14 @@ export type SubgraphLiquidatorApproved_Filter = {
|
|
|
6114
6417
|
/** Filter for the block changed event. */
|
|
6115
6418
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
6116
6419
|
and?: InputMaybe<Array<InputMaybe<SubgraphLiquidatorApproved_Filter>>>;
|
|
6420
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6421
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6422
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6423
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6424
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6425
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6426
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6427
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6117
6428
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6118
6429
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6119
6430
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -6182,6 +6493,7 @@ export type SubgraphLiquidatorApproved_Filter = {
|
|
|
6182
6493
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
6183
6494
|
};
|
|
6184
6495
|
export declare enum SubgraphLiquidatorApproved_OrderBy {
|
|
6496
|
+
BlockLogIndex = "blockLogIndex",
|
|
6185
6497
|
BlockNumber = "blockNumber",
|
|
6186
6498
|
BlockTimestamp = "blockTimestamp",
|
|
6187
6499
|
Factory = "factory",
|
|
@@ -6192,6 +6504,7 @@ export declare enum SubgraphLiquidatorApproved_OrderBy {
|
|
|
6192
6504
|
}
|
|
6193
6505
|
export type SubgraphLiquidatorRemoved = {
|
|
6194
6506
|
__typename: "LiquidatorRemoved";
|
|
6507
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
6195
6508
|
blockNumber: Scalars["Int"]["output"];
|
|
6196
6509
|
blockTimestamp: Scalars["Int"]["output"];
|
|
6197
6510
|
factory: SubgraphSimpleCollateralFactory;
|
|
@@ -6203,6 +6516,14 @@ export type SubgraphLiquidatorRemoved_Filter = {
|
|
|
6203
6516
|
/** Filter for the block changed event. */
|
|
6204
6517
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
6205
6518
|
and?: InputMaybe<Array<InputMaybe<SubgraphLiquidatorRemoved_Filter>>>;
|
|
6519
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6520
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6521
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6522
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6523
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6524
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6525
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6526
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6206
6527
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6207
6528
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6208
6529
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -6271,6 +6592,7 @@ export type SubgraphLiquidatorRemoved_Filter = {
|
|
|
6271
6592
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
6272
6593
|
};
|
|
6273
6594
|
export declare enum SubgraphLiquidatorRemoved_OrderBy {
|
|
6595
|
+
BlockLogIndex = "blockLogIndex",
|
|
6274
6596
|
BlockNumber = "blockNumber",
|
|
6275
6597
|
BlockTimestamp = "blockTimestamp",
|
|
6276
6598
|
Factory = "factory",
|
|
@@ -6293,6 +6615,7 @@ export type SubgraphMarket = {
|
|
|
6293
6615
|
collateralContracts: SubgraphSimpleCollateralContract[];
|
|
6294
6616
|
controller?: Maybe<SubgraphController>;
|
|
6295
6617
|
createdAt: Scalars["Int"]["output"];
|
|
6618
|
+
dailyStats: SubgraphMarketDailyStats[];
|
|
6296
6619
|
debtRepaidIndex: Scalars["Int"]["output"];
|
|
6297
6620
|
decimals: Scalars["Int"]["output"];
|
|
6298
6621
|
delinquencyFeeBips: Scalars["Int"]["output"];
|
|
@@ -6320,6 +6643,7 @@ export type SubgraphMarket = {
|
|
|
6320
6643
|
isDelinquent: Scalars["Boolean"]["output"];
|
|
6321
6644
|
isIncurringPenalties: Scalars["Boolean"]["output"];
|
|
6322
6645
|
isRegistered: Scalars["Boolean"]["output"];
|
|
6646
|
+
lastInterestAccruedBlockNumber: Scalars["Int"]["output"];
|
|
6323
6647
|
lastInterestAccruedTimestamp: Scalars["Int"]["output"];
|
|
6324
6648
|
lenders: SubgraphLenderAccount[];
|
|
6325
6649
|
marketClosedEvent?: Maybe<SubgraphMarketClosed>;
|
|
@@ -6390,6 +6714,13 @@ export type SubgraphMarketCollateralContractsArgs = {
|
|
|
6390
6714
|
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6391
6715
|
where?: InputMaybe<SubgraphSimpleCollateralContract_Filter>;
|
|
6392
6716
|
};
|
|
6717
|
+
export type SubgraphMarketDailyStatsArgs = {
|
|
6718
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6719
|
+
orderBy?: InputMaybe<SubgraphMarketDailyStats_OrderBy>;
|
|
6720
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
6721
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6722
|
+
where?: InputMaybe<SubgraphMarketDailyStats_Filter>;
|
|
6723
|
+
};
|
|
6393
6724
|
export type SubgraphMarketDelinquencyRecordsArgs = {
|
|
6394
6725
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6395
6726
|
orderBy?: InputMaybe<SubgraphDelinquencyStatusChanged_OrderBy>;
|
|
@@ -6472,6 +6803,7 @@ export type SubgraphMarketWithdrawalBatchesArgs = {
|
|
|
6472
6803
|
export type SubgraphMarketWithdrawalRequestRecordsArgs = SubgraphLenderWithdrawalStatusRequestsArgs;
|
|
6473
6804
|
export type SubgraphMarketAdded = {
|
|
6474
6805
|
__typename: "MarketAdded";
|
|
6806
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
6475
6807
|
blockNumber: Scalars["Int"]["output"];
|
|
6476
6808
|
blockTimestamp: Scalars["Int"]["output"];
|
|
6477
6809
|
controller: SubgraphController;
|
|
@@ -6483,6 +6815,14 @@ export type SubgraphMarketAdded_Filter = {
|
|
|
6483
6815
|
/** Filter for the block changed event. */
|
|
6484
6816
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
6485
6817
|
and?: InputMaybe<Array<InputMaybe<SubgraphMarketAdded_Filter>>>;
|
|
6818
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6819
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6820
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6821
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6822
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6823
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6824
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6825
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6486
6826
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6487
6827
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6488
6828
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -6562,6 +6902,7 @@ export type SubgraphMarketAdded_Filter = {
|
|
|
6562
6902
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
6563
6903
|
};
|
|
6564
6904
|
export declare enum SubgraphMarketAdded_OrderBy {
|
|
6905
|
+
BlockLogIndex = "blockLogIndex",
|
|
6565
6906
|
BlockNumber = "blockNumber",
|
|
6566
6907
|
BlockTimestamp = "blockTimestamp",
|
|
6567
6908
|
Controller = "controller",
|
|
@@ -6592,6 +6933,7 @@ export declare enum SubgraphMarketAdded_OrderBy {
|
|
|
6592
6933
|
MarketIsDelinquent = "market__isDelinquent",
|
|
6593
6934
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
6594
6935
|
MarketIsRegistered = "market__isRegistered",
|
|
6936
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
6595
6937
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
6596
6938
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
6597
6939
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -6627,6 +6969,7 @@ export declare enum SubgraphMarketAdded_OrderBy {
|
|
|
6627
6969
|
}
|
|
6628
6970
|
export type SubgraphMarketClosed = {
|
|
6629
6971
|
__typename: "MarketClosed";
|
|
6972
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
6630
6973
|
blockNumber: Scalars["Int"]["output"];
|
|
6631
6974
|
blockTimestamp: Scalars["Int"]["output"];
|
|
6632
6975
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -6639,6 +6982,14 @@ export type SubgraphMarketClosed_Filter = {
|
|
|
6639
6982
|
/** Filter for the block changed event. */
|
|
6640
6983
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
6641
6984
|
and?: InputMaybe<Array<InputMaybe<SubgraphMarketClosed_Filter>>>;
|
|
6985
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6986
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6987
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6988
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6989
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6990
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6991
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6992
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6642
6993
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6643
6994
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6644
6995
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -6713,6 +7064,7 @@ export type SubgraphMarketClosed_Filter = {
|
|
|
6713
7064
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
6714
7065
|
};
|
|
6715
7066
|
export declare enum SubgraphMarketClosed_OrderBy {
|
|
7067
|
+
BlockLogIndex = "blockLogIndex",
|
|
6716
7068
|
BlockNumber = "blockNumber",
|
|
6717
7069
|
BlockTimestamp = "blockTimestamp",
|
|
6718
7070
|
EventIndex = "eventIndex",
|
|
@@ -6739,6 +7091,7 @@ export declare enum SubgraphMarketClosed_OrderBy {
|
|
|
6739
7091
|
MarketIsDelinquent = "market__isDelinquent",
|
|
6740
7092
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
6741
7093
|
MarketIsRegistered = "market__isRegistered",
|
|
7094
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
6742
7095
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
6743
7096
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
6744
7097
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -6773,8 +7126,176 @@ export declare enum SubgraphMarketClosed_OrderBy {
|
|
|
6773
7126
|
Timestamp = "timestamp",
|
|
6774
7127
|
TransactionHash = "transactionHash"
|
|
6775
7128
|
}
|
|
7129
|
+
export type SubgraphMarketDailyStats = {
|
|
7130
|
+
__typename: "MarketDailyStats";
|
|
7131
|
+
endTimestamp: Scalars["Int"]["output"];
|
|
7132
|
+
id: Scalars["ID"]["output"];
|
|
7133
|
+
market: SubgraphMarket;
|
|
7134
|
+
startTimestamp: Scalars["Int"]["output"];
|
|
7135
|
+
totalBorrowed: Scalars["BigInt"]["output"];
|
|
7136
|
+
totalDeposited: Scalars["BigInt"]["output"];
|
|
7137
|
+
totalRepaid: Scalars["BigInt"]["output"];
|
|
7138
|
+
totalWithdrawalsExecuted: Scalars["BigInt"]["output"];
|
|
7139
|
+
totalWithdrawalsRequested: Scalars["BigInt"]["output"];
|
|
7140
|
+
};
|
|
7141
|
+
export type SubgraphMarketDailyStats_Filter = {
|
|
7142
|
+
/** Filter for the block changed event. */
|
|
7143
|
+
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
7144
|
+
and?: InputMaybe<Array<InputMaybe<SubgraphMarketDailyStats_Filter>>>;
|
|
7145
|
+
endTimestamp?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7146
|
+
endTimestamp_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7147
|
+
endTimestamp_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7148
|
+
endTimestamp_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7149
|
+
endTimestamp_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7150
|
+
endTimestamp_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7151
|
+
endTimestamp_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7152
|
+
endTimestamp_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7153
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
7154
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
7155
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
7156
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
7157
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
7158
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
7159
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
7160
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
7161
|
+
market?: InputMaybe<Scalars["String"]["input"]>;
|
|
7162
|
+
market_?: InputMaybe<SubgraphMarket_Filter>;
|
|
7163
|
+
market_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
7164
|
+
market_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
7165
|
+
market_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
7166
|
+
market_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
7167
|
+
market_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
7168
|
+
market_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
7169
|
+
market_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
7170
|
+
market_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
7171
|
+
market_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
7172
|
+
market_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
7173
|
+
market_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
7174
|
+
market_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
7175
|
+
market_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
7176
|
+
market_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
7177
|
+
market_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
7178
|
+
market_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
7179
|
+
market_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
7180
|
+
market_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
7181
|
+
market_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
7182
|
+
or?: InputMaybe<Array<InputMaybe<SubgraphMarketDailyStats_Filter>>>;
|
|
7183
|
+
startTimestamp?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7184
|
+
startTimestamp_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7185
|
+
startTimestamp_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7186
|
+
startTimestamp_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7187
|
+
startTimestamp_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7188
|
+
startTimestamp_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7189
|
+
startTimestamp_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7190
|
+
startTimestamp_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7191
|
+
totalBorrowed?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7192
|
+
totalBorrowed_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7193
|
+
totalBorrowed_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7194
|
+
totalBorrowed_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7195
|
+
totalBorrowed_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7196
|
+
totalBorrowed_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7197
|
+
totalBorrowed_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7198
|
+
totalBorrowed_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7199
|
+
totalDeposited?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7200
|
+
totalDeposited_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7201
|
+
totalDeposited_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7202
|
+
totalDeposited_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7203
|
+
totalDeposited_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7204
|
+
totalDeposited_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7205
|
+
totalDeposited_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7206
|
+
totalDeposited_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7207
|
+
totalRepaid?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7208
|
+
totalRepaid_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7209
|
+
totalRepaid_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7210
|
+
totalRepaid_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7211
|
+
totalRepaid_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7212
|
+
totalRepaid_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7213
|
+
totalRepaid_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7214
|
+
totalRepaid_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7215
|
+
totalWithdrawalsExecuted?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7216
|
+
totalWithdrawalsExecuted_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7217
|
+
totalWithdrawalsExecuted_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7218
|
+
totalWithdrawalsExecuted_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7219
|
+
totalWithdrawalsExecuted_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7220
|
+
totalWithdrawalsExecuted_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7221
|
+
totalWithdrawalsExecuted_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7222
|
+
totalWithdrawalsExecuted_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7223
|
+
totalWithdrawalsRequested?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7224
|
+
totalWithdrawalsRequested_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7225
|
+
totalWithdrawalsRequested_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7226
|
+
totalWithdrawalsRequested_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7227
|
+
totalWithdrawalsRequested_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7228
|
+
totalWithdrawalsRequested_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7229
|
+
totalWithdrawalsRequested_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
7230
|
+
totalWithdrawalsRequested_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7231
|
+
};
|
|
7232
|
+
export declare enum SubgraphMarketDailyStats_OrderBy {
|
|
7233
|
+
EndTimestamp = "endTimestamp",
|
|
7234
|
+
Id = "id",
|
|
7235
|
+
Market = "market",
|
|
7236
|
+
MarketAnnualInterestBips = "market__annualInterestBips",
|
|
7237
|
+
MarketAnnualInterestBipsUpdatedIndex = "market__annualInterestBipsUpdatedIndex",
|
|
7238
|
+
MarketBorrowIndex = "market__borrowIndex",
|
|
7239
|
+
MarketBorrower = "market__borrower",
|
|
7240
|
+
MarketCreatedAt = "market__createdAt",
|
|
7241
|
+
MarketDebtRepaidIndex = "market__debtRepaidIndex",
|
|
7242
|
+
MarketDecimals = "market__decimals",
|
|
7243
|
+
MarketDelinquencyFeeBips = "market__delinquencyFeeBips",
|
|
7244
|
+
MarketDelinquencyGracePeriod = "market__delinquencyGracePeriod",
|
|
7245
|
+
MarketDelinquencyStatusChangedIndex = "market__delinquencyStatusChangedIndex",
|
|
7246
|
+
MarketDepositIndex = "market__depositIndex",
|
|
7247
|
+
MarketEventIndex = "market__eventIndex",
|
|
7248
|
+
MarketFeeRecipient = "market__feeRecipient",
|
|
7249
|
+
MarketFeesCollectedIndex = "market__feesCollectedIndex",
|
|
7250
|
+
MarketFixedTermUpdatedIndex = "market__fixedTermUpdatedIndex",
|
|
7251
|
+
MarketForceBuyBackIndex = "market__forceBuyBackIndex",
|
|
7252
|
+
MarketId = "market__id",
|
|
7253
|
+
MarketIsClosed = "market__isClosed",
|
|
7254
|
+
MarketIsDelinquent = "market__isDelinquent",
|
|
7255
|
+
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
7256
|
+
MarketIsRegistered = "market__isRegistered",
|
|
7257
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
7258
|
+
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
7259
|
+
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
7260
|
+
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
7261
|
+
MarketMinimumDepositUpdatedIndex = "market__minimumDepositUpdatedIndex",
|
|
7262
|
+
MarketName = "market__name",
|
|
7263
|
+
MarketNormalizedUnclaimedWithdrawals = "market__normalizedUnclaimedWithdrawals",
|
|
7264
|
+
MarketNumCollateralContracts = "market__numCollateralContracts",
|
|
7265
|
+
MarketOriginalAnnualInterestBips = "market__originalAnnualInterestBips",
|
|
7266
|
+
MarketOriginalReserveRatioBips = "market__originalReserveRatioBips",
|
|
7267
|
+
MarketPendingProtocolFees = "market__pendingProtocolFees",
|
|
7268
|
+
MarketPendingWithdrawalExpiry = "market__pendingWithdrawalExpiry",
|
|
7269
|
+
MarketProtocolFeeBips = "market__protocolFeeBips",
|
|
7270
|
+
MarketProtocolFeeBipsUpdatedIndex = "market__protocolFeeBipsUpdatedIndex",
|
|
7271
|
+
MarketReserveRatioBips = "market__reserveRatioBips",
|
|
7272
|
+
MarketScaleFactor = "market__scaleFactor",
|
|
7273
|
+
MarketScaledPendingWithdrawals = "market__scaledPendingWithdrawals",
|
|
7274
|
+
MarketScaledTotalSupply = "market__scaledTotalSupply",
|
|
7275
|
+
MarketSentinel = "market__sentinel",
|
|
7276
|
+
MarketSymbol = "market__symbol",
|
|
7277
|
+
MarketTemporaryReserveRatioActive = "market__temporaryReserveRatioActive",
|
|
7278
|
+
MarketTemporaryReserveRatioExpiry = "market__temporaryReserveRatioExpiry",
|
|
7279
|
+
MarketTimeDelinquent = "market__timeDelinquent",
|
|
7280
|
+
MarketTotalBaseInterestAccrued = "market__totalBaseInterestAccrued",
|
|
7281
|
+
MarketTotalBorrowed = "market__totalBorrowed",
|
|
7282
|
+
MarketTotalDelinquencyFeesAccrued = "market__totalDelinquencyFeesAccrued",
|
|
7283
|
+
MarketTotalDeposited = "market__totalDeposited",
|
|
7284
|
+
MarketTotalProtocolFeesAccrued = "market__totalProtocolFeesAccrued",
|
|
7285
|
+
MarketTotalRepaid = "market__totalRepaid",
|
|
7286
|
+
MarketVersion = "market__version",
|
|
7287
|
+
MarketWithdrawalBatchDuration = "market__withdrawalBatchDuration",
|
|
7288
|
+
MarketWithdrawalRequestsIndex = "market__withdrawalRequestsIndex",
|
|
7289
|
+
StartTimestamp = "startTimestamp",
|
|
7290
|
+
TotalBorrowed = "totalBorrowed",
|
|
7291
|
+
TotalDeposited = "totalDeposited",
|
|
7292
|
+
TotalRepaid = "totalRepaid",
|
|
7293
|
+
TotalWithdrawalsExecuted = "totalWithdrawalsExecuted",
|
|
7294
|
+
TotalWithdrawalsRequested = "totalWithdrawalsRequested"
|
|
7295
|
+
}
|
|
6776
7296
|
export type SubgraphMarketDeployed = {
|
|
6777
7297
|
__typename: "MarketDeployed";
|
|
7298
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
6778
7299
|
blockNumber: Scalars["Int"]["output"];
|
|
6779
7300
|
blockTimestamp: Scalars["Int"]["output"];
|
|
6780
7301
|
id: Scalars["ID"]["output"];
|
|
@@ -6785,6 +7306,14 @@ export type SubgraphMarketDeployed_Filter = {
|
|
|
6785
7306
|
/** Filter for the block changed event. */
|
|
6786
7307
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
6787
7308
|
and?: InputMaybe<Array<InputMaybe<SubgraphMarketDeployed_Filter>>>;
|
|
7309
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7310
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7311
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7312
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7313
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7314
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7315
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7316
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6788
7317
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6789
7318
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6790
7319
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -6843,6 +7372,7 @@ export type SubgraphMarketDeployed_Filter = {
|
|
|
6843
7372
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
6844
7373
|
};
|
|
6845
7374
|
export declare enum SubgraphMarketDeployed_OrderBy {
|
|
7375
|
+
BlockLogIndex = "blockLogIndex",
|
|
6846
7376
|
BlockNumber = "blockNumber",
|
|
6847
7377
|
BlockTimestamp = "blockTimestamp",
|
|
6848
7378
|
Id = "id",
|
|
@@ -6868,6 +7398,7 @@ export declare enum SubgraphMarketDeployed_OrderBy {
|
|
|
6868
7398
|
MarketIsDelinquent = "market__isDelinquent",
|
|
6869
7399
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
6870
7400
|
MarketIsRegistered = "market__isRegistered",
|
|
7401
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
6871
7402
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
6872
7403
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
6873
7404
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -6905,6 +7436,7 @@ export type SubgraphMarketInterestAccrued = {
|
|
|
6905
7436
|
__typename: "MarketInterestAccrued";
|
|
6906
7437
|
baseInterestAccrued: Scalars["BigInt"]["output"];
|
|
6907
7438
|
baseInterestRay: Scalars["BigInt"]["output"];
|
|
7439
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
6908
7440
|
blockNumber: Scalars["Int"]["output"];
|
|
6909
7441
|
blockTimestamp: Scalars["Int"]["output"];
|
|
6910
7442
|
delinquencyFeeRay: Scalars["BigInt"]["output"];
|
|
@@ -6937,6 +7469,14 @@ export type SubgraphMarketInterestAccrued_Filter = {
|
|
|
6937
7469
|
baseInterestRay_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
6938
7470
|
baseInterestRay_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
6939
7471
|
baseInterestRay_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
7472
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7473
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7474
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7475
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7476
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7477
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7478
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7479
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
6940
7480
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6941
7481
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
6942
7482
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7045,6 +7585,7 @@ export type SubgraphMarketInterestAccrued_Filter = {
|
|
|
7045
7585
|
export declare enum SubgraphMarketInterestAccrued_OrderBy {
|
|
7046
7586
|
BaseInterestAccrued = "baseInterestAccrued",
|
|
7047
7587
|
BaseInterestRay = "baseInterestRay",
|
|
7588
|
+
BlockLogIndex = "blockLogIndex",
|
|
7048
7589
|
BlockNumber = "blockNumber",
|
|
7049
7590
|
BlockTimestamp = "blockTimestamp",
|
|
7050
7591
|
DelinquencyFeeRay = "delinquencyFeeRay",
|
|
@@ -7073,6 +7614,7 @@ export declare enum SubgraphMarketInterestAccrued_OrderBy {
|
|
|
7073
7614
|
MarketIsDelinquent = "market__isDelinquent",
|
|
7074
7615
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
7075
7616
|
MarketIsRegistered = "market__isRegistered",
|
|
7617
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
7076
7618
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
7077
7619
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
7078
7620
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -7111,6 +7653,7 @@ export declare enum SubgraphMarketInterestAccrued_OrderBy {
|
|
|
7111
7653
|
}
|
|
7112
7654
|
export type SubgraphMarketRemoved = {
|
|
7113
7655
|
__typename: "MarketRemoved";
|
|
7656
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
7114
7657
|
blockNumber: Scalars["Int"]["output"];
|
|
7115
7658
|
blockTimestamp: Scalars["Int"]["output"];
|
|
7116
7659
|
id: Scalars["ID"]["output"];
|
|
@@ -7121,6 +7664,14 @@ export type SubgraphMarketRemoved_Filter = {
|
|
|
7121
7664
|
/** Filter for the block changed event. */
|
|
7122
7665
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
7123
7666
|
and?: InputMaybe<Array<InputMaybe<SubgraphMarketRemoved_Filter>>>;
|
|
7667
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7668
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7669
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7670
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7671
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7672
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7673
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7674
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7124
7675
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7125
7676
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7126
7677
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7179,6 +7730,7 @@ export type SubgraphMarketRemoved_Filter = {
|
|
|
7179
7730
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
7180
7731
|
};
|
|
7181
7732
|
export declare enum SubgraphMarketRemoved_OrderBy {
|
|
7733
|
+
BlockLogIndex = "blockLogIndex",
|
|
7182
7734
|
BlockNumber = "blockNumber",
|
|
7183
7735
|
BlockTimestamp = "blockTimestamp",
|
|
7184
7736
|
Id = "id",
|
|
@@ -7204,6 +7756,7 @@ export declare enum SubgraphMarketRemoved_OrderBy {
|
|
|
7204
7756
|
MarketIsDelinquent = "market__isDelinquent",
|
|
7205
7757
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
7206
7758
|
MarketIsRegistered = "market__isRegistered",
|
|
7759
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
7207
7760
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
7208
7761
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
7209
7762
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -7354,6 +7907,7 @@ export type SubgraphMarket_Filter = {
|
|
|
7354
7907
|
createdAt_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7355
7908
|
createdAt_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7356
7909
|
createdAt_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7910
|
+
dailyStats_?: InputMaybe<SubgraphMarketDailyStats_Filter>;
|
|
7357
7911
|
debtRepaidIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7358
7912
|
debtRepaidIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7359
7913
|
debtRepaidIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7539,6 +8093,14 @@ export type SubgraphMarket_Filter = {
|
|
|
7539
8093
|
isRegistered_in?: InputMaybe<Array<Scalars["Boolean"]["input"]>>;
|
|
7540
8094
|
isRegistered_not?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
7541
8095
|
isRegistered_not_in?: InputMaybe<Array<Scalars["Boolean"]["input"]>>;
|
|
8096
|
+
lastInterestAccruedBlockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8097
|
+
lastInterestAccruedBlockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8098
|
+
lastInterestAccruedBlockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8099
|
+
lastInterestAccruedBlockNumber_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8100
|
+
lastInterestAccruedBlockNumber_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8101
|
+
lastInterestAccruedBlockNumber_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8102
|
+
lastInterestAccruedBlockNumber_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8103
|
+
lastInterestAccruedBlockNumber_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7542
8104
|
lastInterestAccruedTimestamp?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7543
8105
|
lastInterestAccruedTimestamp_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7544
8106
|
lastInterestAccruedTimestamp_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -7841,6 +8403,7 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
7841
8403
|
ControllerIsRegistered = "controller__isRegistered",
|
|
7842
8404
|
ControllerNumMarkets = "controller__numMarkets",
|
|
7843
8405
|
CreatedAt = "createdAt",
|
|
8406
|
+
DailyStats = "dailyStats",
|
|
7844
8407
|
DebtRepaidIndex = "debtRepaidIndex",
|
|
7845
8408
|
Decimals = "decimals",
|
|
7846
8409
|
DelinquencyFeeBips = "delinquencyFeeBips",
|
|
@@ -7848,6 +8411,7 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
7848
8411
|
DelinquencyRecords = "delinquencyRecords",
|
|
7849
8412
|
DelinquencyStatusChangedIndex = "delinquencyStatusChangedIndex",
|
|
7850
8413
|
DeployedEvent = "deployedEvent",
|
|
8414
|
+
DeployedEventBlockLogIndex = "deployedEvent__blockLogIndex",
|
|
7851
8415
|
DeployedEventBlockNumber = "deployedEvent__blockNumber",
|
|
7852
8416
|
DeployedEventBlockTimestamp = "deployedEvent__blockTimestamp",
|
|
7853
8417
|
DeployedEventId = "deployedEvent__id",
|
|
@@ -7861,6 +8425,7 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
7861
8425
|
FixedTermUpdatedIndex = "fixedTermUpdatedIndex",
|
|
7862
8426
|
FixedTermUpdatedRecords = "fixedTermUpdatedRecords",
|
|
7863
8427
|
ForceBuyBackDisabledRecord = "forceBuyBackDisabledRecord",
|
|
8428
|
+
ForceBuyBackDisabledRecordBlockLogIndex = "forceBuyBackDisabledRecord__blockLogIndex",
|
|
7864
8429
|
ForceBuyBackDisabledRecordBlockNumber = "forceBuyBackDisabledRecord__blockNumber",
|
|
7865
8430
|
ForceBuyBackDisabledRecordBlockTimestamp = "forceBuyBackDisabledRecord__blockTimestamp",
|
|
7866
8431
|
ForceBuyBackDisabledRecordEventIndex = "forceBuyBackDisabledRecord__eventIndex",
|
|
@@ -7908,9 +8473,11 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
7908
8473
|
IsDelinquent = "isDelinquent",
|
|
7909
8474
|
IsIncurringPenalties = "isIncurringPenalties",
|
|
7910
8475
|
IsRegistered = "isRegistered",
|
|
8476
|
+
LastInterestAccruedBlockNumber = "lastInterestAccruedBlockNumber",
|
|
7911
8477
|
LastInterestAccruedTimestamp = "lastInterestAccruedTimestamp",
|
|
7912
8478
|
Lenders = "lenders",
|
|
7913
8479
|
MarketClosedEvent = "marketClosedEvent",
|
|
8480
|
+
MarketClosedEventBlockLogIndex = "marketClosedEvent__blockLogIndex",
|
|
7914
8481
|
MarketClosedEventBlockNumber = "marketClosedEvent__blockNumber",
|
|
7915
8482
|
MarketClosedEventBlockTimestamp = "marketClosedEvent__blockTimestamp",
|
|
7916
8483
|
MarketClosedEventEventIndex = "marketClosedEvent__eventIndex",
|
|
@@ -7933,6 +8500,7 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
7933
8500
|
ProtocolFeeBipsUpdatedIndex = "protocolFeeBipsUpdatedIndex",
|
|
7934
8501
|
ProtocolFeeBipsUpdatedRecords = "protocolFeeBipsUpdatedRecords",
|
|
7935
8502
|
Removal = "removal",
|
|
8503
|
+
RemovalBlockLogIndex = "removal__blockLogIndex",
|
|
7936
8504
|
RemovalBlockNumber = "removal__blockNumber",
|
|
7937
8505
|
RemovalBlockTimestamp = "removal__blockTimestamp",
|
|
7938
8506
|
RemovalId = "removal__id",
|
|
@@ -7962,6 +8530,7 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
7962
8530
|
}
|
|
7963
8531
|
export type SubgraphMaxTotalSupplyUpdated = {
|
|
7964
8532
|
__typename: "MaxTotalSupplyUpdated";
|
|
8533
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
7965
8534
|
blockNumber: Scalars["Int"]["output"];
|
|
7966
8535
|
blockTimestamp: Scalars["Int"]["output"];
|
|
7967
8536
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -7976,6 +8545,14 @@ export type SubgraphMaxTotalSupplyUpdated_Filter = {
|
|
|
7976
8545
|
/** Filter for the block changed event. */
|
|
7977
8546
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
7978
8547
|
and?: InputMaybe<Array<InputMaybe<SubgraphMaxTotalSupplyUpdated_Filter>>>;
|
|
8548
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8549
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8550
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8551
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8552
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8553
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8554
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8555
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
7979
8556
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7980
8557
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7981
8558
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8066,6 +8643,7 @@ export type SubgraphMaxTotalSupplyUpdated_Filter = {
|
|
|
8066
8643
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8067
8644
|
};
|
|
8068
8645
|
export declare enum SubgraphMaxTotalSupplyUpdated_OrderBy {
|
|
8646
|
+
BlockLogIndex = "blockLogIndex",
|
|
8069
8647
|
BlockNumber = "blockNumber",
|
|
8070
8648
|
BlockTimestamp = "blockTimestamp",
|
|
8071
8649
|
EventIndex = "eventIndex",
|
|
@@ -8092,6 +8670,7 @@ export declare enum SubgraphMaxTotalSupplyUpdated_OrderBy {
|
|
|
8092
8670
|
MarketIsDelinquent = "market__isDelinquent",
|
|
8093
8671
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
8094
8672
|
MarketIsRegistered = "market__isRegistered",
|
|
8673
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
8095
8674
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
8096
8675
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
8097
8676
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -8130,6 +8709,7 @@ export declare enum SubgraphMaxTotalSupplyUpdated_OrderBy {
|
|
|
8130
8709
|
}
|
|
8131
8710
|
export type SubgraphMinimumDepositUpdated = {
|
|
8132
8711
|
__typename: "MinimumDepositUpdated";
|
|
8712
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8133
8713
|
blockNumber: Scalars["Int"]["output"];
|
|
8134
8714
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8135
8715
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -8145,6 +8725,14 @@ export type SubgraphMinimumDepositUpdated_Filter = {
|
|
|
8145
8725
|
/** Filter for the block changed event. */
|
|
8146
8726
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
8147
8727
|
and?: InputMaybe<Array<InputMaybe<SubgraphMinimumDepositUpdated_Filter>>>;
|
|
8728
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8729
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8730
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8731
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8732
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8733
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8734
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8735
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8148
8736
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8149
8737
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8150
8738
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8256,6 +8844,7 @@ export type SubgraphMinimumDepositUpdated_Filter = {
|
|
|
8256
8844
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8257
8845
|
};
|
|
8258
8846
|
export declare enum SubgraphMinimumDepositUpdated_OrderBy {
|
|
8847
|
+
BlockLogIndex = "blockLogIndex",
|
|
8259
8848
|
BlockNumber = "blockNumber",
|
|
8260
8849
|
BlockTimestamp = "blockTimestamp",
|
|
8261
8850
|
EventIndex = "eventIndex",
|
|
@@ -8289,6 +8878,7 @@ export declare enum SubgraphMinimumDepositUpdated_OrderBy {
|
|
|
8289
8878
|
MarketIsDelinquent = "market__isDelinquent",
|
|
8290
8879
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
8291
8880
|
MarketIsRegistered = "market__isRegistered",
|
|
8881
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
8292
8882
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
8293
8883
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
8294
8884
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -8327,6 +8917,7 @@ export declare enum SubgraphMinimumDepositUpdated_OrderBy {
|
|
|
8327
8917
|
}
|
|
8328
8918
|
export type SubgraphNewController = {
|
|
8329
8919
|
__typename: "NewController";
|
|
8920
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8330
8921
|
blockNumber: Scalars["Int"]["output"];
|
|
8331
8922
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8332
8923
|
borrower: Scalars["Bytes"]["output"];
|
|
@@ -8340,6 +8931,14 @@ export type SubgraphNewController_Filter = {
|
|
|
8340
8931
|
/** Filter for the block changed event. */
|
|
8341
8932
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
8342
8933
|
and?: InputMaybe<Array<InputMaybe<SubgraphNewController_Filter>>>;
|
|
8934
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8935
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8936
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8937
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8938
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8939
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8940
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8941
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8343
8942
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8344
8943
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8345
8944
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8437,6 +9036,7 @@ export type SubgraphNewController_Filter = {
|
|
|
8437
9036
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8438
9037
|
};
|
|
8439
9038
|
export declare enum SubgraphNewController_OrderBy {
|
|
9039
|
+
BlockLogIndex = "blockLogIndex",
|
|
8440
9040
|
BlockNumber = "blockNumber",
|
|
8441
9041
|
BlockTimestamp = "blockTimestamp",
|
|
8442
9042
|
Borrower = "borrower",
|
|
@@ -8450,6 +9050,7 @@ export type SubgraphNewSanctionsEscrow = {
|
|
|
8450
9050
|
__typename: "NewSanctionsEscrow";
|
|
8451
9051
|
account: Scalars["Bytes"]["output"];
|
|
8452
9052
|
asset: Scalars["Bytes"]["output"];
|
|
9053
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8453
9054
|
blockNumber: Scalars["Int"]["output"];
|
|
8454
9055
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8455
9056
|
borrower: Scalars["Bytes"]["output"];
|
|
@@ -8480,6 +9081,14 @@ export type SubgraphNewSanctionsEscrow_Filter = {
|
|
|
8480
9081
|
asset_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
8481
9082
|
asset_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
8482
9083
|
asset_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
9084
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9085
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9086
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9087
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
9088
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9089
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9090
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9091
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8483
9092
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8484
9093
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8485
9094
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8529,6 +9138,7 @@ export type SubgraphNewSanctionsEscrow_Filter = {
|
|
|
8529
9138
|
export declare enum SubgraphNewSanctionsEscrow_OrderBy {
|
|
8530
9139
|
Account = "account",
|
|
8531
9140
|
Asset = "asset",
|
|
9141
|
+
BlockLogIndex = "blockLogIndex",
|
|
8532
9142
|
BlockNumber = "blockNumber",
|
|
8533
9143
|
BlockTimestamp = "blockTimestamp",
|
|
8534
9144
|
Borrower = "borrower",
|
|
@@ -8542,6 +9152,7 @@ export declare enum SubgraphOrderDirection {
|
|
|
8542
9152
|
}
|
|
8543
9153
|
export type SubgraphOwnershipHandoverCanceled = {
|
|
8544
9154
|
__typename: "OwnershipHandoverCanceled";
|
|
9155
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8545
9156
|
blockNumber: Scalars["Int"]["output"];
|
|
8546
9157
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8547
9158
|
id: Scalars["ID"]["output"];
|
|
@@ -8552,6 +9163,14 @@ export type SubgraphOwnershipHandoverCanceled_Filter = {
|
|
|
8552
9163
|
/** Filter for the block changed event. */
|
|
8553
9164
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
8554
9165
|
and?: InputMaybe<Array<InputMaybe<SubgraphOwnershipHandoverCanceled_Filter>>>;
|
|
9166
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9167
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9168
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9169
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
9170
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9171
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9172
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9173
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8555
9174
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8556
9175
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8557
9176
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8599,6 +9218,7 @@ export type SubgraphOwnershipHandoverCanceled_Filter = {
|
|
|
8599
9218
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8600
9219
|
};
|
|
8601
9220
|
export declare enum SubgraphOwnershipHandoverCanceled_OrderBy {
|
|
9221
|
+
BlockLogIndex = "blockLogIndex",
|
|
8602
9222
|
BlockNumber = "blockNumber",
|
|
8603
9223
|
BlockTimestamp = "blockTimestamp",
|
|
8604
9224
|
Id = "id",
|
|
@@ -8607,6 +9227,7 @@ export declare enum SubgraphOwnershipHandoverCanceled_OrderBy {
|
|
|
8607
9227
|
}
|
|
8608
9228
|
export type SubgraphOwnershipHandoverRequested = {
|
|
8609
9229
|
__typename: "OwnershipHandoverRequested";
|
|
9230
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8610
9231
|
blockNumber: Scalars["Int"]["output"];
|
|
8611
9232
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8612
9233
|
id: Scalars["ID"]["output"];
|
|
@@ -8617,6 +9238,14 @@ export type SubgraphOwnershipHandoverRequested_Filter = {
|
|
|
8617
9238
|
/** Filter for the block changed event. */
|
|
8618
9239
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
8619
9240
|
and?: InputMaybe<Array<InputMaybe<SubgraphOwnershipHandoverRequested_Filter>>>;
|
|
9241
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9242
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9243
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9244
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
9245
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9246
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9247
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9248
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8620
9249
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8621
9250
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8622
9251
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8664,6 +9293,7 @@ export type SubgraphOwnershipHandoverRequested_Filter = {
|
|
|
8664
9293
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8665
9294
|
};
|
|
8666
9295
|
export declare enum SubgraphOwnershipHandoverRequested_OrderBy {
|
|
9296
|
+
BlockLogIndex = "blockLogIndex",
|
|
8667
9297
|
BlockNumber = "blockNumber",
|
|
8668
9298
|
BlockTimestamp = "blockTimestamp",
|
|
8669
9299
|
Id = "id",
|
|
@@ -8672,6 +9302,7 @@ export declare enum SubgraphOwnershipHandoverRequested_OrderBy {
|
|
|
8672
9302
|
}
|
|
8673
9303
|
export type SubgraphOwnershipTransferred = {
|
|
8674
9304
|
__typename: "OwnershipTransferred";
|
|
9305
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8675
9306
|
blockNumber: Scalars["Int"]["output"];
|
|
8676
9307
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8677
9308
|
id: Scalars["ID"]["output"];
|
|
@@ -8683,6 +9314,14 @@ export type SubgraphOwnershipTransferred_Filter = {
|
|
|
8683
9314
|
/** Filter for the block changed event. */
|
|
8684
9315
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
8685
9316
|
and?: InputMaybe<Array<InputMaybe<SubgraphOwnershipTransferred_Filter>>>;
|
|
9317
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9318
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9319
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9320
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
9321
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9322
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9323
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9324
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8686
9325
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8687
9326
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8688
9327
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8740,6 +9379,7 @@ export type SubgraphOwnershipTransferred_Filter = {
|
|
|
8740
9379
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8741
9380
|
};
|
|
8742
9381
|
export declare enum SubgraphOwnershipTransferred_OrderBy {
|
|
9382
|
+
BlockLogIndex = "blockLogIndex",
|
|
8743
9383
|
BlockNumber = "blockNumber",
|
|
8744
9384
|
BlockTimestamp = "blockTimestamp",
|
|
8745
9385
|
Id = "id",
|
|
@@ -8870,6 +9510,7 @@ export declare enum SubgraphParameterConstraints_OrderBy {
|
|
|
8870
9510
|
}
|
|
8871
9511
|
export type SubgraphProtocolFeeBipsUpdated = {
|
|
8872
9512
|
__typename: "ProtocolFeeBipsUpdated";
|
|
9513
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
8873
9514
|
blockNumber: Scalars["Int"]["output"];
|
|
8874
9515
|
blockTimestamp: Scalars["Int"]["output"];
|
|
8875
9516
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -8884,6 +9525,14 @@ export type SubgraphProtocolFeeBipsUpdated_Filter = {
|
|
|
8884
9525
|
/** Filter for the block changed event. */
|
|
8885
9526
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
8886
9527
|
and?: InputMaybe<Array<InputMaybe<SubgraphProtocolFeeBipsUpdated_Filter>>>;
|
|
9528
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9529
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9530
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9531
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
9532
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9533
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9534
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9535
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8887
9536
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8888
9537
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8889
9538
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -8974,6 +9623,7 @@ export type SubgraphProtocolFeeBipsUpdated_Filter = {
|
|
|
8974
9623
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
8975
9624
|
};
|
|
8976
9625
|
export declare enum SubgraphProtocolFeeBipsUpdated_OrderBy {
|
|
9626
|
+
BlockLogIndex = "blockLogIndex",
|
|
8977
9627
|
BlockNumber = "blockNumber",
|
|
8978
9628
|
BlockTimestamp = "blockTimestamp",
|
|
8979
9629
|
EventIndex = "eventIndex",
|
|
@@ -9000,6 +9650,7 @@ export declare enum SubgraphProtocolFeeBipsUpdated_OrderBy {
|
|
|
9000
9650
|
MarketIsDelinquent = "market__isDelinquent",
|
|
9001
9651
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
9002
9652
|
MarketIsRegistered = "market__isRegistered",
|
|
9653
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
9003
9654
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
9004
9655
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
9005
9656
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -9135,6 +9786,8 @@ export type SubgraphQuery = {
|
|
|
9135
9786
|
marketAddeds: SubgraphMarketAdded[];
|
|
9136
9787
|
marketClosed?: Maybe<SubgraphMarketClosed>;
|
|
9137
9788
|
marketCloseds: SubgraphMarketClosed[];
|
|
9789
|
+
marketDailyStats?: Maybe<SubgraphMarketDailyStats>;
|
|
9790
|
+
marketDailyStats_collection: SubgraphMarketDailyStats[];
|
|
9138
9791
|
marketDeployed?: Maybe<SubgraphMarketDeployed>;
|
|
9139
9792
|
marketDeployeds: SubgraphMarketDeployed[];
|
|
9140
9793
|
marketInterestAccrued?: Maybe<SubgraphMarketInterestAccrued>;
|
|
@@ -9699,6 +10352,16 @@ export type SubgraphQueryMarketClosedsArgs = {
|
|
|
9699
10352
|
subgraphError?: Subgraph_SubgraphErrorPolicy_;
|
|
9700
10353
|
where?: InputMaybe<SubgraphMarketClosed_Filter>;
|
|
9701
10354
|
};
|
|
10355
|
+
export type SubgraphQueryMarketDailyStatsArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
10356
|
+
export type SubgraphQueryMarketDailyStats_CollectionArgs = {
|
|
10357
|
+
block?: InputMaybe<SubgraphBlock_Height>;
|
|
10358
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10359
|
+
orderBy?: InputMaybe<SubgraphMarketDailyStats_OrderBy>;
|
|
10360
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
10361
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10362
|
+
subgraphError?: Subgraph_SubgraphErrorPolicy_;
|
|
10363
|
+
where?: InputMaybe<SubgraphMarketDailyStats_Filter>;
|
|
10364
|
+
};
|
|
9702
10365
|
export type SubgraphQueryMarketDeployedArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
9703
10366
|
export type SubgraphQueryMarketDeployedsArgs = {
|
|
9704
10367
|
block?: InputMaybe<SubgraphBlock_Height>;
|
|
@@ -10203,6 +10866,7 @@ export declare enum SubgraphRegisteredBorrower_OrderBy {
|
|
|
10203
10866
|
}
|
|
10204
10867
|
export type SubgraphReserveRatioBipsUpdated = {
|
|
10205
10868
|
__typename: "ReserveRatioBipsUpdated";
|
|
10869
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
10206
10870
|
blockNumber: Scalars["Int"]["output"];
|
|
10207
10871
|
blockTimestamp: Scalars["Int"]["output"];
|
|
10208
10872
|
id: Scalars["ID"]["output"];
|
|
@@ -10215,6 +10879,14 @@ export type SubgraphReserveRatioBipsUpdated_Filter = {
|
|
|
10215
10879
|
/** Filter for the block changed event. */
|
|
10216
10880
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
10217
10881
|
and?: InputMaybe<Array<InputMaybe<SubgraphReserveRatioBipsUpdated_Filter>>>;
|
|
10882
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10883
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10884
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10885
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
10886
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10887
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10888
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10889
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
10218
10890
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10219
10891
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10220
10892
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -10289,6 +10961,7 @@ export type SubgraphReserveRatioBipsUpdated_Filter = {
|
|
|
10289
10961
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10290
10962
|
};
|
|
10291
10963
|
export declare enum SubgraphReserveRatioBipsUpdated_OrderBy {
|
|
10964
|
+
BlockLogIndex = "blockLogIndex",
|
|
10292
10965
|
BlockNumber = "blockNumber",
|
|
10293
10966
|
BlockTimestamp = "blockTimestamp",
|
|
10294
10967
|
Id = "id",
|
|
@@ -10314,6 +10987,7 @@ export declare enum SubgraphReserveRatioBipsUpdated_OrderBy {
|
|
|
10314
10987
|
MarketIsDelinquent = "market__isDelinquent",
|
|
10315
10988
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
10316
10989
|
MarketIsRegistered = "market__isRegistered",
|
|
10990
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
10317
10991
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
10318
10992
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
10319
10993
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -10367,6 +11041,7 @@ export type SubgraphRoleProvider = {
|
|
|
10367
11041
|
export type SubgraphRoleProviderUpdatedEventsArgs = SubgraphHooksInstanceRoleProviderUpdatedRecordsArgs;
|
|
10368
11042
|
export type SubgraphRoleProviderAdded = {
|
|
10369
11043
|
__typename: "RoleProviderAdded";
|
|
11044
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
10370
11045
|
blockNumber: Scalars["Int"]["output"];
|
|
10371
11046
|
blockTimestamp: Scalars["Int"]["output"];
|
|
10372
11047
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -10384,6 +11059,14 @@ export type SubgraphRoleProviderAdded_Filter = {
|
|
|
10384
11059
|
/** Filter for the block changed event. */
|
|
10385
11060
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
10386
11061
|
and?: InputMaybe<Array<InputMaybe<SubgraphRoleProviderAdded_Filter>>>;
|
|
11062
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11063
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11064
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11065
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11066
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11067
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11068
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11069
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
10387
11070
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10388
11071
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10389
11072
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -10503,6 +11186,7 @@ export type SubgraphRoleProviderAdded_Filter = {
|
|
|
10503
11186
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10504
11187
|
};
|
|
10505
11188
|
export declare enum SubgraphRoleProviderAdded_OrderBy {
|
|
11189
|
+
BlockLogIndex = "blockLogIndex",
|
|
10506
11190
|
BlockNumber = "blockNumber",
|
|
10507
11191
|
BlockTimestamp = "blockTimestamp",
|
|
10508
11192
|
EventIndex = "eventIndex",
|
|
@@ -10532,6 +11216,7 @@ export declare enum SubgraphRoleProviderAdded_OrderBy {
|
|
|
10532
11216
|
}
|
|
10533
11217
|
export type SubgraphRoleProviderRemoved = {
|
|
10534
11218
|
__typename: "RoleProviderRemoved";
|
|
11219
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
10535
11220
|
blockNumber: Scalars["Int"]["output"];
|
|
10536
11221
|
blockTimestamp: Scalars["Int"]["output"];
|
|
10537
11222
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -10544,6 +11229,14 @@ export type SubgraphRoleProviderRemoved_Filter = {
|
|
|
10544
11229
|
/** Filter for the block changed event. */
|
|
10545
11230
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
10546
11231
|
and?: InputMaybe<Array<InputMaybe<SubgraphRoleProviderRemoved_Filter>>>;
|
|
11232
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11233
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11234
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11235
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11236
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11237
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11238
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11239
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
10547
11240
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10548
11241
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10549
11242
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -10631,6 +11324,7 @@ export type SubgraphRoleProviderRemoved_Filter = {
|
|
|
10631
11324
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10632
11325
|
};
|
|
10633
11326
|
export declare enum SubgraphRoleProviderRemoved_OrderBy {
|
|
11327
|
+
BlockLogIndex = "blockLogIndex",
|
|
10634
11328
|
BlockNumber = "blockNumber",
|
|
10635
11329
|
BlockTimestamp = "blockTimestamp",
|
|
10636
11330
|
EventIndex = "eventIndex",
|
|
@@ -10655,6 +11349,7 @@ export declare enum SubgraphRoleProviderRemoved_OrderBy {
|
|
|
10655
11349
|
}
|
|
10656
11350
|
export type SubgraphRoleProviderUpdated = {
|
|
10657
11351
|
__typename: "RoleProviderUpdated";
|
|
11352
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
10658
11353
|
blockNumber: Scalars["Int"]["output"];
|
|
10659
11354
|
blockTimestamp: Scalars["Int"]["output"];
|
|
10660
11355
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -10672,6 +11367,14 @@ export type SubgraphRoleProviderUpdated_Filter = {
|
|
|
10672
11367
|
/** Filter for the block changed event. */
|
|
10673
11368
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
10674
11369
|
and?: InputMaybe<Array<InputMaybe<SubgraphRoleProviderUpdated_Filter>>>;
|
|
11370
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11371
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11372
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11373
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11374
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11375
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11376
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11377
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
10675
11378
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10676
11379
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10677
11380
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -10791,6 +11494,7 @@ export type SubgraphRoleProviderUpdated_Filter = {
|
|
|
10791
11494
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10792
11495
|
};
|
|
10793
11496
|
export declare enum SubgraphRoleProviderUpdated_OrderBy {
|
|
11497
|
+
BlockLogIndex = "blockLogIndex",
|
|
10794
11498
|
BlockNumber = "blockNumber",
|
|
10795
11499
|
BlockTimestamp = "blockTimestamp",
|
|
10796
11500
|
EventIndex = "eventIndex",
|
|
@@ -10904,6 +11608,7 @@ export type SubgraphRoleProvider_Filter = {
|
|
|
10904
11608
|
};
|
|
10905
11609
|
export declare enum SubgraphRoleProvider_OrderBy {
|
|
10906
11610
|
AddedEvent = "addedEvent",
|
|
11611
|
+
AddedEventBlockLogIndex = "addedEvent__blockLogIndex",
|
|
10907
11612
|
AddedEventBlockNumber = "addedEvent__blockNumber",
|
|
10908
11613
|
AddedEventBlockTimestamp = "addedEvent__blockTimestamp",
|
|
10909
11614
|
AddedEventEventIndex = "addedEvent__eventIndex",
|
|
@@ -10929,6 +11634,7 @@ export declare enum SubgraphRoleProvider_OrderBy {
|
|
|
10929
11634
|
PullProviderIndex = "pullProviderIndex",
|
|
10930
11635
|
PushProviderIndex = "pushProviderIndex",
|
|
10931
11636
|
RemovedEvent = "removedEvent",
|
|
11637
|
+
RemovedEventBlockLogIndex = "removedEvent__blockLogIndex",
|
|
10932
11638
|
RemovedEventBlockNumber = "removedEvent__blockNumber",
|
|
10933
11639
|
RemovedEventBlockTimestamp = "removedEvent__blockTimestamp",
|
|
10934
11640
|
RemovedEventEventIndex = "removedEvent__eventIndex",
|
|
@@ -10940,6 +11646,7 @@ export declare enum SubgraphRoleProvider_OrderBy {
|
|
|
10940
11646
|
export type SubgraphSanctionOverride = {
|
|
10941
11647
|
__typename: "SanctionOverride";
|
|
10942
11648
|
account: Scalars["Bytes"]["output"];
|
|
11649
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
10943
11650
|
blockNumber: Scalars["Int"]["output"];
|
|
10944
11651
|
blockTimestamp: Scalars["Int"]["output"];
|
|
10945
11652
|
borrower: Scalars["Bytes"]["output"];
|
|
@@ -10949,6 +11656,7 @@ export type SubgraphSanctionOverride = {
|
|
|
10949
11656
|
export type SubgraphSanctionOverrideRemoved = {
|
|
10950
11657
|
__typename: "SanctionOverrideRemoved";
|
|
10951
11658
|
account: Scalars["Bytes"]["output"];
|
|
11659
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
10952
11660
|
blockNumber: Scalars["Int"]["output"];
|
|
10953
11661
|
blockTimestamp: Scalars["Int"]["output"];
|
|
10954
11662
|
borrower: Scalars["Bytes"]["output"];
|
|
@@ -10969,6 +11677,14 @@ export type SubgraphSanctionOverrideRemoved_Filter = {
|
|
|
10969
11677
|
account_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
10970
11678
|
account_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
10971
11679
|
and?: InputMaybe<Array<InputMaybe<SubgraphSanctionOverrideRemoved_Filter>>>;
|
|
11680
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11681
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11682
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11683
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11684
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11685
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11686
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11687
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
10972
11688
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10973
11689
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10974
11690
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11017,6 +11733,7 @@ export type SubgraphSanctionOverrideRemoved_Filter = {
|
|
|
11017
11733
|
};
|
|
11018
11734
|
export declare enum SubgraphSanctionOverrideRemoved_OrderBy {
|
|
11019
11735
|
Account = "account",
|
|
11736
|
+
BlockLogIndex = "blockLogIndex",
|
|
11020
11737
|
BlockNumber = "blockNumber",
|
|
11021
11738
|
BlockTimestamp = "blockTimestamp",
|
|
11022
11739
|
Borrower = "borrower",
|
|
@@ -11037,6 +11754,14 @@ export type SubgraphSanctionOverride_Filter = {
|
|
|
11037
11754
|
account_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
11038
11755
|
account_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
11039
11756
|
and?: InputMaybe<Array<InputMaybe<SubgraphSanctionOverride_Filter>>>;
|
|
11757
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11758
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11759
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11760
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11761
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11762
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11763
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11764
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11040
11765
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11041
11766
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11042
11767
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11085,6 +11810,7 @@ export type SubgraphSanctionOverride_Filter = {
|
|
|
11085
11810
|
};
|
|
11086
11811
|
export declare enum SubgraphSanctionOverride_OrderBy {
|
|
11087
11812
|
Account = "account",
|
|
11813
|
+
BlockLogIndex = "blockLogIndex",
|
|
11088
11814
|
BlockNumber = "blockNumber",
|
|
11089
11815
|
BlockTimestamp = "blockTimestamp",
|
|
11090
11816
|
Borrower = "borrower",
|
|
@@ -11095,6 +11821,7 @@ export type SubgraphSanctionedAccountAssetsQueuedForWithdrawal = {
|
|
|
11095
11821
|
__typename: "SanctionedAccountAssetsQueuedForWithdrawal";
|
|
11096
11822
|
account: Scalars["Bytes"]["output"];
|
|
11097
11823
|
amount: Scalars["BigInt"]["output"];
|
|
11824
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11098
11825
|
blockNumber: Scalars["Int"]["output"];
|
|
11099
11826
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11100
11827
|
id: Scalars["ID"]["output"];
|
|
@@ -11124,6 +11851,14 @@ export type SubgraphSanctionedAccountAssetsQueuedForWithdrawal_Filter = {
|
|
|
11124
11851
|
amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
11125
11852
|
amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
11126
11853
|
and?: InputMaybe<Array<InputMaybe<SubgraphSanctionedAccountAssetsQueuedForWithdrawal_Filter>>>;
|
|
11854
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11855
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11856
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11857
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11858
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11859
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11860
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11861
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11127
11862
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11128
11863
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11129
11864
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11179,6 +11914,7 @@ export type SubgraphSanctionedAccountAssetsQueuedForWithdrawal_Filter = {
|
|
|
11179
11914
|
export declare enum SubgraphSanctionedAccountAssetsQueuedForWithdrawal_OrderBy {
|
|
11180
11915
|
Account = "account",
|
|
11181
11916
|
Amount = "amount",
|
|
11917
|
+
BlockLogIndex = "blockLogIndex",
|
|
11182
11918
|
BlockNumber = "blockNumber",
|
|
11183
11919
|
BlockTimestamp = "blockTimestamp",
|
|
11184
11920
|
Id = "id",
|
|
@@ -11190,6 +11926,7 @@ export type SubgraphSanctionedAccountAssetsSentToEscrow = {
|
|
|
11190
11926
|
__typename: "SanctionedAccountAssetsSentToEscrow";
|
|
11191
11927
|
account: Scalars["Bytes"]["output"];
|
|
11192
11928
|
amount: Scalars["BigInt"]["output"];
|
|
11929
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11193
11930
|
blockNumber: Scalars["Int"]["output"];
|
|
11194
11931
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11195
11932
|
escrow: Scalars["Bytes"]["output"];
|
|
@@ -11218,6 +11955,14 @@ export type SubgraphSanctionedAccountAssetsSentToEscrow_Filter = {
|
|
|
11218
11955
|
amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
11219
11956
|
amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
11220
11957
|
and?: InputMaybe<Array<InputMaybe<SubgraphSanctionedAccountAssetsSentToEscrow_Filter>>>;
|
|
11958
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11959
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11960
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11961
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11962
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11963
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11964
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11965
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11221
11966
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11222
11967
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11223
11968
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11267,6 +12012,7 @@ export type SubgraphSanctionedAccountAssetsSentToEscrow_Filter = {
|
|
|
11267
12012
|
export declare enum SubgraphSanctionedAccountAssetsSentToEscrow_OrderBy {
|
|
11268
12013
|
Account = "account",
|
|
11269
12014
|
Amount = "amount",
|
|
12015
|
+
BlockLogIndex = "blockLogIndex",
|
|
11270
12016
|
BlockNumber = "blockNumber",
|
|
11271
12017
|
BlockTimestamp = "blockTimestamp",
|
|
11272
12018
|
Escrow = "escrow",
|
|
@@ -11277,6 +12023,7 @@ export type SubgraphSanctionedAccountWithdrawalSentToEscrow = {
|
|
|
11277
12023
|
__typename: "SanctionedAccountWithdrawalSentToEscrow";
|
|
11278
12024
|
account: Scalars["Bytes"]["output"];
|
|
11279
12025
|
amount: Scalars["BigInt"]["output"];
|
|
12026
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11280
12027
|
blockNumber: Scalars["Int"]["output"];
|
|
11281
12028
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11282
12029
|
escrow: Scalars["Bytes"]["output"];
|
|
@@ -11306,6 +12053,14 @@ export type SubgraphSanctionedAccountWithdrawalSentToEscrow_Filter = {
|
|
|
11306
12053
|
amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
11307
12054
|
amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
11308
12055
|
and?: InputMaybe<Array<InputMaybe<SubgraphSanctionedAccountWithdrawalSentToEscrow_Filter>>>;
|
|
12056
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12057
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12058
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12059
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12060
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12061
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12062
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12063
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11309
12064
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11310
12065
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11311
12066
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11363,6 +12118,7 @@ export type SubgraphSanctionedAccountWithdrawalSentToEscrow_Filter = {
|
|
|
11363
12118
|
export declare enum SubgraphSanctionedAccountWithdrawalSentToEscrow_OrderBy {
|
|
11364
12119
|
Account = "account",
|
|
11365
12120
|
Amount = "amount",
|
|
12121
|
+
BlockLogIndex = "blockLogIndex",
|
|
11366
12122
|
BlockNumber = "blockNumber",
|
|
11367
12123
|
BlockTimestamp = "blockTimestamp",
|
|
11368
12124
|
Escrow = "escrow",
|
|
@@ -11373,7 +12129,6 @@ export declare enum SubgraphSanctionedAccountWithdrawalSentToEscrow_OrderBy {
|
|
|
11373
12129
|
export type SubgraphSimpleCollateralContract = {
|
|
11374
12130
|
__typename: "SimpleCollateralContract";
|
|
11375
12131
|
availableCollateral: Scalars["BigInt"]["output"];
|
|
11376
|
-
bebopSettlementContract: Scalars["Bytes"]["output"];
|
|
11377
12132
|
collateralAsset?: Maybe<SubgraphToken>;
|
|
11378
12133
|
depositIndex: Scalars["Int"]["output"];
|
|
11379
12134
|
depositors: SubgraphSimpleCollateralContractDepositor[];
|
|
@@ -11432,6 +12187,7 @@ export type SubgraphSimpleCollateralContractDeposit = {
|
|
|
11432
12187
|
__typename: "SimpleCollateralContractDeposit";
|
|
11433
12188
|
account: SubgraphSimpleCollateralContractDepositor;
|
|
11434
12189
|
amountDeposited: Scalars["BigInt"]["output"];
|
|
12190
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11435
12191
|
blockNumber: Scalars["Int"]["output"];
|
|
11436
12192
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11437
12193
|
collateralContract: SubgraphSimpleCollateralContract;
|
|
@@ -11475,6 +12231,14 @@ export type SubgraphSimpleCollateralContractDeposit_Filter = {
|
|
|
11475
12231
|
amountDeposited_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
11476
12232
|
amountDeposited_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
11477
12233
|
and?: InputMaybe<Array<InputMaybe<SubgraphSimpleCollateralContractDeposit_Filter>>>;
|
|
12234
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12235
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12236
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12237
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12238
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12239
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12240
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12241
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11478
12242
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11479
12243
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11480
12244
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11571,11 +12335,11 @@ export declare enum SubgraphSimpleCollateralContractDeposit_OrderBy {
|
|
|
11571
12335
|
AccountTotalDeposited = "account__totalDeposited",
|
|
11572
12336
|
AccountTotalReclaimed = "account__totalReclaimed",
|
|
11573
12337
|
AmountDeposited = "amountDeposited",
|
|
12338
|
+
BlockLogIndex = "blockLogIndex",
|
|
11574
12339
|
BlockNumber = "blockNumber",
|
|
11575
12340
|
BlockTimestamp = "blockTimestamp",
|
|
11576
12341
|
CollateralContract = "collateralContract",
|
|
11577
12342
|
CollateralContractAvailableCollateral = "collateralContract__availableCollateral",
|
|
11578
|
-
CollateralContractBebopSettlementContract = "collateralContract__bebopSettlementContract",
|
|
11579
12343
|
CollateralContractDepositIndex = "collateralContract__depositIndex",
|
|
11580
12344
|
CollateralContractEventIndex = "collateralContract__eventIndex",
|
|
11581
12345
|
CollateralContractId = "collateralContract__id",
|
|
@@ -11678,7 +12442,6 @@ export type SubgraphSimpleCollateralContractDepositor_Filter = {
|
|
|
11678
12442
|
export declare enum SubgraphSimpleCollateralContractDepositor_OrderBy {
|
|
11679
12443
|
CollateralContract = "collateralContract",
|
|
11680
12444
|
CollateralContractAvailableCollateral = "collateralContract__availableCollateral",
|
|
11681
|
-
CollateralContractBebopSettlementContract = "collateralContract__bebopSettlementContract",
|
|
11682
12445
|
CollateralContractDepositIndex = "collateralContract__depositIndex",
|
|
11683
12446
|
CollateralContractEventIndex = "collateralContract__eventIndex",
|
|
11684
12447
|
CollateralContractId = "collateralContract__id",
|
|
@@ -11699,6 +12462,7 @@ export declare enum SubgraphSimpleCollateralContractDepositor_OrderBy {
|
|
|
11699
12462
|
}
|
|
11700
12463
|
export type SubgraphSimpleCollateralContractFullReset = {
|
|
11701
12464
|
__typename: "SimpleCollateralContractFullReset";
|
|
12465
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11702
12466
|
blockNumber: Scalars["Int"]["output"];
|
|
11703
12467
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11704
12468
|
collateralContract: SubgraphSimpleCollateralContract;
|
|
@@ -11711,6 +12475,14 @@ export type SubgraphSimpleCollateralContractFullReset_Filter = {
|
|
|
11711
12475
|
/** Filter for the block changed event. */
|
|
11712
12476
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
11713
12477
|
and?: InputMaybe<Array<InputMaybe<SubgraphSimpleCollateralContractFullReset_Filter>>>;
|
|
12478
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12479
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12480
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12481
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12482
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12483
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12484
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12485
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11714
12486
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11715
12487
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11716
12488
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11785,11 +12557,11 @@ export type SubgraphSimpleCollateralContractFullReset_Filter = {
|
|
|
11785
12557
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
11786
12558
|
};
|
|
11787
12559
|
export declare enum SubgraphSimpleCollateralContractFullReset_OrderBy {
|
|
12560
|
+
BlockLogIndex = "blockLogIndex",
|
|
11788
12561
|
BlockNumber = "blockNumber",
|
|
11789
12562
|
BlockTimestamp = "blockTimestamp",
|
|
11790
12563
|
CollateralContract = "collateralContract",
|
|
11791
12564
|
CollateralContractAvailableCollateral = "collateralContract__availableCollateral",
|
|
11792
|
-
CollateralContractBebopSettlementContract = "collateralContract__bebopSettlementContract",
|
|
11793
12565
|
CollateralContractDepositIndex = "collateralContract__depositIndex",
|
|
11794
12566
|
CollateralContractEventIndex = "collateralContract__eventIndex",
|
|
11795
12567
|
CollateralContractId = "collateralContract__id",
|
|
@@ -11808,6 +12580,7 @@ export declare enum SubgraphSimpleCollateralContractFullReset_OrderBy {
|
|
|
11808
12580
|
export type SubgraphSimpleCollateralContractLiquidatedSharesReset = {
|
|
11809
12581
|
__typename: "SimpleCollateralContractLiquidatedSharesReset";
|
|
11810
12582
|
account: SubgraphSimpleCollateralContractDepositor;
|
|
12583
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11811
12584
|
blockNumber: Scalars["Int"]["output"];
|
|
11812
12585
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11813
12586
|
collateralContract: SubgraphSimpleCollateralContract;
|
|
@@ -11841,6 +12614,14 @@ export type SubgraphSimpleCollateralContractLiquidatedSharesReset_Filter = {
|
|
|
11841
12614
|
account_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
11842
12615
|
account_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11843
12616
|
and?: InputMaybe<Array<InputMaybe<SubgraphSimpleCollateralContractLiquidatedSharesReset_Filter>>>;
|
|
12617
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12618
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12619
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12620
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12621
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12622
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12623
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12624
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11844
12625
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11845
12626
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11846
12627
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -11920,11 +12701,11 @@ export declare enum SubgraphSimpleCollateralContractLiquidatedSharesReset_OrderB
|
|
|
11920
12701
|
AccountShares = "account__shares",
|
|
11921
12702
|
AccountTotalDeposited = "account__totalDeposited",
|
|
11922
12703
|
AccountTotalReclaimed = "account__totalReclaimed",
|
|
12704
|
+
BlockLogIndex = "blockLogIndex",
|
|
11923
12705
|
BlockNumber = "blockNumber",
|
|
11924
12706
|
BlockTimestamp = "blockTimestamp",
|
|
11925
12707
|
CollateralContract = "collateralContract",
|
|
11926
12708
|
CollateralContractAvailableCollateral = "collateralContract__availableCollateral",
|
|
11927
|
-
CollateralContractBebopSettlementContract = "collateralContract__bebopSettlementContract",
|
|
11928
12709
|
CollateralContractDepositIndex = "collateralContract__depositIndex",
|
|
11929
12710
|
CollateralContractEventIndex = "collateralContract__eventIndex",
|
|
11930
12711
|
CollateralContractId = "collateralContract__id",
|
|
@@ -11942,6 +12723,7 @@ export declare enum SubgraphSimpleCollateralContractLiquidatedSharesReset_OrderB
|
|
|
11942
12723
|
}
|
|
11943
12724
|
export type SubgraphSimpleCollateralContractLiquidation = {
|
|
11944
12725
|
__typename: "SimpleCollateralContractLiquidation";
|
|
12726
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
11945
12727
|
blockNumber: Scalars["Int"]["output"];
|
|
11946
12728
|
blockTimestamp: Scalars["Int"]["output"];
|
|
11947
12729
|
collateralContract: SubgraphSimpleCollateralContract;
|
|
@@ -11956,6 +12738,14 @@ export type SubgraphSimpleCollateralContractLiquidation_Filter = {
|
|
|
11956
12738
|
/** Filter for the block changed event. */
|
|
11957
12739
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
11958
12740
|
and?: InputMaybe<Array<InputMaybe<SubgraphSimpleCollateralContractLiquidation_Filter>>>;
|
|
12741
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12742
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12743
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12744
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12745
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12746
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12747
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12748
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
11959
12749
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11960
12750
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11961
12751
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -12048,11 +12838,11 @@ export type SubgraphSimpleCollateralContractLiquidation_Filter = {
|
|
|
12048
12838
|
underlyingReceived_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
12049
12839
|
};
|
|
12050
12840
|
export declare enum SubgraphSimpleCollateralContractLiquidation_OrderBy {
|
|
12841
|
+
BlockLogIndex = "blockLogIndex",
|
|
12051
12842
|
BlockNumber = "blockNumber",
|
|
12052
12843
|
BlockTimestamp = "blockTimestamp",
|
|
12053
12844
|
CollateralContract = "collateralContract",
|
|
12054
12845
|
CollateralContractAvailableCollateral = "collateralContract__availableCollateral",
|
|
12055
|
-
CollateralContractBebopSettlementContract = "collateralContract__bebopSettlementContract",
|
|
12056
12846
|
CollateralContractDepositIndex = "collateralContract__depositIndex",
|
|
12057
12847
|
CollateralContractEventIndex = "collateralContract__eventIndex",
|
|
12058
12848
|
CollateralContractId = "collateralContract__id",
|
|
@@ -12074,6 +12864,7 @@ export type SubgraphSimpleCollateralContractReclaim = {
|
|
|
12074
12864
|
__typename: "SimpleCollateralContractReclaim";
|
|
12075
12865
|
account: SubgraphSimpleCollateralContractDepositor;
|
|
12076
12866
|
amountReclaimed: Scalars["BigInt"]["output"];
|
|
12867
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
12077
12868
|
blockNumber: Scalars["Int"]["output"];
|
|
12078
12869
|
blockTimestamp: Scalars["Int"]["output"];
|
|
12079
12870
|
collateralContract: SubgraphSimpleCollateralContract;
|
|
@@ -12115,6 +12906,14 @@ export type SubgraphSimpleCollateralContractReclaim_Filter = {
|
|
|
12115
12906
|
amountReclaimed_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
12116
12907
|
amountReclaimed_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
12117
12908
|
and?: InputMaybe<Array<InputMaybe<SubgraphSimpleCollateralContractReclaim_Filter>>>;
|
|
12909
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12910
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12911
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12912
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12913
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12914
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12915
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12916
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
12118
12917
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12119
12918
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12120
12919
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -12195,11 +12994,11 @@ export declare enum SubgraphSimpleCollateralContractReclaim_OrderBy {
|
|
|
12195
12994
|
AccountTotalDeposited = "account__totalDeposited",
|
|
12196
12995
|
AccountTotalReclaimed = "account__totalReclaimed",
|
|
12197
12996
|
AmountReclaimed = "amountReclaimed",
|
|
12997
|
+
BlockLogIndex = "blockLogIndex",
|
|
12198
12998
|
BlockNumber = "blockNumber",
|
|
12199
12999
|
BlockTimestamp = "blockTimestamp",
|
|
12200
13000
|
CollateralContract = "collateralContract",
|
|
12201
13001
|
CollateralContractAvailableCollateral = "collateralContract__availableCollateral",
|
|
12202
|
-
CollateralContractBebopSettlementContract = "collateralContract__bebopSettlementContract",
|
|
12203
13002
|
CollateralContractDepositIndex = "collateralContract__depositIndex",
|
|
12204
13003
|
CollateralContractEventIndex = "collateralContract__eventIndex",
|
|
12205
13004
|
CollateralContractId = "collateralContract__id",
|
|
@@ -12227,16 +13026,6 @@ export type SubgraphSimpleCollateralContract_Filter = {
|
|
|
12227
13026
|
availableCollateral_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
12228
13027
|
availableCollateral_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
12229
13028
|
availableCollateral_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
12230
|
-
bebopSettlementContract?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12231
|
-
bebopSettlementContract_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12232
|
-
bebopSettlementContract_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12233
|
-
bebopSettlementContract_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12234
|
-
bebopSettlementContract_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
12235
|
-
bebopSettlementContract_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12236
|
-
bebopSettlementContract_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12237
|
-
bebopSettlementContract_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12238
|
-
bebopSettlementContract_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
12239
|
-
bebopSettlementContract_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
12240
13029
|
collateralAsset?: InputMaybe<Scalars["String"]["input"]>;
|
|
12241
13030
|
collateralAsset_?: InputMaybe<SubgraphToken_Filter>;
|
|
12242
13031
|
collateralAsset_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -12389,7 +13178,6 @@ export type SubgraphSimpleCollateralContract_Filter = {
|
|
|
12389
13178
|
};
|
|
12390
13179
|
export declare enum SubgraphSimpleCollateralContract_OrderBy {
|
|
12391
13180
|
AvailableCollateral = "availableCollateral",
|
|
12392
|
-
BebopSettlementContract = "bebopSettlementContract",
|
|
12393
13181
|
CollateralAsset = "collateralAsset",
|
|
12394
13182
|
CollateralAssetAddress = "collateralAsset__address",
|
|
12395
13183
|
CollateralAssetDecimals = "collateralAsset__decimals",
|
|
@@ -12430,6 +13218,7 @@ export declare enum SubgraphSimpleCollateralContract_OrderBy {
|
|
|
12430
13218
|
MarketIsDelinquent = "market__isDelinquent",
|
|
12431
13219
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
12432
13220
|
MarketIsRegistered = "market__isRegistered",
|
|
13221
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
12433
13222
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
12434
13223
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
12435
13224
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -12654,6 +13443,8 @@ export type SubgraphSubscription = {
|
|
|
12654
13443
|
marketAddeds: SubgraphMarketAdded[];
|
|
12655
13444
|
marketClosed?: Maybe<SubgraphMarketClosed>;
|
|
12656
13445
|
marketCloseds: SubgraphMarketClosed[];
|
|
13446
|
+
marketDailyStats?: Maybe<SubgraphMarketDailyStats>;
|
|
13447
|
+
marketDailyStats_collection: SubgraphMarketDailyStats[];
|
|
12657
13448
|
marketDeployed?: Maybe<SubgraphMarketDeployed>;
|
|
12658
13449
|
marketDeployeds: SubgraphMarketDeployed[];
|
|
12659
13450
|
marketInterestAccrued?: Maybe<SubgraphMarketInterestAccrued>;
|
|
@@ -12836,6 +13627,8 @@ export type SubgraphSubscriptionMarketAddedArgs = SubgraphQueryAccountAccessGran
|
|
|
12836
13627
|
export type SubgraphSubscriptionMarketAddedsArgs = SubgraphQueryMarketAddedsArgs;
|
|
12837
13628
|
export type SubgraphSubscriptionMarketClosedArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
12838
13629
|
export type SubgraphSubscriptionMarketClosedsArgs = SubgraphQueryMarketClosedsArgs;
|
|
13630
|
+
export type SubgraphSubscriptionMarketDailyStatsArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
13631
|
+
export type SubgraphSubscriptionMarketDailyStats_CollectionArgs = SubgraphQueryMarketDailyStats_CollectionArgs;
|
|
12839
13632
|
export type SubgraphSubscriptionMarketDeployedArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
12840
13633
|
export type SubgraphSubscriptionMarketDeployedsArgs = SubgraphQueryMarketDeployedsArgs;
|
|
12841
13634
|
export type SubgraphSubscriptionMarketInterestAccruedArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
@@ -13017,6 +13810,7 @@ export declare enum SubgraphToken_OrderBy {
|
|
|
13017
13810
|
export type SubgraphTransfer = {
|
|
13018
13811
|
__typename: "Transfer";
|
|
13019
13812
|
amount: Scalars["BigInt"]["output"];
|
|
13813
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
13020
13814
|
blockNumber: Scalars["Int"]["output"];
|
|
13021
13815
|
blockTimestamp: Scalars["Int"]["output"];
|
|
13022
13816
|
from: SubgraphLenderAccount;
|
|
@@ -13038,6 +13832,14 @@ export type SubgraphTransfer_Filter = {
|
|
|
13038
13832
|
amount_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
13039
13833
|
amount_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
13040
13834
|
and?: InputMaybe<Array<InputMaybe<SubgraphTransfer_Filter>>>;
|
|
13835
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13836
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13837
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13838
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13839
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13840
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13841
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13842
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13041
13843
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13042
13844
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13043
13845
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -13147,6 +13949,7 @@ export type SubgraphTransfer_Filter = {
|
|
|
13147
13949
|
};
|
|
13148
13950
|
export declare enum SubgraphTransfer_OrderBy {
|
|
13149
13951
|
Amount = "amount",
|
|
13952
|
+
BlockLogIndex = "blockLogIndex",
|
|
13150
13953
|
BlockNumber = "blockNumber",
|
|
13151
13954
|
BlockTimestamp = "blockTimestamp",
|
|
13152
13955
|
From = "from",
|
|
@@ -13154,6 +13957,7 @@ export declare enum SubgraphTransfer_OrderBy {
|
|
|
13154
13957
|
FromAddress = "from__address",
|
|
13155
13958
|
FromId = "from__id",
|
|
13156
13959
|
FromLastScaleFactor = "from__lastScaleFactor",
|
|
13960
|
+
FromLastUpdatedBlockNumber = "from__lastUpdatedBlockNumber",
|
|
13157
13961
|
FromLastUpdatedTimestamp = "from__lastUpdatedTimestamp",
|
|
13158
13962
|
FromNumPendingWithdrawalBatches = "from__numPendingWithdrawalBatches",
|
|
13159
13963
|
FromRole = "from__role",
|
|
@@ -13183,6 +13987,7 @@ export declare enum SubgraphTransfer_OrderBy {
|
|
|
13183
13987
|
MarketIsDelinquent = "market__isDelinquent",
|
|
13184
13988
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
13185
13989
|
MarketIsRegistered = "market__isRegistered",
|
|
13990
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
13186
13991
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
13187
13992
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
13188
13993
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -13220,6 +14025,7 @@ export declare enum SubgraphTransfer_OrderBy {
|
|
|
13220
14025
|
ToAddress = "to__address",
|
|
13221
14026
|
ToId = "to__id",
|
|
13222
14027
|
ToLastScaleFactor = "to__lastScaleFactor",
|
|
14028
|
+
ToLastUpdatedBlockNumber = "to__lastUpdatedBlockNumber",
|
|
13223
14029
|
ToLastUpdatedTimestamp = "to__lastUpdatedTimestamp",
|
|
13224
14030
|
ToNumPendingWithdrawalBatches = "to__numPendingWithdrawalBatches",
|
|
13225
14031
|
ToRole = "to__role",
|
|
@@ -13230,6 +14036,7 @@ export declare enum SubgraphTransfer_OrderBy {
|
|
|
13230
14036
|
}
|
|
13231
14037
|
export type SubgraphUpdateProtocolFeeConfiguration = {
|
|
13232
14038
|
__typename: "UpdateProtocolFeeConfiguration";
|
|
14039
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
13233
14040
|
blockNumber: Scalars["Int"]["output"];
|
|
13234
14041
|
blockTimestamp: Scalars["Int"]["output"];
|
|
13235
14042
|
feeRecipient: Scalars["Bytes"]["output"];
|
|
@@ -13243,6 +14050,14 @@ export type SubgraphUpdateProtocolFeeConfiguration_Filter = {
|
|
|
13243
14050
|
/** Filter for the block changed event. */
|
|
13244
14051
|
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
13245
14052
|
and?: InputMaybe<Array<InputMaybe<SubgraphUpdateProtocolFeeConfiguration_Filter>>>;
|
|
14053
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14054
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14055
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14056
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14057
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14058
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14059
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14060
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13246
14061
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13247
14062
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13248
14063
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -13327,6 +14142,7 @@ export type SubgraphUpdateProtocolFeeConfiguration_Filter = {
|
|
|
13327
14142
|
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
13328
14143
|
};
|
|
13329
14144
|
export declare enum SubgraphUpdateProtocolFeeConfiguration_OrderBy {
|
|
14145
|
+
BlockLogIndex = "blockLogIndex",
|
|
13330
14146
|
BlockNumber = "blockNumber",
|
|
13331
14147
|
BlockTimestamp = "blockTimestamp",
|
|
13332
14148
|
FeeRecipient = "feeRecipient",
|
|
@@ -13347,6 +14163,7 @@ export type SubgraphWithdrawalBatch = {
|
|
|
13347
14163
|
completedWithdrawalsCount: Scalars["Int"]["output"];
|
|
13348
14164
|
creation: SubgraphWithdrawalBatchCreated;
|
|
13349
14165
|
executions: SubgraphWithdrawalExecution[];
|
|
14166
|
+
expiration?: Maybe<SubgraphWithdrawalBatchExpired>;
|
|
13350
14167
|
expiry: Scalars["BigInt"]["output"];
|
|
13351
14168
|
id: Scalars["ID"]["output"];
|
|
13352
14169
|
interestAccrualRecords: SubgraphWithdrawalBatchInterestAccrued[];
|
|
@@ -13388,6 +14205,7 @@ export type SubgraphWithdrawalBatchWithdrawalsArgs = SubgraphLenderAccountWithdr
|
|
|
13388
14205
|
export type SubgraphWithdrawalBatchCreated = {
|
|
13389
14206
|
__typename: "WithdrawalBatchCreated";
|
|
13390
14207
|
batch: SubgraphWithdrawalBatch;
|
|
14208
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
13391
14209
|
blockNumber: Scalars["Int"]["output"];
|
|
13392
14210
|
blockTimestamp: Scalars["Int"]["output"];
|
|
13393
14211
|
id: Scalars["ID"]["output"];
|
|
@@ -13418,6 +14236,14 @@ export type SubgraphWithdrawalBatchCreated_Filter = {
|
|
|
13418
14236
|
batch_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
13419
14237
|
batch_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
13420
14238
|
batch_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14239
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14240
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14241
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14242
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14243
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14244
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14245
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14246
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13421
14247
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13422
14248
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13423
14249
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -13472,6 +14298,7 @@ export declare enum SubgraphWithdrawalBatchCreated_OrderBy {
|
|
|
13472
14298
|
BatchScaledTotalAmount = "batch__scaledTotalAmount",
|
|
13473
14299
|
BatchTotalInterestEarned = "batch__totalInterestEarned",
|
|
13474
14300
|
BatchTotalNormalizedRequests = "batch__totalNormalizedRequests",
|
|
14301
|
+
BlockLogIndex = "blockLogIndex",
|
|
13475
14302
|
BlockNumber = "blockNumber",
|
|
13476
14303
|
BlockTimestamp = "blockTimestamp",
|
|
13477
14304
|
Id = "id",
|
|
@@ -13480,6 +14307,7 @@ export declare enum SubgraphWithdrawalBatchCreated_OrderBy {
|
|
|
13480
14307
|
export type SubgraphWithdrawalBatchExpired = {
|
|
13481
14308
|
__typename: "WithdrawalBatchExpired";
|
|
13482
14309
|
batch: SubgraphWithdrawalBatch;
|
|
14310
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
13483
14311
|
blockNumber: Scalars["Int"]["output"];
|
|
13484
14312
|
blockTimestamp: Scalars["Int"]["output"];
|
|
13485
14313
|
id: Scalars["ID"]["output"];
|
|
@@ -13514,6 +14342,14 @@ export type SubgraphWithdrawalBatchExpired_Filter = {
|
|
|
13514
14342
|
batch_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
13515
14343
|
batch_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
13516
14344
|
batch_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14345
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14346
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14347
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14348
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14349
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14350
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14351
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14352
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13517
14353
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13518
14354
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13519
14355
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -13600,6 +14436,7 @@ export declare enum SubgraphWithdrawalBatchExpired_OrderBy {
|
|
|
13600
14436
|
BatchScaledTotalAmount = "batch__scaledTotalAmount",
|
|
13601
14437
|
BatchTotalInterestEarned = "batch__totalInterestEarned",
|
|
13602
14438
|
BatchTotalNormalizedRequests = "batch__totalNormalizedRequests",
|
|
14439
|
+
BlockLogIndex = "blockLogIndex",
|
|
13603
14440
|
BlockNumber = "blockNumber",
|
|
13604
14441
|
BlockTimestamp = "blockTimestamp",
|
|
13605
14442
|
Id = "id",
|
|
@@ -13753,6 +14590,7 @@ export declare enum SubgraphWithdrawalBatchInterestAccrued_OrderBy {
|
|
|
13753
14590
|
MarketIsDelinquent = "market__isDelinquent",
|
|
13754
14591
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
13755
14592
|
MarketIsRegistered = "market__isRegistered",
|
|
14593
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
13756
14594
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
13757
14595
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
13758
14596
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -13789,6 +14627,7 @@ export declare enum SubgraphWithdrawalBatchInterestAccrued_OrderBy {
|
|
|
13789
14627
|
export type SubgraphWithdrawalBatchPayment = {
|
|
13790
14628
|
__typename: "WithdrawalBatchPayment";
|
|
13791
14629
|
batch: SubgraphWithdrawalBatch;
|
|
14630
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
13792
14631
|
blockNumber: Scalars["Int"]["output"];
|
|
13793
14632
|
blockTimestamp: Scalars["Int"]["output"];
|
|
13794
14633
|
id: Scalars["ID"]["output"];
|
|
@@ -13821,6 +14660,14 @@ export type SubgraphWithdrawalBatchPayment_Filter = {
|
|
|
13821
14660
|
batch_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
13822
14661
|
batch_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
13823
14662
|
batch_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14663
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14664
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14665
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14666
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14667
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14668
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14669
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14670
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13824
14671
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13825
14672
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13826
14673
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -13891,6 +14738,7 @@ export declare enum SubgraphWithdrawalBatchPayment_OrderBy {
|
|
|
13891
14738
|
BatchScaledTotalAmount = "batch__scaledTotalAmount",
|
|
13892
14739
|
BatchTotalInterestEarned = "batch__totalInterestEarned",
|
|
13893
14740
|
BatchTotalNormalizedRequests = "batch__totalNormalizedRequests",
|
|
14741
|
+
BlockLogIndex = "blockLogIndex",
|
|
13894
14742
|
BlockNumber = "blockNumber",
|
|
13895
14743
|
BlockTimestamp = "blockTimestamp",
|
|
13896
14744
|
Id = "id",
|
|
@@ -13912,6 +14760,7 @@ export type SubgraphWithdrawalBatch_Filter = {
|
|
|
13912
14760
|
completedWithdrawalsCount_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
13913
14761
|
creation_?: InputMaybe<SubgraphWithdrawalBatchCreated_Filter>;
|
|
13914
14762
|
executions_?: InputMaybe<SubgraphWithdrawalExecution_Filter>;
|
|
14763
|
+
expiration_?: InputMaybe<SubgraphWithdrawalBatchExpired_Filter>;
|
|
13915
14764
|
expiry?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
13916
14765
|
expiry_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
13917
14766
|
expiry_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -14050,11 +14899,22 @@ export type SubgraphWithdrawalBatch_Filter = {
|
|
|
14050
14899
|
export declare enum SubgraphWithdrawalBatch_OrderBy {
|
|
14051
14900
|
CompletedWithdrawalsCount = "completedWithdrawalsCount",
|
|
14052
14901
|
Creation = "creation",
|
|
14902
|
+
CreationBlockLogIndex = "creation__blockLogIndex",
|
|
14053
14903
|
CreationBlockNumber = "creation__blockNumber",
|
|
14054
14904
|
CreationBlockTimestamp = "creation__blockTimestamp",
|
|
14055
14905
|
CreationId = "creation__id",
|
|
14056
14906
|
CreationTransactionHash = "creation__transactionHash",
|
|
14057
14907
|
Executions = "executions",
|
|
14908
|
+
Expiration = "expiration",
|
|
14909
|
+
ExpirationBlockLogIndex = "expiration__blockLogIndex",
|
|
14910
|
+
ExpirationBlockNumber = "expiration__blockNumber",
|
|
14911
|
+
ExpirationBlockTimestamp = "expiration__blockTimestamp",
|
|
14912
|
+
ExpirationId = "expiration__id",
|
|
14913
|
+
ExpirationNormalizedAmountOwed = "expiration__normalizedAmountOwed",
|
|
14914
|
+
ExpirationNormalizedAmountPaid = "expiration__normalizedAmountPaid",
|
|
14915
|
+
ExpirationScaledAmountBurned = "expiration__scaledAmountBurned",
|
|
14916
|
+
ExpirationScaledTotalAmount = "expiration__scaledTotalAmount",
|
|
14917
|
+
ExpirationTransactionHash = "expiration__transactionHash",
|
|
14058
14918
|
Expiry = "expiry",
|
|
14059
14919
|
Id = "id",
|
|
14060
14920
|
InterestAccrualRecords = "interestAccrualRecords",
|
|
@@ -14086,6 +14946,7 @@ export declare enum SubgraphWithdrawalBatch_OrderBy {
|
|
|
14086
14946
|
MarketIsDelinquent = "market__isDelinquent",
|
|
14087
14947
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
14088
14948
|
MarketIsRegistered = "market__isRegistered",
|
|
14949
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
14089
14950
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
14090
14951
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
14091
14952
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
@@ -14132,6 +14993,7 @@ export type SubgraphWithdrawalExecution = {
|
|
|
14132
14993
|
__typename: "WithdrawalExecution";
|
|
14133
14994
|
account: SubgraphLenderAccount;
|
|
14134
14995
|
batch: SubgraphWithdrawalBatch;
|
|
14996
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
14135
14997
|
blockNumber: Scalars["Int"]["output"];
|
|
14136
14998
|
blockTimestamp: Scalars["Int"]["output"];
|
|
14137
14999
|
id: Scalars["ID"]["output"];
|
|
@@ -14185,6 +15047,14 @@ export type SubgraphWithdrawalExecution_Filter = {
|
|
|
14185
15047
|
batch_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14186
15048
|
batch_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14187
15049
|
batch_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
15050
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15051
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15052
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15053
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
15054
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15055
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15056
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15057
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14188
15058
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14189
15059
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14190
15060
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -14256,6 +15126,7 @@ export declare enum SubgraphWithdrawalExecution_OrderBy {
|
|
|
14256
15126
|
AccountAddress = "account__address",
|
|
14257
15127
|
AccountId = "account__id",
|
|
14258
15128
|
AccountLastScaleFactor = "account__lastScaleFactor",
|
|
15129
|
+
AccountLastUpdatedBlockNumber = "account__lastUpdatedBlockNumber",
|
|
14259
15130
|
AccountLastUpdatedTimestamp = "account__lastUpdatedTimestamp",
|
|
14260
15131
|
AccountNumPendingWithdrawalBatches = "account__numPendingWithdrawalBatches",
|
|
14261
15132
|
AccountRole = "account__role",
|
|
@@ -14279,6 +15150,7 @@ export declare enum SubgraphWithdrawalExecution_OrderBy {
|
|
|
14279
15150
|
BatchScaledTotalAmount = "batch__scaledTotalAmount",
|
|
14280
15151
|
BatchTotalInterestEarned = "batch__totalInterestEarned",
|
|
14281
15152
|
BatchTotalNormalizedRequests = "batch__totalNormalizedRequests",
|
|
15153
|
+
BlockLogIndex = "blockLogIndex",
|
|
14282
15154
|
BlockNumber = "blockNumber",
|
|
14283
15155
|
BlockTimestamp = "blockTimestamp",
|
|
14284
15156
|
Id = "id",
|
|
@@ -14297,6 +15169,7 @@ export type SubgraphWithdrawalRequest = {
|
|
|
14297
15169
|
__typename: "WithdrawalRequest";
|
|
14298
15170
|
account: SubgraphLenderAccount;
|
|
14299
15171
|
batch: SubgraphWithdrawalBatch;
|
|
15172
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
14300
15173
|
blockNumber: Scalars["Int"]["output"];
|
|
14301
15174
|
blockTimestamp: Scalars["Int"]["output"];
|
|
14302
15175
|
eventIndex: Scalars["Int"]["output"];
|
|
@@ -14355,6 +15228,14 @@ export type SubgraphWithdrawalRequest_Filter = {
|
|
|
14355
15228
|
batch_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14356
15229
|
batch_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14357
15230
|
batch_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
15231
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15232
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15233
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15234
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
15235
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15236
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15237
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
15238
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14358
15239
|
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14359
15240
|
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14360
15241
|
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -14479,6 +15360,7 @@ export declare enum SubgraphWithdrawalRequest_OrderBy {
|
|
|
14479
15360
|
AccountAddress = "account__address",
|
|
14480
15361
|
AccountId = "account__id",
|
|
14481
15362
|
AccountLastScaleFactor = "account__lastScaleFactor",
|
|
15363
|
+
AccountLastUpdatedBlockNumber = "account__lastUpdatedBlockNumber",
|
|
14482
15364
|
AccountLastUpdatedTimestamp = "account__lastUpdatedTimestamp",
|
|
14483
15365
|
AccountNumPendingWithdrawalBatches = "account__numPendingWithdrawalBatches",
|
|
14484
15366
|
AccountRole = "account__role",
|
|
@@ -14502,6 +15384,7 @@ export declare enum SubgraphWithdrawalRequest_OrderBy {
|
|
|
14502
15384
|
BatchScaledTotalAmount = "batch__scaledTotalAmount",
|
|
14503
15385
|
BatchTotalInterestEarned = "batch__totalInterestEarned",
|
|
14504
15386
|
BatchTotalNormalizedRequests = "batch__totalNormalizedRequests",
|
|
15387
|
+
BlockLogIndex = "blockLogIndex",
|
|
14505
15388
|
BlockNumber = "blockNumber",
|
|
14506
15389
|
BlockTimestamp = "blockTimestamp",
|
|
14507
15390
|
EventIndex = "eventIndex",
|
|
@@ -14528,6 +15411,7 @@ export declare enum SubgraphWithdrawalRequest_OrderBy {
|
|
|
14528
15411
|
MarketIsDelinquent = "market__isDelinquent",
|
|
14529
15412
|
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
14530
15413
|
MarketIsRegistered = "market__isRegistered",
|
|
15414
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
14531
15415
|
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
14532
15416
|
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
14533
15417
|
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|