@superfluid-finance/sdk-core 0.4.1-dev.d435096.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/defaultSubgraphReleaseTag.json +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/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 +663 -39
- 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/defaultSubgraphReleaseTag.json +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/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 +663 -39
- package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,9 @@ export declare type FlowUpdatedEventsQuery = {
|
|
|
14
14
|
id: string;
|
|
15
15
|
blockNumber: string;
|
|
16
16
|
transactionHash: string;
|
|
17
|
+
order: string;
|
|
17
18
|
timestamp: string;
|
|
19
|
+
logIndex: string;
|
|
18
20
|
userData: string;
|
|
19
21
|
type: number;
|
|
20
22
|
token: string;
|
|
@@ -39,7 +41,9 @@ export declare type FlowOperatorUpdatedEventsQuery = {
|
|
|
39
41
|
id: string;
|
|
40
42
|
blockNumber: string;
|
|
41
43
|
transactionHash: string;
|
|
44
|
+
order: string;
|
|
42
45
|
timestamp: string;
|
|
46
|
+
logIndex: string;
|
|
43
47
|
token: string;
|
|
44
48
|
sender: string;
|
|
45
49
|
permissions: number;
|
|
@@ -60,7 +64,9 @@ export declare type IndexCreatedEventsQuery = {
|
|
|
60
64
|
id: string;
|
|
61
65
|
blockNumber: string;
|
|
62
66
|
transactionHash: string;
|
|
67
|
+
order: string;
|
|
63
68
|
timestamp: string;
|
|
69
|
+
logIndex: string;
|
|
64
70
|
userData: string;
|
|
65
71
|
token: string;
|
|
66
72
|
publisher: string;
|
|
@@ -84,7 +90,9 @@ export declare type IndexDistributionClaimedEventsQuery = {
|
|
|
84
90
|
id: string;
|
|
85
91
|
blockNumber: string;
|
|
86
92
|
transactionHash: string;
|
|
93
|
+
order: string;
|
|
87
94
|
timestamp: string;
|
|
95
|
+
logIndex: string;
|
|
88
96
|
token: string;
|
|
89
97
|
subscriber: string;
|
|
90
98
|
publisher: string;
|
|
@@ -109,7 +117,9 @@ export declare type IndexUpdatedEventsQuery = {
|
|
|
109
117
|
id: string;
|
|
110
118
|
blockNumber: string;
|
|
111
119
|
transactionHash: string;
|
|
120
|
+
order: string;
|
|
112
121
|
timestamp: string;
|
|
122
|
+
logIndex: string;
|
|
113
123
|
userData: string;
|
|
114
124
|
totalUnitsPending: string;
|
|
115
125
|
totalUnitsApproved: string;
|
|
@@ -136,7 +146,9 @@ export declare type IndexSubscribedEventsQuery = {
|
|
|
136
146
|
__typename: 'IndexSubscribedEvent';
|
|
137
147
|
blockNumber: string;
|
|
138
148
|
transactionHash: string;
|
|
149
|
+
order: string;
|
|
139
150
|
timestamp: string;
|
|
151
|
+
logIndex: string;
|
|
140
152
|
id: string;
|
|
141
153
|
userData: string;
|
|
142
154
|
token: string;
|
|
@@ -162,7 +174,9 @@ export declare type IndexUnitsUpdatedEventsQuery = {
|
|
|
162
174
|
id: string;
|
|
163
175
|
blockNumber: string;
|
|
164
176
|
transactionHash: string;
|
|
177
|
+
order: string;
|
|
165
178
|
timestamp: string;
|
|
179
|
+
logIndex: string;
|
|
166
180
|
userData: string;
|
|
167
181
|
units: string;
|
|
168
182
|
token: string;
|
|
@@ -189,7 +203,9 @@ export declare type IndexUnsubscribedEventsQuery = {
|
|
|
189
203
|
id: string;
|
|
190
204
|
blockNumber: string;
|
|
191
205
|
transactionHash: string;
|
|
206
|
+
order: string;
|
|
192
207
|
timestamp: string;
|
|
208
|
+
logIndex: string;
|
|
193
209
|
userData: string;
|
|
194
210
|
token: string;
|
|
195
211
|
subscriber: string;
|
|
@@ -214,7 +230,9 @@ export declare type SubscriptionApprovedEventsQuery = {
|
|
|
214
230
|
id: string;
|
|
215
231
|
blockNumber: string;
|
|
216
232
|
transactionHash: string;
|
|
233
|
+
order: string;
|
|
217
234
|
timestamp: string;
|
|
235
|
+
logIndex: string;
|
|
218
236
|
userData: string;
|
|
219
237
|
token: string;
|
|
220
238
|
subscriber: string;
|
|
@@ -239,7 +257,9 @@ export declare type SubscriptionDistributionClaimedEventsQuery = {
|
|
|
239
257
|
id: string;
|
|
240
258
|
blockNumber: string;
|
|
241
259
|
transactionHash: string;
|
|
260
|
+
order: string;
|
|
242
261
|
timestamp: string;
|
|
262
|
+
logIndex: string;
|
|
243
263
|
token: string;
|
|
244
264
|
subscriber: string;
|
|
245
265
|
publisher: string;
|
|
@@ -264,7 +284,9 @@ export declare type SubscriptionRevokedEventsQuery = {
|
|
|
264
284
|
id: string;
|
|
265
285
|
blockNumber: string;
|
|
266
286
|
transactionHash: string;
|
|
287
|
+
order: string;
|
|
267
288
|
timestamp: string;
|
|
289
|
+
logIndex: string;
|
|
268
290
|
userData: string;
|
|
269
291
|
subscriber: string;
|
|
270
292
|
publisher: string;
|
|
@@ -289,7 +311,9 @@ export declare type SubscriptionUnitsUpdatedEventsQuery = {
|
|
|
289
311
|
id: string;
|
|
290
312
|
blockNumber: string;
|
|
291
313
|
transactionHash: string;
|
|
314
|
+
order: string;
|
|
292
315
|
timestamp: string;
|
|
316
|
+
logIndex: string;
|
|
293
317
|
userData: string;
|
|
294
318
|
units: string;
|
|
295
319
|
token: string;
|
|
@@ -316,7 +340,9 @@ export declare type TransferEventsQuery = {
|
|
|
316
340
|
id: string;
|
|
317
341
|
blockNumber: string;
|
|
318
342
|
transactionHash: string;
|
|
343
|
+
order: string;
|
|
319
344
|
timestamp: string;
|
|
345
|
+
logIndex: string;
|
|
320
346
|
value: string;
|
|
321
347
|
token: string;
|
|
322
348
|
to: {
|
|
@@ -341,7 +367,9 @@ export declare type TokenUpgradedEventsQuery = {
|
|
|
341
367
|
id: string;
|
|
342
368
|
blockNumber: string;
|
|
343
369
|
transactionHash: string;
|
|
370
|
+
order: string;
|
|
344
371
|
timestamp: string;
|
|
372
|
+
logIndex: string;
|
|
345
373
|
amount: string;
|
|
346
374
|
token: string;
|
|
347
375
|
account: {
|
|
@@ -362,7 +390,9 @@ export declare type TokenDowngradedEventsQuery = {
|
|
|
362
390
|
__typename: 'TokenDowngradedEvent';
|
|
363
391
|
id: string;
|
|
364
392
|
transactionHash: string;
|
|
393
|
+
order: string;
|
|
365
394
|
timestamp: string;
|
|
395
|
+
logIndex: string;
|
|
366
396
|
token: string;
|
|
367
397
|
blockNumber: string;
|
|
368
398
|
amount: string;
|
|
@@ -385,7 +415,9 @@ export declare type AgreementClassRegisteredEventsQuery = {
|
|
|
385
415
|
id: string;
|
|
386
416
|
blockNumber: string;
|
|
387
417
|
transactionHash: string;
|
|
418
|
+
order: string;
|
|
388
419
|
timestamp: string;
|
|
420
|
+
logIndex: string;
|
|
389
421
|
code: string;
|
|
390
422
|
agreementType: string;
|
|
391
423
|
}>;
|
|
@@ -404,7 +436,9 @@ export declare type AgreementClassUpdatedEventsQuery = {
|
|
|
404
436
|
id: string;
|
|
405
437
|
blockNumber: string;
|
|
406
438
|
transactionHash: string;
|
|
439
|
+
order: string;
|
|
407
440
|
timestamp: string;
|
|
441
|
+
logIndex: string;
|
|
408
442
|
code: string;
|
|
409
443
|
agreementType: string;
|
|
410
444
|
}>;
|
|
@@ -422,7 +456,9 @@ export declare type AppRegisteredEventsQuery = {
|
|
|
422
456
|
__typename: 'AppRegisteredEvent';
|
|
423
457
|
id: string;
|
|
424
458
|
transactionHash: string;
|
|
459
|
+
order: string;
|
|
425
460
|
timestamp: string;
|
|
461
|
+
logIndex: string;
|
|
426
462
|
blockNumber: string;
|
|
427
463
|
app: string;
|
|
428
464
|
}>;
|
|
@@ -441,7 +477,9 @@ export declare type GovernanceReplacedEventsQuery = {
|
|
|
441
477
|
id: string;
|
|
442
478
|
blockNumber: string;
|
|
443
479
|
transactionHash: string;
|
|
480
|
+
order: string;
|
|
444
481
|
timestamp: string;
|
|
482
|
+
logIndex: string;
|
|
445
483
|
oldGovernance: string;
|
|
446
484
|
newGovernance: string;
|
|
447
485
|
}>;
|
|
@@ -460,7 +498,9 @@ export declare type JailEventsQuery = {
|
|
|
460
498
|
id: string;
|
|
461
499
|
blockNumber: string;
|
|
462
500
|
transactionHash: string;
|
|
501
|
+
order: string;
|
|
463
502
|
timestamp: string;
|
|
503
|
+
logIndex: string;
|
|
464
504
|
reason: string;
|
|
465
505
|
app: string;
|
|
466
506
|
}>;
|
|
@@ -479,7 +519,9 @@ export declare type SuperTokenFactoryUpdatedEventsQuery = {
|
|
|
479
519
|
id: string;
|
|
480
520
|
blockNumber: string;
|
|
481
521
|
transactionHash: string;
|
|
522
|
+
order: string;
|
|
482
523
|
timestamp: string;
|
|
524
|
+
logIndex: string;
|
|
483
525
|
newFactory: string;
|
|
484
526
|
}>;
|
|
485
527
|
};
|
|
@@ -497,7 +539,9 @@ export declare type SuperTokenLogicUpdatedEventsQuery = {
|
|
|
497
539
|
id: string;
|
|
498
540
|
blockNumber: string;
|
|
499
541
|
transactionHash: string;
|
|
542
|
+
order: string;
|
|
500
543
|
timestamp: string;
|
|
544
|
+
logIndex: string;
|
|
501
545
|
token: string;
|
|
502
546
|
code: string;
|
|
503
547
|
}>;
|
|
@@ -516,7 +560,9 @@ export declare type RoleAdminChangedEventsQuery = {
|
|
|
516
560
|
id: string;
|
|
517
561
|
blockNumber: string;
|
|
518
562
|
transactionHash: string;
|
|
563
|
+
order: string;
|
|
519
564
|
timestamp: string;
|
|
565
|
+
logIndex: string;
|
|
520
566
|
role: string;
|
|
521
567
|
previousAdminRole: string;
|
|
522
568
|
newAdminRole: string;
|
|
@@ -536,7 +582,9 @@ export declare type RoleGrantedEventsQuery = {
|
|
|
536
582
|
id: string;
|
|
537
583
|
blockNumber: string;
|
|
538
584
|
transactionHash: string;
|
|
585
|
+
order: string;
|
|
539
586
|
timestamp: string;
|
|
587
|
+
logIndex: string;
|
|
540
588
|
sender: string;
|
|
541
589
|
role: string;
|
|
542
590
|
account: string;
|
|
@@ -556,7 +604,9 @@ export declare type RoleRevokedEventsQuery = {
|
|
|
556
604
|
id: string;
|
|
557
605
|
blockNumber: string;
|
|
558
606
|
transactionHash: string;
|
|
607
|
+
order: string;
|
|
559
608
|
timestamp: string;
|
|
609
|
+
logIndex: string;
|
|
560
610
|
sender: string;
|
|
561
611
|
role: string;
|
|
562
612
|
account: string;
|
|
@@ -576,7 +626,9 @@ export declare type CfaV1LiquidationPeriodChangedEventsQuery = {
|
|
|
576
626
|
id: string;
|
|
577
627
|
blockNumber: string;
|
|
578
628
|
transactionHash: string;
|
|
629
|
+
order: string;
|
|
579
630
|
timestamp: string;
|
|
631
|
+
logIndex: string;
|
|
580
632
|
superToken: string;
|
|
581
633
|
host: string;
|
|
582
634
|
liquidationPeriod: string;
|
|
@@ -597,7 +649,9 @@ export declare type ConfigChangedEventsQuery = {
|
|
|
597
649
|
id: string;
|
|
598
650
|
blockNumber: string;
|
|
599
651
|
transactionHash: string;
|
|
652
|
+
order: string;
|
|
600
653
|
timestamp: string;
|
|
654
|
+
logIndex: string;
|
|
601
655
|
value: string;
|
|
602
656
|
superToken: string;
|
|
603
657
|
key: string;
|
|
@@ -619,7 +673,9 @@ export declare type RewardAddressChangedEventsQuery = {
|
|
|
619
673
|
id: string;
|
|
620
674
|
blockNumber: string;
|
|
621
675
|
transactionHash: string;
|
|
676
|
+
order: string;
|
|
622
677
|
timestamp: string;
|
|
678
|
+
logIndex: string;
|
|
623
679
|
superToken: string;
|
|
624
680
|
rewardAddress: string;
|
|
625
681
|
isKeySet: boolean;
|
|
@@ -640,7 +696,9 @@ export declare type TrustedForwarderChangedEventsQuery = {
|
|
|
640
696
|
id: string;
|
|
641
697
|
blockNumber: string;
|
|
642
698
|
transactionHash: string;
|
|
699
|
+
order: string;
|
|
643
700
|
timestamp: string;
|
|
701
|
+
logIndex: string;
|
|
644
702
|
isKeySet: boolean;
|
|
645
703
|
host: string;
|
|
646
704
|
forwarder: string;
|
|
@@ -662,7 +720,9 @@ export declare type AgreementLiquidatedByEventsQuery = {
|
|
|
662
720
|
id: string;
|
|
663
721
|
blockNumber: string;
|
|
664
722
|
transactionHash: string;
|
|
723
|
+
order: string;
|
|
665
724
|
timestamp: string;
|
|
725
|
+
logIndex: string;
|
|
666
726
|
token: string;
|
|
667
727
|
rewardAmount: string;
|
|
668
728
|
penaltyAccount: string;
|
|
@@ -687,7 +747,9 @@ export declare type BurnedEventsQuery = {
|
|
|
687
747
|
id: string;
|
|
688
748
|
blockNumber: string;
|
|
689
749
|
transactionHash: string;
|
|
750
|
+
order: string;
|
|
690
751
|
timestamp: string;
|
|
752
|
+
logIndex: string;
|
|
691
753
|
operatorData: string;
|
|
692
754
|
operator: string;
|
|
693
755
|
from: string;
|
|
@@ -709,7 +771,9 @@ export declare type MintedEventsQuery = {
|
|
|
709
771
|
id: string;
|
|
710
772
|
blockNumber: string;
|
|
711
773
|
transactionHash: string;
|
|
774
|
+
order: string;
|
|
712
775
|
timestamp: string;
|
|
776
|
+
logIndex: string;
|
|
713
777
|
operatorData: string;
|
|
714
778
|
operator: string;
|
|
715
779
|
data: string;
|
|
@@ -731,7 +795,9 @@ export declare type SentEventsQuery = {
|
|
|
731
795
|
id: string;
|
|
732
796
|
blockNumber: string;
|
|
733
797
|
transactionHash: string;
|
|
798
|
+
order: string;
|
|
734
799
|
timestamp: string;
|
|
800
|
+
logIndex: string;
|
|
735
801
|
to: string;
|
|
736
802
|
operatorData: string;
|
|
737
803
|
operator: string;
|
|
@@ -753,7 +819,9 @@ export declare type CustomSuperTokenCreatedEventsQuery = {
|
|
|
753
819
|
id: string;
|
|
754
820
|
blockNumber: string;
|
|
755
821
|
transactionHash: string;
|
|
822
|
+
order: string;
|
|
756
823
|
timestamp: string;
|
|
824
|
+
logIndex: string;
|
|
757
825
|
token: string;
|
|
758
826
|
}>;
|
|
759
827
|
};
|
|
@@ -771,7 +839,9 @@ export declare type SuperTokenCreatedEventsQuery = {
|
|
|
771
839
|
id: string;
|
|
772
840
|
blockNumber: string;
|
|
773
841
|
transactionHash: string;
|
|
842
|
+
order: string;
|
|
774
843
|
timestamp: string;
|
|
844
|
+
logIndex: string;
|
|
775
845
|
token: string;
|
|
776
846
|
}>;
|
|
777
847
|
};
|
|
@@ -789,7 +859,9 @@ export declare type SuperTokenLogicCreatedEventsQuery = {
|
|
|
789
859
|
id: string;
|
|
790
860
|
blockNumber: string;
|
|
791
861
|
transactionHash: string;
|
|
862
|
+
order: string;
|
|
792
863
|
timestamp: string;
|
|
864
|
+
logIndex: string;
|
|
793
865
|
tokenLogic: string;
|
|
794
866
|
}>;
|
|
795
867
|
};
|
|
@@ -806,6 +878,8 @@ export declare type EventsQuery = {
|
|
|
806
878
|
__typename: 'AgreementClassRegisteredEvent';
|
|
807
879
|
code: string;
|
|
808
880
|
agreementType: string;
|
|
881
|
+
order: string;
|
|
882
|
+
logIndex: string;
|
|
809
883
|
id: string;
|
|
810
884
|
blockNumber: string;
|
|
811
885
|
transactionHash: string;
|
|
@@ -814,6 +888,8 @@ export declare type EventsQuery = {
|
|
|
814
888
|
__typename: 'AgreementClassUpdatedEvent';
|
|
815
889
|
code: string;
|
|
816
890
|
agreementType: string;
|
|
891
|
+
order: string;
|
|
892
|
+
logIndex: string;
|
|
817
893
|
id: string;
|
|
818
894
|
blockNumber: string;
|
|
819
895
|
transactionHash: string;
|
|
@@ -828,6 +904,8 @@ export declare type EventsQuery = {
|
|
|
828
904
|
bailoutAmount: string;
|
|
829
905
|
agreementId: string;
|
|
830
906
|
agreementClass: string;
|
|
907
|
+
order: string;
|
|
908
|
+
logIndex: string;
|
|
831
909
|
id: string;
|
|
832
910
|
blockNumber: string;
|
|
833
911
|
transactionHash: string;
|
|
@@ -844,6 +922,8 @@ export declare type EventsQuery = {
|
|
|
844
922
|
targetAccountBalanceDelta: string;
|
|
845
923
|
version: string;
|
|
846
924
|
liquidationType: number;
|
|
925
|
+
order: string;
|
|
926
|
+
logIndex: string;
|
|
847
927
|
id: string;
|
|
848
928
|
blockNumber: string;
|
|
849
929
|
transactionHash: string;
|
|
@@ -851,6 +931,8 @@ export declare type EventsQuery = {
|
|
|
851
931
|
} | {
|
|
852
932
|
__typename: 'AppRegisteredEvent';
|
|
853
933
|
app: string;
|
|
934
|
+
order: string;
|
|
935
|
+
logIndex: string;
|
|
854
936
|
id: string;
|
|
855
937
|
blockNumber: string;
|
|
856
938
|
transactionHash: string;
|
|
@@ -862,6 +944,8 @@ export declare type EventsQuery = {
|
|
|
862
944
|
from: string;
|
|
863
945
|
data: string;
|
|
864
946
|
amount: string;
|
|
947
|
+
order: string;
|
|
948
|
+
logIndex: string;
|
|
865
949
|
id: string;
|
|
866
950
|
blockNumber: string;
|
|
867
951
|
transactionHash: string;
|
|
@@ -872,6 +956,8 @@ export declare type EventsQuery = {
|
|
|
872
956
|
host: string;
|
|
873
957
|
liquidationPeriod: string;
|
|
874
958
|
isKeySet: boolean;
|
|
959
|
+
order: string;
|
|
960
|
+
logIndex: string;
|
|
875
961
|
id: string;
|
|
876
962
|
blockNumber: string;
|
|
877
963
|
transactionHash: string;
|
|
@@ -883,6 +969,8 @@ export declare type EventsQuery = {
|
|
|
883
969
|
key: string;
|
|
884
970
|
isKeySet: boolean;
|
|
885
971
|
host: string;
|
|
972
|
+
order: string;
|
|
973
|
+
logIndex: string;
|
|
886
974
|
id: string;
|
|
887
975
|
blockNumber: string;
|
|
888
976
|
transactionHash: string;
|
|
@@ -890,6 +978,8 @@ export declare type EventsQuery = {
|
|
|
890
978
|
} | {
|
|
891
979
|
__typename: 'CustomSuperTokenCreatedEvent';
|
|
892
980
|
token: string;
|
|
981
|
+
order: string;
|
|
982
|
+
logIndex: string;
|
|
893
983
|
id: string;
|
|
894
984
|
blockNumber: string;
|
|
895
985
|
transactionHash: string;
|
|
@@ -900,6 +990,8 @@ export declare type EventsQuery = {
|
|
|
900
990
|
sender: string;
|
|
901
991
|
permissions: number;
|
|
902
992
|
flowRateAllowance: string;
|
|
993
|
+
order: string;
|
|
994
|
+
logIndex: string;
|
|
903
995
|
id: string;
|
|
904
996
|
blockNumber: string;
|
|
905
997
|
transactionHash: string;
|
|
@@ -914,6 +1006,8 @@ export declare type EventsQuery = {
|
|
|
914
1006
|
flowRate: string;
|
|
915
1007
|
flowOperator: string;
|
|
916
1008
|
deposit: string;
|
|
1009
|
+
order: string;
|
|
1010
|
+
logIndex: string;
|
|
917
1011
|
id: string;
|
|
918
1012
|
blockNumber: string;
|
|
919
1013
|
transactionHash: string;
|
|
@@ -922,6 +1016,8 @@ export declare type EventsQuery = {
|
|
|
922
1016
|
__typename: 'GovernanceReplacedEvent';
|
|
923
1017
|
oldGovernance: string;
|
|
924
1018
|
newGovernance: string;
|
|
1019
|
+
order: string;
|
|
1020
|
+
logIndex: string;
|
|
925
1021
|
id: string;
|
|
926
1022
|
blockNumber: string;
|
|
927
1023
|
transactionHash: string;
|
|
@@ -932,6 +1028,8 @@ export declare type EventsQuery = {
|
|
|
932
1028
|
token: string;
|
|
933
1029
|
publisher: string;
|
|
934
1030
|
indexId: string;
|
|
1031
|
+
order: string;
|
|
1032
|
+
logIndex: string;
|
|
935
1033
|
id: string;
|
|
936
1034
|
blockNumber: string;
|
|
937
1035
|
transactionHash: string;
|
|
@@ -946,6 +1044,8 @@ export declare type EventsQuery = {
|
|
|
946
1044
|
publisher: string;
|
|
947
1045
|
indexId: string;
|
|
948
1046
|
amount: string;
|
|
1047
|
+
order: string;
|
|
1048
|
+
logIndex: string;
|
|
949
1049
|
id: string;
|
|
950
1050
|
blockNumber: string;
|
|
951
1051
|
transactionHash: string;
|
|
@@ -960,6 +1060,8 @@ export declare type EventsQuery = {
|
|
|
960
1060
|
subscriber: string;
|
|
961
1061
|
publisher: string;
|
|
962
1062
|
indexId: string;
|
|
1063
|
+
order: string;
|
|
1064
|
+
logIndex: string;
|
|
963
1065
|
id: string;
|
|
964
1066
|
blockNumber: string;
|
|
965
1067
|
transactionHash: string;
|
|
@@ -976,6 +1078,8 @@ export declare type EventsQuery = {
|
|
|
976
1078
|
publisher: string;
|
|
977
1079
|
oldUnits: string;
|
|
978
1080
|
indexId: string;
|
|
1081
|
+
order: string;
|
|
1082
|
+
logIndex: string;
|
|
979
1083
|
id: string;
|
|
980
1084
|
blockNumber: string;
|
|
981
1085
|
transactionHash: string;
|
|
@@ -990,6 +1094,8 @@ export declare type EventsQuery = {
|
|
|
990
1094
|
subscriber: string;
|
|
991
1095
|
publisher: string;
|
|
992
1096
|
indexId: string;
|
|
1097
|
+
order: string;
|
|
1098
|
+
logIndex: string;
|
|
993
1099
|
id: string;
|
|
994
1100
|
blockNumber: string;
|
|
995
1101
|
transactionHash: string;
|
|
@@ -1007,6 +1113,8 @@ export declare type EventsQuery = {
|
|
|
1007
1113
|
oldIndexValue: string;
|
|
1008
1114
|
newIndexValue: string;
|
|
1009
1115
|
indexId: string;
|
|
1116
|
+
order: string;
|
|
1117
|
+
logIndex: string;
|
|
1010
1118
|
id: string;
|
|
1011
1119
|
blockNumber: string;
|
|
1012
1120
|
transactionHash: string;
|
|
@@ -1018,6 +1126,8 @@ export declare type EventsQuery = {
|
|
|
1018
1126
|
__typename: 'JailEvent';
|
|
1019
1127
|
reason: string;
|
|
1020
1128
|
app: string;
|
|
1129
|
+
order: string;
|
|
1130
|
+
logIndex: string;
|
|
1021
1131
|
id: string;
|
|
1022
1132
|
blockNumber: string;
|
|
1023
1133
|
transactionHash: string;
|
|
@@ -1029,6 +1139,8 @@ export declare type EventsQuery = {
|
|
|
1029
1139
|
data: string;
|
|
1030
1140
|
amount: string;
|
|
1031
1141
|
to: string;
|
|
1142
|
+
order: string;
|
|
1143
|
+
logIndex: string;
|
|
1032
1144
|
id: string;
|
|
1033
1145
|
blockNumber: string;
|
|
1034
1146
|
transactionHash: string;
|
|
@@ -1040,6 +1152,8 @@ export declare type EventsQuery = {
|
|
|
1040
1152
|
isKeySet: boolean;
|
|
1041
1153
|
liquidationPeriod: string;
|
|
1042
1154
|
patricianPeriod: string;
|
|
1155
|
+
order: string;
|
|
1156
|
+
logIndex: string;
|
|
1043
1157
|
id: string;
|
|
1044
1158
|
blockNumber: string;
|
|
1045
1159
|
transactionHash: string;
|
|
@@ -1050,6 +1164,8 @@ export declare type EventsQuery = {
|
|
|
1050
1164
|
rewardAddress: string;
|
|
1051
1165
|
isKeySet: boolean;
|
|
1052
1166
|
host: string;
|
|
1167
|
+
order: string;
|
|
1168
|
+
logIndex: string;
|
|
1053
1169
|
id: string;
|
|
1054
1170
|
blockNumber: string;
|
|
1055
1171
|
transactionHash: string;
|
|
@@ -1059,6 +1175,8 @@ export declare type EventsQuery = {
|
|
|
1059
1175
|
role: string;
|
|
1060
1176
|
previousAdminRole: string;
|
|
1061
1177
|
newAdminRole: string;
|
|
1178
|
+
order: string;
|
|
1179
|
+
logIndex: string;
|
|
1062
1180
|
id: string;
|
|
1063
1181
|
blockNumber: string;
|
|
1064
1182
|
transactionHash: string;
|
|
@@ -1068,6 +1186,8 @@ export declare type EventsQuery = {
|
|
|
1068
1186
|
sender: string;
|
|
1069
1187
|
role: string;
|
|
1070
1188
|
account: string;
|
|
1189
|
+
order: string;
|
|
1190
|
+
logIndex: string;
|
|
1071
1191
|
id: string;
|
|
1072
1192
|
blockNumber: string;
|
|
1073
1193
|
transactionHash: string;
|
|
@@ -1077,6 +1197,8 @@ export declare type EventsQuery = {
|
|
|
1077
1197
|
sender: string;
|
|
1078
1198
|
role: string;
|
|
1079
1199
|
account: string;
|
|
1200
|
+
order: string;
|
|
1201
|
+
logIndex: string;
|
|
1080
1202
|
id: string;
|
|
1081
1203
|
blockNumber: string;
|
|
1082
1204
|
transactionHash: string;
|
|
@@ -1088,6 +1210,8 @@ export declare type EventsQuery = {
|
|
|
1088
1210
|
operator: string;
|
|
1089
1211
|
data: string;
|
|
1090
1212
|
amount: string;
|
|
1213
|
+
order: string;
|
|
1214
|
+
logIndex: string;
|
|
1091
1215
|
id: string;
|
|
1092
1216
|
blockNumber: string;
|
|
1093
1217
|
transactionHash: string;
|
|
@@ -1099,6 +1223,8 @@ export declare type EventsQuery = {
|
|
|
1099
1223
|
subscriber: string;
|
|
1100
1224
|
publisher: string;
|
|
1101
1225
|
indexId: string;
|
|
1226
|
+
order: string;
|
|
1227
|
+
logIndex: string;
|
|
1102
1228
|
id: string;
|
|
1103
1229
|
blockNumber: string;
|
|
1104
1230
|
transactionHash: string;
|
|
@@ -1113,6 +1239,8 @@ export declare type EventsQuery = {
|
|
|
1113
1239
|
publisher: string;
|
|
1114
1240
|
indexId: string;
|
|
1115
1241
|
amount: string;
|
|
1242
|
+
order: string;
|
|
1243
|
+
logIndex: string;
|
|
1116
1244
|
id: string;
|
|
1117
1245
|
blockNumber: string;
|
|
1118
1246
|
transactionHash: string;
|
|
@@ -1127,6 +1255,8 @@ export declare type EventsQuery = {
|
|
|
1127
1255
|
publisher: string;
|
|
1128
1256
|
indexId: string;
|
|
1129
1257
|
token: string;
|
|
1258
|
+
order: string;
|
|
1259
|
+
logIndex: string;
|
|
1130
1260
|
id: string;
|
|
1131
1261
|
blockNumber: string;
|
|
1132
1262
|
transactionHash: string;
|
|
@@ -1143,6 +1273,8 @@ export declare type EventsQuery = {
|
|
|
1143
1273
|
publisher: string;
|
|
1144
1274
|
oldUnits: string;
|
|
1145
1275
|
indexId: string;
|
|
1276
|
+
order: string;
|
|
1277
|
+
logIndex: string;
|
|
1146
1278
|
id: string;
|
|
1147
1279
|
blockNumber: string;
|
|
1148
1280
|
transactionHash: string;
|
|
@@ -1153,6 +1285,8 @@ export declare type EventsQuery = {
|
|
|
1153
1285
|
} | {
|
|
1154
1286
|
__typename: 'SuperTokenCreatedEvent';
|
|
1155
1287
|
token: string;
|
|
1288
|
+
order: string;
|
|
1289
|
+
logIndex: string;
|
|
1156
1290
|
id: string;
|
|
1157
1291
|
blockNumber: string;
|
|
1158
1292
|
transactionHash: string;
|
|
@@ -1160,6 +1294,8 @@ export declare type EventsQuery = {
|
|
|
1160
1294
|
} | {
|
|
1161
1295
|
__typename: 'SuperTokenFactoryUpdatedEvent';
|
|
1162
1296
|
newFactory: string;
|
|
1297
|
+
order: string;
|
|
1298
|
+
logIndex: string;
|
|
1163
1299
|
id: string;
|
|
1164
1300
|
blockNumber: string;
|
|
1165
1301
|
transactionHash: string;
|
|
@@ -1167,6 +1303,8 @@ export declare type EventsQuery = {
|
|
|
1167
1303
|
} | {
|
|
1168
1304
|
__typename: 'SuperTokenLogicCreatedEvent';
|
|
1169
1305
|
tokenLogic: string;
|
|
1306
|
+
order: string;
|
|
1307
|
+
logIndex: string;
|
|
1170
1308
|
id: string;
|
|
1171
1309
|
blockNumber: string;
|
|
1172
1310
|
transactionHash: string;
|
|
@@ -1175,6 +1313,8 @@ export declare type EventsQuery = {
|
|
|
1175
1313
|
__typename: 'SuperTokenLogicUpdatedEvent';
|
|
1176
1314
|
token: string;
|
|
1177
1315
|
code: string;
|
|
1316
|
+
order: string;
|
|
1317
|
+
logIndex: string;
|
|
1178
1318
|
id: string;
|
|
1179
1319
|
blockNumber: string;
|
|
1180
1320
|
transactionHash: string;
|
|
@@ -1183,6 +1323,8 @@ export declare type EventsQuery = {
|
|
|
1183
1323
|
__typename: 'TokenDowngradedEvent';
|
|
1184
1324
|
token: string;
|
|
1185
1325
|
amount: string;
|
|
1326
|
+
order: string;
|
|
1327
|
+
logIndex: string;
|
|
1186
1328
|
id: string;
|
|
1187
1329
|
blockNumber: string;
|
|
1188
1330
|
transactionHash: string;
|
|
@@ -1194,6 +1336,8 @@ export declare type EventsQuery = {
|
|
|
1194
1336
|
__typename: 'TokenUpgradedEvent';
|
|
1195
1337
|
amount: string;
|
|
1196
1338
|
token: string;
|
|
1339
|
+
order: string;
|
|
1340
|
+
logIndex: string;
|
|
1197
1341
|
id: string;
|
|
1198
1342
|
blockNumber: string;
|
|
1199
1343
|
transactionHash: string;
|
|
@@ -1205,6 +1349,8 @@ export declare type EventsQuery = {
|
|
|
1205
1349
|
__typename: 'TransferEvent';
|
|
1206
1350
|
value: string;
|
|
1207
1351
|
token: string;
|
|
1352
|
+
order: string;
|
|
1353
|
+
logIndex: string;
|
|
1208
1354
|
id: string;
|
|
1209
1355
|
blockNumber: string;
|
|
1210
1356
|
transactionHash: string;
|
|
@@ -1222,6 +1368,8 @@ export declare type EventsQuery = {
|
|
|
1222
1368
|
forwarder: string;
|
|
1223
1369
|
enabled: boolean;
|
|
1224
1370
|
superToken: string;
|
|
1371
|
+
order: string;
|
|
1372
|
+
logIndex: string;
|
|
1225
1373
|
id: string;
|
|
1226
1374
|
blockNumber: string;
|
|
1227
1375
|
transactionHash: string;
|