@superfluid-finance/sdk-core 1.0.1-dev.0846cd5.0 → 1.0.1-dev.18ff2d2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/index.js +7 -3412
- package/dist/main/subgraph/queries/getAccountTokenSnapshots.generated.d.ts +6 -6
- package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +79 -79
- package/dist/main/subgraph/queries/getIndexSubscriptions.generated.d.ts +6 -6
- package/dist/main/subgraph/queries/getIndexes.generated.d.ts +6 -6
- package/dist/main/subgraph/queries/getStreams.generated.d.ts +6 -6
- package/dist/main/subgraph/queries/getTokens.generated.d.ts +6 -6
- package/dist/main/subgraph/schema.generated.d.ts +5237 -5657
- package/dist/module/index.js +7 -3412
- package/dist/module/subgraph/queries/getAccountTokenSnapshots.generated.d.ts +6 -6
- package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +79 -79
- package/dist/module/subgraph/queries/getIndexSubscriptions.generated.d.ts +6 -6
- package/dist/module/subgraph/queries/getIndexes.generated.d.ts +6 -6
- package/dist/module/subgraph/queries/getStreams.generated.d.ts +6 -6
- package/dist/module/subgraph/queries/getTokens.generated.d.ts +6 -6
- package/dist/module/subgraph/schema.generated.d.ts +5237 -5657
- package/dist/umd/index.js +7 -3412
- package/dist/umd/subgraph/queries/getAccountTokenSnapshots.generated.d.ts +6 -6
- package/dist/umd/subgraph/queries/getAllEvents.generated.d.ts +79 -79
- package/dist/umd/subgraph/queries/getIndexSubscriptions.generated.d.ts +6 -6
- package/dist/umd/subgraph/queries/getIndexes.generated.d.ts +6 -6
- package/dist/umd/subgraph/queries/getStreams.generated.d.ts +6 -6
- package/dist/umd/subgraph/queries/getTokens.generated.d.ts +6 -6
- package/dist/umd/subgraph/schema.generated.d.ts +5237 -5657
- package/package.json +17 -16
- package/dist/main/scripts/setup.d.ts +0 -22
- package/dist/module/scripts/setup.d.ts +0 -22
- package/dist/umd/scripts/setup.d.ts +0 -22
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as Types from
|
|
2
|
-
import { TypedDocumentNode as DocumentNode } from
|
|
1
|
+
import * as Types from '../schema.generated';
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
3
|
export declare type GetAccountTokenSnapshotsQueryVariables = Types.Exact<{
|
|
4
4
|
where: Types.AccountTokenSnapshot_Filter;
|
|
5
|
-
skip: Types.Scalars[
|
|
6
|
-
first: Types.Scalars[
|
|
5
|
+
skip: Types.Scalars['Int'];
|
|
6
|
+
first: Types.Scalars['Int'];
|
|
7
7
|
}>;
|
|
8
8
|
export declare type GetAccountTokenSnapshotsQuery = {
|
|
9
9
|
result: Array<{
|
|
@@ -36,6 +36,6 @@ export declare type GetAccountTokenSnapshotsQuery = {
|
|
|
36
36
|
};
|
|
37
37
|
export declare const GetAccountTokenSnapshotsDocument: DocumentNode<GetAccountTokenSnapshotsQuery, Types.Exact<{
|
|
38
38
|
where: Types.AccountTokenSnapshot_Filter;
|
|
39
|
-
skip: Types.Scalars[
|
|
40
|
-
first: Types.Scalars[
|
|
39
|
+
skip: Types.Scalars['Int'];
|
|
40
|
+
first: Types.Scalars['Int'];
|
|
41
41
|
}>>;
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import * as Types from
|
|
2
|
-
import { TypedDocumentNode as DocumentNode } from
|
|
1
|
+
import * as Types from '../schema.generated';
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
3
|
export declare type GetAllEventsQueryVariables = Types.Exact<{
|
|
4
|
-
where?: Types.
|
|
5
|
-
skip?: Types.
|
|
6
|
-
first?: Types.
|
|
4
|
+
where?: Types.InputMaybe<Types.Event_Filter>;
|
|
5
|
+
skip?: Types.InputMaybe<Types.Scalars['Int']>;
|
|
6
|
+
first?: Types.InputMaybe<Types.Scalars['Int']>;
|
|
7
7
|
}>;
|
|
8
8
|
export declare type GetAllEventsQuery = {
|
|
9
9
|
events: Array<{
|
|
10
|
-
__typename:
|
|
10
|
+
__typename: 'AgreementClassRegisteredEvent';
|
|
11
11
|
code: string;
|
|
12
12
|
agreementType: string;
|
|
13
13
|
blockNumber: string;
|
|
14
14
|
transactionHash: string;
|
|
15
15
|
timestamp: string;
|
|
16
16
|
} | {
|
|
17
|
-
__typename:
|
|
17
|
+
__typename: 'AgreementClassUpdatedEvent';
|
|
18
18
|
code: string;
|
|
19
19
|
agreementType: string;
|
|
20
20
|
blockNumber: string;
|
|
21
21
|
transactionHash: string;
|
|
22
22
|
timestamp: string;
|
|
23
23
|
} | {
|
|
24
|
-
__typename:
|
|
24
|
+
__typename: 'AgreementLiquidatedByEvent';
|
|
25
25
|
token: string;
|
|
26
26
|
rewardAmount: string;
|
|
27
27
|
penaltyAccount: string;
|
|
@@ -34,13 +34,13 @@ export declare type GetAllEventsQuery = {
|
|
|
34
34
|
transactionHash: string;
|
|
35
35
|
timestamp: string;
|
|
36
36
|
} | {
|
|
37
|
-
__typename:
|
|
37
|
+
__typename: 'AppRegisteredEvent';
|
|
38
38
|
blockNumber: string;
|
|
39
39
|
app: string;
|
|
40
40
|
transactionHash: string;
|
|
41
41
|
timestamp: string;
|
|
42
42
|
} | {
|
|
43
|
-
__typename:
|
|
43
|
+
__typename: 'BurnedEvent';
|
|
44
44
|
operatorData: string;
|
|
45
45
|
operator: string;
|
|
46
46
|
from: string;
|
|
@@ -50,16 +50,16 @@ export declare type GetAllEventsQuery = {
|
|
|
50
50
|
transactionHash: string;
|
|
51
51
|
timestamp: string;
|
|
52
52
|
} | {
|
|
53
|
-
__typename:
|
|
53
|
+
__typename: 'CFAv1LiquidationPeriodChangedEvent';
|
|
54
54
|
superToken: string;
|
|
55
|
-
liquidationPeriod: string;
|
|
56
55
|
host: string;
|
|
56
|
+
liquidationPeriod: string;
|
|
57
57
|
isSet: boolean;
|
|
58
58
|
blockNumber: string;
|
|
59
59
|
transactionHash: string;
|
|
60
60
|
timestamp: string;
|
|
61
61
|
} | {
|
|
62
|
-
__typename:
|
|
62
|
+
__typename: 'ConfigChangedEvent';
|
|
63
63
|
value: string;
|
|
64
64
|
superToken: string;
|
|
65
65
|
key: string;
|
|
@@ -69,13 +69,13 @@ export declare type GetAllEventsQuery = {
|
|
|
69
69
|
transactionHash: string;
|
|
70
70
|
timestamp: string;
|
|
71
71
|
} | {
|
|
72
|
-
__typename:
|
|
72
|
+
__typename: 'CustomSuperTokenCreatedEvent';
|
|
73
73
|
token: string;
|
|
74
74
|
blockNumber: string;
|
|
75
75
|
transactionHash: string;
|
|
76
76
|
timestamp: string;
|
|
77
77
|
} | {
|
|
78
|
-
__typename:
|
|
78
|
+
__typename: 'FlowUpdatedEvent';
|
|
79
79
|
userData: string;
|
|
80
80
|
type: number;
|
|
81
81
|
token: string;
|
|
@@ -86,14 +86,14 @@ export declare type GetAllEventsQuery = {
|
|
|
86
86
|
transactionHash: string;
|
|
87
87
|
timestamp: string;
|
|
88
88
|
} | {
|
|
89
|
-
__typename:
|
|
89
|
+
__typename: 'GovernanceReplacedEvent';
|
|
90
90
|
oldGovernance: string;
|
|
91
91
|
newGovernance: string;
|
|
92
92
|
blockNumber: string;
|
|
93
93
|
transactionHash: string;
|
|
94
94
|
timestamp: string;
|
|
95
95
|
} | {
|
|
96
|
-
__typename:
|
|
96
|
+
__typename: 'IndexCreatedEvent';
|
|
97
97
|
userData: string;
|
|
98
98
|
token: string;
|
|
99
99
|
publisher: string;
|
|
@@ -105,7 +105,7 @@ export declare type GetAllEventsQuery = {
|
|
|
105
105
|
id: string;
|
|
106
106
|
};
|
|
107
107
|
} | {
|
|
108
|
-
__typename:
|
|
108
|
+
__typename: 'IndexDistributionClaimedEvent';
|
|
109
109
|
token: string;
|
|
110
110
|
subscriber: string;
|
|
111
111
|
publisher: string;
|
|
@@ -118,7 +118,7 @@ export declare type GetAllEventsQuery = {
|
|
|
118
118
|
id: string;
|
|
119
119
|
};
|
|
120
120
|
} | {
|
|
121
|
-
__typename:
|
|
121
|
+
__typename: 'IndexSubscribedEvent';
|
|
122
122
|
id: string;
|
|
123
123
|
userData: string;
|
|
124
124
|
token: string;
|
|
@@ -132,7 +132,7 @@ export declare type GetAllEventsQuery = {
|
|
|
132
132
|
id: string;
|
|
133
133
|
};
|
|
134
134
|
} | {
|
|
135
|
-
__typename:
|
|
135
|
+
__typename: 'IndexUnitsUpdatedEvent';
|
|
136
136
|
userData: string;
|
|
137
137
|
units: string;
|
|
138
138
|
token: string;
|
|
@@ -147,7 +147,7 @@ export declare type GetAllEventsQuery = {
|
|
|
147
147
|
id: string;
|
|
148
148
|
};
|
|
149
149
|
} | {
|
|
150
|
-
__typename:
|
|
150
|
+
__typename: 'IndexUnsubscribedEvent';
|
|
151
151
|
userData: string;
|
|
152
152
|
token: string;
|
|
153
153
|
subscriber: string;
|
|
@@ -160,7 +160,7 @@ export declare type GetAllEventsQuery = {
|
|
|
160
160
|
id: string;
|
|
161
161
|
};
|
|
162
162
|
} | {
|
|
163
|
-
__typename:
|
|
163
|
+
__typename: 'IndexUpdatedEvent';
|
|
164
164
|
userData: string;
|
|
165
165
|
totalUnitsPending: string;
|
|
166
166
|
totalUnitsApproved: string;
|
|
@@ -176,14 +176,14 @@ export declare type GetAllEventsQuery = {
|
|
|
176
176
|
id: string;
|
|
177
177
|
};
|
|
178
178
|
} | {
|
|
179
|
-
__typename:
|
|
179
|
+
__typename: 'JailEvent';
|
|
180
180
|
reason: string;
|
|
181
181
|
app: string;
|
|
182
182
|
blockNumber: string;
|
|
183
183
|
transactionHash: string;
|
|
184
184
|
timestamp: string;
|
|
185
185
|
} | {
|
|
186
|
-
__typename:
|
|
186
|
+
__typename: 'MintedEvent';
|
|
187
187
|
operatorData: string;
|
|
188
188
|
operator: string;
|
|
189
189
|
data: string;
|
|
@@ -193,7 +193,7 @@ export declare type GetAllEventsQuery = {
|
|
|
193
193
|
transactionHash: string;
|
|
194
194
|
timestamp: string;
|
|
195
195
|
} | {
|
|
196
|
-
__typename:
|
|
196
|
+
__typename: 'RewardAddressChangedEvent';
|
|
197
197
|
superToken: string;
|
|
198
198
|
rewardAddress: string;
|
|
199
199
|
isSet: boolean;
|
|
@@ -202,7 +202,7 @@ export declare type GetAllEventsQuery = {
|
|
|
202
202
|
transactionHash: string;
|
|
203
203
|
timestamp: string;
|
|
204
204
|
} | {
|
|
205
|
-
__typename:
|
|
205
|
+
__typename: 'RoleAdminChangedEvent';
|
|
206
206
|
role: string;
|
|
207
207
|
previousAdminRole: string;
|
|
208
208
|
newAdminRole: string;
|
|
@@ -210,7 +210,7 @@ export declare type GetAllEventsQuery = {
|
|
|
210
210
|
transactionHash: string;
|
|
211
211
|
timestamp: string;
|
|
212
212
|
} | {
|
|
213
|
-
__typename:
|
|
213
|
+
__typename: 'RoleGrantedEvent';
|
|
214
214
|
sender: string;
|
|
215
215
|
role: string;
|
|
216
216
|
account: string;
|
|
@@ -218,7 +218,7 @@ export declare type GetAllEventsQuery = {
|
|
|
218
218
|
transactionHash: string;
|
|
219
219
|
timestamp: string;
|
|
220
220
|
} | {
|
|
221
|
-
__typename:
|
|
221
|
+
__typename: 'RoleRevokedEvent';
|
|
222
222
|
sender: string;
|
|
223
223
|
role: string;
|
|
224
224
|
account: string;
|
|
@@ -226,7 +226,7 @@ export declare type GetAllEventsQuery = {
|
|
|
226
226
|
transactionHash: string;
|
|
227
227
|
timestamp: string;
|
|
228
228
|
} | {
|
|
229
|
-
__typename:
|
|
229
|
+
__typename: 'SentEvent';
|
|
230
230
|
to: string;
|
|
231
231
|
operatorData: string;
|
|
232
232
|
operator: string;
|
|
@@ -236,7 +236,7 @@ export declare type GetAllEventsQuery = {
|
|
|
236
236
|
transactionHash: string;
|
|
237
237
|
timestamp: string;
|
|
238
238
|
} | {
|
|
239
|
-
__typename:
|
|
239
|
+
__typename: 'SubscriptionApprovedEvent';
|
|
240
240
|
userData: string;
|
|
241
241
|
token: string;
|
|
242
242
|
subscriber: string;
|
|
@@ -249,7 +249,7 @@ export declare type GetAllEventsQuery = {
|
|
|
249
249
|
id: string;
|
|
250
250
|
};
|
|
251
251
|
} | {
|
|
252
|
-
__typename:
|
|
252
|
+
__typename: 'SubscriptionDistributionClaimedEvent';
|
|
253
253
|
token: string;
|
|
254
254
|
subscriber: string;
|
|
255
255
|
publisher: string;
|
|
@@ -262,7 +262,7 @@ export declare type GetAllEventsQuery = {
|
|
|
262
262
|
id: string;
|
|
263
263
|
};
|
|
264
264
|
} | {
|
|
265
|
-
__typename:
|
|
265
|
+
__typename: 'SubscriptionRevokedEvent';
|
|
266
266
|
userData: string;
|
|
267
267
|
subscriber: string;
|
|
268
268
|
publisher: string;
|
|
@@ -275,7 +275,7 @@ export declare type GetAllEventsQuery = {
|
|
|
275
275
|
id: string;
|
|
276
276
|
};
|
|
277
277
|
} | {
|
|
278
|
-
__typename:
|
|
278
|
+
__typename: 'SubscriptionUnitsUpdatedEvent';
|
|
279
279
|
userData: string;
|
|
280
280
|
units: string;
|
|
281
281
|
token: string;
|
|
@@ -290,32 +290,32 @@ export declare type GetAllEventsQuery = {
|
|
|
290
290
|
id: string;
|
|
291
291
|
};
|
|
292
292
|
} | {
|
|
293
|
-
__typename:
|
|
293
|
+
__typename: 'SuperTokenCreatedEvent';
|
|
294
294
|
token: string;
|
|
295
295
|
blockNumber: string;
|
|
296
296
|
transactionHash: string;
|
|
297
297
|
timestamp: string;
|
|
298
298
|
} | {
|
|
299
|
-
__typename:
|
|
299
|
+
__typename: 'SuperTokenFactoryUpdatedEvent';
|
|
300
300
|
newFactory: string;
|
|
301
301
|
blockNumber: string;
|
|
302
302
|
transactionHash: string;
|
|
303
303
|
timestamp: string;
|
|
304
304
|
} | {
|
|
305
|
-
__typename:
|
|
305
|
+
__typename: 'SuperTokenLogicCreatedEvent';
|
|
306
306
|
tokenLogic: string;
|
|
307
307
|
blockNumber: string;
|
|
308
308
|
transactionHash: string;
|
|
309
309
|
timestamp: string;
|
|
310
310
|
} | {
|
|
311
|
-
__typename:
|
|
311
|
+
__typename: 'SuperTokenLogicUpdatedEvent';
|
|
312
312
|
token: string;
|
|
313
313
|
code: string;
|
|
314
314
|
blockNumber: string;
|
|
315
315
|
transactionHash: string;
|
|
316
316
|
timestamp: string;
|
|
317
317
|
} | {
|
|
318
|
-
__typename:
|
|
318
|
+
__typename: 'TokenDowngradedEvent';
|
|
319
319
|
token: string;
|
|
320
320
|
blockNumber: string;
|
|
321
321
|
amount: string;
|
|
@@ -325,7 +325,7 @@ export declare type GetAllEventsQuery = {
|
|
|
325
325
|
id: string;
|
|
326
326
|
};
|
|
327
327
|
} | {
|
|
328
|
-
__typename:
|
|
328
|
+
__typename: 'TokenUpgradedEvent';
|
|
329
329
|
amount: string;
|
|
330
330
|
token: string;
|
|
331
331
|
blockNumber: string;
|
|
@@ -335,7 +335,7 @@ export declare type GetAllEventsQuery = {
|
|
|
335
335
|
id: string;
|
|
336
336
|
};
|
|
337
337
|
} | {
|
|
338
|
-
__typename:
|
|
338
|
+
__typename: 'TransferEvent';
|
|
339
339
|
value: string;
|
|
340
340
|
token: string;
|
|
341
341
|
blockNumber: string;
|
|
@@ -348,7 +348,7 @@ export declare type GetAllEventsQuery = {
|
|
|
348
348
|
id: string;
|
|
349
349
|
};
|
|
350
350
|
} | {
|
|
351
|
-
__typename:
|
|
351
|
+
__typename: 'TrustedForwarderChangedEvent';
|
|
352
352
|
isSet: boolean;
|
|
353
353
|
host: string;
|
|
354
354
|
forwarder: string;
|
|
@@ -360,211 +360,211 @@ export declare type GetAllEventsQuery = {
|
|
|
360
360
|
}>;
|
|
361
361
|
};
|
|
362
362
|
export declare type EventFields_AgreementClassRegisteredEvent_Fragment = {
|
|
363
|
-
__typename:
|
|
363
|
+
__typename: 'AgreementClassRegisteredEvent';
|
|
364
364
|
blockNumber: string;
|
|
365
365
|
transactionHash: string;
|
|
366
366
|
timestamp: string;
|
|
367
367
|
};
|
|
368
368
|
export declare type EventFields_AgreementClassUpdatedEvent_Fragment = {
|
|
369
|
-
__typename:
|
|
369
|
+
__typename: 'AgreementClassUpdatedEvent';
|
|
370
370
|
blockNumber: string;
|
|
371
371
|
transactionHash: string;
|
|
372
372
|
timestamp: string;
|
|
373
373
|
};
|
|
374
374
|
export declare type EventFields_AgreementLiquidatedByEvent_Fragment = {
|
|
375
|
-
__typename:
|
|
375
|
+
__typename: 'AgreementLiquidatedByEvent';
|
|
376
376
|
blockNumber: string;
|
|
377
377
|
transactionHash: string;
|
|
378
378
|
timestamp: string;
|
|
379
379
|
};
|
|
380
380
|
export declare type EventFields_AppRegisteredEvent_Fragment = {
|
|
381
|
-
__typename:
|
|
381
|
+
__typename: 'AppRegisteredEvent';
|
|
382
382
|
blockNumber: string;
|
|
383
383
|
transactionHash: string;
|
|
384
384
|
timestamp: string;
|
|
385
385
|
};
|
|
386
386
|
export declare type EventFields_BurnedEvent_Fragment = {
|
|
387
|
-
__typename:
|
|
387
|
+
__typename: 'BurnedEvent';
|
|
388
388
|
blockNumber: string;
|
|
389
389
|
transactionHash: string;
|
|
390
390
|
timestamp: string;
|
|
391
391
|
};
|
|
392
392
|
export declare type EventFields_CfAv1LiquidationPeriodChangedEvent_Fragment = {
|
|
393
|
-
__typename:
|
|
393
|
+
__typename: 'CFAv1LiquidationPeriodChangedEvent';
|
|
394
394
|
blockNumber: string;
|
|
395
395
|
transactionHash: string;
|
|
396
396
|
timestamp: string;
|
|
397
397
|
};
|
|
398
398
|
export declare type EventFields_ConfigChangedEvent_Fragment = {
|
|
399
|
-
__typename:
|
|
399
|
+
__typename: 'ConfigChangedEvent';
|
|
400
400
|
blockNumber: string;
|
|
401
401
|
transactionHash: string;
|
|
402
402
|
timestamp: string;
|
|
403
403
|
};
|
|
404
404
|
export declare type EventFields_CustomSuperTokenCreatedEvent_Fragment = {
|
|
405
|
-
__typename:
|
|
405
|
+
__typename: 'CustomSuperTokenCreatedEvent';
|
|
406
406
|
blockNumber: string;
|
|
407
407
|
transactionHash: string;
|
|
408
408
|
timestamp: string;
|
|
409
409
|
};
|
|
410
410
|
export declare type EventFields_FlowUpdatedEvent_Fragment = {
|
|
411
|
-
__typename:
|
|
411
|
+
__typename: 'FlowUpdatedEvent';
|
|
412
412
|
blockNumber: string;
|
|
413
413
|
transactionHash: string;
|
|
414
414
|
timestamp: string;
|
|
415
415
|
};
|
|
416
416
|
export declare type EventFields_GovernanceReplacedEvent_Fragment = {
|
|
417
|
-
__typename:
|
|
417
|
+
__typename: 'GovernanceReplacedEvent';
|
|
418
418
|
blockNumber: string;
|
|
419
419
|
transactionHash: string;
|
|
420
420
|
timestamp: string;
|
|
421
421
|
};
|
|
422
422
|
export declare type EventFields_IndexCreatedEvent_Fragment = {
|
|
423
|
-
__typename:
|
|
423
|
+
__typename: 'IndexCreatedEvent';
|
|
424
424
|
blockNumber: string;
|
|
425
425
|
transactionHash: string;
|
|
426
426
|
timestamp: string;
|
|
427
427
|
};
|
|
428
428
|
export declare type EventFields_IndexDistributionClaimedEvent_Fragment = {
|
|
429
|
-
__typename:
|
|
429
|
+
__typename: 'IndexDistributionClaimedEvent';
|
|
430
430
|
blockNumber: string;
|
|
431
431
|
transactionHash: string;
|
|
432
432
|
timestamp: string;
|
|
433
433
|
};
|
|
434
434
|
export declare type EventFields_IndexSubscribedEvent_Fragment = {
|
|
435
|
-
__typename:
|
|
435
|
+
__typename: 'IndexSubscribedEvent';
|
|
436
436
|
blockNumber: string;
|
|
437
437
|
transactionHash: string;
|
|
438
438
|
timestamp: string;
|
|
439
439
|
};
|
|
440
440
|
export declare type EventFields_IndexUnitsUpdatedEvent_Fragment = {
|
|
441
|
-
__typename:
|
|
441
|
+
__typename: 'IndexUnitsUpdatedEvent';
|
|
442
442
|
blockNumber: string;
|
|
443
443
|
transactionHash: string;
|
|
444
444
|
timestamp: string;
|
|
445
445
|
};
|
|
446
446
|
export declare type EventFields_IndexUnsubscribedEvent_Fragment = {
|
|
447
|
-
__typename:
|
|
447
|
+
__typename: 'IndexUnsubscribedEvent';
|
|
448
448
|
blockNumber: string;
|
|
449
449
|
transactionHash: string;
|
|
450
450
|
timestamp: string;
|
|
451
451
|
};
|
|
452
452
|
export declare type EventFields_IndexUpdatedEvent_Fragment = {
|
|
453
|
-
__typename:
|
|
453
|
+
__typename: 'IndexUpdatedEvent';
|
|
454
454
|
blockNumber: string;
|
|
455
455
|
transactionHash: string;
|
|
456
456
|
timestamp: string;
|
|
457
457
|
};
|
|
458
458
|
export declare type EventFields_JailEvent_Fragment = {
|
|
459
|
-
__typename:
|
|
459
|
+
__typename: 'JailEvent';
|
|
460
460
|
blockNumber: string;
|
|
461
461
|
transactionHash: string;
|
|
462
462
|
timestamp: string;
|
|
463
463
|
};
|
|
464
464
|
export declare type EventFields_MintedEvent_Fragment = {
|
|
465
|
-
__typename:
|
|
465
|
+
__typename: 'MintedEvent';
|
|
466
466
|
blockNumber: string;
|
|
467
467
|
transactionHash: string;
|
|
468
468
|
timestamp: string;
|
|
469
469
|
};
|
|
470
470
|
export declare type EventFields_RewardAddressChangedEvent_Fragment = {
|
|
471
|
-
__typename:
|
|
471
|
+
__typename: 'RewardAddressChangedEvent';
|
|
472
472
|
blockNumber: string;
|
|
473
473
|
transactionHash: string;
|
|
474
474
|
timestamp: string;
|
|
475
475
|
};
|
|
476
476
|
export declare type EventFields_RoleAdminChangedEvent_Fragment = {
|
|
477
|
-
__typename:
|
|
477
|
+
__typename: 'RoleAdminChangedEvent';
|
|
478
478
|
blockNumber: string;
|
|
479
479
|
transactionHash: string;
|
|
480
480
|
timestamp: string;
|
|
481
481
|
};
|
|
482
482
|
export declare type EventFields_RoleGrantedEvent_Fragment = {
|
|
483
|
-
__typename:
|
|
483
|
+
__typename: 'RoleGrantedEvent';
|
|
484
484
|
blockNumber: string;
|
|
485
485
|
transactionHash: string;
|
|
486
486
|
timestamp: string;
|
|
487
487
|
};
|
|
488
488
|
export declare type EventFields_RoleRevokedEvent_Fragment = {
|
|
489
|
-
__typename:
|
|
489
|
+
__typename: 'RoleRevokedEvent';
|
|
490
490
|
blockNumber: string;
|
|
491
491
|
transactionHash: string;
|
|
492
492
|
timestamp: string;
|
|
493
493
|
};
|
|
494
494
|
export declare type EventFields_SentEvent_Fragment = {
|
|
495
|
-
__typename:
|
|
495
|
+
__typename: 'SentEvent';
|
|
496
496
|
blockNumber: string;
|
|
497
497
|
transactionHash: string;
|
|
498
498
|
timestamp: string;
|
|
499
499
|
};
|
|
500
500
|
export declare type EventFields_SubscriptionApprovedEvent_Fragment = {
|
|
501
|
-
__typename:
|
|
501
|
+
__typename: 'SubscriptionApprovedEvent';
|
|
502
502
|
blockNumber: string;
|
|
503
503
|
transactionHash: string;
|
|
504
504
|
timestamp: string;
|
|
505
505
|
};
|
|
506
506
|
export declare type EventFields_SubscriptionDistributionClaimedEvent_Fragment = {
|
|
507
|
-
__typename:
|
|
507
|
+
__typename: 'SubscriptionDistributionClaimedEvent';
|
|
508
508
|
blockNumber: string;
|
|
509
509
|
transactionHash: string;
|
|
510
510
|
timestamp: string;
|
|
511
511
|
};
|
|
512
512
|
export declare type EventFields_SubscriptionRevokedEvent_Fragment = {
|
|
513
|
-
__typename:
|
|
513
|
+
__typename: 'SubscriptionRevokedEvent';
|
|
514
514
|
blockNumber: string;
|
|
515
515
|
transactionHash: string;
|
|
516
516
|
timestamp: string;
|
|
517
517
|
};
|
|
518
518
|
export declare type EventFields_SubscriptionUnitsUpdatedEvent_Fragment = {
|
|
519
|
-
__typename:
|
|
519
|
+
__typename: 'SubscriptionUnitsUpdatedEvent';
|
|
520
520
|
blockNumber: string;
|
|
521
521
|
transactionHash: string;
|
|
522
522
|
timestamp: string;
|
|
523
523
|
};
|
|
524
524
|
export declare type EventFields_SuperTokenCreatedEvent_Fragment = {
|
|
525
|
-
__typename:
|
|
525
|
+
__typename: 'SuperTokenCreatedEvent';
|
|
526
526
|
blockNumber: string;
|
|
527
527
|
transactionHash: string;
|
|
528
528
|
timestamp: string;
|
|
529
529
|
};
|
|
530
530
|
export declare type EventFields_SuperTokenFactoryUpdatedEvent_Fragment = {
|
|
531
|
-
__typename:
|
|
531
|
+
__typename: 'SuperTokenFactoryUpdatedEvent';
|
|
532
532
|
blockNumber: string;
|
|
533
533
|
transactionHash: string;
|
|
534
534
|
timestamp: string;
|
|
535
535
|
};
|
|
536
536
|
export declare type EventFields_SuperTokenLogicCreatedEvent_Fragment = {
|
|
537
|
-
__typename:
|
|
537
|
+
__typename: 'SuperTokenLogicCreatedEvent';
|
|
538
538
|
blockNumber: string;
|
|
539
539
|
transactionHash: string;
|
|
540
540
|
timestamp: string;
|
|
541
541
|
};
|
|
542
542
|
export declare type EventFields_SuperTokenLogicUpdatedEvent_Fragment = {
|
|
543
|
-
__typename:
|
|
543
|
+
__typename: 'SuperTokenLogicUpdatedEvent';
|
|
544
544
|
blockNumber: string;
|
|
545
545
|
transactionHash: string;
|
|
546
546
|
timestamp: string;
|
|
547
547
|
};
|
|
548
548
|
export declare type EventFields_TokenDowngradedEvent_Fragment = {
|
|
549
|
-
__typename:
|
|
549
|
+
__typename: 'TokenDowngradedEvent';
|
|
550
550
|
blockNumber: string;
|
|
551
551
|
transactionHash: string;
|
|
552
552
|
timestamp: string;
|
|
553
553
|
};
|
|
554
554
|
export declare type EventFields_TokenUpgradedEvent_Fragment = {
|
|
555
|
-
__typename:
|
|
555
|
+
__typename: 'TokenUpgradedEvent';
|
|
556
556
|
blockNumber: string;
|
|
557
557
|
transactionHash: string;
|
|
558
558
|
timestamp: string;
|
|
559
559
|
};
|
|
560
560
|
export declare type EventFields_TransferEvent_Fragment = {
|
|
561
|
-
__typename:
|
|
561
|
+
__typename: 'TransferEvent';
|
|
562
562
|
blockNumber: string;
|
|
563
563
|
transactionHash: string;
|
|
564
564
|
timestamp: string;
|
|
565
565
|
};
|
|
566
566
|
export declare type EventFields_TrustedForwarderChangedEvent_Fragment = {
|
|
567
|
-
__typename:
|
|
567
|
+
__typename: 'TrustedForwarderChangedEvent';
|
|
568
568
|
blockNumber: string;
|
|
569
569
|
transactionHash: string;
|
|
570
570
|
timestamp: string;
|
|
@@ -572,7 +572,7 @@ export declare type EventFields_TrustedForwarderChangedEvent_Fragment = {
|
|
|
572
572
|
export declare type EventFieldsFragment = EventFields_AgreementClassRegisteredEvent_Fragment | EventFields_AgreementClassUpdatedEvent_Fragment | EventFields_AgreementLiquidatedByEvent_Fragment | EventFields_AppRegisteredEvent_Fragment | EventFields_BurnedEvent_Fragment | EventFields_CfAv1LiquidationPeriodChangedEvent_Fragment | EventFields_ConfigChangedEvent_Fragment | EventFields_CustomSuperTokenCreatedEvent_Fragment | EventFields_FlowUpdatedEvent_Fragment | EventFields_GovernanceReplacedEvent_Fragment | EventFields_IndexCreatedEvent_Fragment | EventFields_IndexDistributionClaimedEvent_Fragment | EventFields_IndexSubscribedEvent_Fragment | EventFields_IndexUnitsUpdatedEvent_Fragment | EventFields_IndexUnsubscribedEvent_Fragment | EventFields_IndexUpdatedEvent_Fragment | EventFields_JailEvent_Fragment | EventFields_MintedEvent_Fragment | EventFields_RewardAddressChangedEvent_Fragment | EventFields_RoleAdminChangedEvent_Fragment | EventFields_RoleGrantedEvent_Fragment | EventFields_RoleRevokedEvent_Fragment | EventFields_SentEvent_Fragment | EventFields_SubscriptionApprovedEvent_Fragment | EventFields_SubscriptionDistributionClaimedEvent_Fragment | EventFields_SubscriptionRevokedEvent_Fragment | EventFields_SubscriptionUnitsUpdatedEvent_Fragment | EventFields_SuperTokenCreatedEvent_Fragment | EventFields_SuperTokenFactoryUpdatedEvent_Fragment | EventFields_SuperTokenLogicCreatedEvent_Fragment | EventFields_SuperTokenLogicUpdatedEvent_Fragment | EventFields_TokenDowngradedEvent_Fragment | EventFields_TokenUpgradedEvent_Fragment | EventFields_TransferEvent_Fragment | EventFields_TrustedForwarderChangedEvent_Fragment;
|
|
573
573
|
export declare const EventFieldsFragmentDoc: DocumentNode<EventFieldsFragment, unknown>;
|
|
574
574
|
export declare const GetAllEventsDocument: DocumentNode<GetAllEventsQuery, Types.Exact<{
|
|
575
|
-
where?: Types.
|
|
576
|
-
skip?: Types.
|
|
577
|
-
first?: Types.
|
|
575
|
+
where?: Types.InputMaybe<Types.Event_Filter> | undefined;
|
|
576
|
+
skip?: Types.InputMaybe<number> | undefined;
|
|
577
|
+
first?: Types.InputMaybe<number> | undefined;
|
|
578
578
|
}>>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as Types from
|
|
2
|
-
import { TypedDocumentNode as DocumentNode } from
|
|
1
|
+
import * as Types from '../schema.generated';
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
3
|
export declare type GetIndexSubscriptionsQueryVariables = Types.Exact<{
|
|
4
4
|
where: Types.IndexSubscription_Filter;
|
|
5
|
-
skip: Types.Scalars[
|
|
6
|
-
first: Types.Scalars[
|
|
5
|
+
skip: Types.Scalars['Int'];
|
|
6
|
+
first: Types.Scalars['Int'];
|
|
7
7
|
}>;
|
|
8
8
|
export declare type GetIndexSubscriptionsQuery = {
|
|
9
9
|
result: Array<{
|
|
@@ -37,6 +37,6 @@ export declare type GetIndexSubscriptionsQuery = {
|
|
|
37
37
|
};
|
|
38
38
|
export declare const GetIndexSubscriptionsDocument: DocumentNode<GetIndexSubscriptionsQuery, Types.Exact<{
|
|
39
39
|
where: Types.IndexSubscription_Filter;
|
|
40
|
-
skip: Types.Scalars[
|
|
41
|
-
first: Types.Scalars[
|
|
40
|
+
skip: Types.Scalars['Int'];
|
|
41
|
+
first: Types.Scalars['Int'];
|
|
42
42
|
}>>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as Types from
|
|
2
|
-
import { TypedDocumentNode as DocumentNode } from
|
|
1
|
+
import * as Types from '../schema.generated';
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
3
|
export declare type GetIndexesQueryVariables = Types.Exact<{
|
|
4
4
|
where: Types.Index_Filter;
|
|
5
|
-
skip: Types.Scalars[
|
|
6
|
-
first: Types.Scalars[
|
|
5
|
+
skip: Types.Scalars['Int'];
|
|
6
|
+
first: Types.Scalars['Int'];
|
|
7
7
|
}>;
|
|
8
8
|
export declare type GetIndexesQuery = {
|
|
9
9
|
result: Array<{
|
|
@@ -35,6 +35,6 @@ export declare type GetIndexesQuery = {
|
|
|
35
35
|
};
|
|
36
36
|
export declare const GetIndexesDocument: DocumentNode<GetIndexesQuery, Types.Exact<{
|
|
37
37
|
where: Types.Index_Filter;
|
|
38
|
-
skip: Types.Scalars[
|
|
39
|
-
first: Types.Scalars[
|
|
38
|
+
skip: Types.Scalars['Int'];
|
|
39
|
+
first: Types.Scalars['Int'];
|
|
40
40
|
}>>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as Types from
|
|
2
|
-
import { TypedDocumentNode as DocumentNode } from
|
|
1
|
+
import * as Types from '../schema.generated';
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
3
|
export declare type GetStreamsQueryVariables = Types.Exact<{
|
|
4
4
|
where: Types.Stream_Filter;
|
|
5
|
-
skip: Types.Scalars[
|
|
6
|
-
first: Types.Scalars[
|
|
5
|
+
skip: Types.Scalars['Int'];
|
|
6
|
+
first: Types.Scalars['Int'];
|
|
7
7
|
}>;
|
|
8
8
|
export declare type GetStreamsQuery = {
|
|
9
9
|
result: Array<{
|
|
@@ -49,6 +49,6 @@ export declare type GetStreamsQuery = {
|
|
|
49
49
|
};
|
|
50
50
|
export declare const GetStreamsDocument: DocumentNode<GetStreamsQuery, Types.Exact<{
|
|
51
51
|
where: Types.Stream_Filter;
|
|
52
|
-
skip: Types.Scalars[
|
|
53
|
-
first: Types.Scalars[
|
|
52
|
+
skip: Types.Scalars['Int'];
|
|
53
|
+
first: Types.Scalars['Int'];
|
|
54
54
|
}>>;
|