@superfluid-finance/sdk-core 0.4.1-dev.db8e1dc.0 → 0.4.1-dev.f54cc8b.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.
Files changed (32) hide show
  1. package/dist/index.umd.js +77 -38
  2. package/dist/main/events.d.ts +1 -0
  3. package/dist/main/events.d.ts.map +1 -1
  4. package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
  5. package/dist/main/mapGetAllEventsQueryEvents.js +39 -0
  6. package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
  7. package/dist/main/subgraph/events/events.generated.d.ts +74 -0
  8. package/dist/main/subgraph/events/events.generated.d.ts.map +1 -1
  9. package/dist/main/subgraph/events/events.generated.js +37 -37
  10. package/dist/main/subgraph/events/events.generated.js.map +1 -1
  11. package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +38 -0
  12. package/dist/main/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
  13. package/dist/main/subgraph/queries/getAllEvents.generated.js +1 -1
  14. package/dist/main/subgraph/queries/getAllEvents.generated.js.map +1 -1
  15. package/dist/main/subgraph/schema.generated.d.ts +351 -39
  16. package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
  17. package/dist/module/events.d.ts +1 -0
  18. package/dist/module/events.d.ts.map +1 -1
  19. package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
  20. package/dist/module/mapGetAllEventsQueryEvents.js +39 -0
  21. package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
  22. package/dist/module/subgraph/events/events.generated.d.ts +74 -0
  23. package/dist/module/subgraph/events/events.generated.d.ts.map +1 -1
  24. package/dist/module/subgraph/events/events.generated.js +37 -37
  25. package/dist/module/subgraph/events/events.generated.js.map +1 -1
  26. package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +38 -0
  27. package/dist/module/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
  28. package/dist/module/subgraph/queries/getAllEvents.generated.js +1 -1
  29. package/dist/module/subgraph/queries/getAllEvents.generated.js.map +1 -1
  30. package/dist/module/subgraph/schema.generated.d.ts +351 -39
  31. package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
  32. package/package.json +4 -4
@@ -259,6 +259,14 @@ export interface AgreementClassRegisteredEvent_Filter {
259
259
  id_lte?: InputMaybe<Scalars['ID']>;
260
260
  id_not?: InputMaybe<Scalars['ID']>;
261
261
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
262
+ logIndex?: InputMaybe<Scalars['BigInt']>;
263
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
264
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
265
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
266
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
267
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
268
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
269
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
262
270
  name?: InputMaybe<Scalars['String']>;
263
271
  name_contains?: InputMaybe<Scalars['String']>;
264
272
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -294,7 +302,7 @@ export interface AgreementClassRegisteredEvent_Filter {
294
302
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
295
303
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
296
304
  }
297
- export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'name' | 'timestamp' | 'transactionHash';
305
+ export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
298
306
  export interface AgreementClassUpdatedEvent_Filter {
299
307
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
300
308
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -330,6 +338,14 @@ export interface AgreementClassUpdatedEvent_Filter {
330
338
  id_lte?: InputMaybe<Scalars['ID']>;
331
339
  id_not?: InputMaybe<Scalars['ID']>;
332
340
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
341
+ logIndex?: InputMaybe<Scalars['BigInt']>;
342
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
343
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
344
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
345
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
346
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
347
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
348
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
333
349
  name?: InputMaybe<Scalars['String']>;
334
350
  name_contains?: InputMaybe<Scalars['String']>;
335
351
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -365,7 +381,7 @@ export interface AgreementClassUpdatedEvent_Filter {
365
381
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
366
382
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
367
383
  }
368
- export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'name' | 'timestamp' | 'transactionHash';
384
+ export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
369
385
  export interface AgreementLiquidatedByEvent_Filter {
370
386
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
371
387
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -421,6 +437,14 @@ export interface AgreementLiquidatedByEvent_Filter {
421
437
  liquidatorAccount_not?: InputMaybe<Scalars['Bytes']>;
422
438
  liquidatorAccount_not_contains?: InputMaybe<Scalars['Bytes']>;
423
439
  liquidatorAccount_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
440
+ logIndex?: InputMaybe<Scalars['BigInt']>;
441
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
442
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
443
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
444
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
445
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
446
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
447
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
424
448
  name?: InputMaybe<Scalars['String']>;
425
449
  name_contains?: InputMaybe<Scalars['String']>;
426
450
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -476,7 +500,7 @@ export interface AgreementLiquidatedByEvent_Filter {
476
500
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
477
501
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
478
502
  }
479
- export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'name' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
503
+ export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
480
504
  export interface AgreementLiquidatedV2Event_Filter {
481
505
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
482
506
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -526,6 +550,14 @@ export interface AgreementLiquidatedV2Event_Filter {
526
550
  liquidatorAccount_not?: InputMaybe<Scalars['Bytes']>;
527
551
  liquidatorAccount_not_contains?: InputMaybe<Scalars['Bytes']>;
528
552
  liquidatorAccount_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
553
+ logIndex?: InputMaybe<Scalars['BigInt']>;
554
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
555
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
556
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
557
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
558
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
559
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
560
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
529
561
  name?: InputMaybe<Scalars['String']>;
530
562
  name_contains?: InputMaybe<Scalars['String']>;
531
563
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -603,7 +635,7 @@ export interface AgreementLiquidatedV2Event_Filter {
603
635
  version_not?: InputMaybe<Scalars['BigInt']>;
604
636
  version_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
605
637
  }
606
- export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'name' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
638
+ export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
607
639
  export interface AppRegisteredEvent_Filter {
608
640
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
609
641
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -633,6 +665,14 @@ export interface AppRegisteredEvent_Filter {
633
665
  id_lte?: InputMaybe<Scalars['ID']>;
634
666
  id_not?: InputMaybe<Scalars['ID']>;
635
667
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
668
+ logIndex?: InputMaybe<Scalars['BigInt']>;
669
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
670
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
671
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
672
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
673
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
674
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
675
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
636
676
  name?: InputMaybe<Scalars['String']>;
637
677
  name_contains?: InputMaybe<Scalars['String']>;
638
678
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -668,7 +708,7 @@ export interface AppRegisteredEvent_Filter {
668
708
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
669
709
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
670
710
  }
671
- export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'transactionHash';
711
+ export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
672
712
  export interface Block_Height {
673
713
  hash?: InputMaybe<Scalars['Bytes']>;
674
714
  number?: InputMaybe<Scalars['Int']>;
@@ -717,6 +757,14 @@ export interface BurnedEvent_Filter {
717
757
  id_lte?: InputMaybe<Scalars['ID']>;
718
758
  id_not?: InputMaybe<Scalars['ID']>;
719
759
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
760
+ logIndex?: InputMaybe<Scalars['BigInt']>;
761
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
762
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
763
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
764
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
765
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
766
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
767
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
720
768
  name?: InputMaybe<Scalars['String']>;
721
769
  name_contains?: InputMaybe<Scalars['String']>;
722
770
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -764,7 +812,7 @@ export interface BurnedEvent_Filter {
764
812
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
765
813
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
766
814
  }
767
- export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'transactionHash';
815
+ export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'transactionHash';
768
816
  export interface CfAv1LiquidationPeriodChangedEvent_Filter {
769
817
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
770
818
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -806,6 +854,14 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
806
854
  liquidationPeriod_lte?: InputMaybe<Scalars['BigInt']>;
807
855
  liquidationPeriod_not?: InputMaybe<Scalars['BigInt']>;
808
856
  liquidationPeriod_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
857
+ logIndex?: InputMaybe<Scalars['BigInt']>;
858
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
859
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
860
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
861
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
862
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
863
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
864
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
809
865
  name?: InputMaybe<Scalars['String']>;
810
866
  name_contains?: InputMaybe<Scalars['String']>;
811
867
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -847,7 +903,7 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
847
903
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
848
904
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
849
905
  }
850
- export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
906
+ export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
851
907
  export interface ConfigChangedEvent_Filter {
852
908
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
853
909
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -887,6 +943,14 @@ export interface ConfigChangedEvent_Filter {
887
943
  key_not?: InputMaybe<Scalars['Bytes']>;
888
944
  key_not_contains?: InputMaybe<Scalars['Bytes']>;
889
945
  key_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
946
+ logIndex?: InputMaybe<Scalars['BigInt']>;
947
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
948
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
949
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
950
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
951
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
952
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
953
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
890
954
  name?: InputMaybe<Scalars['String']>;
891
955
  name_contains?: InputMaybe<Scalars['String']>;
892
956
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -936,7 +1000,7 @@ export interface ConfigChangedEvent_Filter {
936
1000
  value_not?: InputMaybe<Scalars['BigInt']>;
937
1001
  value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
938
1002
  }
939
- export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'name' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
1003
+ export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
940
1004
  export interface CustomSuperTokenCreatedEvent_Filter {
941
1005
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
942
1006
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -960,6 +1024,14 @@ export interface CustomSuperTokenCreatedEvent_Filter {
960
1024
  id_lte?: InputMaybe<Scalars['ID']>;
961
1025
  id_not?: InputMaybe<Scalars['ID']>;
962
1026
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1027
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1028
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1029
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1030
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1031
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1032
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1033
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1034
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
963
1035
  name?: InputMaybe<Scalars['String']>;
964
1036
  name_contains?: InputMaybe<Scalars['String']>;
965
1037
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1001,7 +1073,7 @@ export interface CustomSuperTokenCreatedEvent_Filter {
1001
1073
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1002
1074
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1003
1075
  }
1004
- export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
1076
+ export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
1005
1077
  export interface Event_Filter {
1006
1078
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1007
1079
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1025,6 +1097,14 @@ export interface Event_Filter {
1025
1097
  id_lte?: InputMaybe<Scalars['ID']>;
1026
1098
  id_not?: InputMaybe<Scalars['ID']>;
1027
1099
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1100
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1101
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1102
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1103
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1104
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1105
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1106
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1107
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1028
1108
  name?: InputMaybe<Scalars['String']>;
1029
1109
  name_contains?: InputMaybe<Scalars['String']>;
1030
1110
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1060,7 +1140,7 @@ export interface Event_Filter {
1060
1140
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1061
1141
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1062
1142
  }
1063
- export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'transactionHash';
1143
+ export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'transactionHash';
1064
1144
  export interface FlowOperatorUpdatedEvent_Filter {
1065
1145
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1066
1146
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1112,6 +1192,14 @@ export interface FlowOperatorUpdatedEvent_Filter {
1112
1192
  id_lte?: InputMaybe<Scalars['ID']>;
1113
1193
  id_not?: InputMaybe<Scalars['ID']>;
1114
1194
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1195
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1196
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1197
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1198
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1199
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1200
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1201
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1202
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1115
1203
  name?: InputMaybe<Scalars['String']>;
1116
1204
  name_contains?: InputMaybe<Scalars['String']>;
1117
1205
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1167,7 +1255,7 @@ export interface FlowOperatorUpdatedEvent_Filter {
1167
1255
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1168
1256
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1169
1257
  }
1170
- export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'name' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
1258
+ export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'logIndex' | 'name' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
1171
1259
  export interface FlowOperator_Filter {
1172
1260
  accountTokenSnapshot?: InputMaybe<Scalars['String']>;
1173
1261
  accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
@@ -1346,6 +1434,14 @@ export interface FlowUpdatedEvent_Filter {
1346
1434
  id_lte?: InputMaybe<Scalars['ID']>;
1347
1435
  id_not?: InputMaybe<Scalars['ID']>;
1348
1436
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1437
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1438
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1439
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1440
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1441
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1442
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1443
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1444
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1349
1445
  name?: InputMaybe<Scalars['String']>;
1350
1446
  name_contains?: InputMaybe<Scalars['String']>;
1351
1447
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1465,7 +1561,7 @@ export interface FlowUpdatedEvent_Filter {
1465
1561
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
1466
1562
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1467
1563
  }
1468
- export declare type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'id' | 'name' | 'oldFlowRate' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
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';
1469
1565
  export interface GovernanceReplacedEvent_Filter {
1470
1566
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1471
1567
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1489,6 +1585,14 @@ export interface GovernanceReplacedEvent_Filter {
1489
1585
  id_lte?: InputMaybe<Scalars['ID']>;
1490
1586
  id_not?: InputMaybe<Scalars['ID']>;
1491
1587
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1588
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1589
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1590
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1591
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1592
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1593
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1594
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1595
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1492
1596
  name?: InputMaybe<Scalars['String']>;
1493
1597
  name_contains?: InputMaybe<Scalars['String']>;
1494
1598
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1536,7 +1640,7 @@ export interface GovernanceReplacedEvent_Filter {
1536
1640
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1537
1641
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1538
1642
  }
1539
- export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'newGovernance' | 'oldGovernance' | 'timestamp' | 'transactionHash';
1643
+ export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'timestamp' | 'transactionHash';
1540
1644
  export interface IndexCreatedEvent_Filter {
1541
1645
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1542
1646
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1588,6 +1692,14 @@ export interface IndexCreatedEvent_Filter {
1588
1692
  index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
1589
1693
  index_starts_with?: InputMaybe<Scalars['String']>;
1590
1694
  index_starts_with_nocase?: InputMaybe<Scalars['String']>;
1695
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1696
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1697
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1698
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1699
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1700
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1701
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1702
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1591
1703
  name?: InputMaybe<Scalars['String']>;
1592
1704
  name_contains?: InputMaybe<Scalars['String']>;
1593
1705
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1641,7 +1753,7 @@ export interface IndexCreatedEvent_Filter {
1641
1753
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
1642
1754
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1643
1755
  }
1644
- export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
1756
+ export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
1645
1757
  export interface IndexDistributionClaimedEvent_Filter {
1646
1758
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1647
1759
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1701,6 +1813,14 @@ export interface IndexDistributionClaimedEvent_Filter {
1701
1813
  index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
1702
1814
  index_starts_with?: InputMaybe<Scalars['String']>;
1703
1815
  index_starts_with_nocase?: InputMaybe<Scalars['String']>;
1816
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1817
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1818
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1819
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1820
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1821
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1822
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1823
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1704
1824
  name?: InputMaybe<Scalars['String']>;
1705
1825
  name_contains?: InputMaybe<Scalars['String']>;
1706
1826
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1754,7 +1874,7 @@ export interface IndexDistributionClaimedEvent_Filter {
1754
1874
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1755
1875
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1756
1876
  }
1757
- export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
1877
+ export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
1758
1878
  export interface IndexSubscribedEvent_Filter {
1759
1879
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1760
1880
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1806,6 +1926,14 @@ export interface IndexSubscribedEvent_Filter {
1806
1926
  index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
1807
1927
  index_starts_with?: InputMaybe<Scalars['String']>;
1808
1928
  index_starts_with_nocase?: InputMaybe<Scalars['String']>;
1929
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1930
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1931
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1932
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1933
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1934
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1935
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1936
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1809
1937
  name?: InputMaybe<Scalars['String']>;
1810
1938
  name_contains?: InputMaybe<Scalars['String']>;
1811
1939
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1865,7 +1993,7 @@ export interface IndexSubscribedEvent_Filter {
1865
1993
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
1866
1994
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1867
1995
  }
1868
- export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
1996
+ export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
1869
1997
  export interface IndexSubscription_Filter {
1870
1998
  approved?: InputMaybe<Scalars['Boolean']>;
1871
1999
  approved_in?: InputMaybe<Array<Scalars['Boolean']>>;
@@ -2028,6 +2156,14 @@ export interface IndexUnitsUpdatedEvent_Filter {
2028
2156
  index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
2029
2157
  index_starts_with?: InputMaybe<Scalars['String']>;
2030
2158
  index_starts_with_nocase?: InputMaybe<Scalars['String']>;
2159
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2160
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2161
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2162
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2163
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2164
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2165
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2166
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2031
2167
  name?: InputMaybe<Scalars['String']>;
2032
2168
  name_contains?: InputMaybe<Scalars['String']>;
2033
2169
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2103,7 +2239,7 @@ export interface IndexUnitsUpdatedEvent_Filter {
2103
2239
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2104
2240
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2105
2241
  }
2106
- export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
2242
+ export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
2107
2243
  export interface IndexUnsubscribedEvent_Filter {
2108
2244
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2109
2245
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2155,6 +2291,14 @@ export interface IndexUnsubscribedEvent_Filter {
2155
2291
  index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
2156
2292
  index_starts_with?: InputMaybe<Scalars['String']>;
2157
2293
  index_starts_with_nocase?: InputMaybe<Scalars['String']>;
2294
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2295
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2296
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2297
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2298
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2299
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2300
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2301
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2158
2302
  name?: InputMaybe<Scalars['String']>;
2159
2303
  name_contains?: InputMaybe<Scalars['String']>;
2160
2304
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2214,7 +2358,7 @@ export interface IndexUnsubscribedEvent_Filter {
2214
2358
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2215
2359
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2216
2360
  }
2217
- export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2361
+ export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2218
2362
  export interface IndexUpdatedEvent_Filter {
2219
2363
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2220
2364
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2266,6 +2410,14 @@ export interface IndexUpdatedEvent_Filter {
2266
2410
  index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
2267
2411
  index_starts_with?: InputMaybe<Scalars['String']>;
2268
2412
  index_starts_with_nocase?: InputMaybe<Scalars['String']>;
2413
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2414
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2415
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2416
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2417
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2418
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2419
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2420
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2269
2421
  name?: InputMaybe<Scalars['String']>;
2270
2422
  name_contains?: InputMaybe<Scalars['String']>;
2271
2423
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2351,7 +2503,7 @@ export interface IndexUpdatedEvent_Filter {
2351
2503
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2352
2504
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2353
2505
  }
2354
- export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
2506
+ export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
2355
2507
  export interface Index_Filter {
2356
2508
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
2357
2509
  createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
@@ -2540,6 +2692,14 @@ export interface JailEvent_Filter {
2540
2692
  id_lte?: InputMaybe<Scalars['ID']>;
2541
2693
  id_not?: InputMaybe<Scalars['ID']>;
2542
2694
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
2695
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2696
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2697
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2698
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2699
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2700
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2701
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2702
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2543
2703
  name?: InputMaybe<Scalars['String']>;
2544
2704
  name_contains?: InputMaybe<Scalars['String']>;
2545
2705
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2583,7 +2743,7 @@ export interface JailEvent_Filter {
2583
2743
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2584
2744
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2585
2745
  }
2586
- export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'name' | 'reason' | 'timestamp' | 'transactionHash';
2746
+ export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'reason' | 'timestamp' | 'transactionHash';
2587
2747
  export interface MintedEvent_Filter {
2588
2748
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2589
2749
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2621,6 +2781,14 @@ export interface MintedEvent_Filter {
2621
2781
  id_lte?: InputMaybe<Scalars['ID']>;
2622
2782
  id_not?: InputMaybe<Scalars['ID']>;
2623
2783
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
2784
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2785
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2786
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2787
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2788
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2789
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2790
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2791
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2624
2792
  name?: InputMaybe<Scalars['String']>;
2625
2793
  name_contains?: InputMaybe<Scalars['String']>;
2626
2794
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2674,7 +2842,7 @@ export interface MintedEvent_Filter {
2674
2842
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2675
2843
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2676
2844
  }
2677
- export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
2845
+ export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
2678
2846
  export declare type OrderDirection = 'asc' | 'desc';
2679
2847
  export interface PppConfigurationChangedEvent_Filter {
2680
2848
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2717,6 +2885,14 @@ export interface PppConfigurationChangedEvent_Filter {
2717
2885
  liquidationPeriod_lte?: InputMaybe<Scalars['BigInt']>;
2718
2886
  liquidationPeriod_not?: InputMaybe<Scalars['BigInt']>;
2719
2887
  liquidationPeriod_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2888
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2889
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2890
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2891
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2892
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2893
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2894
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2895
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2720
2896
  name?: InputMaybe<Scalars['String']>;
2721
2897
  name_contains?: InputMaybe<Scalars['String']>;
2722
2898
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2766,7 +2942,7 @@ export interface PppConfigurationChangedEvent_Filter {
2766
2942
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2767
2943
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2768
2944
  }
2769
- export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'name' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
2945
+ export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
2770
2946
  export interface RewardAddressChangedEvent_Filter {
2771
2947
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2772
2948
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2800,6 +2976,14 @@ export interface RewardAddressChangedEvent_Filter {
2800
2976
  isKeySet_in?: InputMaybe<Array<Scalars['Boolean']>>;
2801
2977
  isKeySet_not?: InputMaybe<Scalars['Boolean']>;
2802
2978
  isKeySet_not_in?: InputMaybe<Array<Scalars['Boolean']>>;
2979
+ logIndex?: InputMaybe<Scalars['BigInt']>;
2980
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
2981
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
2982
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
2983
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
2984
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
2985
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
2986
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2803
2987
  name?: InputMaybe<Scalars['String']>;
2804
2988
  name_contains?: InputMaybe<Scalars['String']>;
2805
2989
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2847,7 +3031,7 @@ export interface RewardAddressChangedEvent_Filter {
2847
3031
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2848
3032
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2849
3033
  }
2850
- export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'name' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
3034
+ export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
2851
3035
  export interface RoleAdminChangedEvent_Filter {
2852
3036
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2853
3037
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2871,6 +3055,14 @@ export interface RoleAdminChangedEvent_Filter {
2871
3055
  id_lte?: InputMaybe<Scalars['ID']>;
2872
3056
  id_not?: InputMaybe<Scalars['ID']>;
2873
3057
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
3058
+ logIndex?: InputMaybe<Scalars['BigInt']>;
3059
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
3060
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
3061
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
3062
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
3063
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
3064
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
3065
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2874
3066
  name?: InputMaybe<Scalars['String']>;
2875
3067
  name_contains?: InputMaybe<Scalars['String']>;
2876
3068
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -2924,7 +3116,7 @@ export interface RoleAdminChangedEvent_Filter {
2924
3116
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2925
3117
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2926
3118
  }
2927
- export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'newAdminRole' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
3119
+ export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
2928
3120
  export interface RoleGrantedEvent_Filter {
2929
3121
  account?: InputMaybe<Scalars['Bytes']>;
2930
3122
  account_contains?: InputMaybe<Scalars['Bytes']>;
@@ -2954,6 +3146,14 @@ export interface RoleGrantedEvent_Filter {
2954
3146
  id_lte?: InputMaybe<Scalars['ID']>;
2955
3147
  id_not?: InputMaybe<Scalars['ID']>;
2956
3148
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
3149
+ logIndex?: InputMaybe<Scalars['BigInt']>;
3150
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
3151
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
3152
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
3153
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
3154
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
3155
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
3156
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2957
3157
  name?: InputMaybe<Scalars['String']>;
2958
3158
  name_contains?: InputMaybe<Scalars['String']>;
2959
3159
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -3001,7 +3201,7 @@ export interface RoleGrantedEvent_Filter {
3001
3201
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3002
3202
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3003
3203
  }
3004
- export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
3204
+ export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
3005
3205
  export interface RoleRevokedEvent_Filter {
3006
3206
  account?: InputMaybe<Scalars['Bytes']>;
3007
3207
  account_contains?: InputMaybe<Scalars['Bytes']>;
@@ -3031,6 +3231,14 @@ export interface RoleRevokedEvent_Filter {
3031
3231
  id_lte?: InputMaybe<Scalars['ID']>;
3032
3232
  id_not?: InputMaybe<Scalars['ID']>;
3033
3233
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
3234
+ logIndex?: InputMaybe<Scalars['BigInt']>;
3235
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
3236
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
3237
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
3238
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
3239
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
3240
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
3241
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3034
3242
  name?: InputMaybe<Scalars['String']>;
3035
3243
  name_contains?: InputMaybe<Scalars['String']>;
3036
3244
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -3078,7 +3286,7 @@ export interface RoleRevokedEvent_Filter {
3078
3286
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3079
3287
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3080
3288
  }
3081
- export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
3289
+ export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
3082
3290
  export interface SfMeta_Filter {
3083
3291
  blockNumber?: InputMaybe<Scalars['BigInt']>;
3084
3292
  blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
@@ -3189,6 +3397,14 @@ export interface SentEvent_Filter {
3189
3397
  id_lte?: InputMaybe<Scalars['ID']>;
3190
3398
  id_not?: InputMaybe<Scalars['ID']>;
3191
3399
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
3400
+ logIndex?: InputMaybe<Scalars['BigInt']>;
3401
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
3402
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
3403
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
3404
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
3405
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
3406
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
3407
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3192
3408
  name?: InputMaybe<Scalars['String']>;
3193
3409
  name_contains?: InputMaybe<Scalars['String']>;
3194
3410
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -3242,7 +3458,7 @@ export interface SentEvent_Filter {
3242
3458
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3243
3459
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3244
3460
  }
3245
- export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
3461
+ export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
3246
3462
  export interface StreamPeriod_Filter {
3247
3463
  deposit?: InputMaybe<Scalars['BigInt']>;
3248
3464
  deposit_gt?: InputMaybe<Scalars['BigInt']>;
@@ -3615,6 +3831,14 @@ export interface SubscriptionApprovedEvent_Filter {
3615
3831
  indexId_lte?: InputMaybe<Scalars['BigInt']>;
3616
3832
  indexId_not?: InputMaybe<Scalars['BigInt']>;
3617
3833
  indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3834
+ logIndex?: InputMaybe<Scalars['BigInt']>;
3835
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
3836
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
3837
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
3838
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
3839
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
3840
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
3841
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3618
3842
  name?: InputMaybe<Scalars['String']>;
3619
3843
  name_contains?: InputMaybe<Scalars['String']>;
3620
3844
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -3694,7 +3918,7 @@ export interface SubscriptionApprovedEvent_Filter {
3694
3918
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
3695
3919
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3696
3920
  }
3697
- export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
3921
+ export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
3698
3922
  export interface SubscriptionDistributionClaimedEvent_Filter {
3699
3923
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3700
3924
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3734,6 +3958,14 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
3734
3958
  indexId_lte?: InputMaybe<Scalars['BigInt']>;
3735
3959
  indexId_not?: InputMaybe<Scalars['BigInt']>;
3736
3960
  indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3961
+ logIndex?: InputMaybe<Scalars['BigInt']>;
3962
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
3963
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
3964
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
3965
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
3966
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
3967
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
3968
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3737
3969
  name?: InputMaybe<Scalars['String']>;
3738
3970
  name_contains?: InputMaybe<Scalars['String']>;
3739
3971
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -3807,7 +4039,7 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
3807
4039
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3808
4040
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3809
4041
  }
3810
- export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
4042
+ export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
3811
4043
  export interface SubscriptionRevokedEvent_Filter {
3812
4044
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3813
4045
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3839,6 +4071,14 @@ export interface SubscriptionRevokedEvent_Filter {
3839
4071
  indexId_lte?: InputMaybe<Scalars['BigInt']>;
3840
4072
  indexId_not?: InputMaybe<Scalars['BigInt']>;
3841
4073
  indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4074
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4075
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4076
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4077
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4078
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4079
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4080
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4081
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3842
4082
  name?: InputMaybe<Scalars['String']>;
3843
4083
  name_contains?: InputMaybe<Scalars['String']>;
3844
4084
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -3918,7 +4158,7 @@ export interface SubscriptionRevokedEvent_Filter {
3918
4158
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
3919
4159
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3920
4160
  }
3921
- export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
4161
+ export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
3922
4162
  export interface SubscriptionUnitsUpdatedEvent_Filter {
3923
4163
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3924
4164
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3950,6 +4190,14 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
3950
4190
  indexId_lte?: InputMaybe<Scalars['BigInt']>;
3951
4191
  indexId_not?: InputMaybe<Scalars['BigInt']>;
3952
4192
  indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4193
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4194
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4195
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4196
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4197
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4198
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4199
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4200
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3953
4201
  name?: InputMaybe<Scalars['String']>;
3954
4202
  name_contains?: InputMaybe<Scalars['String']>;
3955
4203
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4045,7 +4293,7 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
4045
4293
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
4046
4294
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4047
4295
  }
4048
- export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
4296
+ export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
4049
4297
  export interface SuperTokenCreatedEvent_Filter {
4050
4298
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4051
4299
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4069,6 +4317,14 @@ export interface SuperTokenCreatedEvent_Filter {
4069
4317
  id_lte?: InputMaybe<Scalars['ID']>;
4070
4318
  id_not?: InputMaybe<Scalars['ID']>;
4071
4319
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4320
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4321
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4322
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4323
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4324
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4325
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4326
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4327
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4072
4328
  name?: InputMaybe<Scalars['String']>;
4073
4329
  name_contains?: InputMaybe<Scalars['String']>;
4074
4330
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4110,7 +4366,7 @@ export interface SuperTokenCreatedEvent_Filter {
4110
4366
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4111
4367
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4112
4368
  }
4113
- export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4369
+ export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4114
4370
  export interface SuperTokenFactoryUpdatedEvent_Filter {
4115
4371
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4116
4372
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4134,6 +4390,14 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
4134
4390
  id_lte?: InputMaybe<Scalars['ID']>;
4135
4391
  id_not?: InputMaybe<Scalars['ID']>;
4136
4392
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4393
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4394
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4395
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4396
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4397
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4398
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4399
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4400
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4137
4401
  name?: InputMaybe<Scalars['String']>;
4138
4402
  name_contains?: InputMaybe<Scalars['String']>;
4139
4403
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4175,7 +4439,7 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
4175
4439
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4176
4440
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4177
4441
  }
4178
- export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'newFactory' | 'timestamp' | 'transactionHash';
4442
+ export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'timestamp' | 'transactionHash';
4179
4443
  export interface SuperTokenLogicCreatedEvent_Filter {
4180
4444
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4181
4445
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4199,6 +4463,14 @@ export interface SuperTokenLogicCreatedEvent_Filter {
4199
4463
  id_lte?: InputMaybe<Scalars['ID']>;
4200
4464
  id_not?: InputMaybe<Scalars['ID']>;
4201
4465
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4466
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4467
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4468
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4469
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4470
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4471
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4472
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4473
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4202
4474
  name?: InputMaybe<Scalars['String']>;
4203
4475
  name_contains?: InputMaybe<Scalars['String']>;
4204
4476
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4240,7 +4512,7 @@ export interface SuperTokenLogicCreatedEvent_Filter {
4240
4512
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4241
4513
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4242
4514
  }
4243
- export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'tokenLogic' | 'transactionHash';
4515
+ export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'tokenLogic' | 'transactionHash';
4244
4516
  export interface SuperTokenLogicUpdatedEvent_Filter {
4245
4517
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4246
4518
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4270,6 +4542,14 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
4270
4542
  id_lte?: InputMaybe<Scalars['ID']>;
4271
4543
  id_not?: InputMaybe<Scalars['ID']>;
4272
4544
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4545
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4546
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4547
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4548
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4549
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4550
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4551
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4552
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4273
4553
  name?: InputMaybe<Scalars['String']>;
4274
4554
  name_contains?: InputMaybe<Scalars['String']>;
4275
4555
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4311,7 +4591,7 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
4311
4591
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4312
4592
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4313
4593
  }
4314
- export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4594
+ export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4315
4595
  export interface TokenDowngradedEvent_Filter {
4316
4596
  account?: InputMaybe<Scalars['String']>;
4317
4597
  account_contains?: InputMaybe<Scalars['String']>;
@@ -4363,6 +4643,14 @@ export interface TokenDowngradedEvent_Filter {
4363
4643
  id_lte?: InputMaybe<Scalars['ID']>;
4364
4644
  id_not?: InputMaybe<Scalars['ID']>;
4365
4645
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4646
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4647
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4648
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4649
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4650
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4651
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4652
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4653
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4366
4654
  name?: InputMaybe<Scalars['String']>;
4367
4655
  name_contains?: InputMaybe<Scalars['String']>;
4368
4656
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4404,7 +4692,7 @@ export interface TokenDowngradedEvent_Filter {
4404
4692
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4405
4693
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4406
4694
  }
4407
- export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4695
+ export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4408
4696
  export interface TokenStatistic_Filter {
4409
4697
  id?: InputMaybe<Scalars['ID']>;
4410
4698
  id_gt?: InputMaybe<Scalars['ID']>;
@@ -4599,6 +4887,14 @@ export interface TokenUpgradedEvent_Filter {
4599
4887
  id_lte?: InputMaybe<Scalars['ID']>;
4600
4888
  id_not?: InputMaybe<Scalars['ID']>;
4601
4889
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4890
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4891
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4892
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4893
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4894
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4895
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4896
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4897
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4602
4898
  name?: InputMaybe<Scalars['String']>;
4603
4899
  name_contains?: InputMaybe<Scalars['String']>;
4604
4900
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4640,7 +4936,7 @@ export interface TokenUpgradedEvent_Filter {
4640
4936
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4641
4937
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4642
4938
  }
4643
- export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4939
+ export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'token' | 'transactionHash';
4644
4940
  export interface Token_Filter {
4645
4941
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
4646
4942
  createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
@@ -4793,6 +5089,14 @@ export interface TransferEvent_Filter {
4793
5089
  id_lte?: InputMaybe<Scalars['ID']>;
4794
5090
  id_not?: InputMaybe<Scalars['ID']>;
4795
5091
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
5092
+ logIndex?: InputMaybe<Scalars['BigInt']>;
5093
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
5094
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
5095
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
5096
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
5097
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
5098
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
5099
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4796
5100
  name?: InputMaybe<Scalars['String']>;
4797
5101
  name_contains?: InputMaybe<Scalars['String']>;
4798
5102
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4862,7 +5166,7 @@ export interface TransferEvent_Filter {
4862
5166
  value_not?: InputMaybe<Scalars['BigInt']>;
4863
5167
  value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4864
5168
  }
4865
- export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'name' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
5169
+ export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'logIndex' | 'name' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
4866
5170
  export interface TrustedForwarderChangedEvent_Filter {
4867
5171
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4868
5172
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4906,6 +5210,14 @@ export interface TrustedForwarderChangedEvent_Filter {
4906
5210
  isKeySet_in?: InputMaybe<Array<Scalars['Boolean']>>;
4907
5211
  isKeySet_not?: InputMaybe<Scalars['Boolean']>;
4908
5212
  isKeySet_not_in?: InputMaybe<Array<Scalars['Boolean']>>;
5213
+ logIndex?: InputMaybe<Scalars['BigInt']>;
5214
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
5215
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
5216
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
5217
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
5218
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
5219
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
5220
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4909
5221
  name?: InputMaybe<Scalars['String']>;
4910
5222
  name_contains?: InputMaybe<Scalars['String']>;
4911
5223
  name_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4947,6 +5259,6 @@ export interface TrustedForwarderChangedEvent_Filter {
4947
5259
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4948
5260
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4949
5261
  }
4950
- export declare type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'host' | 'id' | 'isKeySet' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
5262
+ export declare type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
4951
5263
  export declare type _SubgraphErrorPolicy_ = 'allow' | 'deny';
4952
5264
  //# sourceMappingURL=schema.generated.d.ts.map