@superfluid-finance/sdk-core 0.4.2-dev.5073b90.0 → 0.4.2-dev.7b94c3f.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/index.umd.js +17 -8
  2. package/dist/main/index.d.ts +1 -4
  3. package/dist/main/index.d.ts.map +1 -1
  4. package/dist/main/index.js +16 -7
  5. package/dist/main/index.js.map +1 -1
  6. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts +1 -0
  7. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts.map +1 -1
  8. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.js.map +1 -1
  9. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts +1 -0
  10. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts.map +1 -1
  11. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js +1 -1
  12. package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js.map +1 -1
  13. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.d.ts +46 -0
  14. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.d.ts.map +1 -0
  15. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.js +31 -0
  16. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.js.map +1 -0
  17. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.d.ts +49 -0
  18. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.d.ts.map +1 -0
  19. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.js +5 -0
  20. package/dist/main/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.js.map +1 -0
  21. package/dist/main/subgraph/schema.generated.d.ts +284 -1
  22. package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
  23. package/dist/module/index.d.ts +1 -4
  24. package/dist/module/index.d.ts.map +1 -1
  25. package/dist/module/index.js +1 -4
  26. package/dist/module/index.js.map +1 -1
  27. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts +1 -0
  28. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts.map +1 -1
  29. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.js.map +1 -1
  30. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts +1 -0
  31. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts.map +1 -1
  32. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js +1 -1
  33. package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js.map +1 -1
  34. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.d.ts +46 -0
  35. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.d.ts.map +1 -0
  36. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.js +27 -0
  37. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog.js.map +1 -0
  38. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.d.ts +49 -0
  39. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.d.ts.map +1 -0
  40. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.js +2 -0
  41. package/dist/module/subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLogs.generated.js.map +1 -0
  42. package/dist/module/subgraph/schema.generated.d.ts +284 -1
  43. package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
  44. package/package.json +6 -2
@@ -22,7 +22,234 @@ export interface Scalars {
22
22
  BigInt: string;
23
23
  Bytes: string;
24
24
  }
25
+ export interface AccountTokenSnapshotLog_Filter {
26
+ _change_block?: InputMaybe<BlockChangedFilter>;
27
+ account?: InputMaybe<Scalars['String']>;
28
+ accountTokenSnapshot?: InputMaybe<Scalars['String']>;
29
+ accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
30
+ accountTokenSnapshot_contains_nocase?: InputMaybe<Scalars['String']>;
31
+ accountTokenSnapshot_ends_with?: InputMaybe<Scalars['String']>;
32
+ accountTokenSnapshot_ends_with_nocase?: InputMaybe<Scalars['String']>;
33
+ accountTokenSnapshot_gt?: InputMaybe<Scalars['String']>;
34
+ accountTokenSnapshot_gte?: InputMaybe<Scalars['String']>;
35
+ accountTokenSnapshot_in?: InputMaybe<Array<Scalars['String']>>;
36
+ accountTokenSnapshot_lt?: InputMaybe<Scalars['String']>;
37
+ accountTokenSnapshot_lte?: InputMaybe<Scalars['String']>;
38
+ accountTokenSnapshot_not?: InputMaybe<Scalars['String']>;
39
+ accountTokenSnapshot_not_contains?: InputMaybe<Scalars['String']>;
40
+ accountTokenSnapshot_not_contains_nocase?: InputMaybe<Scalars['String']>;
41
+ accountTokenSnapshot_not_ends_with?: InputMaybe<Scalars['String']>;
42
+ accountTokenSnapshot_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
43
+ accountTokenSnapshot_not_in?: InputMaybe<Array<Scalars['String']>>;
44
+ accountTokenSnapshot_not_starts_with?: InputMaybe<Scalars['String']>;
45
+ accountTokenSnapshot_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
46
+ accountTokenSnapshot_starts_with?: InputMaybe<Scalars['String']>;
47
+ accountTokenSnapshot_starts_with_nocase?: InputMaybe<Scalars['String']>;
48
+ account_contains?: InputMaybe<Scalars['String']>;
49
+ account_contains_nocase?: InputMaybe<Scalars['String']>;
50
+ account_ends_with?: InputMaybe<Scalars['String']>;
51
+ account_ends_with_nocase?: InputMaybe<Scalars['String']>;
52
+ account_gt?: InputMaybe<Scalars['String']>;
53
+ account_gte?: InputMaybe<Scalars['String']>;
54
+ account_in?: InputMaybe<Array<Scalars['String']>>;
55
+ account_lt?: InputMaybe<Scalars['String']>;
56
+ account_lte?: InputMaybe<Scalars['String']>;
57
+ account_not?: InputMaybe<Scalars['String']>;
58
+ account_not_contains?: InputMaybe<Scalars['String']>;
59
+ account_not_contains_nocase?: InputMaybe<Scalars['String']>;
60
+ account_not_ends_with?: InputMaybe<Scalars['String']>;
61
+ account_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
62
+ account_not_in?: InputMaybe<Array<Scalars['String']>>;
63
+ account_not_starts_with?: InputMaybe<Scalars['String']>;
64
+ account_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
65
+ account_starts_with?: InputMaybe<Scalars['String']>;
66
+ account_starts_with_nocase?: InputMaybe<Scalars['String']>;
67
+ balance?: InputMaybe<Scalars['BigInt']>;
68
+ balance_gt?: InputMaybe<Scalars['BigInt']>;
69
+ balance_gte?: InputMaybe<Scalars['BigInt']>;
70
+ balance_in?: InputMaybe<Array<Scalars['BigInt']>>;
71
+ balance_lt?: InputMaybe<Scalars['BigInt']>;
72
+ balance_lte?: InputMaybe<Scalars['BigInt']>;
73
+ balance_not?: InputMaybe<Scalars['BigInt']>;
74
+ balance_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
75
+ blockNumber?: InputMaybe<Scalars['BigInt']>;
76
+ blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
77
+ blockNumber_gte?: InputMaybe<Scalars['BigInt']>;
78
+ blockNumber_in?: InputMaybe<Array<Scalars['BigInt']>>;
79
+ blockNumber_lt?: InputMaybe<Scalars['BigInt']>;
80
+ blockNumber_lte?: InputMaybe<Scalars['BigInt']>;
81
+ blockNumber_not?: InputMaybe<Scalars['BigInt']>;
82
+ blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
83
+ id?: InputMaybe<Scalars['ID']>;
84
+ id_gt?: InputMaybe<Scalars['ID']>;
85
+ id_gte?: InputMaybe<Scalars['ID']>;
86
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
87
+ id_lt?: InputMaybe<Scalars['ID']>;
88
+ id_lte?: InputMaybe<Scalars['ID']>;
89
+ id_not?: InputMaybe<Scalars['ID']>;
90
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
91
+ logIndex?: InputMaybe<Scalars['BigInt']>;
92
+ logIndex_gt?: InputMaybe<Scalars['BigInt']>;
93
+ logIndex_gte?: InputMaybe<Scalars['BigInt']>;
94
+ logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
95
+ logIndex_lt?: InputMaybe<Scalars['BigInt']>;
96
+ logIndex_lte?: InputMaybe<Scalars['BigInt']>;
97
+ logIndex_not?: InputMaybe<Scalars['BigInt']>;
98
+ logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
99
+ maybeCriticalAtTimestamp?: InputMaybe<Scalars['BigInt']>;
100
+ maybeCriticalAtTimestamp_gt?: InputMaybe<Scalars['BigInt']>;
101
+ maybeCriticalAtTimestamp_gte?: InputMaybe<Scalars['BigInt']>;
102
+ maybeCriticalAtTimestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
103
+ maybeCriticalAtTimestamp_lt?: InputMaybe<Scalars['BigInt']>;
104
+ maybeCriticalAtTimestamp_lte?: InputMaybe<Scalars['BigInt']>;
105
+ maybeCriticalAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
106
+ maybeCriticalAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
107
+ order?: InputMaybe<Scalars['BigInt']>;
108
+ order_gt?: InputMaybe<Scalars['BigInt']>;
109
+ order_gte?: InputMaybe<Scalars['BigInt']>;
110
+ order_in?: InputMaybe<Array<Scalars['BigInt']>>;
111
+ order_lt?: InputMaybe<Scalars['BigInt']>;
112
+ order_lte?: InputMaybe<Scalars['BigInt']>;
113
+ order_not?: InputMaybe<Scalars['BigInt']>;
114
+ order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
115
+ timestamp?: InputMaybe<Scalars['BigInt']>;
116
+ timestamp_gt?: InputMaybe<Scalars['BigInt']>;
117
+ timestamp_gte?: InputMaybe<Scalars['BigInt']>;
118
+ timestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
119
+ timestamp_lt?: InputMaybe<Scalars['BigInt']>;
120
+ timestamp_lte?: InputMaybe<Scalars['BigInt']>;
121
+ timestamp_not?: InputMaybe<Scalars['BigInt']>;
122
+ timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
123
+ token?: InputMaybe<Scalars['String']>;
124
+ token_contains?: InputMaybe<Scalars['String']>;
125
+ token_contains_nocase?: InputMaybe<Scalars['String']>;
126
+ token_ends_with?: InputMaybe<Scalars['String']>;
127
+ token_ends_with_nocase?: InputMaybe<Scalars['String']>;
128
+ token_gt?: InputMaybe<Scalars['String']>;
129
+ token_gte?: InputMaybe<Scalars['String']>;
130
+ token_in?: InputMaybe<Array<Scalars['String']>>;
131
+ token_lt?: InputMaybe<Scalars['String']>;
132
+ token_lte?: InputMaybe<Scalars['String']>;
133
+ token_not?: InputMaybe<Scalars['String']>;
134
+ token_not_contains?: InputMaybe<Scalars['String']>;
135
+ token_not_contains_nocase?: InputMaybe<Scalars['String']>;
136
+ token_not_ends_with?: InputMaybe<Scalars['String']>;
137
+ token_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
138
+ token_not_in?: InputMaybe<Array<Scalars['String']>>;
139
+ token_not_starts_with?: InputMaybe<Scalars['String']>;
140
+ token_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
141
+ token_starts_with?: InputMaybe<Scalars['String']>;
142
+ token_starts_with_nocase?: InputMaybe<Scalars['String']>;
143
+ totalAmountStreamed?: InputMaybe<Scalars['BigInt']>;
144
+ totalAmountStreamed_gt?: InputMaybe<Scalars['BigInt']>;
145
+ totalAmountStreamed_gte?: InputMaybe<Scalars['BigInt']>;
146
+ totalAmountStreamed_in?: InputMaybe<Array<Scalars['BigInt']>>;
147
+ totalAmountStreamed_lt?: InputMaybe<Scalars['BigInt']>;
148
+ totalAmountStreamed_lte?: InputMaybe<Scalars['BigInt']>;
149
+ totalAmountStreamed_not?: InputMaybe<Scalars['BigInt']>;
150
+ totalAmountStreamed_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
151
+ totalAmountTransferred?: InputMaybe<Scalars['BigInt']>;
152
+ totalAmountTransferred_gt?: InputMaybe<Scalars['BigInt']>;
153
+ totalAmountTransferred_gte?: InputMaybe<Scalars['BigInt']>;
154
+ totalAmountTransferred_in?: InputMaybe<Array<Scalars['BigInt']>>;
155
+ totalAmountTransferred_lt?: InputMaybe<Scalars['BigInt']>;
156
+ totalAmountTransferred_lte?: InputMaybe<Scalars['BigInt']>;
157
+ totalAmountTransferred_not?: InputMaybe<Scalars['BigInt']>;
158
+ totalAmountTransferred_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
159
+ totalApprovedSubscriptions?: InputMaybe<Scalars['Int']>;
160
+ totalApprovedSubscriptions_gt?: InputMaybe<Scalars['Int']>;
161
+ totalApprovedSubscriptions_gte?: InputMaybe<Scalars['Int']>;
162
+ totalApprovedSubscriptions_in?: InputMaybe<Array<Scalars['Int']>>;
163
+ totalApprovedSubscriptions_lt?: InputMaybe<Scalars['Int']>;
164
+ totalApprovedSubscriptions_lte?: InputMaybe<Scalars['Int']>;
165
+ totalApprovedSubscriptions_not?: InputMaybe<Scalars['Int']>;
166
+ totalApprovedSubscriptions_not_in?: InputMaybe<Array<Scalars['Int']>>;
167
+ totalDeposit?: InputMaybe<Scalars['BigInt']>;
168
+ totalDeposit_gt?: InputMaybe<Scalars['BigInt']>;
169
+ totalDeposit_gte?: InputMaybe<Scalars['BigInt']>;
170
+ totalDeposit_in?: InputMaybe<Array<Scalars['BigInt']>>;
171
+ totalDeposit_lt?: InputMaybe<Scalars['BigInt']>;
172
+ totalDeposit_lte?: InputMaybe<Scalars['BigInt']>;
173
+ totalDeposit_not?: InputMaybe<Scalars['BigInt']>;
174
+ totalDeposit_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
175
+ totalInflowRate?: InputMaybe<Scalars['BigInt']>;
176
+ totalInflowRate_gt?: InputMaybe<Scalars['BigInt']>;
177
+ totalInflowRate_gte?: InputMaybe<Scalars['BigInt']>;
178
+ totalInflowRate_in?: InputMaybe<Array<Scalars['BigInt']>>;
179
+ totalInflowRate_lt?: InputMaybe<Scalars['BigInt']>;
180
+ totalInflowRate_lte?: InputMaybe<Scalars['BigInt']>;
181
+ totalInflowRate_not?: InputMaybe<Scalars['BigInt']>;
182
+ totalInflowRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
183
+ totalNetFlowRate?: InputMaybe<Scalars['BigInt']>;
184
+ totalNetFlowRate_gt?: InputMaybe<Scalars['BigInt']>;
185
+ totalNetFlowRate_gte?: InputMaybe<Scalars['BigInt']>;
186
+ totalNetFlowRate_in?: InputMaybe<Array<Scalars['BigInt']>>;
187
+ totalNetFlowRate_lt?: InputMaybe<Scalars['BigInt']>;
188
+ totalNetFlowRate_lte?: InputMaybe<Scalars['BigInt']>;
189
+ totalNetFlowRate_not?: InputMaybe<Scalars['BigInt']>;
190
+ totalNetFlowRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
191
+ totalNumberOfActiveStreams?: InputMaybe<Scalars['Int']>;
192
+ totalNumberOfActiveStreams_gt?: InputMaybe<Scalars['Int']>;
193
+ totalNumberOfActiveStreams_gte?: InputMaybe<Scalars['Int']>;
194
+ totalNumberOfActiveStreams_in?: InputMaybe<Array<Scalars['Int']>>;
195
+ totalNumberOfActiveStreams_lt?: InputMaybe<Scalars['Int']>;
196
+ totalNumberOfActiveStreams_lte?: InputMaybe<Scalars['Int']>;
197
+ totalNumberOfActiveStreams_not?: InputMaybe<Scalars['Int']>;
198
+ totalNumberOfActiveStreams_not_in?: InputMaybe<Array<Scalars['Int']>>;
199
+ totalNumberOfClosedStreams?: InputMaybe<Scalars['Int']>;
200
+ totalNumberOfClosedStreams_gt?: InputMaybe<Scalars['Int']>;
201
+ totalNumberOfClosedStreams_gte?: InputMaybe<Scalars['Int']>;
202
+ totalNumberOfClosedStreams_in?: InputMaybe<Array<Scalars['Int']>>;
203
+ totalNumberOfClosedStreams_lt?: InputMaybe<Scalars['Int']>;
204
+ totalNumberOfClosedStreams_lte?: InputMaybe<Scalars['Int']>;
205
+ totalNumberOfClosedStreams_not?: InputMaybe<Scalars['Int']>;
206
+ totalNumberOfClosedStreams_not_in?: InputMaybe<Array<Scalars['Int']>>;
207
+ totalOutflowRate?: InputMaybe<Scalars['BigInt']>;
208
+ totalOutflowRate_gt?: InputMaybe<Scalars['BigInt']>;
209
+ totalOutflowRate_gte?: InputMaybe<Scalars['BigInt']>;
210
+ totalOutflowRate_in?: InputMaybe<Array<Scalars['BigInt']>>;
211
+ totalOutflowRate_lt?: InputMaybe<Scalars['BigInt']>;
212
+ totalOutflowRate_lte?: InputMaybe<Scalars['BigInt']>;
213
+ totalOutflowRate_not?: InputMaybe<Scalars['BigInt']>;
214
+ totalOutflowRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
215
+ totalSubscriptionsWithUnits?: InputMaybe<Scalars['Int']>;
216
+ totalSubscriptionsWithUnits_gt?: InputMaybe<Scalars['Int']>;
217
+ totalSubscriptionsWithUnits_gte?: InputMaybe<Scalars['Int']>;
218
+ totalSubscriptionsWithUnits_in?: InputMaybe<Array<Scalars['Int']>>;
219
+ totalSubscriptionsWithUnits_lt?: InputMaybe<Scalars['Int']>;
220
+ totalSubscriptionsWithUnits_lte?: InputMaybe<Scalars['Int']>;
221
+ totalSubscriptionsWithUnits_not?: InputMaybe<Scalars['Int']>;
222
+ totalSubscriptionsWithUnits_not_in?: InputMaybe<Array<Scalars['Int']>>;
223
+ transactionHash?: InputMaybe<Scalars['Bytes']>;
224
+ transactionHash_contains?: InputMaybe<Scalars['Bytes']>;
225
+ transactionHash_in?: InputMaybe<Array<Scalars['Bytes']>>;
226
+ transactionHash_not?: InputMaybe<Scalars['Bytes']>;
227
+ transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
228
+ transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
229
+ triggeredByEventName?: InputMaybe<Scalars['String']>;
230
+ triggeredByEventName_contains?: InputMaybe<Scalars['String']>;
231
+ triggeredByEventName_contains_nocase?: InputMaybe<Scalars['String']>;
232
+ triggeredByEventName_ends_with?: InputMaybe<Scalars['String']>;
233
+ triggeredByEventName_ends_with_nocase?: InputMaybe<Scalars['String']>;
234
+ triggeredByEventName_gt?: InputMaybe<Scalars['String']>;
235
+ triggeredByEventName_gte?: InputMaybe<Scalars['String']>;
236
+ triggeredByEventName_in?: InputMaybe<Array<Scalars['String']>>;
237
+ triggeredByEventName_lt?: InputMaybe<Scalars['String']>;
238
+ triggeredByEventName_lte?: InputMaybe<Scalars['String']>;
239
+ triggeredByEventName_not?: InputMaybe<Scalars['String']>;
240
+ triggeredByEventName_not_contains?: InputMaybe<Scalars['String']>;
241
+ triggeredByEventName_not_contains_nocase?: InputMaybe<Scalars['String']>;
242
+ triggeredByEventName_not_ends_with?: InputMaybe<Scalars['String']>;
243
+ triggeredByEventName_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
244
+ triggeredByEventName_not_in?: InputMaybe<Array<Scalars['String']>>;
245
+ triggeredByEventName_not_starts_with?: InputMaybe<Scalars['String']>;
246
+ triggeredByEventName_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
247
+ triggeredByEventName_starts_with?: InputMaybe<Scalars['String']>;
248
+ triggeredByEventName_starts_with_nocase?: InputMaybe<Scalars['String']>;
249
+ }
250
+ export declare type AccountTokenSnapshotLog_OrderBy = 'account' | 'accountTokenSnapshot' | 'balance' | 'blockNumber' | 'id' | 'logIndex' | 'maybeCriticalAtTimestamp' | 'order' | 'timestamp' | 'token' | 'totalAmountStreamed' | 'totalAmountTransferred' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'transactionHash' | 'triggeredByEventName';
25
251
  export interface AccountTokenSnapshot_Filter {
252
+ _change_block?: InputMaybe<BlockChangedFilter>;
26
253
  account?: InputMaybe<Scalars['String']>;
27
254
  account_contains?: InputMaybe<Scalars['String']>;
28
255
  account_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -59,6 +286,10 @@ export interface AccountTokenSnapshot_Filter {
59
286
  id_lte?: InputMaybe<Scalars['ID']>;
60
287
  id_not?: InputMaybe<Scalars['ID']>;
61
288
  id_not_in?: InputMaybe<Array<Scalars['ID']>>;
289
+ isLiquidationEstimateOptimistic?: InputMaybe<Scalars['Boolean']>;
290
+ isLiquidationEstimateOptimistic_in?: InputMaybe<Array<Scalars['Boolean']>>;
291
+ isLiquidationEstimateOptimistic_not?: InputMaybe<Scalars['Boolean']>;
292
+ isLiquidationEstimateOptimistic_not_in?: InputMaybe<Array<Scalars['Boolean']>>;
62
293
  maybeCriticalAtTimestamp?: InputMaybe<Scalars['BigInt']>;
63
294
  maybeCriticalAtTimestamp_gt?: InputMaybe<Scalars['BigInt']>;
64
295
  maybeCriticalAtTimestamp_gte?: InputMaybe<Scalars['BigInt']>;
@@ -184,8 +415,9 @@ export interface AccountTokenSnapshot_Filter {
184
415
  updatedAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
185
416
  updatedAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
186
417
  }
187
- export declare type AccountTokenSnapshot_OrderBy = 'account' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'maybeCriticalAtTimestamp' | 'token' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
418
+ export declare type AccountTokenSnapshot_OrderBy = 'account' | 'accountTokenSnapshotLogs' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'isLiquidationEstimateOptimistic' | 'maybeCriticalAtTimestamp' | 'token' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
188
419
  export interface Account_Filter {
420
+ _change_block?: InputMaybe<BlockChangedFilter>;
189
421
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
190
422
  createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
191
423
  createdAtBlockNumber_gte?: InputMaybe<Scalars['BigInt']>;
@@ -233,6 +465,7 @@ export interface Account_Filter {
233
465
  }
234
466
  export declare type Account_OrderBy = 'accountTokenSnapshots' | 'createdAtBlockNumber' | 'createdAtTimestamp' | 'id' | 'inflows' | 'isSuperApp' | 'outflows' | 'publishedIndexes' | 'receivedTransferEvents' | 'sentTransferEvents' | 'subscriptions' | 'tokenDowngradedEvents' | 'tokenUpgradedEvents' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
235
467
  export interface AgreementClassRegisteredEvent_Filter {
468
+ _change_block?: InputMaybe<BlockChangedFilter>;
236
469
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
237
470
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
238
471
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -320,6 +553,7 @@ export interface AgreementClassRegisteredEvent_Filter {
320
553
  }
321
554
  export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
322
555
  export interface AgreementClassUpdatedEvent_Filter {
556
+ _change_block?: InputMaybe<BlockChangedFilter>;
323
557
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
324
558
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
325
559
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -407,6 +641,7 @@ export interface AgreementClassUpdatedEvent_Filter {
407
641
  }
408
642
  export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
409
643
  export interface AgreementLiquidatedByEvent_Filter {
644
+ _change_block?: InputMaybe<BlockChangedFilter>;
410
645
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
411
646
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
412
647
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -534,6 +769,7 @@ export interface AgreementLiquidatedByEvent_Filter {
534
769
  }
535
770
  export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
536
771
  export interface AgreementLiquidatedV2Event_Filter {
772
+ _change_block?: InputMaybe<BlockChangedFilter>;
537
773
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
538
774
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
539
775
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -677,6 +913,7 @@ export interface AgreementLiquidatedV2Event_Filter {
677
913
  }
678
914
  export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
679
915
  export interface AppRegisteredEvent_Filter {
916
+ _change_block?: InputMaybe<BlockChangedFilter>;
680
917
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
681
918
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
682
919
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -757,12 +994,16 @@ export interface AppRegisteredEvent_Filter {
757
994
  transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
758
995
  }
759
996
  export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
997
+ export interface BlockChangedFilter {
998
+ number_gte: Scalars['Int'];
999
+ }
760
1000
  export interface Block_Height {
761
1001
  hash?: InputMaybe<Scalars['Bytes']>;
762
1002
  number?: InputMaybe<Scalars['Int']>;
763
1003
  number_gte?: InputMaybe<Scalars['Int']>;
764
1004
  }
765
1005
  export interface BurnedEvent_Filter {
1006
+ _change_block?: InputMaybe<BlockChangedFilter>;
766
1007
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
767
1008
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
768
1009
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -870,6 +1111,7 @@ export interface BurnedEvent_Filter {
870
1111
  }
871
1112
  export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'transactionHash';
872
1113
  export interface CfAv1LiquidationPeriodChangedEvent_Filter {
1114
+ _change_block?: InputMaybe<BlockChangedFilter>;
873
1115
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
874
1116
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
875
1117
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -969,6 +1211,7 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
969
1211
  }
970
1212
  export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
971
1213
  export interface ConfigChangedEvent_Filter {
1214
+ _change_block?: InputMaybe<BlockChangedFilter>;
972
1215
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
973
1216
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
974
1217
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1074,6 +1317,7 @@ export interface ConfigChangedEvent_Filter {
1074
1317
  }
1075
1318
  export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
1076
1319
  export interface CustomSuperTokenCreatedEvent_Filter {
1320
+ _change_block?: InputMaybe<BlockChangedFilter>;
1077
1321
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1078
1322
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1079
1323
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1155,6 +1399,7 @@ export interface CustomSuperTokenCreatedEvent_Filter {
1155
1399
  }
1156
1400
  export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
1157
1401
  export interface Event_Filter {
1402
+ _change_block?: InputMaybe<BlockChangedFilter>;
1158
1403
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1159
1404
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1160
1405
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1230,6 +1475,7 @@ export interface Event_Filter {
1230
1475
  }
1231
1476
  export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
1232
1477
  export interface FlowOperatorUpdatedEvent_Filter {
1478
+ _change_block?: InputMaybe<BlockChangedFilter>;
1233
1479
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1234
1480
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1235
1481
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1353,6 +1599,7 @@ export interface FlowOperatorUpdatedEvent_Filter {
1353
1599
  }
1354
1600
  export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'logIndex' | 'name' | 'order' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
1355
1601
  export interface FlowOperator_Filter {
1602
+ _change_block?: InputMaybe<BlockChangedFilter>;
1356
1603
  accountTokenSnapshot?: InputMaybe<Scalars['String']>;
1357
1604
  accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
1358
1605
  accountTokenSnapshot_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -1486,6 +1733,7 @@ export interface FlowOperator_Filter {
1486
1733
  }
1487
1734
  export declare type FlowOperator_OrderBy = 'accountTokenSnapshot' | 'createdAtBlockNumber' | 'createdAtTimestamp' | 'flowOperator' | 'flowOperatorUpdatedEvents' | 'flowRateAllowanceGranted' | 'flowRateAllowanceRemaining' | 'id' | 'permissions' | 'sender' | 'token' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
1488
1735
  export interface FlowUpdatedEvent_Filter {
1736
+ _change_block?: InputMaybe<BlockChangedFilter>;
1489
1737
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1490
1738
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1491
1739
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1667,6 +1915,7 @@ export interface FlowUpdatedEvent_Filter {
1667
1915
  }
1668
1916
  export declare type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'id' | 'logIndex' | 'name' | 'oldFlowRate' | 'order' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
1669
1917
  export interface GovernanceReplacedEvent_Filter {
1918
+ _change_block?: InputMaybe<BlockChangedFilter>;
1670
1919
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1671
1920
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1672
1921
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1754,6 +2003,7 @@ export interface GovernanceReplacedEvent_Filter {
1754
2003
  }
1755
2004
  export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'order' | 'timestamp' | 'transactionHash';
1756
2005
  export interface IndexCreatedEvent_Filter {
2006
+ _change_block?: InputMaybe<BlockChangedFilter>;
1757
2007
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1758
2008
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1759
2009
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -1875,6 +2125,7 @@ export interface IndexCreatedEvent_Filter {
1875
2125
  }
1876
2126
  export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
1877
2127
  export interface IndexDistributionClaimedEvent_Filter {
2128
+ _change_block?: InputMaybe<BlockChangedFilter>;
1878
2129
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
1879
2130
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
1880
2131
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2004,6 +2255,7 @@ export interface IndexDistributionClaimedEvent_Filter {
2004
2255
  }
2005
2256
  export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
2006
2257
  export interface IndexSubscribedEvent_Filter {
2258
+ _change_block?: InputMaybe<BlockChangedFilter>;
2007
2259
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2008
2260
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
2009
2261
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2131,6 +2383,7 @@ export interface IndexSubscribedEvent_Filter {
2131
2383
  }
2132
2384
  export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2133
2385
  export interface IndexSubscription_Filter {
2386
+ _change_block?: InputMaybe<BlockChangedFilter>;
2134
2387
  approved?: InputMaybe<Scalars['Boolean']>;
2135
2388
  approved_in?: InputMaybe<Array<Scalars['Boolean']>>;
2136
2389
  approved_not?: InputMaybe<Scalars['Boolean']>;
@@ -2242,6 +2495,7 @@ export interface IndexSubscription_Filter {
2242
2495
  }
2243
2496
  export declare type IndexSubscription_OrderBy = 'approved' | 'createdAtBlockNumber' | 'createdAtTimestamp' | 'id' | 'index' | 'indexValueUntilUpdatedAt' | 'subscriber' | 'subscriptionApprovedEvents' | 'subscriptionDistributionClaimedEvents' | 'subscriptionRevokedEvents' | 'subscriptionUnitsUpdatedEvents' | 'totalAmountReceivedUntilUpdatedAt' | 'units' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
2244
2497
  export interface IndexUnitsUpdatedEvent_Filter {
2498
+ _change_block?: InputMaybe<BlockChangedFilter>;
2245
2499
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2246
2500
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
2247
2501
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2385,6 +2639,7 @@ export interface IndexUnitsUpdatedEvent_Filter {
2385
2639
  }
2386
2640
  export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
2387
2641
  export interface IndexUnsubscribedEvent_Filter {
2642
+ _change_block?: InputMaybe<BlockChangedFilter>;
2388
2643
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2389
2644
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
2390
2645
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2512,6 +2767,7 @@ export interface IndexUnsubscribedEvent_Filter {
2512
2767
  }
2513
2768
  export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
2514
2769
  export interface IndexUpdatedEvent_Filter {
2770
+ _change_block?: InputMaybe<BlockChangedFilter>;
2515
2771
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2516
2772
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
2517
2773
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2665,6 +2921,7 @@ export interface IndexUpdatedEvent_Filter {
2665
2921
  }
2666
2922
  export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'order' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
2667
2923
  export interface Index_Filter {
2924
+ _change_block?: InputMaybe<BlockChangedFilter>;
2668
2925
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
2669
2926
  createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
2670
2927
  createdAtBlockNumber_gte?: InputMaybe<Scalars['BigInt']>;
@@ -2824,6 +3081,7 @@ export interface Index_Filter {
2824
3081
  }
2825
3082
  export declare type Index_OrderBy = 'createdAtBlockNumber' | 'createdAtTimestamp' | 'id' | 'indexCreatedEvent' | 'indexDistributionClaimedEvents' | 'indexId' | 'indexSubscribedEvents' | 'indexUnitsUpdatedEvents' | 'indexUnsubscribedEvents' | 'indexUpdatedEvents' | 'indexValue' | 'publisher' | 'subscriptions' | 'token' | 'totalAmountDistributedUntilUpdatedAt' | 'totalSubscriptionsWithUnits' | 'totalUnits' | 'totalUnitsApproved' | 'totalUnitsPending' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
2826
3083
  export interface JailEvent_Filter {
3084
+ _change_block?: InputMaybe<BlockChangedFilter>;
2827
3085
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2828
3086
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
2829
3087
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -2913,6 +3171,7 @@ export interface JailEvent_Filter {
2913
3171
  }
2914
3172
  export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'reason' | 'timestamp' | 'transactionHash';
2915
3173
  export interface MintedEvent_Filter {
3174
+ _change_block?: InputMaybe<BlockChangedFilter>;
2916
3175
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
2917
3176
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
2918
3177
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3021,6 +3280,7 @@ export interface MintedEvent_Filter {
3021
3280
  export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'transactionHash';
3022
3281
  export declare type OrderDirection = 'asc' | 'desc';
3023
3282
  export interface PppConfigurationChangedEvent_Filter {
3283
+ _change_block?: InputMaybe<BlockChangedFilter>;
3024
3284
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3025
3285
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
3026
3286
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3128,6 +3388,7 @@ export interface PppConfigurationChangedEvent_Filter {
3128
3388
  }
3129
3389
  export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
3130
3390
  export interface RewardAddressChangedEvent_Filter {
3391
+ _change_block?: InputMaybe<BlockChangedFilter>;
3131
3392
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3132
3393
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
3133
3394
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3225,6 +3486,7 @@ export interface RewardAddressChangedEvent_Filter {
3225
3486
  }
3226
3487
  export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
3227
3488
  export interface RoleAdminChangedEvent_Filter {
3489
+ _change_block?: InputMaybe<BlockChangedFilter>;
3228
3490
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3229
3491
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
3230
3492
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3318,6 +3580,7 @@ export interface RoleAdminChangedEvent_Filter {
3318
3580
  }
3319
3581
  export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'order' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
3320
3582
  export interface RoleGrantedEvent_Filter {
3583
+ _change_block?: InputMaybe<BlockChangedFilter>;
3321
3584
  account?: InputMaybe<Scalars['Bytes']>;
3322
3585
  account_contains?: InputMaybe<Scalars['Bytes']>;
3323
3586
  account_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3411,6 +3674,7 @@ export interface RoleGrantedEvent_Filter {
3411
3674
  }
3412
3675
  export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
3413
3676
  export interface RoleRevokedEvent_Filter {
3677
+ _change_block?: InputMaybe<BlockChangedFilter>;
3414
3678
  account?: InputMaybe<Scalars['Bytes']>;
3415
3679
  account_contains?: InputMaybe<Scalars['Bytes']>;
3416
3680
  account_in?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3504,6 +3768,7 @@ export interface RoleRevokedEvent_Filter {
3504
3768
  }
3505
3769
  export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
3506
3770
  export interface SfMeta_Filter {
3771
+ _change_block?: InputMaybe<BlockChangedFilter>;
3507
3772
  blockNumber?: InputMaybe<Scalars['BigInt']>;
3508
3773
  blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
3509
3774
  blockNumber_gte?: InputMaybe<Scalars['BigInt']>;
@@ -3571,6 +3836,7 @@ export interface SfMeta_Filter {
3571
3836
  }
3572
3837
  export declare type SfMeta_OrderBy = 'blockNumber' | 'branch' | 'configuration' | 'id' | 'timestamp';
3573
3838
  export interface SentEvent_Filter {
3839
+ _change_block?: InputMaybe<BlockChangedFilter>;
3574
3840
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
3575
3841
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
3576
3842
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -3684,6 +3950,7 @@ export interface SentEvent_Filter {
3684
3950
  }
3685
3951
  export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'transactionHash';
3686
3952
  export interface StreamPeriod_Filter {
3953
+ _change_block?: InputMaybe<BlockChangedFilter>;
3687
3954
  deposit?: InputMaybe<Scalars['BigInt']>;
3688
3955
  deposit_gt?: InputMaybe<Scalars['BigInt']>;
3689
3956
  deposit_gte?: InputMaybe<Scalars['BigInt']>;
@@ -3871,6 +4138,7 @@ export interface StreamPeriod_Filter {
3871
4138
  }
3872
4139
  export declare type StreamPeriod_OrderBy = 'deposit' | 'flowRate' | 'id' | 'receiver' | 'sender' | 'startedAtBlockNumber' | 'startedAtEvent' | 'startedAtTimestamp' | 'stoppedAtBlockNumber' | 'stoppedAtEvent' | 'stoppedAtTimestamp' | 'stream' | 'token' | 'totalAmountStreamed';
3873
4140
  export interface StreamRevision_Filter {
4141
+ _change_block?: InputMaybe<BlockChangedFilter>;
3874
4142
  id?: InputMaybe<Scalars['ID']>;
3875
4143
  id_gt?: InputMaybe<Scalars['ID']>;
3876
4144
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -3898,6 +4166,7 @@ export interface StreamRevision_Filter {
3898
4166
  }
3899
4167
  export declare type StreamRevision_OrderBy = 'id' | 'periodRevisionIndex' | 'revisionIndex';
3900
4168
  export interface Stream_Filter {
4169
+ _change_block?: InputMaybe<BlockChangedFilter>;
3901
4170
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
3902
4171
  createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
3903
4172
  createdAtBlockNumber_gte?: InputMaybe<Scalars['BigInt']>;
@@ -4025,6 +4294,7 @@ export interface Stream_Filter {
4025
4294
  }
4026
4295
  export declare type Stream_OrderBy = 'createdAtBlockNumber' | 'createdAtTimestamp' | 'currentFlowRate' | 'deposit' | 'flowUpdatedEvents' | 'id' | 'receiver' | 'sender' | 'streamPeriods' | 'streamedUntilUpdatedAt' | 'token' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
4027
4296
  export interface SubscriptionApprovedEvent_Filter {
4297
+ _change_block?: InputMaybe<BlockChangedFilter>;
4028
4298
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4029
4299
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4030
4300
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4152,6 +4422,7 @@ export interface SubscriptionApprovedEvent_Filter {
4152
4422
  }
4153
4423
  export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
4154
4424
  export interface SubscriptionDistributionClaimedEvent_Filter {
4425
+ _change_block?: InputMaybe<BlockChangedFilter>;
4155
4426
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4156
4427
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4157
4428
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4281,6 +4552,7 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
4281
4552
  }
4282
4553
  export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
4283
4554
  export interface SubscriptionRevokedEvent_Filter {
4555
+ _change_block?: InputMaybe<BlockChangedFilter>;
4284
4556
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4285
4557
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4286
4558
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4408,6 +4680,7 @@ export interface SubscriptionRevokedEvent_Filter {
4408
4680
  }
4409
4681
  export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
4410
4682
  export interface SubscriptionUnitsUpdatedEvent_Filter {
4683
+ _change_block?: InputMaybe<BlockChangedFilter>;
4411
4684
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4412
4685
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4413
4686
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4551,6 +4824,7 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
4551
4824
  }
4552
4825
  export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
4553
4826
  export interface SuperTokenCreatedEvent_Filter {
4827
+ _change_block?: InputMaybe<BlockChangedFilter>;
4554
4828
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4555
4829
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4556
4830
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4632,6 +4906,7 @@ export interface SuperTokenCreatedEvent_Filter {
4632
4906
  }
4633
4907
  export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
4634
4908
  export interface SuperTokenFactoryUpdatedEvent_Filter {
4909
+ _change_block?: InputMaybe<BlockChangedFilter>;
4635
4910
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4636
4911
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4637
4912
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4713,6 +4988,7 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
4713
4988
  }
4714
4989
  export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'order' | 'timestamp' | 'transactionHash';
4715
4990
  export interface SuperTokenLogicCreatedEvent_Filter {
4991
+ _change_block?: InputMaybe<BlockChangedFilter>;
4716
4992
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4717
4993
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4718
4994
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4794,6 +5070,7 @@ export interface SuperTokenLogicCreatedEvent_Filter {
4794
5070
  }
4795
5071
  export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'tokenLogic' | 'transactionHash';
4796
5072
  export interface SuperTokenLogicUpdatedEvent_Filter {
5073
+ _change_block?: InputMaybe<BlockChangedFilter>;
4797
5074
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
4798
5075
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
4799
5076
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -4881,6 +5158,7 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
4881
5158
  }
4882
5159
  export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
4883
5160
  export interface TokenDowngradedEvent_Filter {
5161
+ _change_block?: InputMaybe<BlockChangedFilter>;
4884
5162
  account?: InputMaybe<Scalars['String']>;
4885
5163
  account_contains?: InputMaybe<Scalars['String']>;
4886
5164
  account_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -4990,6 +5268,7 @@ export interface TokenDowngradedEvent_Filter {
4990
5268
  }
4991
5269
  export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
4992
5270
  export interface TokenStatistic_Filter {
5271
+ _change_block?: InputMaybe<BlockChangedFilter>;
4993
5272
  id?: InputMaybe<Scalars['ID']>;
4994
5273
  id_gt?: InputMaybe<Scalars['ID']>;
4995
5274
  id_gte?: InputMaybe<Scalars['ID']>;
@@ -5133,6 +5412,7 @@ export interface TokenStatistic_Filter {
5133
5412
  }
5134
5413
  export declare type TokenStatistic_OrderBy = 'id' | 'token' | 'totalAmountDistributedUntilUpdatedAt' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalNumberOfActiveIndexes' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalNumberOfIndexes' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'totalSupply' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
5135
5414
  export interface TokenUpgradedEvent_Filter {
5415
+ _change_block?: InputMaybe<BlockChangedFilter>;
5136
5416
  account?: InputMaybe<Scalars['String']>;
5137
5417
  account_contains?: InputMaybe<Scalars['String']>;
5138
5418
  account_contains_nocase?: InputMaybe<Scalars['String']>;
@@ -5242,6 +5522,7 @@ export interface TokenUpgradedEvent_Filter {
5242
5522
  }
5243
5523
  export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
5244
5524
  export interface Token_Filter {
5525
+ _change_block?: InputMaybe<BlockChangedFilter>;
5245
5526
  createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
5246
5527
  createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
5247
5528
  createdAtBlockNumber_gte?: InputMaybe<Scalars['BigInt']>;
@@ -5351,6 +5632,7 @@ export interface Token_Filter {
5351
5632
  }
5352
5633
  export declare type Token_OrderBy = 'createdAtBlockNumber' | 'createdAtTimestamp' | 'decimals' | 'id' | 'isListed' | 'isSuperToken' | 'name' | 'symbol' | 'underlyingAddress' | 'underlyingToken';
5353
5634
  export interface TransferEvent_Filter {
5635
+ _change_block?: InputMaybe<BlockChangedFilter>;
5354
5636
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
5355
5637
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
5356
5638
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;
@@ -5480,6 +5762,7 @@ export interface TransferEvent_Filter {
5480
5762
  }
5481
5763
  export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
5482
5764
  export interface TrustedForwarderChangedEvent_Filter {
5765
+ _change_block?: InputMaybe<BlockChangedFilter>;
5483
5766
  addresses?: InputMaybe<Array<Scalars['Bytes']>>;
5484
5767
  addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
5485
5768
  addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']>>;