@superfluid-finance/sdk-core 0.4.1-dev.f54cc8b.0 → 0.4.2-dev.9b763f0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/LICENSE +1 -1
- package/README.md +3 -2
- package/dist/index.umd.js +177 -108
- package/dist/main/constants.d.ts +29 -11
- package/dist/main/constants.d.ts.map +1 -1
- package/dist/main/constants.js +99 -69
- package/dist/main/constants.js.map +1 -1
- package/dist/main/events.d.ts +1 -0
- package/dist/main/events.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.js +39 -0
- package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts +1 -0
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.js.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts +1 -0
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js.map +1 -1
- package/dist/main/subgraph/events/events.generated.d.ts +74 -0
- package/dist/main/subgraph/events/events.generated.d.ts.map +1 -1
- package/dist/main/subgraph/events/events.generated.js +37 -37
- package/dist/main/subgraph/events/events.generated.js.map +1 -1
- package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +38 -0
- package/dist/main/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
- package/dist/main/subgraph/queries/getAllEvents.generated.js +1 -1
- package/dist/main/subgraph/queries/getAllEvents.generated.js.map +1 -1
- package/dist/main/subgraph/schema.generated.d.ts +360 -40
- package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
- package/dist/module/constants.d.ts +29 -11
- package/dist/module/constants.d.ts.map +1 -1
- package/dist/module/constants.js +98 -68
- package/dist/module/constants.js.map +1 -1
- package/dist/module/events.d.ts +1 -0
- package/dist/module/events.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.js +39 -0
- package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts +1 -0
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.js.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts +1 -0
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js.map +1 -1
- package/dist/module/subgraph/events/events.generated.d.ts +74 -0
- package/dist/module/subgraph/events/events.generated.d.ts.map +1 -1
- package/dist/module/subgraph/events/events.generated.js +37 -37
- package/dist/module/subgraph/events/events.generated.js.map +1 -1
- package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +38 -0
- package/dist/module/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
- package/dist/module/subgraph/queries/getAllEvents.generated.js +1 -1
- package/dist/module/subgraph/queries/getAllEvents.generated.js.map +1 -1
- package/dist/module/subgraph/schema.generated.d.ts +360 -40
- package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -59,6 +59,14 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
59
59
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
60
60
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
61
61
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
62
|
+
maybeCriticalAtTimestamp?: InputMaybe<Scalars['BigInt']>;
|
|
63
|
+
maybeCriticalAtTimestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
64
|
+
maybeCriticalAtTimestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
65
|
+
maybeCriticalAtTimestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
66
|
+
maybeCriticalAtTimestamp_lt?: InputMaybe<Scalars['BigInt']>;
|
|
67
|
+
maybeCriticalAtTimestamp_lte?: InputMaybe<Scalars['BigInt']>;
|
|
68
|
+
maybeCriticalAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
69
|
+
maybeCriticalAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
62
70
|
token?: InputMaybe<Scalars['String']>;
|
|
63
71
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
64
72
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -176,7 +184,7 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
176
184
|
updatedAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
177
185
|
updatedAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
178
186
|
}
|
|
179
|
-
export declare type AccountTokenSnapshot_OrderBy = 'account' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'token' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
|
|
187
|
+
export declare type AccountTokenSnapshot_OrderBy = 'account' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'maybeCriticalAtTimestamp' | 'token' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
|
|
180
188
|
export interface Account_Filter {
|
|
181
189
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
182
190
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -287,6 +295,14 @@ export interface AgreementClassRegisteredEvent_Filter {
|
|
|
287
295
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
288
296
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
289
297
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
298
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
299
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
300
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
301
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
302
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
303
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
304
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
305
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
290
306
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
291
307
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
292
308
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -302,7 +318,7 @@ export interface AgreementClassRegisteredEvent_Filter {
|
|
|
302
318
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
303
319
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
304
320
|
}
|
|
305
|
-
export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
|
|
321
|
+
export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
306
322
|
export interface AgreementClassUpdatedEvent_Filter {
|
|
307
323
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
308
324
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -366,6 +382,14 @@ export interface AgreementClassUpdatedEvent_Filter {
|
|
|
366
382
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
367
383
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
368
384
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
385
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
386
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
387
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
388
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
389
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
390
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
391
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
392
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
369
393
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
370
394
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
371
395
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -381,7 +405,7 @@ export interface AgreementClassUpdatedEvent_Filter {
|
|
|
381
405
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
382
406
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
383
407
|
}
|
|
384
|
-
export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
|
|
408
|
+
export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
385
409
|
export interface AgreementLiquidatedByEvent_Filter {
|
|
386
410
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
387
411
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -465,6 +489,14 @@ export interface AgreementLiquidatedByEvent_Filter {
|
|
|
465
489
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
466
490
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
467
491
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
492
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
493
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
494
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
495
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
496
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
497
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
498
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
499
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
468
500
|
penaltyAccount?: InputMaybe<Scalars['Bytes']>;
|
|
469
501
|
penaltyAccount_contains?: InputMaybe<Scalars['Bytes']>;
|
|
470
502
|
penaltyAccount_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -500,7 +532,7 @@ export interface AgreementLiquidatedByEvent_Filter {
|
|
|
500
532
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
501
533
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
502
534
|
}
|
|
503
|
-
export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
|
|
535
|
+
export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
|
|
504
536
|
export interface AgreementLiquidatedV2Event_Filter {
|
|
505
537
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
506
538
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -578,6 +610,14 @@ export interface AgreementLiquidatedV2Event_Filter {
|
|
|
578
610
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
579
611
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
580
612
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
613
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
614
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
615
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
616
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
617
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
618
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
619
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
620
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
581
621
|
rewardAccount?: InputMaybe<Scalars['Bytes']>;
|
|
582
622
|
rewardAccount_contains?: InputMaybe<Scalars['Bytes']>;
|
|
583
623
|
rewardAccount_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -635,7 +675,7 @@ export interface AgreementLiquidatedV2Event_Filter {
|
|
|
635
675
|
version_not?: InputMaybe<Scalars['BigInt']>;
|
|
636
676
|
version_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
637
677
|
}
|
|
638
|
-
export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
|
|
678
|
+
export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
|
|
639
679
|
export interface AppRegisteredEvent_Filter {
|
|
640
680
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
641
681
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -693,6 +733,14 @@ export interface AppRegisteredEvent_Filter {
|
|
|
693
733
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
694
734
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
695
735
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
736
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
737
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
738
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
739
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
740
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
741
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
742
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
743
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
696
744
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
697
745
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
698
746
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -708,7 +756,7 @@ export interface AppRegisteredEvent_Filter {
|
|
|
708
756
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
709
757
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
710
758
|
}
|
|
711
|
-
export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
|
|
759
|
+
export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
712
760
|
export interface Block_Height {
|
|
713
761
|
hash?: InputMaybe<Scalars['Bytes']>;
|
|
714
762
|
number?: InputMaybe<Scalars['Int']>;
|
|
@@ -797,6 +845,14 @@ export interface BurnedEvent_Filter {
|
|
|
797
845
|
operator_not?: InputMaybe<Scalars['Bytes']>;
|
|
798
846
|
operator_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
799
847
|
operator_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
848
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
849
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
850
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
851
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
852
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
853
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
854
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
855
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
800
856
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
801
857
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
802
858
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -812,7 +868,7 @@ export interface BurnedEvent_Filter {
|
|
|
812
868
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
813
869
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
814
870
|
}
|
|
815
|
-
export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'transactionHash';
|
|
871
|
+
export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'transactionHash';
|
|
816
872
|
export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
817
873
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
818
874
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -882,6 +938,14 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
|
882
938
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
883
939
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
884
940
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
941
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
942
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
943
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
944
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
945
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
946
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
947
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
948
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
885
949
|
superToken?: InputMaybe<Scalars['Bytes']>;
|
|
886
950
|
superToken_contains?: InputMaybe<Scalars['Bytes']>;
|
|
887
951
|
superToken_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -903,7 +967,7 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
|
903
967
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
904
968
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
905
969
|
}
|
|
906
|
-
export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
970
|
+
export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
907
971
|
export interface ConfigChangedEvent_Filter {
|
|
908
972
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
909
973
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -971,6 +1035,14 @@ export interface ConfigChangedEvent_Filter {
|
|
|
971
1035
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
972
1036
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
973
1037
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1038
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1039
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1040
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1041
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1042
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1043
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1044
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1045
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
974
1046
|
superToken?: InputMaybe<Scalars['Bytes']>;
|
|
975
1047
|
superToken_contains?: InputMaybe<Scalars['Bytes']>;
|
|
976
1048
|
superToken_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1000,7 +1072,7 @@ export interface ConfigChangedEvent_Filter {
|
|
|
1000
1072
|
value_not?: InputMaybe<Scalars['BigInt']>;
|
|
1001
1073
|
value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1002
1074
|
}
|
|
1003
|
-
export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
|
|
1075
|
+
export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
|
|
1004
1076
|
export interface CustomSuperTokenCreatedEvent_Filter {
|
|
1005
1077
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1006
1078
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1052,6 +1124,14 @@ export interface CustomSuperTokenCreatedEvent_Filter {
|
|
|
1052
1124
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1053
1125
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1054
1126
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1127
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1128
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1129
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1130
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1131
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1132
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1133
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1134
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1055
1135
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
1056
1136
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1057
1137
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1073,7 +1153,7 @@ export interface CustomSuperTokenCreatedEvent_Filter {
|
|
|
1073
1153
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1074
1154
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1075
1155
|
}
|
|
1076
|
-
export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
1156
|
+
export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
1077
1157
|
export interface Event_Filter {
|
|
1078
1158
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1079
1159
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1125,6 +1205,14 @@ export interface Event_Filter {
|
|
|
1125
1205
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1126
1206
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1127
1207
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1208
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1209
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1210
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1211
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1212
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1213
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1214
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1215
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1128
1216
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
1129
1217
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1130
1218
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1140,7 +1228,7 @@ export interface Event_Filter {
|
|
|
1140
1228
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1141
1229
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1142
1230
|
}
|
|
1143
|
-
export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
|
|
1231
|
+
export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
1144
1232
|
export interface FlowOperatorUpdatedEvent_Filter {
|
|
1145
1233
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1146
1234
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1220,6 +1308,14 @@ export interface FlowOperatorUpdatedEvent_Filter {
|
|
|
1220
1308
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1221
1309
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1222
1310
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1311
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1312
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1313
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1314
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1315
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1316
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1317
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1318
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1223
1319
|
permissions?: InputMaybe<Scalars['Int']>;
|
|
1224
1320
|
permissions_gt?: InputMaybe<Scalars['Int']>;
|
|
1225
1321
|
permissions_gte?: InputMaybe<Scalars['Int']>;
|
|
@@ -1255,7 +1351,7 @@ export interface FlowOperatorUpdatedEvent_Filter {
|
|
|
1255
1351
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1256
1352
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1257
1353
|
}
|
|
1258
|
-
export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'logIndex' | 'name' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
|
|
1354
|
+
export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'logIndex' | 'name' | 'order' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
|
|
1259
1355
|
export interface FlowOperator_Filter {
|
|
1260
1356
|
accountTokenSnapshot?: InputMaybe<Scalars['String']>;
|
|
1261
1357
|
accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
|
|
@@ -1470,6 +1566,14 @@ export interface FlowUpdatedEvent_Filter {
|
|
|
1470
1566
|
oldFlowRate_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1471
1567
|
oldFlowRate_not?: InputMaybe<Scalars['BigInt']>;
|
|
1472
1568
|
oldFlowRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1569
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1570
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1571
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1572
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1573
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1574
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1575
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1576
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1473
1577
|
receiver?: InputMaybe<Scalars['Bytes']>;
|
|
1474
1578
|
receiver_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1475
1579
|
receiver_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1561,7 +1665,7 @@ export interface FlowUpdatedEvent_Filter {
|
|
|
1561
1665
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1562
1666
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1563
1667
|
}
|
|
1564
|
-
export declare type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'id' | 'logIndex' | 'name' | 'oldFlowRate' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
|
|
1668
|
+
export declare type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'id' | 'logIndex' | 'name' | 'oldFlowRate' | 'order' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
|
|
1565
1669
|
export interface GovernanceReplacedEvent_Filter {
|
|
1566
1670
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1567
1671
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1625,6 +1729,14 @@ export interface GovernanceReplacedEvent_Filter {
|
|
|
1625
1729
|
oldGovernance_not?: InputMaybe<Scalars['Bytes']>;
|
|
1626
1730
|
oldGovernance_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1627
1731
|
oldGovernance_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1732
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1733
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1734
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1735
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1736
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1737
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1738
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1739
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1628
1740
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
1629
1741
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1630
1742
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1640,7 +1752,7 @@ export interface GovernanceReplacedEvent_Filter {
|
|
|
1640
1752
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1641
1753
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1642
1754
|
}
|
|
1643
|
-
export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'timestamp' | 'transactionHash';
|
|
1755
|
+
export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'order' | 'timestamp' | 'transactionHash';
|
|
1644
1756
|
export interface IndexCreatedEvent_Filter {
|
|
1645
1757
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1646
1758
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1720,6 +1832,14 @@ export interface IndexCreatedEvent_Filter {
|
|
|
1720
1832
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1721
1833
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1722
1834
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1835
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1836
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1837
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1838
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1839
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1840
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1841
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1842
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1723
1843
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
1724
1844
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1725
1845
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1753,7 +1873,7 @@ export interface IndexCreatedEvent_Filter {
|
|
|
1753
1873
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1754
1874
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1755
1875
|
}
|
|
1756
|
-
export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
1876
|
+
export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
1757
1877
|
export interface IndexDistributionClaimedEvent_Filter {
|
|
1758
1878
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1759
1879
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1841,6 +1961,14 @@ export interface IndexDistributionClaimedEvent_Filter {
|
|
|
1841
1961
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1842
1962
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1843
1963
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1964
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1965
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1966
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1967
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1968
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1969
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1970
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1971
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1844
1972
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
1845
1973
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1846
1974
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1874,7 +2002,7 @@ export interface IndexDistributionClaimedEvent_Filter {
|
|
|
1874
2002
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1875
2003
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1876
2004
|
}
|
|
1877
|
-
export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
|
|
2005
|
+
export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
|
|
1878
2006
|
export interface IndexSubscribedEvent_Filter {
|
|
1879
2007
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1880
2008
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1954,6 +2082,14 @@ export interface IndexSubscribedEvent_Filter {
|
|
|
1954
2082
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1955
2083
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1956
2084
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2085
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2086
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2087
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2088
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2089
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2090
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2091
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2092
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1957
2093
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
1958
2094
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1959
2095
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1993,7 +2129,7 @@ export interface IndexSubscribedEvent_Filter {
|
|
|
1993
2129
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1994
2130
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1995
2131
|
}
|
|
1996
|
-
export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
2132
|
+
export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
1997
2133
|
export interface IndexSubscription_Filter {
|
|
1998
2134
|
approved?: InputMaybe<Scalars['Boolean']>;
|
|
1999
2135
|
approved_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
@@ -2192,6 +2328,14 @@ export interface IndexUnitsUpdatedEvent_Filter {
|
|
|
2192
2328
|
oldUnits_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2193
2329
|
oldUnits_not?: InputMaybe<Scalars['BigInt']>;
|
|
2194
2330
|
oldUnits_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2331
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2332
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2333
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2334
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2335
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2336
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2337
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2338
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2195
2339
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
2196
2340
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2197
2341
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2239,7 +2383,7 @@ export interface IndexUnitsUpdatedEvent_Filter {
|
|
|
2239
2383
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2240
2384
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2241
2385
|
}
|
|
2242
|
-
export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
2386
|
+
export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
2243
2387
|
export interface IndexUnsubscribedEvent_Filter {
|
|
2244
2388
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2245
2389
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2319,6 +2463,14 @@ export interface IndexUnsubscribedEvent_Filter {
|
|
|
2319
2463
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2320
2464
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2321
2465
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2466
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2467
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2468
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2469
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2470
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2471
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2472
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2473
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2322
2474
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
2323
2475
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2324
2476
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2358,7 +2510,7 @@ export interface IndexUnsubscribedEvent_Filter {
|
|
|
2358
2510
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2359
2511
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2360
2512
|
}
|
|
2361
|
-
export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
2513
|
+
export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
2362
2514
|
export interface IndexUpdatedEvent_Filter {
|
|
2363
2515
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2364
2516
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2454,6 +2606,14 @@ export interface IndexUpdatedEvent_Filter {
|
|
|
2454
2606
|
oldIndexValue_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2455
2607
|
oldIndexValue_not?: InputMaybe<Scalars['BigInt']>;
|
|
2456
2608
|
oldIndexValue_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2609
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2610
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2611
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2612
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2613
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2614
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2615
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2616
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2457
2617
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
2458
2618
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2459
2619
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2503,7 +2663,7 @@ export interface IndexUpdatedEvent_Filter {
|
|
|
2503
2663
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2504
2664
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2505
2665
|
}
|
|
2506
|
-
export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
|
|
2666
|
+
export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'order' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
|
|
2507
2667
|
export interface Index_Filter {
|
|
2508
2668
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
2509
2669
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2720,6 +2880,14 @@ export interface JailEvent_Filter {
|
|
|
2720
2880
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2721
2881
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2722
2882
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2883
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2884
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2885
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2886
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2887
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2888
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2889
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2890
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2723
2891
|
reason?: InputMaybe<Scalars['BigInt']>;
|
|
2724
2892
|
reason_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2725
2893
|
reason_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2743,7 +2911,7 @@ export interface JailEvent_Filter {
|
|
|
2743
2911
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2744
2912
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2745
2913
|
}
|
|
2746
|
-
export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'reason' | 'timestamp' | 'transactionHash';
|
|
2914
|
+
export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'reason' | 'timestamp' | 'transactionHash';
|
|
2747
2915
|
export interface MintedEvent_Filter {
|
|
2748
2916
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2749
2917
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2821,6 +2989,14 @@ export interface MintedEvent_Filter {
|
|
|
2821
2989
|
operator_not?: InputMaybe<Scalars['Bytes']>;
|
|
2822
2990
|
operator_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2823
2991
|
operator_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2992
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2993
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2994
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2995
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2996
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2997
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2998
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2999
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2824
3000
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
2825
3001
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2826
3002
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2842,7 +3018,7 @@ export interface MintedEvent_Filter {
|
|
|
2842
3018
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2843
3019
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2844
3020
|
}
|
|
2845
|
-
export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
|
|
3021
|
+
export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'transactionHash';
|
|
2846
3022
|
export declare type OrderDirection = 'asc' | 'desc';
|
|
2847
3023
|
export interface PppConfigurationChangedEvent_Filter {
|
|
2848
3024
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2913,6 +3089,14 @@ export interface PppConfigurationChangedEvent_Filter {
|
|
|
2913
3089
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2914
3090
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2915
3091
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3092
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3093
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3094
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3095
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3096
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3097
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3098
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3099
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2916
3100
|
patricianPeriod?: InputMaybe<Scalars['BigInt']>;
|
|
2917
3101
|
patricianPeriod_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2918
3102
|
patricianPeriod_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2942,7 +3126,7 @@ export interface PppConfigurationChangedEvent_Filter {
|
|
|
2942
3126
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2943
3127
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2944
3128
|
}
|
|
2945
|
-
export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
3129
|
+
export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
2946
3130
|
export interface RewardAddressChangedEvent_Filter {
|
|
2947
3131
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2948
3132
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3004,6 +3188,14 @@ export interface RewardAddressChangedEvent_Filter {
|
|
|
3004
3188
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3005
3189
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3006
3190
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3191
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3192
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3193
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3194
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3195
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3196
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3197
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3198
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3007
3199
|
rewardAddress?: InputMaybe<Scalars['Bytes']>;
|
|
3008
3200
|
rewardAddress_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3009
3201
|
rewardAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3031,7 +3223,7 @@ export interface RewardAddressChangedEvent_Filter {
|
|
|
3031
3223
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3032
3224
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3033
3225
|
}
|
|
3034
|
-
export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
3226
|
+
export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
3035
3227
|
export interface RoleAdminChangedEvent_Filter {
|
|
3036
3228
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3037
3229
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3089,6 +3281,14 @@ export interface RoleAdminChangedEvent_Filter {
|
|
|
3089
3281
|
newAdminRole_not?: InputMaybe<Scalars['Bytes']>;
|
|
3090
3282
|
newAdminRole_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3091
3283
|
newAdminRole_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3284
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3285
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3286
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3287
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3288
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3289
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3290
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3291
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3092
3292
|
previousAdminRole?: InputMaybe<Scalars['Bytes']>;
|
|
3093
3293
|
previousAdminRole_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3094
3294
|
previousAdminRole_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3116,7 +3316,7 @@ export interface RoleAdminChangedEvent_Filter {
|
|
|
3116
3316
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3117
3317
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3118
3318
|
}
|
|
3119
|
-
export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
|
|
3319
|
+
export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'order' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
|
|
3120
3320
|
export interface RoleGrantedEvent_Filter {
|
|
3121
3321
|
account?: InputMaybe<Scalars['Bytes']>;
|
|
3122
3322
|
account_contains?: InputMaybe<Scalars['Bytes']>;
|
|
@@ -3174,6 +3374,14 @@ export interface RoleGrantedEvent_Filter {
|
|
|
3174
3374
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3175
3375
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3176
3376
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3377
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3378
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3379
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3380
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3381
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3382
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3383
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3384
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3177
3385
|
role?: InputMaybe<Scalars['Bytes']>;
|
|
3178
3386
|
role_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3179
3387
|
role_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3201,7 +3409,7 @@ export interface RoleGrantedEvent_Filter {
|
|
|
3201
3409
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3202
3410
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3203
3411
|
}
|
|
3204
|
-
export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3412
|
+
export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3205
3413
|
export interface RoleRevokedEvent_Filter {
|
|
3206
3414
|
account?: InputMaybe<Scalars['Bytes']>;
|
|
3207
3415
|
account_contains?: InputMaybe<Scalars['Bytes']>;
|
|
@@ -3259,6 +3467,14 @@ export interface RoleRevokedEvent_Filter {
|
|
|
3259
3467
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3260
3468
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3261
3469
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3470
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3471
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3472
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3473
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3474
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3475
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3476
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3477
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3262
3478
|
role?: InputMaybe<Scalars['Bytes']>;
|
|
3263
3479
|
role_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3264
3480
|
role_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3286,7 +3502,7 @@ export interface RoleRevokedEvent_Filter {
|
|
|
3286
3502
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3287
3503
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3288
3504
|
}
|
|
3289
|
-
export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3505
|
+
export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3290
3506
|
export interface SfMeta_Filter {
|
|
3291
3507
|
blockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
3292
3508
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3437,6 +3653,14 @@ export interface SentEvent_Filter {
|
|
|
3437
3653
|
operator_not?: InputMaybe<Scalars['Bytes']>;
|
|
3438
3654
|
operator_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3439
3655
|
operator_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3656
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3657
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3658
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3659
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3660
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3661
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3662
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3663
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3440
3664
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
3441
3665
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3442
3666
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3458,7 +3682,7 @@ export interface SentEvent_Filter {
|
|
|
3458
3682
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3459
3683
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3460
3684
|
}
|
|
3461
|
-
export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
|
|
3685
|
+
export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'transactionHash';
|
|
3462
3686
|
export interface StreamPeriod_Filter {
|
|
3463
3687
|
deposit?: InputMaybe<Scalars['BigInt']>;
|
|
3464
3688
|
deposit_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3859,6 +4083,14 @@ export interface SubscriptionApprovedEvent_Filter {
|
|
|
3859
4083
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3860
4084
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3861
4085
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4086
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4087
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4088
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4089
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4090
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4091
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4092
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4093
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3862
4094
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
3863
4095
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3864
4096
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3918,7 +4150,7 @@ export interface SubscriptionApprovedEvent_Filter {
|
|
|
3918
4150
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3919
4151
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3920
4152
|
}
|
|
3921
|
-
export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
4153
|
+
export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
3922
4154
|
export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
3923
4155
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3924
4156
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3986,6 +4218,14 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
|
3986
4218
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3987
4219
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3988
4220
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4221
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4222
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4223
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4224
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4225
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4226
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4227
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4228
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3989
4229
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
3990
4230
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3991
4231
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4039,7 +4279,7 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
|
4039
4279
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4040
4280
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4041
4281
|
}
|
|
4042
|
-
export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
|
|
4282
|
+
export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
|
|
4043
4283
|
export interface SubscriptionRevokedEvent_Filter {
|
|
4044
4284
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4045
4285
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4099,6 +4339,14 @@ export interface SubscriptionRevokedEvent_Filter {
|
|
|
4099
4339
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4100
4340
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4101
4341
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4342
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4343
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4344
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4345
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4346
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4347
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4348
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4349
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4102
4350
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
4103
4351
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4104
4352
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4158,7 +4406,7 @@ export interface SubscriptionRevokedEvent_Filter {
|
|
|
4158
4406
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4159
4407
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4160
4408
|
}
|
|
4161
|
-
export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
4409
|
+
export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
4162
4410
|
export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
4163
4411
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4164
4412
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4226,6 +4474,14 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
|
4226
4474
|
oldUnits_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4227
4475
|
oldUnits_not?: InputMaybe<Scalars['BigInt']>;
|
|
4228
4476
|
oldUnits_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4477
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4478
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4479
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4480
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4481
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4482
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4483
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4484
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4229
4485
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
4230
4486
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4231
4487
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4293,7 +4549,7 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
|
4293
4549
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4294
4550
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4295
4551
|
}
|
|
4296
|
-
export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
4552
|
+
export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
4297
4553
|
export interface SuperTokenCreatedEvent_Filter {
|
|
4298
4554
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4299
4555
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4345,6 +4601,14 @@ export interface SuperTokenCreatedEvent_Filter {
|
|
|
4345
4601
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4346
4602
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4347
4603
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4604
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4605
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4606
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4607
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4608
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4609
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4610
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4611
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4348
4612
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4349
4613
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4350
4614
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4366,7 +4630,7 @@ export interface SuperTokenCreatedEvent_Filter {
|
|
|
4366
4630
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4367
4631
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4368
4632
|
}
|
|
4369
|
-
export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
4633
|
+
export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4370
4634
|
export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
4371
4635
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4372
4636
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4424,6 +4688,14 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
|
4424
4688
|
newFactory_not?: InputMaybe<Scalars['Bytes']>;
|
|
4425
4689
|
newFactory_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4426
4690
|
newFactory_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4691
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4692
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4693
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4694
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4695
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4696
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4697
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4698
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4427
4699
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4428
4700
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4429
4701
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4439,7 +4711,7 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
|
4439
4711
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4440
4712
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4441
4713
|
}
|
|
4442
|
-
export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'timestamp' | 'transactionHash';
|
|
4714
|
+
export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'order' | 'timestamp' | 'transactionHash';
|
|
4443
4715
|
export interface SuperTokenLogicCreatedEvent_Filter {
|
|
4444
4716
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4445
4717
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4491,6 +4763,14 @@ export interface SuperTokenLogicCreatedEvent_Filter {
|
|
|
4491
4763
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4492
4764
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4493
4765
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4766
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4767
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4768
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4769
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4770
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4771
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4772
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4773
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4494
4774
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4495
4775
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4496
4776
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4512,7 +4792,7 @@ export interface SuperTokenLogicCreatedEvent_Filter {
|
|
|
4512
4792
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4513
4793
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4514
4794
|
}
|
|
4515
|
-
export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'tokenLogic' | 'transactionHash';
|
|
4795
|
+
export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'tokenLogic' | 'transactionHash';
|
|
4516
4796
|
export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
4517
4797
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4518
4798
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4570,6 +4850,14 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
|
4570
4850
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4571
4851
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4572
4852
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4853
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4854
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4855
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4856
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4857
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4858
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4859
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4860
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4573
4861
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4574
4862
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4575
4863
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4591,7 +4879,7 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
|
4591
4879
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4592
4880
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4593
4881
|
}
|
|
4594
|
-
export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
4882
|
+
export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4595
4883
|
export interface TokenDowngradedEvent_Filter {
|
|
4596
4884
|
account?: InputMaybe<Scalars['String']>;
|
|
4597
4885
|
account_contains?: InputMaybe<Scalars['String']>;
|
|
@@ -4671,6 +4959,14 @@ export interface TokenDowngradedEvent_Filter {
|
|
|
4671
4959
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4672
4960
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4673
4961
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4962
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4963
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4964
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4965
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4966
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4967
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4968
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4969
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4674
4970
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4675
4971
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4676
4972
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4692,7 +4988,7 @@ export interface TokenDowngradedEvent_Filter {
|
|
|
4692
4988
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4693
4989
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4694
4990
|
}
|
|
4695
|
-
export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
4991
|
+
export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4696
4992
|
export interface TokenStatistic_Filter {
|
|
4697
4993
|
id?: InputMaybe<Scalars['ID']>;
|
|
4698
4994
|
id_gt?: InputMaybe<Scalars['ID']>;
|
|
@@ -4915,6 +5211,14 @@ export interface TokenUpgradedEvent_Filter {
|
|
|
4915
5211
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4916
5212
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4917
5213
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5214
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
5215
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5216
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5217
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5218
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5219
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5220
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
5221
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4918
5222
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4919
5223
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4920
5224
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4936,7 +5240,7 @@ export interface TokenUpgradedEvent_Filter {
|
|
|
4936
5240
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4937
5241
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4938
5242
|
}
|
|
4939
|
-
export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
5243
|
+
export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4940
5244
|
export interface Token_Filter {
|
|
4941
5245
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
4942
5246
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -5117,6 +5421,14 @@ export interface TransferEvent_Filter {
|
|
|
5117
5421
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5118
5422
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
5119
5423
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5424
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
5425
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5426
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5427
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5428
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5429
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5430
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
5431
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5120
5432
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
5121
5433
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5122
5434
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -5166,7 +5478,7 @@ export interface TransferEvent_Filter {
|
|
|
5166
5478
|
value_not?: InputMaybe<Scalars['BigInt']>;
|
|
5167
5479
|
value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5168
5480
|
}
|
|
5169
|
-
export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
|
|
5481
|
+
export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
|
|
5170
5482
|
export interface TrustedForwarderChangedEvent_Filter {
|
|
5171
5483
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
5172
5484
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -5238,6 +5550,14 @@ export interface TrustedForwarderChangedEvent_Filter {
|
|
|
5238
5550
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5239
5551
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
5240
5552
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5553
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
5554
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5555
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5556
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5557
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5558
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5559
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
5560
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5241
5561
|
superToken?: InputMaybe<Scalars['Bytes']>;
|
|
5242
5562
|
superToken_contains?: InputMaybe<Scalars['Bytes']>;
|
|
5243
5563
|
superToken_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -5259,6 +5579,6 @@ export interface TrustedForwarderChangedEvent_Filter {
|
|
|
5259
5579
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
5260
5580
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
5261
5581
|
}
|
|
5262
|
-
export declare type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
5582
|
+
export declare type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
5263
5583
|
export declare type _SubgraphErrorPolicy_ = 'allow' | 'deny';
|
|
5264
5584
|
//# sourceMappingURL=schema.generated.d.ts.map
|