@superfluid-finance/sdk-core 0.4.1-dev.db8e1dc.0 → 0.4.1-dev.f54cc8b.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.umd.js +77 -38
- package/dist/main/events.d.ts +1 -0
- package/dist/main/events.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.js +39 -0
- package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/main/subgraph/events/events.generated.d.ts +74 -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 +38 -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 +351 -39
- package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
- package/dist/module/events.d.ts +1 -0
- package/dist/module/events.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.js +39 -0
- package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/module/subgraph/events/events.generated.d.ts +74 -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 +38 -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 +351 -39
- package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -15,6 +15,7 @@ export declare type FlowUpdatedEventsQuery = {
|
|
|
15
15
|
blockNumber: string;
|
|
16
16
|
transactionHash: string;
|
|
17
17
|
timestamp: string;
|
|
18
|
+
logIndex: string;
|
|
18
19
|
userData: string;
|
|
19
20
|
type: number;
|
|
20
21
|
token: string;
|
|
@@ -40,6 +41,7 @@ export declare type FlowOperatorUpdatedEventsQuery = {
|
|
|
40
41
|
blockNumber: string;
|
|
41
42
|
transactionHash: string;
|
|
42
43
|
timestamp: string;
|
|
44
|
+
logIndex: string;
|
|
43
45
|
token: string;
|
|
44
46
|
sender: string;
|
|
45
47
|
permissions: number;
|
|
@@ -61,6 +63,7 @@ export declare type IndexCreatedEventsQuery = {
|
|
|
61
63
|
blockNumber: string;
|
|
62
64
|
transactionHash: string;
|
|
63
65
|
timestamp: string;
|
|
66
|
+
logIndex: string;
|
|
64
67
|
userData: string;
|
|
65
68
|
token: string;
|
|
66
69
|
publisher: string;
|
|
@@ -85,6 +88,7 @@ export declare type IndexDistributionClaimedEventsQuery = {
|
|
|
85
88
|
blockNumber: string;
|
|
86
89
|
transactionHash: string;
|
|
87
90
|
timestamp: string;
|
|
91
|
+
logIndex: string;
|
|
88
92
|
token: string;
|
|
89
93
|
subscriber: string;
|
|
90
94
|
publisher: string;
|
|
@@ -110,6 +114,7 @@ export declare type IndexUpdatedEventsQuery = {
|
|
|
110
114
|
blockNumber: string;
|
|
111
115
|
transactionHash: string;
|
|
112
116
|
timestamp: string;
|
|
117
|
+
logIndex: string;
|
|
113
118
|
userData: string;
|
|
114
119
|
totalUnitsPending: string;
|
|
115
120
|
totalUnitsApproved: string;
|
|
@@ -137,6 +142,7 @@ export declare type IndexSubscribedEventsQuery = {
|
|
|
137
142
|
blockNumber: string;
|
|
138
143
|
transactionHash: string;
|
|
139
144
|
timestamp: string;
|
|
145
|
+
logIndex: string;
|
|
140
146
|
id: string;
|
|
141
147
|
userData: string;
|
|
142
148
|
token: string;
|
|
@@ -163,6 +169,7 @@ export declare type IndexUnitsUpdatedEventsQuery = {
|
|
|
163
169
|
blockNumber: string;
|
|
164
170
|
transactionHash: string;
|
|
165
171
|
timestamp: string;
|
|
172
|
+
logIndex: string;
|
|
166
173
|
userData: string;
|
|
167
174
|
units: string;
|
|
168
175
|
token: string;
|
|
@@ -190,6 +197,7 @@ export declare type IndexUnsubscribedEventsQuery = {
|
|
|
190
197
|
blockNumber: string;
|
|
191
198
|
transactionHash: string;
|
|
192
199
|
timestamp: string;
|
|
200
|
+
logIndex: string;
|
|
193
201
|
userData: string;
|
|
194
202
|
token: string;
|
|
195
203
|
subscriber: string;
|
|
@@ -215,6 +223,7 @@ export declare type SubscriptionApprovedEventsQuery = {
|
|
|
215
223
|
blockNumber: string;
|
|
216
224
|
transactionHash: string;
|
|
217
225
|
timestamp: string;
|
|
226
|
+
logIndex: string;
|
|
218
227
|
userData: string;
|
|
219
228
|
token: string;
|
|
220
229
|
subscriber: string;
|
|
@@ -240,6 +249,7 @@ export declare type SubscriptionDistributionClaimedEventsQuery = {
|
|
|
240
249
|
blockNumber: string;
|
|
241
250
|
transactionHash: string;
|
|
242
251
|
timestamp: string;
|
|
252
|
+
logIndex: string;
|
|
243
253
|
token: string;
|
|
244
254
|
subscriber: string;
|
|
245
255
|
publisher: string;
|
|
@@ -265,6 +275,7 @@ export declare type SubscriptionRevokedEventsQuery = {
|
|
|
265
275
|
blockNumber: string;
|
|
266
276
|
transactionHash: string;
|
|
267
277
|
timestamp: string;
|
|
278
|
+
logIndex: string;
|
|
268
279
|
userData: string;
|
|
269
280
|
subscriber: string;
|
|
270
281
|
publisher: string;
|
|
@@ -290,6 +301,7 @@ export declare type SubscriptionUnitsUpdatedEventsQuery = {
|
|
|
290
301
|
blockNumber: string;
|
|
291
302
|
transactionHash: string;
|
|
292
303
|
timestamp: string;
|
|
304
|
+
logIndex: string;
|
|
293
305
|
userData: string;
|
|
294
306
|
units: string;
|
|
295
307
|
token: string;
|
|
@@ -317,6 +329,7 @@ export declare type TransferEventsQuery = {
|
|
|
317
329
|
blockNumber: string;
|
|
318
330
|
transactionHash: string;
|
|
319
331
|
timestamp: string;
|
|
332
|
+
logIndex: string;
|
|
320
333
|
value: string;
|
|
321
334
|
token: string;
|
|
322
335
|
to: {
|
|
@@ -342,6 +355,7 @@ export declare type TokenUpgradedEventsQuery = {
|
|
|
342
355
|
blockNumber: string;
|
|
343
356
|
transactionHash: string;
|
|
344
357
|
timestamp: string;
|
|
358
|
+
logIndex: string;
|
|
345
359
|
amount: string;
|
|
346
360
|
token: string;
|
|
347
361
|
account: {
|
|
@@ -363,6 +377,7 @@ export declare type TokenDowngradedEventsQuery = {
|
|
|
363
377
|
id: string;
|
|
364
378
|
transactionHash: string;
|
|
365
379
|
timestamp: string;
|
|
380
|
+
logIndex: string;
|
|
366
381
|
token: string;
|
|
367
382
|
blockNumber: string;
|
|
368
383
|
amount: string;
|
|
@@ -386,6 +401,7 @@ export declare type AgreementClassRegisteredEventsQuery = {
|
|
|
386
401
|
blockNumber: string;
|
|
387
402
|
transactionHash: string;
|
|
388
403
|
timestamp: string;
|
|
404
|
+
logIndex: string;
|
|
389
405
|
code: string;
|
|
390
406
|
agreementType: string;
|
|
391
407
|
}>;
|
|
@@ -405,6 +421,7 @@ export declare type AgreementClassUpdatedEventsQuery = {
|
|
|
405
421
|
blockNumber: string;
|
|
406
422
|
transactionHash: string;
|
|
407
423
|
timestamp: string;
|
|
424
|
+
logIndex: string;
|
|
408
425
|
code: string;
|
|
409
426
|
agreementType: string;
|
|
410
427
|
}>;
|
|
@@ -423,6 +440,7 @@ export declare type AppRegisteredEventsQuery = {
|
|
|
423
440
|
id: string;
|
|
424
441
|
transactionHash: string;
|
|
425
442
|
timestamp: string;
|
|
443
|
+
logIndex: string;
|
|
426
444
|
blockNumber: string;
|
|
427
445
|
app: string;
|
|
428
446
|
}>;
|
|
@@ -442,6 +460,7 @@ export declare type GovernanceReplacedEventsQuery = {
|
|
|
442
460
|
blockNumber: string;
|
|
443
461
|
transactionHash: string;
|
|
444
462
|
timestamp: string;
|
|
463
|
+
logIndex: string;
|
|
445
464
|
oldGovernance: string;
|
|
446
465
|
newGovernance: string;
|
|
447
466
|
}>;
|
|
@@ -461,6 +480,7 @@ export declare type JailEventsQuery = {
|
|
|
461
480
|
blockNumber: string;
|
|
462
481
|
transactionHash: string;
|
|
463
482
|
timestamp: string;
|
|
483
|
+
logIndex: string;
|
|
464
484
|
reason: string;
|
|
465
485
|
app: string;
|
|
466
486
|
}>;
|
|
@@ -480,6 +500,7 @@ export declare type SuperTokenFactoryUpdatedEventsQuery = {
|
|
|
480
500
|
blockNumber: string;
|
|
481
501
|
transactionHash: string;
|
|
482
502
|
timestamp: string;
|
|
503
|
+
logIndex: string;
|
|
483
504
|
newFactory: string;
|
|
484
505
|
}>;
|
|
485
506
|
};
|
|
@@ -498,6 +519,7 @@ export declare type SuperTokenLogicUpdatedEventsQuery = {
|
|
|
498
519
|
blockNumber: string;
|
|
499
520
|
transactionHash: string;
|
|
500
521
|
timestamp: string;
|
|
522
|
+
logIndex: string;
|
|
501
523
|
token: string;
|
|
502
524
|
code: string;
|
|
503
525
|
}>;
|
|
@@ -517,6 +539,7 @@ export declare type RoleAdminChangedEventsQuery = {
|
|
|
517
539
|
blockNumber: string;
|
|
518
540
|
transactionHash: string;
|
|
519
541
|
timestamp: string;
|
|
542
|
+
logIndex: string;
|
|
520
543
|
role: string;
|
|
521
544
|
previousAdminRole: string;
|
|
522
545
|
newAdminRole: string;
|
|
@@ -537,6 +560,7 @@ export declare type RoleGrantedEventsQuery = {
|
|
|
537
560
|
blockNumber: string;
|
|
538
561
|
transactionHash: string;
|
|
539
562
|
timestamp: string;
|
|
563
|
+
logIndex: string;
|
|
540
564
|
sender: string;
|
|
541
565
|
role: string;
|
|
542
566
|
account: string;
|
|
@@ -557,6 +581,7 @@ export declare type RoleRevokedEventsQuery = {
|
|
|
557
581
|
blockNumber: string;
|
|
558
582
|
transactionHash: string;
|
|
559
583
|
timestamp: string;
|
|
584
|
+
logIndex: string;
|
|
560
585
|
sender: string;
|
|
561
586
|
role: string;
|
|
562
587
|
account: string;
|
|
@@ -577,6 +602,7 @@ export declare type CfaV1LiquidationPeriodChangedEventsQuery = {
|
|
|
577
602
|
blockNumber: string;
|
|
578
603
|
transactionHash: string;
|
|
579
604
|
timestamp: string;
|
|
605
|
+
logIndex: string;
|
|
580
606
|
superToken: string;
|
|
581
607
|
host: string;
|
|
582
608
|
liquidationPeriod: string;
|
|
@@ -598,6 +624,7 @@ export declare type ConfigChangedEventsQuery = {
|
|
|
598
624
|
blockNumber: string;
|
|
599
625
|
transactionHash: string;
|
|
600
626
|
timestamp: string;
|
|
627
|
+
logIndex: string;
|
|
601
628
|
value: string;
|
|
602
629
|
superToken: string;
|
|
603
630
|
key: string;
|
|
@@ -620,6 +647,7 @@ export declare type RewardAddressChangedEventsQuery = {
|
|
|
620
647
|
blockNumber: string;
|
|
621
648
|
transactionHash: string;
|
|
622
649
|
timestamp: string;
|
|
650
|
+
logIndex: string;
|
|
623
651
|
superToken: string;
|
|
624
652
|
rewardAddress: string;
|
|
625
653
|
isKeySet: boolean;
|
|
@@ -641,6 +669,7 @@ export declare type TrustedForwarderChangedEventsQuery = {
|
|
|
641
669
|
blockNumber: string;
|
|
642
670
|
transactionHash: string;
|
|
643
671
|
timestamp: string;
|
|
672
|
+
logIndex: string;
|
|
644
673
|
isKeySet: boolean;
|
|
645
674
|
host: string;
|
|
646
675
|
forwarder: string;
|
|
@@ -663,6 +692,7 @@ export declare type AgreementLiquidatedByEventsQuery = {
|
|
|
663
692
|
blockNumber: string;
|
|
664
693
|
transactionHash: string;
|
|
665
694
|
timestamp: string;
|
|
695
|
+
logIndex: string;
|
|
666
696
|
token: string;
|
|
667
697
|
rewardAmount: string;
|
|
668
698
|
penaltyAccount: string;
|
|
@@ -688,6 +718,7 @@ export declare type BurnedEventsQuery = {
|
|
|
688
718
|
blockNumber: string;
|
|
689
719
|
transactionHash: string;
|
|
690
720
|
timestamp: string;
|
|
721
|
+
logIndex: string;
|
|
691
722
|
operatorData: string;
|
|
692
723
|
operator: string;
|
|
693
724
|
from: string;
|
|
@@ -710,6 +741,7 @@ export declare type MintedEventsQuery = {
|
|
|
710
741
|
blockNumber: string;
|
|
711
742
|
transactionHash: string;
|
|
712
743
|
timestamp: string;
|
|
744
|
+
logIndex: string;
|
|
713
745
|
operatorData: string;
|
|
714
746
|
operator: string;
|
|
715
747
|
data: string;
|
|
@@ -732,6 +764,7 @@ export declare type SentEventsQuery = {
|
|
|
732
764
|
blockNumber: string;
|
|
733
765
|
transactionHash: string;
|
|
734
766
|
timestamp: string;
|
|
767
|
+
logIndex: string;
|
|
735
768
|
to: string;
|
|
736
769
|
operatorData: string;
|
|
737
770
|
operator: string;
|
|
@@ -754,6 +787,7 @@ export declare type CustomSuperTokenCreatedEventsQuery = {
|
|
|
754
787
|
blockNumber: string;
|
|
755
788
|
transactionHash: string;
|
|
756
789
|
timestamp: string;
|
|
790
|
+
logIndex: string;
|
|
757
791
|
token: string;
|
|
758
792
|
}>;
|
|
759
793
|
};
|
|
@@ -772,6 +806,7 @@ export declare type SuperTokenCreatedEventsQuery = {
|
|
|
772
806
|
blockNumber: string;
|
|
773
807
|
transactionHash: string;
|
|
774
808
|
timestamp: string;
|
|
809
|
+
logIndex: string;
|
|
775
810
|
token: string;
|
|
776
811
|
}>;
|
|
777
812
|
};
|
|
@@ -790,6 +825,7 @@ export declare type SuperTokenLogicCreatedEventsQuery = {
|
|
|
790
825
|
blockNumber: string;
|
|
791
826
|
transactionHash: string;
|
|
792
827
|
timestamp: string;
|
|
828
|
+
logIndex: string;
|
|
793
829
|
tokenLogic: string;
|
|
794
830
|
}>;
|
|
795
831
|
};
|
|
@@ -806,6 +842,7 @@ export declare type EventsQuery = {
|
|
|
806
842
|
__typename: 'AgreementClassRegisteredEvent';
|
|
807
843
|
code: string;
|
|
808
844
|
agreementType: string;
|
|
845
|
+
logIndex: string;
|
|
809
846
|
id: string;
|
|
810
847
|
blockNumber: string;
|
|
811
848
|
transactionHash: string;
|
|
@@ -814,6 +851,7 @@ export declare type EventsQuery = {
|
|
|
814
851
|
__typename: 'AgreementClassUpdatedEvent';
|
|
815
852
|
code: string;
|
|
816
853
|
agreementType: string;
|
|
854
|
+
logIndex: string;
|
|
817
855
|
id: string;
|
|
818
856
|
blockNumber: string;
|
|
819
857
|
transactionHash: string;
|
|
@@ -828,6 +866,7 @@ export declare type EventsQuery = {
|
|
|
828
866
|
bailoutAmount: string;
|
|
829
867
|
agreementId: string;
|
|
830
868
|
agreementClass: string;
|
|
869
|
+
logIndex: string;
|
|
831
870
|
id: string;
|
|
832
871
|
blockNumber: string;
|
|
833
872
|
transactionHash: string;
|
|
@@ -844,6 +883,7 @@ export declare type EventsQuery = {
|
|
|
844
883
|
targetAccountBalanceDelta: string;
|
|
845
884
|
version: string;
|
|
846
885
|
liquidationType: number;
|
|
886
|
+
logIndex: string;
|
|
847
887
|
id: string;
|
|
848
888
|
blockNumber: string;
|
|
849
889
|
transactionHash: string;
|
|
@@ -851,6 +891,7 @@ export declare type EventsQuery = {
|
|
|
851
891
|
} | {
|
|
852
892
|
__typename: 'AppRegisteredEvent';
|
|
853
893
|
app: string;
|
|
894
|
+
logIndex: string;
|
|
854
895
|
id: string;
|
|
855
896
|
blockNumber: string;
|
|
856
897
|
transactionHash: string;
|
|
@@ -862,6 +903,7 @@ export declare type EventsQuery = {
|
|
|
862
903
|
from: string;
|
|
863
904
|
data: string;
|
|
864
905
|
amount: string;
|
|
906
|
+
logIndex: string;
|
|
865
907
|
id: string;
|
|
866
908
|
blockNumber: string;
|
|
867
909
|
transactionHash: string;
|
|
@@ -872,6 +914,7 @@ export declare type EventsQuery = {
|
|
|
872
914
|
host: string;
|
|
873
915
|
liquidationPeriod: string;
|
|
874
916
|
isKeySet: boolean;
|
|
917
|
+
logIndex: string;
|
|
875
918
|
id: string;
|
|
876
919
|
blockNumber: string;
|
|
877
920
|
transactionHash: string;
|
|
@@ -883,6 +926,7 @@ export declare type EventsQuery = {
|
|
|
883
926
|
key: string;
|
|
884
927
|
isKeySet: boolean;
|
|
885
928
|
host: string;
|
|
929
|
+
logIndex: string;
|
|
886
930
|
id: string;
|
|
887
931
|
blockNumber: string;
|
|
888
932
|
transactionHash: string;
|
|
@@ -890,6 +934,7 @@ export declare type EventsQuery = {
|
|
|
890
934
|
} | {
|
|
891
935
|
__typename: 'CustomSuperTokenCreatedEvent';
|
|
892
936
|
token: string;
|
|
937
|
+
logIndex: string;
|
|
893
938
|
id: string;
|
|
894
939
|
blockNumber: string;
|
|
895
940
|
transactionHash: string;
|
|
@@ -900,6 +945,7 @@ export declare type EventsQuery = {
|
|
|
900
945
|
sender: string;
|
|
901
946
|
permissions: number;
|
|
902
947
|
flowRateAllowance: string;
|
|
948
|
+
logIndex: string;
|
|
903
949
|
id: string;
|
|
904
950
|
blockNumber: string;
|
|
905
951
|
transactionHash: string;
|
|
@@ -914,6 +960,7 @@ export declare type EventsQuery = {
|
|
|
914
960
|
flowRate: string;
|
|
915
961
|
flowOperator: string;
|
|
916
962
|
deposit: string;
|
|
963
|
+
logIndex: string;
|
|
917
964
|
id: string;
|
|
918
965
|
blockNumber: string;
|
|
919
966
|
transactionHash: string;
|
|
@@ -922,6 +969,7 @@ export declare type EventsQuery = {
|
|
|
922
969
|
__typename: 'GovernanceReplacedEvent';
|
|
923
970
|
oldGovernance: string;
|
|
924
971
|
newGovernance: string;
|
|
972
|
+
logIndex: string;
|
|
925
973
|
id: string;
|
|
926
974
|
blockNumber: string;
|
|
927
975
|
transactionHash: string;
|
|
@@ -932,6 +980,7 @@ export declare type EventsQuery = {
|
|
|
932
980
|
token: string;
|
|
933
981
|
publisher: string;
|
|
934
982
|
indexId: string;
|
|
983
|
+
logIndex: string;
|
|
935
984
|
id: string;
|
|
936
985
|
blockNumber: string;
|
|
937
986
|
transactionHash: string;
|
|
@@ -946,6 +995,7 @@ export declare type EventsQuery = {
|
|
|
946
995
|
publisher: string;
|
|
947
996
|
indexId: string;
|
|
948
997
|
amount: string;
|
|
998
|
+
logIndex: string;
|
|
949
999
|
id: string;
|
|
950
1000
|
blockNumber: string;
|
|
951
1001
|
transactionHash: string;
|
|
@@ -960,6 +1010,7 @@ export declare type EventsQuery = {
|
|
|
960
1010
|
subscriber: string;
|
|
961
1011
|
publisher: string;
|
|
962
1012
|
indexId: string;
|
|
1013
|
+
logIndex: string;
|
|
963
1014
|
id: string;
|
|
964
1015
|
blockNumber: string;
|
|
965
1016
|
transactionHash: string;
|
|
@@ -976,6 +1027,7 @@ export declare type EventsQuery = {
|
|
|
976
1027
|
publisher: string;
|
|
977
1028
|
oldUnits: string;
|
|
978
1029
|
indexId: string;
|
|
1030
|
+
logIndex: string;
|
|
979
1031
|
id: string;
|
|
980
1032
|
blockNumber: string;
|
|
981
1033
|
transactionHash: string;
|
|
@@ -990,6 +1042,7 @@ export declare type EventsQuery = {
|
|
|
990
1042
|
subscriber: string;
|
|
991
1043
|
publisher: string;
|
|
992
1044
|
indexId: string;
|
|
1045
|
+
logIndex: string;
|
|
993
1046
|
id: string;
|
|
994
1047
|
blockNumber: string;
|
|
995
1048
|
transactionHash: string;
|
|
@@ -1007,6 +1060,7 @@ export declare type EventsQuery = {
|
|
|
1007
1060
|
oldIndexValue: string;
|
|
1008
1061
|
newIndexValue: string;
|
|
1009
1062
|
indexId: string;
|
|
1063
|
+
logIndex: string;
|
|
1010
1064
|
id: string;
|
|
1011
1065
|
blockNumber: string;
|
|
1012
1066
|
transactionHash: string;
|
|
@@ -1018,6 +1072,7 @@ export declare type EventsQuery = {
|
|
|
1018
1072
|
__typename: 'JailEvent';
|
|
1019
1073
|
reason: string;
|
|
1020
1074
|
app: string;
|
|
1075
|
+
logIndex: string;
|
|
1021
1076
|
id: string;
|
|
1022
1077
|
blockNumber: string;
|
|
1023
1078
|
transactionHash: string;
|
|
@@ -1029,6 +1084,7 @@ export declare type EventsQuery = {
|
|
|
1029
1084
|
data: string;
|
|
1030
1085
|
amount: string;
|
|
1031
1086
|
to: string;
|
|
1087
|
+
logIndex: string;
|
|
1032
1088
|
id: string;
|
|
1033
1089
|
blockNumber: string;
|
|
1034
1090
|
transactionHash: string;
|
|
@@ -1040,6 +1096,7 @@ export declare type EventsQuery = {
|
|
|
1040
1096
|
isKeySet: boolean;
|
|
1041
1097
|
liquidationPeriod: string;
|
|
1042
1098
|
patricianPeriod: string;
|
|
1099
|
+
logIndex: string;
|
|
1043
1100
|
id: string;
|
|
1044
1101
|
blockNumber: string;
|
|
1045
1102
|
transactionHash: string;
|
|
@@ -1050,6 +1107,7 @@ export declare type EventsQuery = {
|
|
|
1050
1107
|
rewardAddress: string;
|
|
1051
1108
|
isKeySet: boolean;
|
|
1052
1109
|
host: string;
|
|
1110
|
+
logIndex: string;
|
|
1053
1111
|
id: string;
|
|
1054
1112
|
blockNumber: string;
|
|
1055
1113
|
transactionHash: string;
|
|
@@ -1059,6 +1117,7 @@ export declare type EventsQuery = {
|
|
|
1059
1117
|
role: string;
|
|
1060
1118
|
previousAdminRole: string;
|
|
1061
1119
|
newAdminRole: string;
|
|
1120
|
+
logIndex: string;
|
|
1062
1121
|
id: string;
|
|
1063
1122
|
blockNumber: string;
|
|
1064
1123
|
transactionHash: string;
|
|
@@ -1068,6 +1127,7 @@ export declare type EventsQuery = {
|
|
|
1068
1127
|
sender: string;
|
|
1069
1128
|
role: string;
|
|
1070
1129
|
account: string;
|
|
1130
|
+
logIndex: string;
|
|
1071
1131
|
id: string;
|
|
1072
1132
|
blockNumber: string;
|
|
1073
1133
|
transactionHash: string;
|
|
@@ -1077,6 +1137,7 @@ export declare type EventsQuery = {
|
|
|
1077
1137
|
sender: string;
|
|
1078
1138
|
role: string;
|
|
1079
1139
|
account: string;
|
|
1140
|
+
logIndex: string;
|
|
1080
1141
|
id: string;
|
|
1081
1142
|
blockNumber: string;
|
|
1082
1143
|
transactionHash: string;
|
|
@@ -1088,6 +1149,7 @@ export declare type EventsQuery = {
|
|
|
1088
1149
|
operator: string;
|
|
1089
1150
|
data: string;
|
|
1090
1151
|
amount: string;
|
|
1152
|
+
logIndex: string;
|
|
1091
1153
|
id: string;
|
|
1092
1154
|
blockNumber: string;
|
|
1093
1155
|
transactionHash: string;
|
|
@@ -1099,6 +1161,7 @@ export declare type EventsQuery = {
|
|
|
1099
1161
|
subscriber: string;
|
|
1100
1162
|
publisher: string;
|
|
1101
1163
|
indexId: string;
|
|
1164
|
+
logIndex: string;
|
|
1102
1165
|
id: string;
|
|
1103
1166
|
blockNumber: string;
|
|
1104
1167
|
transactionHash: string;
|
|
@@ -1113,6 +1176,7 @@ export declare type EventsQuery = {
|
|
|
1113
1176
|
publisher: string;
|
|
1114
1177
|
indexId: string;
|
|
1115
1178
|
amount: string;
|
|
1179
|
+
logIndex: string;
|
|
1116
1180
|
id: string;
|
|
1117
1181
|
blockNumber: string;
|
|
1118
1182
|
transactionHash: string;
|
|
@@ -1127,6 +1191,7 @@ export declare type EventsQuery = {
|
|
|
1127
1191
|
publisher: string;
|
|
1128
1192
|
indexId: string;
|
|
1129
1193
|
token: string;
|
|
1194
|
+
logIndex: string;
|
|
1130
1195
|
id: string;
|
|
1131
1196
|
blockNumber: string;
|
|
1132
1197
|
transactionHash: string;
|
|
@@ -1143,6 +1208,7 @@ export declare type EventsQuery = {
|
|
|
1143
1208
|
publisher: string;
|
|
1144
1209
|
oldUnits: string;
|
|
1145
1210
|
indexId: string;
|
|
1211
|
+
logIndex: string;
|
|
1146
1212
|
id: string;
|
|
1147
1213
|
blockNumber: string;
|
|
1148
1214
|
transactionHash: string;
|
|
@@ -1153,6 +1219,7 @@ export declare type EventsQuery = {
|
|
|
1153
1219
|
} | {
|
|
1154
1220
|
__typename: 'SuperTokenCreatedEvent';
|
|
1155
1221
|
token: string;
|
|
1222
|
+
logIndex: string;
|
|
1156
1223
|
id: string;
|
|
1157
1224
|
blockNumber: string;
|
|
1158
1225
|
transactionHash: string;
|
|
@@ -1160,6 +1227,7 @@ export declare type EventsQuery = {
|
|
|
1160
1227
|
} | {
|
|
1161
1228
|
__typename: 'SuperTokenFactoryUpdatedEvent';
|
|
1162
1229
|
newFactory: string;
|
|
1230
|
+
logIndex: string;
|
|
1163
1231
|
id: string;
|
|
1164
1232
|
blockNumber: string;
|
|
1165
1233
|
transactionHash: string;
|
|
@@ -1167,6 +1235,7 @@ export declare type EventsQuery = {
|
|
|
1167
1235
|
} | {
|
|
1168
1236
|
__typename: 'SuperTokenLogicCreatedEvent';
|
|
1169
1237
|
tokenLogic: string;
|
|
1238
|
+
logIndex: string;
|
|
1170
1239
|
id: string;
|
|
1171
1240
|
blockNumber: string;
|
|
1172
1241
|
transactionHash: string;
|
|
@@ -1175,6 +1244,7 @@ export declare type EventsQuery = {
|
|
|
1175
1244
|
__typename: 'SuperTokenLogicUpdatedEvent';
|
|
1176
1245
|
token: string;
|
|
1177
1246
|
code: string;
|
|
1247
|
+
logIndex: string;
|
|
1178
1248
|
id: string;
|
|
1179
1249
|
blockNumber: string;
|
|
1180
1250
|
transactionHash: string;
|
|
@@ -1183,6 +1253,7 @@ export declare type EventsQuery = {
|
|
|
1183
1253
|
__typename: 'TokenDowngradedEvent';
|
|
1184
1254
|
token: string;
|
|
1185
1255
|
amount: string;
|
|
1256
|
+
logIndex: string;
|
|
1186
1257
|
id: string;
|
|
1187
1258
|
blockNumber: string;
|
|
1188
1259
|
transactionHash: string;
|
|
@@ -1194,6 +1265,7 @@ export declare type EventsQuery = {
|
|
|
1194
1265
|
__typename: 'TokenUpgradedEvent';
|
|
1195
1266
|
amount: string;
|
|
1196
1267
|
token: string;
|
|
1268
|
+
logIndex: string;
|
|
1197
1269
|
id: string;
|
|
1198
1270
|
blockNumber: string;
|
|
1199
1271
|
transactionHash: string;
|
|
@@ -1205,6 +1277,7 @@ export declare type EventsQuery = {
|
|
|
1205
1277
|
__typename: 'TransferEvent';
|
|
1206
1278
|
value: string;
|
|
1207
1279
|
token: string;
|
|
1280
|
+
logIndex: string;
|
|
1208
1281
|
id: string;
|
|
1209
1282
|
blockNumber: string;
|
|
1210
1283
|
transactionHash: string;
|
|
@@ -1222,6 +1295,7 @@ export declare type EventsQuery = {
|
|
|
1222
1295
|
forwarder: string;
|
|
1223
1296
|
enabled: boolean;
|
|
1224
1297
|
superToken: string;
|
|
1298
|
+
logIndex: string;
|
|
1225
1299
|
id: string;
|
|
1226
1300
|
blockNumber: string;
|
|
1227
1301
|
transactionHash: string;
|