@superfluid-finance/sdk-core 0.4.1-dev.db8e1dc.0 → 0.4.2-dev.5073b90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/LICENSE +1 -1
- package/README.md +3 -2
- package/dist/index.umd.js +216 -108
- package/dist/main/constants.d.ts +29 -11
- package/dist/main/constants.d.ts.map +1 -1
- package/dist/main/constants.js +99 -69
- package/dist/main/constants.js.map +1 -1
- package/dist/main/events.d.ts +2 -0
- package/dist/main/events.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.js +78 -0
- package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts +1 -0
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.js.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts +1 -0
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts.map +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js +1 -1
- package/dist/main/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js.map +1 -1
- package/dist/main/subgraph/events/events.generated.d.ts +148 -0
- package/dist/main/subgraph/events/events.generated.d.ts.map +1 -1
- package/dist/main/subgraph/events/events.generated.js +37 -37
- package/dist/main/subgraph/events/events.generated.js.map +1 -1
- package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +76 -0
- package/dist/main/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
- package/dist/main/subgraph/queries/getAllEvents.generated.js +1 -1
- package/dist/main/subgraph/queries/getAllEvents.generated.js.map +1 -1
- package/dist/main/subgraph/schema.generated.d.ts +672 -40
- package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
- package/dist/module/constants.d.ts +29 -11
- package/dist/module/constants.d.ts.map +1 -1
- package/dist/module/constants.js +98 -68
- package/dist/module/constants.js.map +1 -1
- package/dist/module/events.d.ts +2 -0
- package/dist/module/events.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.js +78 -0
- package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts +1 -0
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.d.ts.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshot.js.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts +1 -0
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.d.ts.map +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js +1 -1
- package/dist/module/subgraph/entities/accountTokenSnapshot/accountTokenSnapshots.generated.js.map +1 -1
- package/dist/module/subgraph/events/events.generated.d.ts +148 -0
- package/dist/module/subgraph/events/events.generated.d.ts.map +1 -1
- package/dist/module/subgraph/events/events.generated.js +37 -37
- package/dist/module/subgraph/events/events.generated.js.map +1 -1
- package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +76 -0
- package/dist/module/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
- package/dist/module/subgraph/queries/getAllEvents.generated.js +1 -1
- package/dist/module/subgraph/queries/getAllEvents.generated.js.map +1 -1
- package/dist/module/subgraph/schema.generated.d.ts +672 -40
- package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -59,6 +59,14 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
59
59
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
60
60
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
61
61
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
62
|
+
maybeCriticalAtTimestamp?: InputMaybe<Scalars['BigInt']>;
|
|
63
|
+
maybeCriticalAtTimestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
64
|
+
maybeCriticalAtTimestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
65
|
+
maybeCriticalAtTimestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
66
|
+
maybeCriticalAtTimestamp_lt?: InputMaybe<Scalars['BigInt']>;
|
|
67
|
+
maybeCriticalAtTimestamp_lte?: InputMaybe<Scalars['BigInt']>;
|
|
68
|
+
maybeCriticalAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
69
|
+
maybeCriticalAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
62
70
|
token?: InputMaybe<Scalars['String']>;
|
|
63
71
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
64
72
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -176,7 +184,7 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
176
184
|
updatedAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
177
185
|
updatedAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
178
186
|
}
|
|
179
|
-
export declare type AccountTokenSnapshot_OrderBy = 'account' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'token' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
|
|
187
|
+
export declare type AccountTokenSnapshot_OrderBy = 'account' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'maybeCriticalAtTimestamp' | 'token' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
|
|
180
188
|
export interface Account_Filter {
|
|
181
189
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
182
190
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -259,6 +267,14 @@ export interface AgreementClassRegisteredEvent_Filter {
|
|
|
259
267
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
260
268
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
261
269
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
270
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
271
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
272
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
273
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
274
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
275
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
276
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
277
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
262
278
|
name?: InputMaybe<Scalars['String']>;
|
|
263
279
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
264
280
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -279,6 +295,14 @@ export interface AgreementClassRegisteredEvent_Filter {
|
|
|
279
295
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
280
296
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
281
297
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
298
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
299
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
300
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
301
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
302
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
303
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
304
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
305
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
282
306
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
283
307
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
284
308
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -294,7 +318,7 @@ export interface AgreementClassRegisteredEvent_Filter {
|
|
|
294
318
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
295
319
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
296
320
|
}
|
|
297
|
-
export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'name' | 'timestamp' | 'transactionHash';
|
|
321
|
+
export declare type AgreementClassRegisteredEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
298
322
|
export interface AgreementClassUpdatedEvent_Filter {
|
|
299
323
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
300
324
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -330,6 +354,14 @@ export interface AgreementClassUpdatedEvent_Filter {
|
|
|
330
354
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
331
355
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
332
356
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
357
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
358
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
359
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
360
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
361
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
362
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
363
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
364
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
333
365
|
name?: InputMaybe<Scalars['String']>;
|
|
334
366
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
335
367
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -350,6 +382,14 @@ export interface AgreementClassUpdatedEvent_Filter {
|
|
|
350
382
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
351
383
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
352
384
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
385
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
386
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
387
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
388
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
389
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
390
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
391
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
392
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
353
393
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
354
394
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
355
395
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -365,7 +405,7 @@ export interface AgreementClassUpdatedEvent_Filter {
|
|
|
365
405
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
366
406
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
367
407
|
}
|
|
368
|
-
export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'name' | 'timestamp' | 'transactionHash';
|
|
408
|
+
export declare type AgreementClassUpdatedEvent_OrderBy = 'addresses' | 'agreementType' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
369
409
|
export interface AgreementLiquidatedByEvent_Filter {
|
|
370
410
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
371
411
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -421,6 +461,14 @@ export interface AgreementLiquidatedByEvent_Filter {
|
|
|
421
461
|
liquidatorAccount_not?: InputMaybe<Scalars['Bytes']>;
|
|
422
462
|
liquidatorAccount_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
423
463
|
liquidatorAccount_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
464
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
465
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
466
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
467
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
468
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
469
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
470
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
471
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
424
472
|
name?: InputMaybe<Scalars['String']>;
|
|
425
473
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
426
474
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -441,6 +489,14 @@ export interface AgreementLiquidatedByEvent_Filter {
|
|
|
441
489
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
442
490
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
443
491
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
492
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
493
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
494
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
495
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
496
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
497
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
498
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
499
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
444
500
|
penaltyAccount?: InputMaybe<Scalars['Bytes']>;
|
|
445
501
|
penaltyAccount_contains?: InputMaybe<Scalars['Bytes']>;
|
|
446
502
|
penaltyAccount_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -476,7 +532,7 @@ export interface AgreementLiquidatedByEvent_Filter {
|
|
|
476
532
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
477
533
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
478
534
|
}
|
|
479
|
-
export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'name' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
|
|
535
|
+
export declare type AgreementLiquidatedByEvent_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'bailoutAmount' | 'blockNumber' | 'bondAccount' | 'id' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'penaltyAccount' | 'rewardAmount' | 'timestamp' | 'token' | 'transactionHash';
|
|
480
536
|
export interface AgreementLiquidatedV2Event_Filter {
|
|
481
537
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
482
538
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -526,6 +582,14 @@ export interface AgreementLiquidatedV2Event_Filter {
|
|
|
526
582
|
liquidatorAccount_not?: InputMaybe<Scalars['Bytes']>;
|
|
527
583
|
liquidatorAccount_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
528
584
|
liquidatorAccount_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
585
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
586
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
587
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
588
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
589
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
590
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
591
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
592
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
529
593
|
name?: InputMaybe<Scalars['String']>;
|
|
530
594
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
531
595
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -546,6 +610,14 @@ export interface AgreementLiquidatedV2Event_Filter {
|
|
|
546
610
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
547
611
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
548
612
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
613
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
614
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
615
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
616
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
617
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
618
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
619
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
620
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
549
621
|
rewardAccount?: InputMaybe<Scalars['Bytes']>;
|
|
550
622
|
rewardAccount_contains?: InputMaybe<Scalars['Bytes']>;
|
|
551
623
|
rewardAccount_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -603,7 +675,7 @@ export interface AgreementLiquidatedV2Event_Filter {
|
|
|
603
675
|
version_not?: InputMaybe<Scalars['BigInt']>;
|
|
604
676
|
version_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
605
677
|
}
|
|
606
|
-
export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'name' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
|
|
678
|
+
export declare type AgreementLiquidatedV2Event_OrderBy = 'addresses' | 'agreementClass' | 'agreementId' | 'blockNumber' | 'id' | 'liquidationType' | 'liquidatorAccount' | 'logIndex' | 'name' | 'order' | 'rewardAccount' | 'rewardAmount' | 'targetAccount' | 'targetAccountBalanceDelta' | 'timestamp' | 'token' | 'transactionHash' | 'version';
|
|
607
679
|
export interface AppRegisteredEvent_Filter {
|
|
608
680
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
609
681
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -633,6 +705,14 @@ export interface AppRegisteredEvent_Filter {
|
|
|
633
705
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
634
706
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
635
707
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
708
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
709
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
710
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
711
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
712
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
713
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
714
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
715
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
636
716
|
name?: InputMaybe<Scalars['String']>;
|
|
637
717
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
638
718
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -653,6 +733,14 @@ export interface AppRegisteredEvent_Filter {
|
|
|
653
733
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
654
734
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
655
735
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
736
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
737
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
738
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
739
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
740
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
741
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
742
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
743
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
656
744
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
657
745
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
658
746
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -668,7 +756,7 @@ export interface AppRegisteredEvent_Filter {
|
|
|
668
756
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
669
757
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
670
758
|
}
|
|
671
|
-
export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'transactionHash';
|
|
759
|
+
export declare type AppRegisteredEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
672
760
|
export interface Block_Height {
|
|
673
761
|
hash?: InputMaybe<Scalars['Bytes']>;
|
|
674
762
|
number?: InputMaybe<Scalars['Int']>;
|
|
@@ -717,6 +805,14 @@ export interface BurnedEvent_Filter {
|
|
|
717
805
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
718
806
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
719
807
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
808
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
809
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
810
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
811
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
812
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
813
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
814
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
815
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
720
816
|
name?: InputMaybe<Scalars['String']>;
|
|
721
817
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
722
818
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -749,6 +845,14 @@ export interface BurnedEvent_Filter {
|
|
|
749
845
|
operator_not?: InputMaybe<Scalars['Bytes']>;
|
|
750
846
|
operator_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
751
847
|
operator_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
848
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
849
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
850
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
851
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
852
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
853
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
854
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
855
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
752
856
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
753
857
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
754
858
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -764,7 +868,7 @@ export interface BurnedEvent_Filter {
|
|
|
764
868
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
765
869
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
766
870
|
}
|
|
767
|
-
export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'transactionHash';
|
|
871
|
+
export declare type BurnedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'transactionHash';
|
|
768
872
|
export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
769
873
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
770
874
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -806,6 +910,14 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
|
806
910
|
liquidationPeriod_lte?: InputMaybe<Scalars['BigInt']>;
|
|
807
911
|
liquidationPeriod_not?: InputMaybe<Scalars['BigInt']>;
|
|
808
912
|
liquidationPeriod_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
913
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
914
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
915
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
916
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
917
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
918
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
919
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
920
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
809
921
|
name?: InputMaybe<Scalars['String']>;
|
|
810
922
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
811
923
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -826,6 +938,14 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
|
826
938
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
827
939
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
828
940
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
941
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
942
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
943
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
944
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
945
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
946
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
947
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
948
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
829
949
|
superToken?: InputMaybe<Scalars['Bytes']>;
|
|
830
950
|
superToken_contains?: InputMaybe<Scalars['Bytes']>;
|
|
831
951
|
superToken_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -847,7 +967,7 @@ export interface CfAv1LiquidationPeriodChangedEvent_Filter {
|
|
|
847
967
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
848
968
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
849
969
|
}
|
|
850
|
-
export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
970
|
+
export declare type CfAv1LiquidationPeriodChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
851
971
|
export interface ConfigChangedEvent_Filter {
|
|
852
972
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
853
973
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -887,6 +1007,14 @@ export interface ConfigChangedEvent_Filter {
|
|
|
887
1007
|
key_not?: InputMaybe<Scalars['Bytes']>;
|
|
888
1008
|
key_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
889
1009
|
key_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1010
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1011
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1012
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1013
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1014
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1015
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1016
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1017
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
890
1018
|
name?: InputMaybe<Scalars['String']>;
|
|
891
1019
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
892
1020
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -907,6 +1035,14 @@ export interface ConfigChangedEvent_Filter {
|
|
|
907
1035
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
908
1036
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
909
1037
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1038
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1039
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1040
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1041
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1042
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1043
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1044
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1045
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
910
1046
|
superToken?: InputMaybe<Scalars['Bytes']>;
|
|
911
1047
|
superToken_contains?: InputMaybe<Scalars['Bytes']>;
|
|
912
1048
|
superToken_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -936,7 +1072,7 @@ export interface ConfigChangedEvent_Filter {
|
|
|
936
1072
|
value_not?: InputMaybe<Scalars['BigInt']>;
|
|
937
1073
|
value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
938
1074
|
}
|
|
939
|
-
export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'name' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
|
|
1075
|
+
export declare type ConfigChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'key' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash' | 'value';
|
|
940
1076
|
export interface CustomSuperTokenCreatedEvent_Filter {
|
|
941
1077
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
942
1078
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -960,6 +1096,14 @@ export interface CustomSuperTokenCreatedEvent_Filter {
|
|
|
960
1096
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
961
1097
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
962
1098
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1099
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1100
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1101
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1102
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1103
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1104
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1105
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1106
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
963
1107
|
name?: InputMaybe<Scalars['String']>;
|
|
964
1108
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
965
1109
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -980,6 +1124,14 @@ export interface CustomSuperTokenCreatedEvent_Filter {
|
|
|
980
1124
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
981
1125
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
982
1126
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1127
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1128
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1129
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1130
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1131
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1132
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1133
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1134
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
983
1135
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
984
1136
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
985
1137
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1001,7 +1153,7 @@ export interface CustomSuperTokenCreatedEvent_Filter {
|
|
|
1001
1153
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1002
1154
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1003
1155
|
}
|
|
1004
|
-
export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
1156
|
+
export declare type CustomSuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
1005
1157
|
export interface Event_Filter {
|
|
1006
1158
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1007
1159
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1025,6 +1177,14 @@ export interface Event_Filter {
|
|
|
1025
1177
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1026
1178
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
1027
1179
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1180
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1181
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1182
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1183
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1184
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1185
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1186
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1187
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1028
1188
|
name?: InputMaybe<Scalars['String']>;
|
|
1029
1189
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1030
1190
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1045,6 +1205,14 @@ export interface Event_Filter {
|
|
|
1045
1205
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1046
1206
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1047
1207
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1208
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1209
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1210
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1211
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1212
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1213
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1214
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1215
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1048
1216
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
1049
1217
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1050
1218
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1060,7 +1228,7 @@ export interface Event_Filter {
|
|
|
1060
1228
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1061
1229
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1062
1230
|
}
|
|
1063
|
-
export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'transactionHash';
|
|
1231
|
+
export declare type Event_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'transactionHash';
|
|
1064
1232
|
export interface FlowOperatorUpdatedEvent_Filter {
|
|
1065
1233
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1066
1234
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1112,6 +1280,14 @@ export interface FlowOperatorUpdatedEvent_Filter {
|
|
|
1112
1280
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1113
1281
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
1114
1282
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1283
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1284
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1285
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1286
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1287
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1288
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1289
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1290
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1115
1291
|
name?: InputMaybe<Scalars['String']>;
|
|
1116
1292
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1117
1293
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1132,6 +1308,14 @@ export interface FlowOperatorUpdatedEvent_Filter {
|
|
|
1132
1308
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1133
1309
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1134
1310
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1311
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1312
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1313
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1314
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1315
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1316
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1317
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1318
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1135
1319
|
permissions?: InputMaybe<Scalars['Int']>;
|
|
1136
1320
|
permissions_gt?: InputMaybe<Scalars['Int']>;
|
|
1137
1321
|
permissions_gte?: InputMaybe<Scalars['Int']>;
|
|
@@ -1167,7 +1351,7 @@ export interface FlowOperatorUpdatedEvent_Filter {
|
|
|
1167
1351
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1168
1352
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1169
1353
|
}
|
|
1170
|
-
export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'name' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
|
|
1354
|
+
export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'flowOperator' | 'flowRateAllowance' | 'id' | 'logIndex' | 'name' | 'order' | 'permissions' | 'sender' | 'timestamp' | 'token' | 'transactionHash';
|
|
1171
1355
|
export interface FlowOperator_Filter {
|
|
1172
1356
|
accountTokenSnapshot?: InputMaybe<Scalars['String']>;
|
|
1173
1357
|
accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
|
|
@@ -1346,6 +1530,14 @@ export interface FlowUpdatedEvent_Filter {
|
|
|
1346
1530
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1347
1531
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
1348
1532
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1533
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1534
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1535
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1536
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1537
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1538
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1539
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1540
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1349
1541
|
name?: InputMaybe<Scalars['String']>;
|
|
1350
1542
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1351
1543
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1374,6 +1566,14 @@ export interface FlowUpdatedEvent_Filter {
|
|
|
1374
1566
|
oldFlowRate_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1375
1567
|
oldFlowRate_not?: InputMaybe<Scalars['BigInt']>;
|
|
1376
1568
|
oldFlowRate_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1569
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1570
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1571
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1572
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1573
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1574
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1575
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1576
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1377
1577
|
receiver?: InputMaybe<Scalars['Bytes']>;
|
|
1378
1578
|
receiver_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1379
1579
|
receiver_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1465,7 +1665,7 @@ export interface FlowUpdatedEvent_Filter {
|
|
|
1465
1665
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1466
1666
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1467
1667
|
}
|
|
1468
|
-
export declare type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'id' | 'name' | 'oldFlowRate' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
|
|
1668
|
+
export declare type FlowUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'deposit' | 'flowOperator' | 'flowRate' | 'id' | 'logIndex' | 'name' | 'oldFlowRate' | 'order' | 'receiver' | 'sender' | 'stream' | 'timestamp' | 'token' | 'totalAmountStreamedUntilTimestamp' | 'totalReceiverFlowRate' | 'totalSenderFlowRate' | 'transactionHash' | 'type' | 'userData';
|
|
1469
1669
|
export interface GovernanceReplacedEvent_Filter {
|
|
1470
1670
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1471
1671
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1489,6 +1689,14 @@ export interface GovernanceReplacedEvent_Filter {
|
|
|
1489
1689
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1490
1690
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
1491
1691
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1692
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1693
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1694
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1695
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1696
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1697
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1698
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1699
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1492
1700
|
name?: InputMaybe<Scalars['String']>;
|
|
1493
1701
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1494
1702
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1521,6 +1729,14 @@ export interface GovernanceReplacedEvent_Filter {
|
|
|
1521
1729
|
oldGovernance_not?: InputMaybe<Scalars['Bytes']>;
|
|
1522
1730
|
oldGovernance_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1523
1731
|
oldGovernance_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1732
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1733
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1734
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1735
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1736
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1737
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1738
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1739
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1524
1740
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
1525
1741
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1526
1742
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1536,7 +1752,7 @@ export interface GovernanceReplacedEvent_Filter {
|
|
|
1536
1752
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1537
1753
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1538
1754
|
}
|
|
1539
|
-
export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'newGovernance' | 'oldGovernance' | 'timestamp' | 'transactionHash';
|
|
1755
|
+
export declare type GovernanceReplacedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newGovernance' | 'oldGovernance' | 'order' | 'timestamp' | 'transactionHash';
|
|
1540
1756
|
export interface IndexCreatedEvent_Filter {
|
|
1541
1757
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1542
1758
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1588,6 +1804,14 @@ export interface IndexCreatedEvent_Filter {
|
|
|
1588
1804
|
index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1589
1805
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
1590
1806
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1807
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1808
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1809
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1810
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1811
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1812
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1813
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1814
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1591
1815
|
name?: InputMaybe<Scalars['String']>;
|
|
1592
1816
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1593
1817
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1608,6 +1832,14 @@ export interface IndexCreatedEvent_Filter {
|
|
|
1608
1832
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1609
1833
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1610
1834
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1835
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1836
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1837
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1838
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1839
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1840
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1841
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1842
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1611
1843
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
1612
1844
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1613
1845
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1641,7 +1873,7 @@ export interface IndexCreatedEvent_Filter {
|
|
|
1641
1873
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1642
1874
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1643
1875
|
}
|
|
1644
|
-
export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
1876
|
+
export declare type IndexCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
1645
1877
|
export interface IndexDistributionClaimedEvent_Filter {
|
|
1646
1878
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1647
1879
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1701,6 +1933,14 @@ export interface IndexDistributionClaimedEvent_Filter {
|
|
|
1701
1933
|
index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1702
1934
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
1703
1935
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1936
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
1937
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1938
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1939
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1940
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1941
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1942
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
1943
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1704
1944
|
name?: InputMaybe<Scalars['String']>;
|
|
1705
1945
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1706
1946
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1721,6 +1961,14 @@ export interface IndexDistributionClaimedEvent_Filter {
|
|
|
1721
1961
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1722
1962
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1723
1963
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1964
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
1965
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1966
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1967
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1968
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1969
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1970
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
1971
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1724
1972
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
1725
1973
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1726
1974
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1754,7 +2002,7 @@ export interface IndexDistributionClaimedEvent_Filter {
|
|
|
1754
2002
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1755
2003
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1756
2004
|
}
|
|
1757
|
-
export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
|
|
2005
|
+
export declare type IndexDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash';
|
|
1758
2006
|
export interface IndexSubscribedEvent_Filter {
|
|
1759
2007
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1760
2008
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1806,6 +2054,14 @@ export interface IndexSubscribedEvent_Filter {
|
|
|
1806
2054
|
index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1807
2055
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
1808
2056
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2057
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
2058
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2059
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2060
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2061
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2062
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2063
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
2064
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1809
2065
|
name?: InputMaybe<Scalars['String']>;
|
|
1810
2066
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
1811
2067
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -1826,6 +2082,14 @@ export interface IndexSubscribedEvent_Filter {
|
|
|
1826
2082
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1827
2083
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1828
2084
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2085
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2086
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2087
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2088
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2089
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2090
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2091
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2092
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1829
2093
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
1830
2094
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1831
2095
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -1865,7 +2129,7 @@ export interface IndexSubscribedEvent_Filter {
|
|
|
1865
2129
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1866
2130
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1867
2131
|
}
|
|
1868
|
-
export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
2132
|
+
export declare type IndexSubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
1869
2133
|
export interface IndexSubscription_Filter {
|
|
1870
2134
|
approved?: InputMaybe<Scalars['Boolean']>;
|
|
1871
2135
|
approved_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
@@ -2028,6 +2292,14 @@ export interface IndexUnitsUpdatedEvent_Filter {
|
|
|
2028
2292
|
index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2029
2293
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
2030
2294
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2295
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
2296
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2297
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2298
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2299
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2300
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2301
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
2302
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2031
2303
|
name?: InputMaybe<Scalars['String']>;
|
|
2032
2304
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2033
2305
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2056,6 +2328,14 @@ export interface IndexUnitsUpdatedEvent_Filter {
|
|
|
2056
2328
|
oldUnits_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2057
2329
|
oldUnits_not?: InputMaybe<Scalars['BigInt']>;
|
|
2058
2330
|
oldUnits_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2331
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2332
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2333
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2334
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2335
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2336
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2337
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2338
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2059
2339
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
2060
2340
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2061
2341
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2103,7 +2383,7 @@ export interface IndexUnitsUpdatedEvent_Filter {
|
|
|
2103
2383
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2104
2384
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2105
2385
|
}
|
|
2106
|
-
export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
2386
|
+
export declare type IndexUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
2107
2387
|
export interface IndexUnsubscribedEvent_Filter {
|
|
2108
2388
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2109
2389
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2155,6 +2435,14 @@ export interface IndexUnsubscribedEvent_Filter {
|
|
|
2155
2435
|
index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2156
2436
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
2157
2437
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2438
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
2439
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2440
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2441
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2442
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2443
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2444
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
2445
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2158
2446
|
name?: InputMaybe<Scalars['String']>;
|
|
2159
2447
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2160
2448
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2175,6 +2463,14 @@ export interface IndexUnsubscribedEvent_Filter {
|
|
|
2175
2463
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2176
2464
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2177
2465
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2466
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2467
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2468
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2469
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2470
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2471
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2472
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2473
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2178
2474
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
2179
2475
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2180
2476
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2214,7 +2510,7 @@ export interface IndexUnsubscribedEvent_Filter {
|
|
|
2214
2510
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2215
2511
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2216
2512
|
}
|
|
2217
|
-
export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
2513
|
+
export declare type IndexUnsubscribedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
2218
2514
|
export interface IndexUpdatedEvent_Filter {
|
|
2219
2515
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2220
2516
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2266,6 +2562,14 @@ export interface IndexUpdatedEvent_Filter {
|
|
|
2266
2562
|
index_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2267
2563
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
2268
2564
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2565
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
2566
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2567
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2568
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2569
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2570
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2571
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
2572
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2269
2573
|
name?: InputMaybe<Scalars['String']>;
|
|
2270
2574
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2271
2575
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2302,6 +2606,14 @@ export interface IndexUpdatedEvent_Filter {
|
|
|
2302
2606
|
oldIndexValue_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2303
2607
|
oldIndexValue_not?: InputMaybe<Scalars['BigInt']>;
|
|
2304
2608
|
oldIndexValue_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2609
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2610
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2611
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2612
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2613
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2614
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2615
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2616
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2305
2617
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
2306
2618
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2307
2619
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2351,7 +2663,7 @@ export interface IndexUpdatedEvent_Filter {
|
|
|
2351
2663
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2352
2664
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2353
2665
|
}
|
|
2354
|
-
export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
|
|
2666
|
+
export declare type IndexUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'index' | 'indexId' | 'logIndex' | 'name' | 'newIndexValue' | 'oldIndexValue' | 'order' | 'publisher' | 'timestamp' | 'token' | 'totalUnitsApproved' | 'totalUnitsPending' | 'transactionHash' | 'userData';
|
|
2355
2667
|
export interface Index_Filter {
|
|
2356
2668
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
2357
2669
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2540,6 +2852,14 @@ export interface JailEvent_Filter {
|
|
|
2540
2852
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2541
2853
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
2542
2854
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2855
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
2856
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2857
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2858
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2859
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2860
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2861
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
2862
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2543
2863
|
name?: InputMaybe<Scalars['String']>;
|
|
2544
2864
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2545
2865
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2560,6 +2880,14 @@ export interface JailEvent_Filter {
|
|
|
2560
2880
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2561
2881
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2562
2882
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2883
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2884
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2885
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2886
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2887
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2888
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2889
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2890
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2563
2891
|
reason?: InputMaybe<Scalars['BigInt']>;
|
|
2564
2892
|
reason_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2565
2893
|
reason_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2583,7 +2911,7 @@ export interface JailEvent_Filter {
|
|
|
2583
2911
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2584
2912
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2585
2913
|
}
|
|
2586
|
-
export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'name' | 'reason' | 'timestamp' | 'transactionHash';
|
|
2914
|
+
export declare type JailEvent_OrderBy = 'addresses' | 'app' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'reason' | 'timestamp' | 'transactionHash';
|
|
2587
2915
|
export interface MintedEvent_Filter {
|
|
2588
2916
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2589
2917
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2621,6 +2949,14 @@ export interface MintedEvent_Filter {
|
|
|
2621
2949
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2622
2950
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
2623
2951
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2952
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
2953
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2954
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2955
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2956
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2957
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2958
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
2959
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2624
2960
|
name?: InputMaybe<Scalars['String']>;
|
|
2625
2961
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2626
2962
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2653,6 +2989,14 @@ export interface MintedEvent_Filter {
|
|
|
2653
2989
|
operator_not?: InputMaybe<Scalars['Bytes']>;
|
|
2654
2990
|
operator_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2655
2991
|
operator_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2992
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
2993
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2994
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
2995
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2996
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
2997
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2998
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
2999
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2656
3000
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
2657
3001
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2658
3002
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2674,7 +3018,7 @@ export interface MintedEvent_Filter {
|
|
|
2674
3018
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2675
3019
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2676
3020
|
}
|
|
2677
|
-
export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
|
|
3021
|
+
export declare type MintedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'transactionHash';
|
|
2678
3022
|
export declare type OrderDirection = 'asc' | 'desc';
|
|
2679
3023
|
export interface PppConfigurationChangedEvent_Filter {
|
|
2680
3024
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2717,6 +3061,14 @@ export interface PppConfigurationChangedEvent_Filter {
|
|
|
2717
3061
|
liquidationPeriod_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2718
3062
|
liquidationPeriod_not?: InputMaybe<Scalars['BigInt']>;
|
|
2719
3063
|
liquidationPeriod_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3064
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
3065
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3066
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3067
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3068
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3069
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3070
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
3071
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2720
3072
|
name?: InputMaybe<Scalars['String']>;
|
|
2721
3073
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2722
3074
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2737,6 +3089,14 @@ export interface PppConfigurationChangedEvent_Filter {
|
|
|
2737
3089
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2738
3090
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2739
3091
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3092
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3093
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3094
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3095
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3096
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3097
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3098
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3099
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2740
3100
|
patricianPeriod?: InputMaybe<Scalars['BigInt']>;
|
|
2741
3101
|
patricianPeriod_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2742
3102
|
patricianPeriod_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2766,7 +3126,7 @@ export interface PppConfigurationChangedEvent_Filter {
|
|
|
2766
3126
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2767
3127
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2768
3128
|
}
|
|
2769
|
-
export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'name' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
3129
|
+
export declare type PppConfigurationChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'liquidationPeriod' | 'logIndex' | 'name' | 'order' | 'patricianPeriod' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
2770
3130
|
export interface RewardAddressChangedEvent_Filter {
|
|
2771
3131
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2772
3132
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2800,6 +3160,14 @@ export interface RewardAddressChangedEvent_Filter {
|
|
|
2800
3160
|
isKeySet_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
2801
3161
|
isKeySet_not?: InputMaybe<Scalars['Boolean']>;
|
|
2802
3162
|
isKeySet_not_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
3163
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
3164
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3165
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3166
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3167
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3168
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3169
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
3170
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2803
3171
|
name?: InputMaybe<Scalars['String']>;
|
|
2804
3172
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2805
3173
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2820,6 +3188,14 @@ export interface RewardAddressChangedEvent_Filter {
|
|
|
2820
3188
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2821
3189
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2822
3190
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3191
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3192
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3193
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3194
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3195
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3196
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3197
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3198
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2823
3199
|
rewardAddress?: InputMaybe<Scalars['Bytes']>;
|
|
2824
3200
|
rewardAddress_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2825
3201
|
rewardAddress_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2847,7 +3223,7 @@ export interface RewardAddressChangedEvent_Filter {
|
|
|
2847
3223
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2848
3224
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2849
3225
|
}
|
|
2850
|
-
export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'name' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
3226
|
+
export declare type RewardAddressChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'rewardAddress' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
2851
3227
|
export interface RoleAdminChangedEvent_Filter {
|
|
2852
3228
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2853
3229
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2871,6 +3247,14 @@ export interface RoleAdminChangedEvent_Filter {
|
|
|
2871
3247
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2872
3248
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
2873
3249
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
3250
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
3251
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3252
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3253
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3254
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3255
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3256
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
3257
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2874
3258
|
name?: InputMaybe<Scalars['String']>;
|
|
2875
3259
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2876
3260
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2897,6 +3281,14 @@ export interface RoleAdminChangedEvent_Filter {
|
|
|
2897
3281
|
newAdminRole_not?: InputMaybe<Scalars['Bytes']>;
|
|
2898
3282
|
newAdminRole_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2899
3283
|
newAdminRole_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3284
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3285
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3286
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3287
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3288
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3289
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3290
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3291
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2900
3292
|
previousAdminRole?: InputMaybe<Scalars['Bytes']>;
|
|
2901
3293
|
previousAdminRole_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2902
3294
|
previousAdminRole_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -2924,7 +3316,7 @@ export interface RoleAdminChangedEvent_Filter {
|
|
|
2924
3316
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2925
3317
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
2926
3318
|
}
|
|
2927
|
-
export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'newAdminRole' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
|
|
3319
|
+
export declare type RoleAdminChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newAdminRole' | 'order' | 'previousAdminRole' | 'role' | 'timestamp' | 'transactionHash';
|
|
2928
3320
|
export interface RoleGrantedEvent_Filter {
|
|
2929
3321
|
account?: InputMaybe<Scalars['Bytes']>;
|
|
2930
3322
|
account_contains?: InputMaybe<Scalars['Bytes']>;
|
|
@@ -2954,6 +3346,14 @@ export interface RoleGrantedEvent_Filter {
|
|
|
2954
3346
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2955
3347
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
2956
3348
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
3349
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
3350
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3351
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3352
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3353
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3354
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3355
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
3356
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2957
3357
|
name?: InputMaybe<Scalars['String']>;
|
|
2958
3358
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
2959
3359
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -2974,6 +3374,14 @@ export interface RoleGrantedEvent_Filter {
|
|
|
2974
3374
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2975
3375
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
2976
3376
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3377
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3378
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3379
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3380
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3381
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3382
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3383
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3384
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2977
3385
|
role?: InputMaybe<Scalars['Bytes']>;
|
|
2978
3386
|
role_contains?: InputMaybe<Scalars['Bytes']>;
|
|
2979
3387
|
role_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3001,7 +3409,7 @@ export interface RoleGrantedEvent_Filter {
|
|
|
3001
3409
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3002
3410
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3003
3411
|
}
|
|
3004
|
-
export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3412
|
+
export declare type RoleGrantedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3005
3413
|
export interface RoleRevokedEvent_Filter {
|
|
3006
3414
|
account?: InputMaybe<Scalars['Bytes']>;
|
|
3007
3415
|
account_contains?: InputMaybe<Scalars['Bytes']>;
|
|
@@ -3031,6 +3439,14 @@ export interface RoleRevokedEvent_Filter {
|
|
|
3031
3439
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
3032
3440
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
3033
3441
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
3442
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
3443
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3444
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3445
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3446
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3447
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3448
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
3449
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3034
3450
|
name?: InputMaybe<Scalars['String']>;
|
|
3035
3451
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
3036
3452
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -3051,6 +3467,14 @@ export interface RoleRevokedEvent_Filter {
|
|
|
3051
3467
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3052
3468
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3053
3469
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3470
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3471
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3472
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3473
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3474
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3475
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3476
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3477
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3054
3478
|
role?: InputMaybe<Scalars['Bytes']>;
|
|
3055
3479
|
role_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3056
3480
|
role_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3078,7 +3502,7 @@ export interface RoleRevokedEvent_Filter {
|
|
|
3078
3502
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3079
3503
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3080
3504
|
}
|
|
3081
|
-
export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'name' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3505
|
+
export declare type RoleRevokedEvent_OrderBy = 'account' | 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'role' | 'sender' | 'timestamp' | 'transactionHash';
|
|
3082
3506
|
export interface SfMeta_Filter {
|
|
3083
3507
|
blockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
3084
3508
|
blockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3189,6 +3613,14 @@ export interface SentEvent_Filter {
|
|
|
3189
3613
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
3190
3614
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
3191
3615
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
3616
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
3617
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3618
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3619
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3620
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3621
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3622
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
3623
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3192
3624
|
name?: InputMaybe<Scalars['String']>;
|
|
3193
3625
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
3194
3626
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -3221,6 +3653,14 @@ export interface SentEvent_Filter {
|
|
|
3221
3653
|
operator_not?: InputMaybe<Scalars['Bytes']>;
|
|
3222
3654
|
operator_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3223
3655
|
operator_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3656
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
3657
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3658
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
3659
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3660
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
3661
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3662
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
3663
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3224
3664
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
3225
3665
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3226
3666
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3242,7 +3682,7 @@ export interface SentEvent_Filter {
|
|
|
3242
3682
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3243
3683
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3244
3684
|
}
|
|
3245
|
-
export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'name' | 'operator' | 'operatorData' | 'timestamp' | 'to' | 'transactionHash';
|
|
3685
|
+
export declare type SentEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'data' | 'from' | 'id' | 'logIndex' | 'name' | 'operator' | 'operatorData' | 'order' | 'timestamp' | 'to' | 'transactionHash';
|
|
3246
3686
|
export interface StreamPeriod_Filter {
|
|
3247
3687
|
deposit?: InputMaybe<Scalars['BigInt']>;
|
|
3248
3688
|
deposit_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3615,6 +4055,14 @@ export interface SubscriptionApprovedEvent_Filter {
|
|
|
3615
4055
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3616
4056
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
3617
4057
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4058
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4059
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4060
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4061
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4062
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4063
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4064
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4065
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3618
4066
|
name?: InputMaybe<Scalars['String']>;
|
|
3619
4067
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
3620
4068
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -3635,6 +4083,14 @@ export interface SubscriptionApprovedEvent_Filter {
|
|
|
3635
4083
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3636
4084
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3637
4085
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4086
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4087
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4088
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4089
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4090
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4091
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4092
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4093
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3638
4094
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
3639
4095
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3640
4096
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3694,7 +4150,7 @@ export interface SubscriptionApprovedEvent_Filter {
|
|
|
3694
4150
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3695
4151
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3696
4152
|
}
|
|
3697
|
-
export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
4153
|
+
export declare type SubscriptionApprovedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
3698
4154
|
export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
3699
4155
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3700
4156
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3734,6 +4190,14 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
|
3734
4190
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3735
4191
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
3736
4192
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4193
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4194
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4195
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4196
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4197
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4198
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4199
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4200
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3737
4201
|
name?: InputMaybe<Scalars['String']>;
|
|
3738
4202
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
3739
4203
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -3754,6 +4218,14 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
|
3754
4218
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3755
4219
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3756
4220
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4221
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4222
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4223
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4224
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4225
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4226
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4227
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4228
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3757
4229
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
3758
4230
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3759
4231
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3807,7 +4279,7 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
|
3807
4279
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3808
4280
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3809
4281
|
}
|
|
3810
|
-
export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
|
|
4282
|
+
export declare type SubscriptionDistributionClaimedEvent_OrderBy = 'addresses' | 'amount' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash';
|
|
3811
4283
|
export interface SubscriptionRevokedEvent_Filter {
|
|
3812
4284
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3813
4285
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3839,6 +4311,14 @@ export interface SubscriptionRevokedEvent_Filter {
|
|
|
3839
4311
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3840
4312
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
3841
4313
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4314
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4315
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4316
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4317
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4318
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4319
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4320
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4321
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3842
4322
|
name?: InputMaybe<Scalars['String']>;
|
|
3843
4323
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
3844
4324
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -3859,6 +4339,14 @@ export interface SubscriptionRevokedEvent_Filter {
|
|
|
3859
4339
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3860
4340
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
3861
4341
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4342
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4343
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4344
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4345
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4346
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4347
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4348
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4349
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3862
4350
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
3863
4351
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3864
4352
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3918,7 +4406,7 @@ export interface SubscriptionRevokedEvent_Filter {
|
|
|
3918
4406
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3919
4407
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3920
4408
|
}
|
|
3921
|
-
export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
4409
|
+
export declare type SubscriptionRevokedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'userData';
|
|
3922
4410
|
export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
3923
4411
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
3924
4412
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -3950,6 +4438,14 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
|
3950
4438
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3951
4439
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
3952
4440
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4441
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4442
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4443
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4444
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4445
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4446
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4447
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4448
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3953
4449
|
name?: InputMaybe<Scalars['String']>;
|
|
3954
4450
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
3955
4451
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -3978,6 +4474,14 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
|
3978
4474
|
oldUnits_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3979
4475
|
oldUnits_not?: InputMaybe<Scalars['BigInt']>;
|
|
3980
4476
|
oldUnits_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4477
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4478
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4479
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4480
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4481
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4482
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4483
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4484
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3981
4485
|
publisher?: InputMaybe<Scalars['Bytes']>;
|
|
3982
4486
|
publisher_contains?: InputMaybe<Scalars['Bytes']>;
|
|
3983
4487
|
publisher_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4045,7 +4549,7 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
|
4045
4549
|
userData_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4046
4550
|
userData_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4047
4551
|
}
|
|
4048
|
-
export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'name' | 'oldUnits' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
4552
|
+
export declare type SubscriptionUnitsUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'indexId' | 'logIndex' | 'name' | 'oldUnits' | 'order' | 'publisher' | 'subscriber' | 'subscription' | 'timestamp' | 'token' | 'transactionHash' | 'units' | 'userData';
|
|
4049
4553
|
export interface SuperTokenCreatedEvent_Filter {
|
|
4050
4554
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4051
4555
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4069,6 +4573,14 @@ export interface SuperTokenCreatedEvent_Filter {
|
|
|
4069
4573
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4070
4574
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4071
4575
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4576
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4577
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4578
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4579
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4580
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4581
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4582
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4583
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4072
4584
|
name?: InputMaybe<Scalars['String']>;
|
|
4073
4585
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4074
4586
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4089,6 +4601,14 @@ export interface SuperTokenCreatedEvent_Filter {
|
|
|
4089
4601
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4090
4602
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4091
4603
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4604
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4605
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4606
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4607
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4608
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4609
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4610
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4611
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4092
4612
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4093
4613
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4094
4614
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4110,7 +4630,7 @@ export interface SuperTokenCreatedEvent_Filter {
|
|
|
4110
4630
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4111
4631
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4112
4632
|
}
|
|
4113
|
-
export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
4633
|
+
export declare type SuperTokenCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4114
4634
|
export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
4115
4635
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4116
4636
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4134,6 +4654,14 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
|
4134
4654
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4135
4655
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4136
4656
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4657
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4658
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4659
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4660
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4661
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4662
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4663
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4664
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4137
4665
|
name?: InputMaybe<Scalars['String']>;
|
|
4138
4666
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4139
4667
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4160,6 +4688,14 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
|
4160
4688
|
newFactory_not?: InputMaybe<Scalars['Bytes']>;
|
|
4161
4689
|
newFactory_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4162
4690
|
newFactory_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4691
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4692
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4693
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4694
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4695
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4696
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4697
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4698
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4163
4699
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4164
4700
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4165
4701
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4175,7 +4711,7 @@ export interface SuperTokenFactoryUpdatedEvent_Filter {
|
|
|
4175
4711
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4176
4712
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4177
4713
|
}
|
|
4178
|
-
export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'newFactory' | 'timestamp' | 'transactionHash';
|
|
4714
|
+
export declare type SuperTokenFactoryUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'newFactory' | 'order' | 'timestamp' | 'transactionHash';
|
|
4179
4715
|
export interface SuperTokenLogicCreatedEvent_Filter {
|
|
4180
4716
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4181
4717
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4199,6 +4735,14 @@ export interface SuperTokenLogicCreatedEvent_Filter {
|
|
|
4199
4735
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4200
4736
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4201
4737
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4738
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4739
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4740
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4741
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4742
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4743
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4744
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4745
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4202
4746
|
name?: InputMaybe<Scalars['String']>;
|
|
4203
4747
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4204
4748
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4219,6 +4763,14 @@ export interface SuperTokenLogicCreatedEvent_Filter {
|
|
|
4219
4763
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4220
4764
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4221
4765
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4766
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4767
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4768
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4769
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4770
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4771
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4772
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4773
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4222
4774
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4223
4775
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4224
4776
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4240,7 +4792,7 @@ export interface SuperTokenLogicCreatedEvent_Filter {
|
|
|
4240
4792
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4241
4793
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4242
4794
|
}
|
|
4243
|
-
export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'tokenLogic' | 'transactionHash';
|
|
4795
|
+
export declare type SuperTokenLogicCreatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'tokenLogic' | 'transactionHash';
|
|
4244
4796
|
export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
4245
4797
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4246
4798
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4270,6 +4822,14 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
|
4270
4822
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4271
4823
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4272
4824
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4825
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4826
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4827
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4828
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4829
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4830
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4831
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4832
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4273
4833
|
name?: InputMaybe<Scalars['String']>;
|
|
4274
4834
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4275
4835
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4290,6 +4850,14 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
|
4290
4850
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4291
4851
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4292
4852
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4853
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4854
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4855
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4856
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4857
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4858
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4859
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4860
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4293
4861
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4294
4862
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4295
4863
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4311,7 +4879,7 @@ export interface SuperTokenLogicUpdatedEvent_Filter {
|
|
|
4311
4879
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4312
4880
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4313
4881
|
}
|
|
4314
|
-
export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
4882
|
+
export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNumber' | 'code' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4315
4883
|
export interface TokenDowngradedEvent_Filter {
|
|
4316
4884
|
account?: InputMaybe<Scalars['String']>;
|
|
4317
4885
|
account_contains?: InputMaybe<Scalars['String']>;
|
|
@@ -4363,6 +4931,14 @@ export interface TokenDowngradedEvent_Filter {
|
|
|
4363
4931
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4364
4932
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4365
4933
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4934
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
4935
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4936
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4937
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4938
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4939
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4940
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
4941
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4366
4942
|
name?: InputMaybe<Scalars['String']>;
|
|
4367
4943
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4368
4944
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4383,6 +4959,14 @@ export interface TokenDowngradedEvent_Filter {
|
|
|
4383
4959
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4384
4960
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4385
4961
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4962
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
4963
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4964
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
4965
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4966
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
4967
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4968
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
4969
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4386
4970
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4387
4971
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4388
4972
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4404,7 +4988,7 @@ export interface TokenDowngradedEvent_Filter {
|
|
|
4404
4988
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4405
4989
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4406
4990
|
}
|
|
4407
|
-
export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
4991
|
+
export declare type TokenDowngradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4408
4992
|
export interface TokenStatistic_Filter {
|
|
4409
4993
|
id?: InputMaybe<Scalars['ID']>;
|
|
4410
4994
|
id_gt?: InputMaybe<Scalars['ID']>;
|
|
@@ -4599,6 +5183,14 @@ export interface TokenUpgradedEvent_Filter {
|
|
|
4599
5183
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4600
5184
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4601
5185
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
5186
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
5187
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5188
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5189
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5190
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5191
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5192
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
5193
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4602
5194
|
name?: InputMaybe<Scalars['String']>;
|
|
4603
5195
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4604
5196
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4619,6 +5211,14 @@ export interface TokenUpgradedEvent_Filter {
|
|
|
4619
5211
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4620
5212
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4621
5213
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5214
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
5215
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5216
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5217
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5218
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5219
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5220
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
5221
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4622
5222
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4623
5223
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4624
5224
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4640,7 +5240,7 @@ export interface TokenUpgradedEvent_Filter {
|
|
|
4640
5240
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4641
5241
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4642
5242
|
}
|
|
4643
|
-
export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'name' | 'timestamp' | 'token' | 'transactionHash';
|
|
5243
|
+
export declare type TokenUpgradedEvent_OrderBy = 'account' | 'addresses' | 'amount' | 'blockNumber' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'token' | 'transactionHash';
|
|
4644
5244
|
export interface Token_Filter {
|
|
4645
5245
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
4646
5246
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4793,6 +5393,14 @@ export interface TransferEvent_Filter {
|
|
|
4793
5393
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
4794
5394
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4795
5395
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
5396
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
5397
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5398
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5399
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5400
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5401
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5402
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
5403
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4796
5404
|
name?: InputMaybe<Scalars['String']>;
|
|
4797
5405
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4798
5406
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4813,6 +5421,14 @@ export interface TransferEvent_Filter {
|
|
|
4813
5421
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4814
5422
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4815
5423
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5424
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
5425
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5426
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5427
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5428
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5429
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5430
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
5431
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4816
5432
|
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
4817
5433
|
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4818
5434
|
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4862,7 +5478,7 @@ export interface TransferEvent_Filter {
|
|
|
4862
5478
|
value_not?: InputMaybe<Scalars['BigInt']>;
|
|
4863
5479
|
value_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4864
5480
|
}
|
|
4865
|
-
export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'name' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
|
|
5481
|
+
export declare type TransferEvent_OrderBy = 'addresses' | 'blockNumber' | 'from' | 'id' | 'logIndex' | 'name' | 'order' | 'timestamp' | 'to' | 'token' | 'transactionHash' | 'value';
|
|
4866
5482
|
export interface TrustedForwarderChangedEvent_Filter {
|
|
4867
5483
|
addresses?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4868
5484
|
addresses_contains?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4906,6 +5522,14 @@ export interface TrustedForwarderChangedEvent_Filter {
|
|
|
4906
5522
|
isKeySet_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
4907
5523
|
isKeySet_not?: InputMaybe<Scalars['Boolean']>;
|
|
4908
5524
|
isKeySet_not_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
5525
|
+
logIndex?: InputMaybe<Scalars['BigInt']>;
|
|
5526
|
+
logIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5527
|
+
logIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5528
|
+
logIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5529
|
+
logIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5530
|
+
logIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5531
|
+
logIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
5532
|
+
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4909
5533
|
name?: InputMaybe<Scalars['String']>;
|
|
4910
5534
|
name_contains?: InputMaybe<Scalars['String']>;
|
|
4911
5535
|
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
@@ -4926,6 +5550,14 @@ export interface TrustedForwarderChangedEvent_Filter {
|
|
|
4926
5550
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4927
5551
|
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
4928
5552
|
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5553
|
+
order?: InputMaybe<Scalars['BigInt']>;
|
|
5554
|
+
order_gt?: InputMaybe<Scalars['BigInt']>;
|
|
5555
|
+
order_gte?: InputMaybe<Scalars['BigInt']>;
|
|
5556
|
+
order_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5557
|
+
order_lt?: InputMaybe<Scalars['BigInt']>;
|
|
5558
|
+
order_lte?: InputMaybe<Scalars['BigInt']>;
|
|
5559
|
+
order_not?: InputMaybe<Scalars['BigInt']>;
|
|
5560
|
+
order_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4929
5561
|
superToken?: InputMaybe<Scalars['Bytes']>;
|
|
4930
5562
|
superToken_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4931
5563
|
superToken_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
@@ -4947,6 +5579,6 @@ export interface TrustedForwarderChangedEvent_Filter {
|
|
|
4947
5579
|
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4948
5580
|
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4949
5581
|
}
|
|
4950
|
-
export declare type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'host' | 'id' | 'isKeySet' | 'name' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
5582
|
+
export declare type TrustedForwarderChangedEvent_OrderBy = 'addresses' | 'blockNumber' | 'enabled' | 'forwarder' | 'host' | 'id' | 'isKeySet' | 'logIndex' | 'name' | 'order' | 'superToken' | 'timestamp' | 'transactionHash';
|
|
4951
5583
|
export declare type _SubgraphErrorPolicy_ = 'allow' | 'deny';
|
|
4952
5584
|
//# sourceMappingURL=schema.generated.d.ts.map
|