@superfluid-finance/sdk-core 0.6.1-dev.f4cbef8.0 → 0.6.1

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 (81) hide show
  1. package/CHANGELOG.md +27 -4
  2. package/dist/index.umd.js +12569 -9632
  3. package/dist/main/BatchCall.d.ts.map +1 -1
  4. package/dist/main/BatchCall.js +8 -7
  5. package/dist/main/BatchCall.js.map +1 -1
  6. package/dist/main/ConstantFlowAgreementV1.js +6 -6
  7. package/dist/main/ConstantFlowAgreementV1.js.map +1 -1
  8. package/dist/main/Framework.d.ts +2 -2
  9. package/dist/main/Framework.d.ts.map +1 -1
  10. package/dist/main/Framework.js.map +1 -1
  11. package/dist/main/Operation.d.ts +3 -3
  12. package/dist/main/Operation.d.ts.map +1 -1
  13. package/dist/main/Operation.js.map +1 -1
  14. package/dist/main/SuperToken.d.ts +25 -3
  15. package/dist/main/SuperToken.d.ts.map +1 -1
  16. package/dist/main/SuperToken.js +27 -2
  17. package/dist/main/SuperToken.js.map +1 -1
  18. package/dist/main/defaultSubgraphReleaseTag.json +1 -1
  19. package/dist/main/events.d.ts +18 -1
  20. package/dist/main/events.d.ts.map +1 -1
  21. package/dist/main/events.js.map +1 -1
  22. package/dist/main/index.d.ts +2 -2
  23. package/dist/main/index.d.ts.map +1 -1
  24. package/dist/main/index.js.map +1 -1
  25. package/dist/main/interfaces.d.ts +39 -79
  26. package/dist/main/interfaces.d.ts.map +1 -1
  27. package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
  28. package/dist/main/mapGetAllEventsQueryEvents.js +41 -0
  29. package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
  30. package/dist/main/subgraph/events/events.generated.d.ts +127 -0
  31. package/dist/main/subgraph/events/events.generated.d.ts.map +1 -1
  32. package/dist/main/subgraph/events/events.generated.js +5 -2
  33. package/dist/main/subgraph/events/events.generated.js.map +1 -1
  34. package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +35 -0
  35. package/dist/main/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
  36. package/dist/main/subgraph/queries/getAllEvents.generated.js +1 -1
  37. package/dist/main/subgraph/queries/getAllEvents.generated.js.map +1 -1
  38. package/dist/main/subgraph/schema.generated.d.ts +708 -40
  39. package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
  40. package/dist/main/utils.d.ts +1 -1
  41. package/dist/main/utils.js +1 -1
  42. package/dist/module/BatchCall.d.ts.map +1 -1
  43. package/dist/module/BatchCall.js +8 -7
  44. package/dist/module/BatchCall.js.map +1 -1
  45. package/dist/module/ConstantFlowAgreementV1.js +6 -6
  46. package/dist/module/ConstantFlowAgreementV1.js.map +1 -1
  47. package/dist/module/Framework.d.ts +2 -2
  48. package/dist/module/Framework.d.ts.map +1 -1
  49. package/dist/module/Framework.js.map +1 -1
  50. package/dist/module/Operation.d.ts +3 -3
  51. package/dist/module/Operation.d.ts.map +1 -1
  52. package/dist/module/Operation.js.map +1 -1
  53. package/dist/module/SuperToken.d.ts +25 -3
  54. package/dist/module/SuperToken.d.ts.map +1 -1
  55. package/dist/module/SuperToken.js +27 -2
  56. package/dist/module/SuperToken.js.map +1 -1
  57. package/dist/module/defaultSubgraphReleaseTag.json +1 -1
  58. package/dist/module/events.d.ts +18 -1
  59. package/dist/module/events.d.ts.map +1 -1
  60. package/dist/module/events.js.map +1 -1
  61. package/dist/module/index.d.ts +2 -2
  62. package/dist/module/index.d.ts.map +1 -1
  63. package/dist/module/index.js.map +1 -1
  64. package/dist/module/interfaces.d.ts +39 -79
  65. package/dist/module/interfaces.d.ts.map +1 -1
  66. package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
  67. package/dist/module/mapGetAllEventsQueryEvents.js +41 -0
  68. package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
  69. package/dist/module/subgraph/events/events.generated.d.ts +127 -0
  70. package/dist/module/subgraph/events/events.generated.d.ts.map +1 -1
  71. package/dist/module/subgraph/events/events.generated.js +4 -1
  72. package/dist/module/subgraph/events/events.generated.js.map +1 -1
  73. package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +35 -0
  74. package/dist/module/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
  75. package/dist/module/subgraph/queries/getAllEvents.generated.js +1 -1
  76. package/dist/module/subgraph/queries/getAllEvents.generated.js.map +1 -1
  77. package/dist/module/subgraph/schema.generated.d.ts +708 -40
  78. package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
  79. package/dist/module/utils.d.ts +1 -1
  80. package/dist/module/utils.js +1 -1
  81. package/package.json +5 -4
@@ -548,6 +548,14 @@ export interface AgreementClassRegisteredEvent_Filter {
548
548
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
549
549
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
550
550
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
551
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
552
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
553
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
554
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
555
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
556
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
557
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
558
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
551
559
  id?: InputMaybe<Scalars['ID']>;
552
560
  id_gt?: InputMaybe<Scalars['ID']>;
553
561
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -607,7 +615,7 @@ export interface AgreementClassRegisteredEvent_Filter {
607
615
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
608
616
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
609
617
  }
610
- export type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
618
+ export type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
611
619
  export interface AgreementClassUpdatedEvent_Filter {
612
620
  _change_block?: InputMaybe<BlockChangedFilter>;
613
621
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -644,6 +652,14 @@ export interface AgreementClassUpdatedEvent_Filter {
644
652
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
645
653
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
646
654
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
655
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
656
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
657
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
658
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
659
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
660
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
661
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
662
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
647
663
  id?: InputMaybe<Scalars['ID']>;
648
664
  id_gt?: InputMaybe<Scalars['ID']>;
649
665
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -703,7 +719,7 @@ export interface AgreementClassUpdatedEvent_Filter {
703
719
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
704
720
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
705
721
  }
706
- export type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
722
+ export type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
707
723
  export interface AgreementLiquidatedByEvent_Filter {
708
724
  _change_block?: InputMaybe<BlockChangedFilter>;
709
725
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -754,6 +770,14 @@ export interface AgreementLiquidatedByEvent_Filter {
754
770
  deposit_lte?: InputMaybe<Scalars['BigInt']>;
755
771
  deposit_not?: InputMaybe<Scalars['BigInt']>;
756
772
  deposit_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
773
+ flowRateAtLiquidation?: InputMaybe<Scalars['BigInt']>;
774
+ flowRateAtLiquidation_gt?: InputMaybe<Scalars['BigInt']>;
775
+ flowRateAtLiquidation_gte?: InputMaybe<Scalars['BigInt']>;
776
+ flowRateAtLiquidation_in?: InputMaybe<Array<Scalars['BigInt']>>;
777
+ flowRateAtLiquidation_lt?: InputMaybe<Scalars['BigInt']>;
778
+ flowRateAtLiquidation_lte?: InputMaybe<Scalars['BigInt']>;
779
+ flowRateAtLiquidation_not?: InputMaybe<Scalars['BigInt']>;
780
+ flowRateAtLiquidation_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
757
781
  gasPrice?: InputMaybe<Scalars['BigInt']>;
758
782
  gasPrice_gt?: InputMaybe<Scalars['BigInt']>;
759
783
  gasPrice_gte?: InputMaybe<Scalars['BigInt']>;
@@ -762,6 +786,14 @@ export interface AgreementLiquidatedByEvent_Filter {
762
786
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
763
787
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
764
788
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
789
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
790
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
791
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
792
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
793
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
794
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
795
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
796
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
765
797
  id?: InputMaybe<Scalars['ID']>;
766
798
  id_gt?: InputMaybe<Scalars['ID']>;
767
799
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -847,7 +879,7 @@ export interface AgreementLiquidatedByEvent_Filter {
847
879
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
848
880
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
849
881
  }
850
- export type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'deposit' | 'gasPrice' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
882
+ export type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'deposit' | 'flowRateAtLiquidation' | 'gasPrice' | 'gasUsed' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
851
883
  export interface AgreementLiquidatedV2Event_Filter {
852
884
  _change_block?: InputMaybe<BlockChangedFilter>;
853
885
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -884,6 +916,14 @@ export interface AgreementLiquidatedV2Event_Filter {
884
916
  deposit_lte?: InputMaybe<Scalars['BigInt']>;
885
917
  deposit_not?: InputMaybe<Scalars['BigInt']>;
886
918
  deposit_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
919
+ flowRateAtLiquidation?: InputMaybe<Scalars['BigInt']>;
920
+ flowRateAtLiquidation_gt?: InputMaybe<Scalars['BigInt']>;
921
+ flowRateAtLiquidation_gte?: InputMaybe<Scalars['BigInt']>;
922
+ flowRateAtLiquidation_in?: InputMaybe<Array<Scalars['BigInt']>>;
923
+ flowRateAtLiquidation_lt?: InputMaybe<Scalars['BigInt']>;
924
+ flowRateAtLiquidation_lte?: InputMaybe<Scalars['BigInt']>;
925
+ flowRateAtLiquidation_not?: InputMaybe<Scalars['BigInt']>;
926
+ flowRateAtLiquidation_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
887
927
  gasPrice?: InputMaybe<Scalars['BigInt']>;
888
928
  gasPrice_gt?: InputMaybe<Scalars['BigInt']>;
889
929
  gasPrice_gte?: InputMaybe<Scalars['BigInt']>;
@@ -892,6 +932,14 @@ export interface AgreementLiquidatedV2Event_Filter {
892
932
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
893
933
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
894
934
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
935
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
936
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
937
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
938
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
939
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
940
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
941
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
942
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
895
943
  id?: InputMaybe<Scalars['ID']>;
896
944
  id_gt?: InputMaybe<Scalars['ID']>;
897
945
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -1013,7 +1061,7 @@ export interface AgreementLiquidatedV2Event_Filter {
1013
1061
  version_not?: InputMaybe<Scalars['BigInt']>;
1014
1062
  version_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1015
1063
  }
1016
- export type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'deposit' | 'gasPrice' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'rewardAccount' | 'rewardAmount' | 'rewardAmountReceiver' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
1064
+ export type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'deposit' | 'flowRateAtLiquidation' | 'gasPrice' | 'gasUsed' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'rewardAccount' | 'rewardAmount' | 'rewardAmountReceiver' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
1017
1065
  export interface AppRegisteredEvent_Filter {
1018
1066
  _change_block?: InputMaybe<BlockChangedFilter>;
1019
1067
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1044,6 +1092,14 @@ export interface AppRegisteredEvent_Filter {
1044
1092
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1045
1093
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1046
1094
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1095
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1096
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1097
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1098
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1099
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1100
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1101
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1102
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1047
1103
  id?: InputMaybe<Scalars['ID']>;
1048
1104
  id_gt?: InputMaybe<Scalars['ID']>;
1049
1105
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -1103,7 +1159,7 @@ export interface AppRegisteredEvent_Filter {
1103
1159
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1104
1160
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1105
1161
  }
1106
- export type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
1162
+ export type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
1107
1163
  export interface BlockChangedFilter {
1108
1164
  number_gte: Scalars['Int'];
1109
1165
  }
@@ -1112,6 +1168,112 @@ export interface Block_Height {
1112
1168
  number?: InputMaybe<Scalars['Int']>;
1113
1169
  number_gte?: InputMaybe<Scalars['Int']>;
1114
1170
  }
1171
+ export interface BondIncreasedEvent_Filter {
1172
+ _change_block?: InputMaybe<BlockChangedFilter>;
1173
+ additionalBond?: InputMaybe<Scalars['BigInt']>;
1174
+ additionalBond_gt?: InputMaybe<Scalars['BigInt']>;
1175
+ additionalBond_gte?: InputMaybe<Scalars['BigInt']>;
1176
+ additionalBond_in?: InputMaybe<Array<Scalars['BigInt']>>;
1177
+ additionalBond_lt?: InputMaybe<Scalars['BigInt']>;
1178
+ additionalBond_lte?: InputMaybe<Scalars['BigInt']>;
1179
+ additionalBond_not?: InputMaybe<Scalars['BigInt']>;
1180
+ additionalBond_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1181
+ addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1182
+ addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1183
+ addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
1184
+ addresses_not?: InputMaybe<Array<Scalars['Bytes']>>;
1185
+ addresses_not_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1186
+ addresses_not_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
1187
+ blockNumber?: InputMaybe<Scalars['BigInt']>;
1188
+ blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
1189
+ blockNumber_gte?: InputMaybe<Scalars['BigInt']>;
1190
+ blockNumber_in?: InputMaybe<Array<Scalars['BigInt']>>;
1191
+ blockNumber_lt?: InputMaybe<Scalars['BigInt']>;
1192
+ blockNumber_lte?: InputMaybe<Scalars['BigInt']>;
1193
+ blockNumber_not?: InputMaybe<Scalars['BigInt']>;
1194
+ blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1195
+ gasPrice?: InputMaybe<Scalars['BigInt']>;
1196
+ gasPrice_gt?: InputMaybe<Scalars['BigInt']>;
1197
+ gasPrice_gte?: InputMaybe<Scalars['BigInt']>;
1198
+ gasPrice_in?: InputMaybe<Array<Scalars['BigInt']>>;
1199
+ gasPrice_lt?: InputMaybe<Scalars['BigInt']>;
1200
+ gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1201
+ gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1202
+ gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1203
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1204
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1205
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1206
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1207
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1208
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1209
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1210
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1211
+ id?: InputMaybe<Scalars['ID']>;
1212
+ id_gt?: InputMaybe<Scalars['ID']>;
1213
+ id_gte?: InputMaybe<Scalars['ID']>;
1214
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
1215
+ id_lt?: InputMaybe<Scalars['ID']>;
1216
+ id_lte?: InputMaybe<Scalars['ID']>;
1217
+ id_not?: InputMaybe<Scalars['ID']>;
1218
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1219
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1220
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1221
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1222
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1223
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1224
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1225
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1226
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1227
+ name?: InputMaybe<Scalars['String']>;
1228
+ name_contains?: InputMaybe<Scalars['String']>;
1229
+ name_contains_nocase?: InputMaybe<Scalars['String']>;
1230
+ name_ends_with?: InputMaybe<Scalars['String']>;
1231
+ name_ends_with_nocase?: InputMaybe<Scalars['String']>;
1232
+ name_gt?: InputMaybe<Scalars['String']>;
1233
+ name_gte?: InputMaybe<Scalars['String']>;
1234
+ name_in?: InputMaybe<Array<Scalars['String']>>;
1235
+ name_lt?: InputMaybe<Scalars['String']>;
1236
+ name_lte?: InputMaybe<Scalars['String']>;
1237
+ name_not?: InputMaybe<Scalars['String']>;
1238
+ name_not_contains?: InputMaybe<Scalars['String']>;
1239
+ name_not_contains_nocase?: InputMaybe<Scalars['String']>;
1240
+ name_not_ends_with?: InputMaybe<Scalars['String']>;
1241
+ name_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
1242
+ name_not_in?: InputMaybe<Array<Scalars['String']>>;
1243
+ name_not_starts_with?: InputMaybe<Scalars['String']>;
1244
+ name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
1245
+ name_starts_with?: InputMaybe<Scalars['String']>;
1246
+ name_starts_with_nocase?: InputMaybe<Scalars['String']>;
1247
+ order?: InputMaybe<Scalars['BigInt']>;
1248
+ order_gt?: InputMaybe<Scalars['BigInt']>;
1249
+ order_gte?: InputMaybe<Scalars['BigInt']>;
1250
+ order_in?: InputMaybe<Array<Scalars['BigInt']>>;
1251
+ order_lt?: InputMaybe<Scalars['BigInt']>;
1252
+ order_lte?: InputMaybe<Scalars['BigInt']>;
1253
+ order_not?: InputMaybe<Scalars['BigInt']>;
1254
+ order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1255
+ timestamp?: InputMaybe<Scalars['BigInt']>;
1256
+ timestamp_gt?: InputMaybe<Scalars['BigInt']>;
1257
+ timestamp_gte?: InputMaybe<Scalars['BigInt']>;
1258
+ timestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
1259
+ timestamp_lt?: InputMaybe<Scalars['BigInt']>;
1260
+ timestamp_lte?: InputMaybe<Scalars['BigInt']>;
1261
+ timestamp_not?: InputMaybe<Scalars['BigInt']>;
1262
+ timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1263
+ token?: InputMaybe<Scalars['Bytes']>;
1264
+ token_contains?: InputMaybe<Scalars['Bytes']>;
1265
+ token_in?: InputMaybe<Array<Scalars['Bytes']>>;
1266
+ token_not?: InputMaybe<Scalars['Bytes']>;
1267
+ token_not_contains?: InputMaybe<Scalars['Bytes']>;
1268
+ token_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1269
+ transactionHash?: InputMaybe<Scalars['Bytes']>;
1270
+ transactionHash_contains?: InputMaybe<Scalars['Bytes']>;
1271
+ transactionHash_in?: InputMaybe<Array<Scalars['Bytes']>>;
1272
+ transactionHash_not?: InputMaybe<Scalars['Bytes']>;
1273
+ transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1274
+ transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1275
+ }
1276
+ export type BondIncreasedEvent_OrderBy = 'additionalBond' | 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1115
1277
  export interface BurnedEvent_Filter {
1116
1278
  _change_block?: InputMaybe<BlockChangedFilter>;
1117
1279
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1156,6 +1318,14 @@ export interface BurnedEvent_Filter {
1156
1318
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1157
1319
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1158
1320
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1321
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1322
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1323
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1324
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1325
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1326
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1327
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1328
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1159
1329
  id?: InputMaybe<Scalars['ID']>;
1160
1330
  id_gt?: InputMaybe<Scalars['ID']>;
1161
1331
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -1233,7 +1403,7 @@ export interface BurnedEvent_Filter {
1233
1403
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1234
1404
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1235
1405
  }
1236
- export type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1406
+ export type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1237
1407
  export interface CfAv1LiquidationPeriodChangedEvent_Filter {
1238
1408
  _change_block?: InputMaybe<BlockChangedFilter>;
1239
1409
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1258,6 +1428,14 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
1258
1428
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1259
1429
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1260
1430
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1431
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1432
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1433
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1434
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1435
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1436
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1437
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1438
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1261
1439
  governanceAddress?: InputMaybe<Scalars['Bytes']>;
1262
1440
  governanceAddress_contains?: InputMaybe<Scalars['Bytes']>;
1263
1441
  governanceAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1347,7 +1525,7 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
1347
1525
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1348
1526
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1349
1527
  }
1350
- export type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
1528
+ export type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
1351
1529
  export interface ConfigChangedEvent_Filter {
1352
1530
  _change_block?: InputMaybe<BlockChangedFilter>;
1353
1531
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1372,6 +1550,14 @@ export interface ConfigChangedEvent_Filter {
1372
1550
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1373
1551
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1374
1552
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1553
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1554
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1555
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1556
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1557
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1558
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1559
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1560
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1375
1561
  governanceAddress?: InputMaybe<Scalars['Bytes']>;
1376
1562
  governanceAddress_contains?: InputMaybe<Scalars['Bytes']>;
1377
1563
  governanceAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1467,7 +1653,7 @@ export interface ConfigChangedEvent_Filter {
1467
1653
  value_not?: InputMaybe<Scalars['BigInt']>;
1468
1654
  value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1469
1655
  }
1470
- export type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
1656
+ export type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
1471
1657
  export interface CustomSuperTokenCreatedEvent_Filter {
1472
1658
  _change_block?: InputMaybe<BlockChangedFilter>;
1473
1659
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1492,6 +1678,14 @@ export interface CustomSuperTokenCreatedEvent_Filter {
1492
1678
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1493
1679
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1494
1680
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1681
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1682
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1683
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1684
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1685
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1686
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1687
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1688
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1495
1689
  id?: InputMaybe<Scalars['ID']>;
1496
1690
  id_gt?: InputMaybe<Scalars['ID']>;
1497
1691
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -1557,7 +1751,7 @@ export interface CustomSuperTokenCreatedEvent_Filter {
1557
1751
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1558
1752
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1559
1753
  }
1560
- export type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1754
+ export type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1561
1755
  export interface Event_Filter {
1562
1756
  _change_block?: InputMaybe<BlockChangedFilter>;
1563
1757
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1582,6 +1776,114 @@ export interface Event_Filter {
1582
1776
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1583
1777
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1584
1778
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1779
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1780
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1781
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1782
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1783
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1784
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1785
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1786
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1787
+ id?: InputMaybe<Scalars['ID']>;
1788
+ id_gt?: InputMaybe<Scalars['ID']>;
1789
+ id_gte?: InputMaybe<Scalars['ID']>;
1790
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
1791
+ id_lt?: InputMaybe<Scalars['ID']>;
1792
+ id_lte?: InputMaybe<Scalars['ID']>;
1793
+ id_not?: InputMaybe<Scalars['ID']>;
1794
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1795
+ logIndex?: InputMaybe<Scalars['BigInt']>;
1796
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
1797
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
1798
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
1799
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
1800
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
1801
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
1802
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1803
+ name?: InputMaybe<Scalars['String']>;
1804
+ name_contains?: InputMaybe<Scalars['String']>;
1805
+ name_contains_nocase?: InputMaybe<Scalars['String']>;
1806
+ name_ends_with?: InputMaybe<Scalars['String']>;
1807
+ name_ends_with_nocase?: InputMaybe<Scalars['String']>;
1808
+ name_gt?: InputMaybe<Scalars['String']>;
1809
+ name_gte?: InputMaybe<Scalars['String']>;
1810
+ name_in?: InputMaybe<Array<Scalars['String']>>;
1811
+ name_lt?: InputMaybe<Scalars['String']>;
1812
+ name_lte?: InputMaybe<Scalars['String']>;
1813
+ name_not?: InputMaybe<Scalars['String']>;
1814
+ name_not_contains?: InputMaybe<Scalars['String']>;
1815
+ name_not_contains_nocase?: InputMaybe<Scalars['String']>;
1816
+ name_not_ends_with?: InputMaybe<Scalars['String']>;
1817
+ name_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
1818
+ name_not_in?: InputMaybe<Array<Scalars['String']>>;
1819
+ name_not_starts_with?: InputMaybe<Scalars['String']>;
1820
+ name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
1821
+ name_starts_with?: InputMaybe<Scalars['String']>;
1822
+ name_starts_with_nocase?: InputMaybe<Scalars['String']>;
1823
+ order?: InputMaybe<Scalars['BigInt']>;
1824
+ order_gt?: InputMaybe<Scalars['BigInt']>;
1825
+ order_gte?: InputMaybe<Scalars['BigInt']>;
1826
+ order_in?: InputMaybe<Array<Scalars['BigInt']>>;
1827
+ order_lt?: InputMaybe<Scalars['BigInt']>;
1828
+ order_lte?: InputMaybe<Scalars['BigInt']>;
1829
+ order_not?: InputMaybe<Scalars['BigInt']>;
1830
+ order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1831
+ timestamp?: InputMaybe<Scalars['BigInt']>;
1832
+ timestamp_gt?: InputMaybe<Scalars['BigInt']>;
1833
+ timestamp_gte?: InputMaybe<Scalars['BigInt']>;
1834
+ timestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
1835
+ timestamp_lt?: InputMaybe<Scalars['BigInt']>;
1836
+ timestamp_lte?: InputMaybe<Scalars['BigInt']>;
1837
+ timestamp_not?: InputMaybe<Scalars['BigInt']>;
1838
+ timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1839
+ transactionHash?: InputMaybe<Scalars['Bytes']>;
1840
+ transactionHash_contains?: InputMaybe<Scalars['Bytes']>;
1841
+ transactionHash_in?: InputMaybe<Array<Scalars['Bytes']>>;
1842
+ transactionHash_not?: InputMaybe<Scalars['Bytes']>;
1843
+ transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1844
+ transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1845
+ }
1846
+ export type Event_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
1847
+ export interface ExitRateChangedEvent_Filter {
1848
+ _change_block?: InputMaybe<BlockChangedFilter>;
1849
+ addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1850
+ addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1851
+ addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
1852
+ addresses_not?: InputMaybe<Array<Scalars['Bytes']>>;
1853
+ addresses_not_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1854
+ addresses_not_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
1855
+ blockNumber?: InputMaybe<Scalars['BigInt']>;
1856
+ blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
1857
+ blockNumber_gte?: InputMaybe<Scalars['BigInt']>;
1858
+ blockNumber_in?: InputMaybe<Array<Scalars['BigInt']>>;
1859
+ blockNumber_lt?: InputMaybe<Scalars['BigInt']>;
1860
+ blockNumber_lte?: InputMaybe<Scalars['BigInt']>;
1861
+ blockNumber_not?: InputMaybe<Scalars['BigInt']>;
1862
+ blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1863
+ exitRate?: InputMaybe<Scalars['BigInt']>;
1864
+ exitRate_gt?: InputMaybe<Scalars['BigInt']>;
1865
+ exitRate_gte?: InputMaybe<Scalars['BigInt']>;
1866
+ exitRate_in?: InputMaybe<Array<Scalars['BigInt']>>;
1867
+ exitRate_lt?: InputMaybe<Scalars['BigInt']>;
1868
+ exitRate_lte?: InputMaybe<Scalars['BigInt']>;
1869
+ exitRate_not?: InputMaybe<Scalars['BigInt']>;
1870
+ exitRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1871
+ gasPrice?: InputMaybe<Scalars['BigInt']>;
1872
+ gasPrice_gt?: InputMaybe<Scalars['BigInt']>;
1873
+ gasPrice_gte?: InputMaybe<Scalars['BigInt']>;
1874
+ gasPrice_in?: InputMaybe<Array<Scalars['BigInt']>>;
1875
+ gasPrice_lt?: InputMaybe<Scalars['BigInt']>;
1876
+ gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1877
+ gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1878
+ gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1879
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
1880
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
1881
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
1882
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
1883
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
1884
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
1885
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
1886
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1585
1887
  id?: InputMaybe<Scalars['ID']>;
1586
1888
  id_gt?: InputMaybe<Scalars['ID']>;
1587
1889
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -1634,6 +1936,12 @@ export interface Event_Filter {
1634
1936
  timestamp_lte?: InputMaybe<Scalars['BigInt']>;
1635
1937
  timestamp_not?: InputMaybe<Scalars['BigInt']>;
1636
1938
  timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1939
+ token?: InputMaybe<Scalars['Bytes']>;
1940
+ token_contains?: InputMaybe<Scalars['Bytes']>;
1941
+ token_in?: InputMaybe<Array<Scalars['Bytes']>>;
1942
+ token_not?: InputMaybe<Scalars['Bytes']>;
1943
+ token_not_contains?: InputMaybe<Scalars['Bytes']>;
1944
+ token_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1637
1945
  transactionHash?: InputMaybe<Scalars['Bytes']>;
1638
1946
  transactionHash_contains?: InputMaybe<Scalars['Bytes']>;
1639
1947
  transactionHash_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1641,7 +1949,7 @@ export interface Event_Filter {
1641
1949
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1642
1950
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1643
1951
  }
1644
- export type Event_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
1952
+ export type ExitRateChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'exitRate' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1645
1953
  export interface FlowOperatorUpdatedEvent_Filter {
1646
1954
  _change_block?: InputMaybe<BlockChangedFilter>;
1647
1955
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1695,6 +2003,14 @@ export interface FlowOperatorUpdatedEvent_Filter {
1695
2003
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1696
2004
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1697
2005
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2006
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
2007
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
2008
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
2009
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
2010
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
2011
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
2012
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
2013
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1698
2014
  id?: InputMaybe<Scalars['ID']>;
1699
2015
  id_gt?: InputMaybe<Scalars['ID']>;
1700
2016
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -1774,7 +2090,7 @@ export interface FlowOperatorUpdatedEvent_Filter {
1774
2090
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
1775
2091
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
1776
2092
  }
1777
- export type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
2093
+ export type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
1778
2094
  export interface FlowOperator_Filter {
1779
2095
  _change_block?: InputMaybe<BlockChangedFilter>;
1780
2096
  accountTokenSnapshot?: InputMaybe<Scalars['String']>;
@@ -1959,6 +2275,14 @@ export interface FlowUpdatedEvent_Filter {
1959
2275
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
1960
2276
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
1961
2277
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2278
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
2279
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
2280
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
2281
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
2282
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
2283
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
2284
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
2285
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
1962
2286
  id?: InputMaybe<Scalars['ID']>;
1963
2287
  id_gt?: InputMaybe<Scalars['ID']>;
1964
2288
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -2103,7 +2427,7 @@ export interface FlowUpdatedEvent_Filter {
2103
2427
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2104
2428
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2105
2429
  }
2106
- export type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'oldFlowRate' | 'order' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
2430
+ export type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'oldFlowRate' | 'order' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
2107
2431
  export interface GovernanceReplacedEvent_Filter {
2108
2432
  _change_block?: InputMaybe<BlockChangedFilter>;
2109
2433
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2128,6 +2452,14 @@ export interface GovernanceReplacedEvent_Filter {
2128
2452
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
2129
2453
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
2130
2454
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2455
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
2456
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
2457
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
2458
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
2459
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
2460
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
2461
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
2462
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2131
2463
  id?: InputMaybe<Scalars['ID']>;
2132
2464
  id_gt?: InputMaybe<Scalars['ID']>;
2133
2465
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -2199,7 +2531,7 @@ export interface GovernanceReplacedEvent_Filter {
2199
2531
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2200
2532
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2201
2533
  }
2202
- export type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'order' | 'timestamp' | 'transactionHash';
2534
+ export type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'order' | 'timestamp' | 'transactionHash';
2203
2535
  export interface IndexCreatedEvent_Filter {
2204
2536
  _change_block?: InputMaybe<BlockChangedFilter>;
2205
2537
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2224,6 +2556,14 @@ export interface IndexCreatedEvent_Filter {
2224
2556
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
2225
2557
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
2226
2558
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2559
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
2560
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
2561
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
2562
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
2563
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
2564
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
2565
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
2566
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2227
2567
  id?: InputMaybe<Scalars['ID']>;
2228
2568
  id_gt?: InputMaybe<Scalars['ID']>;
2229
2569
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -2330,7 +2670,7 @@ export interface IndexCreatedEvent_Filter {
2330
2670
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2331
2671
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2332
2672
  }
2333
- export type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2673
+ export type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2334
2674
  export interface IndexDistributionClaimedEvent_Filter {
2335
2675
  _change_block?: InputMaybe<BlockChangedFilter>;
2336
2676
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2363,6 +2703,14 @@ export interface IndexDistributionClaimedEvent_Filter {
2363
2703
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
2364
2704
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
2365
2705
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2706
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
2707
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
2708
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
2709
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
2710
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
2711
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
2712
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
2713
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2366
2714
  id?: InputMaybe<Scalars['ID']>;
2367
2715
  id_gt?: InputMaybe<Scalars['ID']>;
2368
2716
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -2469,7 +2817,7 @@ export interface IndexDistributionClaimedEvent_Filter {
2469
2817
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
2470
2818
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2471
2819
  }
2472
- export type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
2820
+ export type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
2473
2821
  export interface IndexSubscribedEvent_Filter {
2474
2822
  _change_block?: InputMaybe<BlockChangedFilter>;
2475
2823
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2494,6 +2842,14 @@ export interface IndexSubscribedEvent_Filter {
2494
2842
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
2495
2843
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
2496
2844
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2845
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
2846
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
2847
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
2848
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
2849
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
2850
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
2851
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
2852
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2497
2853
  id?: InputMaybe<Scalars['ID']>;
2498
2854
  id_gt?: InputMaybe<Scalars['ID']>;
2499
2855
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -2606,7 +2962,7 @@ export interface IndexSubscribedEvent_Filter {
2606
2962
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2607
2963
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2608
2964
  }
2609
- export type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2965
+ export type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2610
2966
  export interface IndexSubscription_Filter {
2611
2967
  _change_block?: InputMaybe<BlockChangedFilter>;
2612
2968
  approved?: InputMaybe<Scalars['Boolean']>;
@@ -2749,6 +3105,14 @@ export interface IndexUnitsUpdatedEvent_Filter {
2749
3105
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
2750
3106
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
2751
3107
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3108
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
3109
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
3110
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
3111
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
3112
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
3113
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
3114
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
3115
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2752
3116
  id?: InputMaybe<Scalars['ID']>;
2753
3117
  id_gt?: InputMaybe<Scalars['ID']>;
2754
3118
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -2877,7 +3241,7 @@ export interface IndexUnitsUpdatedEvent_Filter {
2877
3241
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
2878
3242
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
2879
3243
  }
2880
- export type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
3244
+ export type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
2881
3245
  export interface IndexUnsubscribedEvent_Filter {
2882
3246
  _change_block?: InputMaybe<BlockChangedFilter>;
2883
3247
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2902,6 +3266,14 @@ export interface IndexUnsubscribedEvent_Filter {
2902
3266
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
2903
3267
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
2904
3268
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3269
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
3270
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
3271
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
3272
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
3273
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
3274
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
3275
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
3276
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
2905
3277
  id?: InputMaybe<Scalars['ID']>;
2906
3278
  id_gt?: InputMaybe<Scalars['ID']>;
2907
3279
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -3014,7 +3386,7 @@ export interface IndexUnsubscribedEvent_Filter {
3014
3386
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
3015
3387
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3016
3388
  }
3017
- export type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
3389
+ export type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
3018
3390
  export interface IndexUpdatedEvent_Filter {
3019
3391
  _change_block?: InputMaybe<BlockChangedFilter>;
3020
3392
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3039,6 +3411,14 @@ export interface IndexUpdatedEvent_Filter {
3039
3411
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3040
3412
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3041
3413
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3414
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
3415
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
3416
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
3417
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
3418
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
3419
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
3420
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
3421
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3042
3422
  id?: InputMaybe<Scalars['ID']>;
3043
3423
  id_gt?: InputMaybe<Scalars['ID']>;
3044
3424
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -3177,7 +3557,7 @@ export interface IndexUpdatedEvent_Filter {
3177
3557
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
3178
3558
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3179
3559
  }
3180
- export type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'order' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
3560
+ export type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'order' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
3181
3561
  export interface Index_Filter {
3182
3562
  _change_block?: InputMaybe<BlockChangedFilter>;
3183
3563
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
@@ -3377,6 +3757,14 @@ export interface JailEvent_Filter {
3377
3757
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3378
3758
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3379
3759
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3760
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
3761
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
3762
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
3763
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
3764
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
3765
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
3766
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
3767
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3380
3768
  id?: InputMaybe<Scalars['ID']>;
3381
3769
  id_gt?: InputMaybe<Scalars['ID']>;
3382
3770
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -3444,7 +3832,7 @@ export interface JailEvent_Filter {
3444
3832
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3445
3833
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3446
3834
  }
3447
- export type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'reason' | 'timestamp' | 'transactionHash';
3835
+ export type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'reason' | 'timestamp' | 'transactionHash';
3448
3836
  export interface MintedEvent_Filter {
3449
3837
  _change_block?: InputMaybe<BlockChangedFilter>;
3450
3838
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3483,6 +3871,14 @@ export interface MintedEvent_Filter {
3483
3871
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3484
3872
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3485
3873
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3874
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
3875
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
3876
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
3877
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
3878
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
3879
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
3880
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
3881
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3486
3882
  id?: InputMaybe<Scalars['ID']>;
3487
3883
  id_gt?: InputMaybe<Scalars['ID']>;
3488
3884
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -3566,7 +3962,127 @@ export interface MintedEvent_Filter {
3566
3962
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3567
3963
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3568
3964
  }
3569
- export type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash';
3965
+ export type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash';
3966
+ export interface NewPicEvent_Filter {
3967
+ _change_block?: InputMaybe<BlockChangedFilter>;
3968
+ addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3969
+ addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
3970
+ addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
3971
+ addresses_not?: InputMaybe<Array<Scalars['Bytes']>>;
3972
+ addresses_not_contains?: InputMaybe<Array<Scalars['Bytes']>>;
3973
+ addresses_not_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
3974
+ blockNumber?: InputMaybe<Scalars['BigInt']>;
3975
+ blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
3976
+ blockNumber_gte?: InputMaybe<Scalars['BigInt']>;
3977
+ blockNumber_in?: InputMaybe<Array<Scalars['BigInt']>>;
3978
+ blockNumber_lt?: InputMaybe<Scalars['BigInt']>;
3979
+ blockNumber_lte?: InputMaybe<Scalars['BigInt']>;
3980
+ blockNumber_not?: InputMaybe<Scalars['BigInt']>;
3981
+ blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3982
+ bond?: InputMaybe<Scalars['BigInt']>;
3983
+ bond_gt?: InputMaybe<Scalars['BigInt']>;
3984
+ bond_gte?: InputMaybe<Scalars['BigInt']>;
3985
+ bond_in?: InputMaybe<Array<Scalars['BigInt']>>;
3986
+ bond_lt?: InputMaybe<Scalars['BigInt']>;
3987
+ bond_lte?: InputMaybe<Scalars['BigInt']>;
3988
+ bond_not?: InputMaybe<Scalars['BigInt']>;
3989
+ bond_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3990
+ exitRate?: InputMaybe<Scalars['BigInt']>;
3991
+ exitRate_gt?: InputMaybe<Scalars['BigInt']>;
3992
+ exitRate_gte?: InputMaybe<Scalars['BigInt']>;
3993
+ exitRate_in?: InputMaybe<Array<Scalars['BigInt']>>;
3994
+ exitRate_lt?: InputMaybe<Scalars['BigInt']>;
3995
+ exitRate_lte?: InputMaybe<Scalars['BigInt']>;
3996
+ exitRate_not?: InputMaybe<Scalars['BigInt']>;
3997
+ exitRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3998
+ gasPrice?: InputMaybe<Scalars['BigInt']>;
3999
+ gasPrice_gt?: InputMaybe<Scalars['BigInt']>;
4000
+ gasPrice_gte?: InputMaybe<Scalars['BigInt']>;
4001
+ gasPrice_in?: InputMaybe<Array<Scalars['BigInt']>>;
4002
+ gasPrice_lt?: InputMaybe<Scalars['BigInt']>;
4003
+ gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
4004
+ gasPrice_not?: InputMaybe<Scalars['BigInt']>;
4005
+ gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4006
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4007
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4008
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4009
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4010
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4011
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4012
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4013
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4014
+ id?: InputMaybe<Scalars['ID']>;
4015
+ id_gt?: InputMaybe<Scalars['ID']>;
4016
+ id_gte?: InputMaybe<Scalars['ID']>;
4017
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
4018
+ id_lt?: InputMaybe<Scalars['ID']>;
4019
+ id_lte?: InputMaybe<Scalars['ID']>;
4020
+ id_not?: InputMaybe<Scalars['ID']>;
4021
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
4022
+ logIndex?: InputMaybe<Scalars['BigInt']>;
4023
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
4024
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
4025
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
4026
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
4027
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
4028
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
4029
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4030
+ name?: InputMaybe<Scalars['String']>;
4031
+ name_contains?: InputMaybe<Scalars['String']>;
4032
+ name_contains_nocase?: InputMaybe<Scalars['String']>;
4033
+ name_ends_with?: InputMaybe<Scalars['String']>;
4034
+ name_ends_with_nocase?: InputMaybe<Scalars['String']>;
4035
+ name_gt?: InputMaybe<Scalars['String']>;
4036
+ name_gte?: InputMaybe<Scalars['String']>;
4037
+ name_in?: InputMaybe<Array<Scalars['String']>>;
4038
+ name_lt?: InputMaybe<Scalars['String']>;
4039
+ name_lte?: InputMaybe<Scalars['String']>;
4040
+ name_not?: InputMaybe<Scalars['String']>;
4041
+ name_not_contains?: InputMaybe<Scalars['String']>;
4042
+ name_not_contains_nocase?: InputMaybe<Scalars['String']>;
4043
+ name_not_ends_with?: InputMaybe<Scalars['String']>;
4044
+ name_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
4045
+ name_not_in?: InputMaybe<Array<Scalars['String']>>;
4046
+ name_not_starts_with?: InputMaybe<Scalars['String']>;
4047
+ name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
4048
+ name_starts_with?: InputMaybe<Scalars['String']>;
4049
+ name_starts_with_nocase?: InputMaybe<Scalars['String']>;
4050
+ order?: InputMaybe<Scalars['BigInt']>;
4051
+ order_gt?: InputMaybe<Scalars['BigInt']>;
4052
+ order_gte?: InputMaybe<Scalars['BigInt']>;
4053
+ order_in?: InputMaybe<Array<Scalars['BigInt']>>;
4054
+ order_lt?: InputMaybe<Scalars['BigInt']>;
4055
+ order_lte?: InputMaybe<Scalars['BigInt']>;
4056
+ order_not?: InputMaybe<Scalars['BigInt']>;
4057
+ order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4058
+ pic?: InputMaybe<Scalars['Bytes']>;
4059
+ pic_contains?: InputMaybe<Scalars['Bytes']>;
4060
+ pic_in?: InputMaybe<Array<Scalars['Bytes']>>;
4061
+ pic_not?: InputMaybe<Scalars['Bytes']>;
4062
+ pic_not_contains?: InputMaybe<Scalars['Bytes']>;
4063
+ pic_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4064
+ timestamp?: InputMaybe<Scalars['BigInt']>;
4065
+ timestamp_gt?: InputMaybe<Scalars['BigInt']>;
4066
+ timestamp_gte?: InputMaybe<Scalars['BigInt']>;
4067
+ timestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
4068
+ timestamp_lt?: InputMaybe<Scalars['BigInt']>;
4069
+ timestamp_lte?: InputMaybe<Scalars['BigInt']>;
4070
+ timestamp_not?: InputMaybe<Scalars['BigInt']>;
4071
+ timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4072
+ token?: InputMaybe<Scalars['Bytes']>;
4073
+ token_contains?: InputMaybe<Scalars['Bytes']>;
4074
+ token_in?: InputMaybe<Array<Scalars['Bytes']>>;
4075
+ token_not?: InputMaybe<Scalars['Bytes']>;
4076
+ token_not_contains?: InputMaybe<Scalars['Bytes']>;
4077
+ token_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4078
+ transactionHash?: InputMaybe<Scalars['Bytes']>;
4079
+ transactionHash_contains?: InputMaybe<Scalars['Bytes']>;
4080
+ transactionHash_in?: InputMaybe<Array<Scalars['Bytes']>>;
4081
+ transactionHash_not?: InputMaybe<Scalars['Bytes']>;
4082
+ transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4083
+ transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4084
+ }
4085
+ export type NewPicEvent_OrderBy = 'addresses' | 'blockNumber' | 'bond' | 'exitRate' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'pic' | 'timestamp' | 'token' | 'transactionHash';
3570
4086
  export type OrderDirection = 'asc' | 'desc';
3571
4087
  export interface PppConfigurationChangedEvent_Filter {
3572
4088
  _change_block?: InputMaybe<BlockChangedFilter>;
@@ -3592,6 +4108,14 @@ export interface PppConfigurationChangedEvent_Filter {
3592
4108
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3593
4109
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3594
4110
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4111
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4112
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4113
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4114
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4115
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4116
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4117
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4118
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3595
4119
  governanceAddress?: InputMaybe<Scalars['Bytes']>;
3596
4120
  governanceAddress_contains?: InputMaybe<Scalars['Bytes']>;
3597
4121
  governanceAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3689,7 +4213,7 @@ export interface PppConfigurationChangedEvent_Filter {
3689
4213
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3690
4214
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3691
4215
  }
3692
- export type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
4216
+ export type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
3693
4217
  export interface ResolverEntry_Filter {
3694
4218
  _change_block?: InputMaybe<BlockChangedFilter>;
3695
4219
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
@@ -3773,6 +4297,14 @@ export interface RewardAddressChangedEvent_Filter {
3773
4297
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3774
4298
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3775
4299
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4300
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4301
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4302
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4303
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4304
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4305
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4306
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4307
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3776
4308
  governanceAddress?: InputMaybe<Scalars['Bytes']>;
3777
4309
  governanceAddress_contains?: InputMaybe<Scalars['Bytes']>;
3778
4310
  governanceAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3860,7 +4392,7 @@ export interface RewardAddressChangedEvent_Filter {
3860
4392
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3861
4393
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3862
4394
  }
3863
- export type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
4395
+ export type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
3864
4396
  export interface RoleAdminChangedEvent_Filter {
3865
4397
  _change_block?: InputMaybe<BlockChangedFilter>;
3866
4398
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3885,6 +4417,14 @@ export interface RoleAdminChangedEvent_Filter {
3885
4417
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3886
4418
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3887
4419
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4420
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4421
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4422
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4423
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4424
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4425
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4426
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4427
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3888
4428
  id?: InputMaybe<Scalars['ID']>;
3889
4429
  id_gt?: InputMaybe<Scalars['ID']>;
3890
4430
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -3962,7 +4502,7 @@ export interface RoleAdminChangedEvent_Filter {
3962
4502
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
3963
4503
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
3964
4504
  }
3965
- export type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'order' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
4505
+ export type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'order' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
3966
4506
  export interface RoleGrantedEvent_Filter {
3967
4507
  _change_block?: InputMaybe<BlockChangedFilter>;
3968
4508
  account?: InputMaybe<Scalars['Bytes']>;
@@ -3993,6 +4533,14 @@ export interface RoleGrantedEvent_Filter {
3993
4533
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
3994
4534
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
3995
4535
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4536
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4537
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4538
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4539
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4540
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4541
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4542
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4543
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
3996
4544
  id?: InputMaybe<Scalars['ID']>;
3997
4545
  id_gt?: InputMaybe<Scalars['ID']>;
3998
4546
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -4064,7 +4612,7 @@ export interface RoleGrantedEvent_Filter {
4064
4612
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4065
4613
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4066
4614
  }
4067
- export type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
4615
+ export type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
4068
4616
  export interface RoleRevokedEvent_Filter {
4069
4617
  _change_block?: InputMaybe<BlockChangedFilter>;
4070
4618
  account?: InputMaybe<Scalars['Bytes']>;
@@ -4095,6 +4643,14 @@ export interface RoleRevokedEvent_Filter {
4095
4643
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
4096
4644
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
4097
4645
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4646
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4647
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4648
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4649
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4650
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4651
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4652
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4653
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4098
4654
  id?: InputMaybe<Scalars['ID']>;
4099
4655
  id_gt?: InputMaybe<Scalars['ID']>;
4100
4656
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -4166,7 +4722,7 @@ export interface RoleRevokedEvent_Filter {
4166
4722
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4167
4723
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4168
4724
  }
4169
- export type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
4725
+ export type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
4170
4726
  export interface SfMeta_Filter {
4171
4727
  _change_block?: InputMaybe<BlockChangedFilter>;
4172
4728
  blockNumber?: InputMaybe<Scalars['BigInt']>;
@@ -4279,6 +4835,14 @@ export interface SentEvent_Filter {
4279
4835
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
4280
4836
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
4281
4837
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4838
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4839
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4840
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4841
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4842
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4843
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4844
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4845
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4282
4846
  id?: InputMaybe<Scalars['ID']>;
4283
4847
  id_gt?: InputMaybe<Scalars['ID']>;
4284
4848
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -4362,7 +4926,7 @@ export interface SentEvent_Filter {
4362
4926
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4363
4927
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4364
4928
  }
4365
- export type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash';
4929
+ export type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash';
4366
4930
  export interface SetEvent_Filter {
4367
4931
  _change_block?: InputMaybe<BlockChangedFilter>;
4368
4932
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4387,6 +4951,14 @@ export interface SetEvent_Filter {
4387
4951
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
4388
4952
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
4389
4953
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4954
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
4955
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
4956
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
4957
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
4958
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
4959
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
4960
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
4961
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4390
4962
  hashedName?: InputMaybe<Scalars['Bytes']>;
4391
4963
  hashedName_contains?: InputMaybe<Scalars['Bytes']>;
4392
4964
  hashedName_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4479,7 +5051,7 @@ export interface SetEvent_Filter {
4479
5051
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
4480
5052
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4481
5053
  }
4482
- export type SetEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'hashedName' | 'id' | 'logIndex' | 'name' | 'order' | 'resolverEntry' | 'target' | 'timestamp' | 'transactionHash';
5054
+ export type SetEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'hashedName' | 'id' | 'logIndex' | 'name' | 'order' | 'resolverEntry' | 'target' | 'timestamp' | 'transactionHash';
4483
5055
  export interface StreamPeriod_Filter {
4484
5056
  _change_block?: InputMaybe<BlockChangedFilter>;
4485
5057
  deposit?: InputMaybe<Scalars['BigInt']>;
@@ -4880,6 +5452,14 @@ export interface SubscriptionApprovedEvent_Filter {
4880
5452
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
4881
5453
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
4882
5454
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5455
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
5456
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
5457
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
5458
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
5459
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
5460
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
5461
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
5462
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
4883
5463
  id?: InputMaybe<Scalars['ID']>;
4884
5464
  id_gt?: InputMaybe<Scalars['ID']>;
4885
5465
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -4992,7 +5572,7 @@ export interface SubscriptionApprovedEvent_Filter {
4992
5572
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
4993
5573
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
4994
5574
  }
4995
- export type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
5575
+ export type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
4996
5576
  export interface SubscriptionDistributionClaimedEvent_Filter {
4997
5577
  _change_block?: InputMaybe<BlockChangedFilter>;
4998
5578
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5025,6 +5605,14 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
5025
5605
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5026
5606
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5027
5607
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5608
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
5609
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
5610
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
5611
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
5612
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
5613
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
5614
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
5615
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5028
5616
  id?: InputMaybe<Scalars['ID']>;
5029
5617
  id_gt?: InputMaybe<Scalars['ID']>;
5030
5618
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5131,7 +5719,7 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
5131
5719
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
5132
5720
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5133
5721
  }
5134
- export type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
5722
+ export type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
5135
5723
  export interface SubscriptionRevokedEvent_Filter {
5136
5724
  _change_block?: InputMaybe<BlockChangedFilter>;
5137
5725
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5156,6 +5744,14 @@ export interface SubscriptionRevokedEvent_Filter {
5156
5744
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5157
5745
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5158
5746
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5747
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
5748
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
5749
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
5750
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
5751
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
5752
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
5753
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
5754
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5159
5755
  id?: InputMaybe<Scalars['ID']>;
5160
5756
  id_gt?: InputMaybe<Scalars['ID']>;
5161
5757
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5268,7 +5864,7 @@ export interface SubscriptionRevokedEvent_Filter {
5268
5864
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
5269
5865
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5270
5866
  }
5271
- export type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
5867
+ export type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
5272
5868
  export interface SubscriptionUnitsUpdatedEvent_Filter {
5273
5869
  _change_block?: InputMaybe<BlockChangedFilter>;
5274
5870
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5293,6 +5889,14 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
5293
5889
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5294
5890
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5295
5891
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5892
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
5893
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
5894
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
5895
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
5896
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
5897
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
5898
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
5899
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5296
5900
  id?: InputMaybe<Scalars['ID']>;
5297
5901
  id_gt?: InputMaybe<Scalars['ID']>;
5298
5902
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5421,7 +6025,7 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
5421
6025
  userData_not_contains?: InputMaybe<Scalars['Bytes']>;
5422
6026
  userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5423
6027
  }
5424
- export type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
6028
+ export type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
5425
6029
  export interface SuperTokenCreatedEvent_Filter {
5426
6030
  _change_block?: InputMaybe<BlockChangedFilter>;
5427
6031
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5446,6 +6050,14 @@ export interface SuperTokenCreatedEvent_Filter {
5446
6050
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5447
6051
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5448
6052
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6053
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
6054
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
6055
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
6056
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
6057
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
6058
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
6059
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
6060
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5449
6061
  id?: InputMaybe<Scalars['ID']>;
5450
6062
  id_gt?: InputMaybe<Scalars['ID']>;
5451
6063
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5511,7 +6123,7 @@ export interface SuperTokenCreatedEvent_Filter {
5511
6123
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
5512
6124
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5513
6125
  }
5514
- export type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
6126
+ export type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
5515
6127
  export interface SuperTokenFactoryUpdatedEvent_Filter {
5516
6128
  _change_block?: InputMaybe<BlockChangedFilter>;
5517
6129
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5536,6 +6148,14 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
5536
6148
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5537
6149
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5538
6150
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6151
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
6152
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
6153
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
6154
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
6155
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
6156
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
6157
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
6158
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5539
6159
  id?: InputMaybe<Scalars['ID']>;
5540
6160
  id_gt?: InputMaybe<Scalars['ID']>;
5541
6161
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5601,7 +6221,7 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
5601
6221
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
5602
6222
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5603
6223
  }
5604
- export type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'order' | 'timestamp' | 'transactionHash';
6224
+ export type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'order' | 'timestamp' | 'transactionHash';
5605
6225
  export interface SuperTokenLogicCreatedEvent_Filter {
5606
6226
  _change_block?: InputMaybe<BlockChangedFilter>;
5607
6227
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5626,6 +6246,14 @@ export interface SuperTokenLogicCreatedEvent_Filter {
5626
6246
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5627
6247
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5628
6248
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6249
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
6250
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
6251
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
6252
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
6253
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
6254
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
6255
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
6256
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5629
6257
  id?: InputMaybe<Scalars['ID']>;
5630
6258
  id_gt?: InputMaybe<Scalars['ID']>;
5631
6259
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5691,7 +6319,7 @@ export interface SuperTokenLogicCreatedEvent_Filter {
5691
6319
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
5692
6320
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5693
6321
  }
5694
- export type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'tokenLogic' | 'transactionHash';
6322
+ export type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'tokenLogic' | 'transactionHash';
5695
6323
  export interface SuperTokenLogicUpdatedEvent_Filter {
5696
6324
  _change_block?: InputMaybe<BlockChangedFilter>;
5697
6325
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5722,6 +6350,14 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
5722
6350
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5723
6351
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5724
6352
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6353
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
6354
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
6355
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
6356
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
6357
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
6358
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
6359
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
6360
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5725
6361
  id?: InputMaybe<Scalars['ID']>;
5726
6362
  id_gt?: InputMaybe<Scalars['ID']>;
5727
6363
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5787,7 +6423,7 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
5787
6423
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
5788
6424
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5789
6425
  }
5790
- export type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
6426
+ export type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
5791
6427
  export interface TokenDowngradedEvent_Filter {
5792
6428
  _change_block?: InputMaybe<BlockChangedFilter>;
5793
6429
  account?: InputMaybe<Scalars['String']>;
@@ -5841,6 +6477,14 @@ export interface TokenDowngradedEvent_Filter {
5841
6477
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
5842
6478
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
5843
6479
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6480
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
6481
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
6482
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
6483
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
6484
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
6485
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
6486
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
6487
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
5844
6488
  id?: InputMaybe<Scalars['ID']>;
5845
6489
  id_gt?: InputMaybe<Scalars['ID']>;
5846
6490
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5906,7 +6550,7 @@ export interface TokenDowngradedEvent_Filter {
5906
6550
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
5907
6551
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
5908
6552
  }
5909
- export type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
6553
+ export type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
5910
6554
  export interface TokenStatisticLog_Filter {
5911
6555
  _change_block?: InputMaybe<BlockChangedFilter>;
5912
6556
  blockNumber?: InputMaybe<Scalars['BigInt']>;
@@ -6314,6 +6958,14 @@ export interface TokenUpgradedEvent_Filter {
6314
6958
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
6315
6959
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
6316
6960
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6961
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
6962
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
6963
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
6964
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
6965
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
6966
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
6967
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
6968
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6317
6969
  id?: InputMaybe<Scalars['ID']>;
6318
6970
  id_gt?: InputMaybe<Scalars['ID']>;
6319
6971
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -6379,7 +7031,7 @@ export interface TokenUpgradedEvent_Filter {
6379
7031
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
6380
7032
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
6381
7033
  }
6382
- export type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
7034
+ export type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
6383
7035
  export interface Token_Filter {
6384
7036
  _change_block?: InputMaybe<BlockChangedFilter>;
6385
7037
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
@@ -6540,6 +7192,14 @@ export interface TransferEvent_Filter {
6540
7192
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
6541
7193
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
6542
7194
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
7195
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
7196
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
7197
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
7198
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
7199
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
7200
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
7201
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
7202
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6543
7203
  id?: InputMaybe<Scalars['ID']>;
6544
7204
  id_gt?: InputMaybe<Scalars['ID']>;
6545
7205
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -6634,7 +7294,7 @@ export interface TransferEvent_Filter {
6634
7294
  value_not?: InputMaybe<Scalars['BigInt']>;
6635
7295
  value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6636
7296
  }
6637
- export type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'gasPrice' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
7297
+ export type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'gasPrice' | 'gasUsed' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
6638
7298
  export interface TrustedForwarderChangedEvent_Filter {
6639
7299
  _change_block?: InputMaybe<BlockChangedFilter>;
6640
7300
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -6669,6 +7329,14 @@ export interface TrustedForwarderChangedEvent_Filter {
6669
7329
  gasPrice_lte?: InputMaybe<Scalars['BigInt']>;
6670
7330
  gasPrice_not?: InputMaybe<Scalars['BigInt']>;
6671
7331
  gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
7332
+ gasUsed?: InputMaybe<Scalars['BigInt']>;
7333
+ gasUsed_gt?: InputMaybe<Scalars['BigInt']>;
7334
+ gasUsed_gte?: InputMaybe<Scalars['BigInt']>;
7335
+ gasUsed_in?: InputMaybe<Array<Scalars['BigInt']>>;
7336
+ gasUsed_lt?: InputMaybe<Scalars['BigInt']>;
7337
+ gasUsed_lte?: InputMaybe<Scalars['BigInt']>;
7338
+ gasUsed_not?: InputMaybe<Scalars['BigInt']>;
7339
+ gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
6672
7340
  governanceAddress?: InputMaybe<Scalars['Bytes']>;
6673
7341
  governanceAddress_contains?: InputMaybe<Scalars['Bytes']>;
6674
7342
  governanceAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -6750,6 +7418,6 @@ export interface TrustedForwarderChangedEvent_Filter {
6750
7418
  transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
6751
7419
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
6752
7420
  }
6753
- export type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'gasPrice' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
7421
+ export type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'gasPrice' | 'gasUsed' | 'governanceAddress' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
6754
7422
  export type _SubgraphErrorPolicy_ = 'allow' | 'deny';
6755
7423
  //# sourceMappingURL=schema.generated.d.ts.map