@eluvio/elv-client-js 4.0.76 → 4.0.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/ElvClient-min.js +18 -10
  2. package/dist/ElvClient-node-min.js +18 -10
  3. package/dist/ElvFrameClient-min.js +9 -9
  4. package/dist/ElvPermissionsClient-min.js +10 -10
  5. package/dist/ElvWalletClient-min.js +18 -10
  6. package/dist/ElvWalletClient-node-min.js +18 -10
  7. package/dist/src/AuthorizationClient.js +18 -12
  8. package/dist/src/Crypto.js +2 -2
  9. package/dist/src/ElvClient.js +111 -76
  10. package/dist/src/EthClient.js +2 -2
  11. package/dist/src/FrameClient.js +4 -4
  12. package/dist/src/PermissionsClient.js +2 -2
  13. package/dist/src/Utils.js +6 -5
  14. package/dist/src/abr_profiles/abr_profile_live_drm.js +1621 -0
  15. package/dist/src/abr_profiles/abr_profile_live_to_vod.js +1599 -0
  16. package/dist/src/client/ABRPublishing.js +2 -2
  17. package/dist/src/client/AccessGroups.js +19 -20
  18. package/dist/src/client/ContentAccess.js +2 -2
  19. package/dist/src/client/ContentManagement.js +3 -3
  20. package/dist/src/client/Contracts.js +235 -203
  21. package/dist/src/client/Files.js +2 -2
  22. package/dist/src/client/LiveConf.js +1 -1
  23. package/dist/src/client/LiveStream.js +1157 -1153
  24. package/dist/src/client/NFT.js +2 -2
  25. package/dist/src/contracts/v3b/BaseAccessControlGroup.js +1704 -0
  26. package/dist/src/walletClient/ClientMethods.js +423 -280
  27. package/dist/src/walletClient/Profile.js +2 -2
  28. package/dist/src/walletClient/Utils.js +7 -3
  29. package/dist/src/walletClient/index.js +124 -44
  30. package/package.json +2 -1
  31. package/src/FrameClient.js +3 -0
  32. package/src/abr_profiles/abr_profile_live_drm.js +1907 -0
  33. package/src/abr_profiles/abr_profile_live_to_vod.js +1885 -0
  34. package/src/client/LiveConf.js +1 -1
  35. package/src/client/LiveStream.js +809 -936
@@ -0,0 +1,1704 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "parentAddress",
6
+ "outputs": [{
7
+ "name": "",
8
+ "type": "address"
9
+ }],
10
+ "payable": false,
11
+ "stateMutability": "view",
12
+ "type": "function"
13
+ }, {
14
+ "constant": true,
15
+ "inputs": [],
16
+ "name": "creator",
17
+ "outputs": [{
18
+ "name": "",
19
+ "type": "address"
20
+ }],
21
+ "payable": false,
22
+ "stateMutability": "view",
23
+ "type": "function"
24
+ }, {
25
+ "constant": false,
26
+ "inputs": [],
27
+ "name": "cleanUpContentObjects",
28
+ "outputs": [{
29
+ "name": "",
30
+ "type": "uint256"
31
+ }],
32
+ "payable": false,
33
+ "stateMutability": "nonpayable",
34
+ "type": "function"
35
+ }, {
36
+ "constant": false,
37
+ "inputs": [{
38
+ "name": "content_space",
39
+ "type": "address"
40
+ }],
41
+ "name": "setContentSpace",
42
+ "outputs": [],
43
+ "payable": false,
44
+ "stateMutability": "nonpayable",
45
+ "type": "function"
46
+ }, {
47
+ "constant": true,
48
+ "inputs": [{
49
+ "name": "obj",
50
+ "type": "address"
51
+ }],
52
+ "name": "getContractRights",
53
+ "outputs": [{
54
+ "name": "",
55
+ "type": "uint8"
56
+ }],
57
+ "payable": false,
58
+ "stateMutability": "view",
59
+ "type": "function"
60
+ }, {
61
+ "constant": true,
62
+ "inputs": [],
63
+ "name": "CATEGORY_CONTENT_OBJECT",
64
+ "outputs": [{
65
+ "name": "",
66
+ "type": "uint8"
67
+ }],
68
+ "payable": false,
69
+ "stateMutability": "view",
70
+ "type": "function"
71
+ }, {
72
+ "constant": false,
73
+ "inputs": [{
74
+ "name": "candidate",
75
+ "type": "address"
76
+ }],
77
+ "name": "grantAccess",
78
+ "outputs": [],
79
+ "payable": false,
80
+ "stateMutability": "nonpayable",
81
+ "type": "function"
82
+ }, {
83
+ "constant": true,
84
+ "inputs": [],
85
+ "name": "getAccessGroupsLength",
86
+ "outputs": [{
87
+ "name": "",
88
+ "type": "uint256"
89
+ }],
90
+ "payable": false,
91
+ "stateMutability": "view",
92
+ "type": "function"
93
+ }, {
94
+ "constant": false,
95
+ "inputs": [{
96
+ "name": "stakeholder",
97
+ "type": "address"
98
+ }, {
99
+ "name": "access_type",
100
+ "type": "uint8"
101
+ }, {
102
+ "name": "access",
103
+ "type": "uint8"
104
+ }],
105
+ "name": "setRights",
106
+ "outputs": [],
107
+ "payable": false,
108
+ "stateMutability": "nonpayable",
109
+ "type": "function"
110
+ }, {
111
+ "constant": true,
112
+ "inputs": [],
113
+ "name": "CAN_SEE",
114
+ "outputs": [{
115
+ "name": "",
116
+ "type": "uint8"
117
+ }],
118
+ "payable": false,
119
+ "stateMutability": "view",
120
+ "type": "function"
121
+ }, {
122
+ "constant": true,
123
+ "inputs": [],
124
+ "name": "CATEGORY_GROUP",
125
+ "outputs": [{
126
+ "name": "",
127
+ "type": "uint8"
128
+ }],
129
+ "payable": false,
130
+ "stateMutability": "view",
131
+ "type": "function"
132
+ }, {
133
+ "constant": true,
134
+ "inputs": [],
135
+ "name": "oauthEnabled",
136
+ "outputs": [{
137
+ "name": "",
138
+ "type": "bool"
139
+ }],
140
+ "payable": false,
141
+ "stateMutability": "view",
142
+ "type": "function"
143
+ }, {
144
+ "constant": true,
145
+ "inputs": [],
146
+ "name": "canConfirm",
147
+ "outputs": [{
148
+ "name": "",
149
+ "type": "bool"
150
+ }],
151
+ "payable": false,
152
+ "stateMutability": "view",
153
+ "type": "function"
154
+ }, {
155
+ "constant": true,
156
+ "inputs": [{
157
+ "name": "group",
158
+ "type": "address"
159
+ }, {
160
+ "name": "access_type",
161
+ "type": "uint8"
162
+ }],
163
+ "name": "checkAccessGroupRights",
164
+ "outputs": [{
165
+ "name": "",
166
+ "type": "bool"
167
+ }],
168
+ "payable": false,
169
+ "stateMutability": "view",
170
+ "type": "function"
171
+ }, {
172
+ "constant": true,
173
+ "inputs": [],
174
+ "name": "CATEGORY_LIBRARY",
175
+ "outputs": [{
176
+ "name": "",
177
+ "type": "uint8"
178
+ }],
179
+ "payable": false,
180
+ "stateMutability": "view",
181
+ "type": "function"
182
+ }, {
183
+ "constant": true,
184
+ "inputs": [],
185
+ "name": "ACCESS_CONFIRMED",
186
+ "outputs": [{
187
+ "name": "",
188
+ "type": "uint8"
189
+ }],
190
+ "payable": false,
191
+ "stateMutability": "view",
192
+ "type": "function"
193
+ }, {
194
+ "constant": false,
195
+ "inputs": [{
196
+ "name": "",
197
+ "type": "bytes32[]"
198
+ }, {
199
+ "name": "",
200
+ "type": "address[]"
201
+ }],
202
+ "name": "accessRequestV3",
203
+ "outputs": [{
204
+ "name": "",
205
+ "type": "bool"
206
+ }],
207
+ "payable": true,
208
+ "stateMutability": "payable",
209
+ "type": "function"
210
+ }, {
211
+ "constant": false,
212
+ "inputs": [{
213
+ "name": "obj",
214
+ "type": "address"
215
+ }, {
216
+ "name": "access_type",
217
+ "type": "uint8"
218
+ }, {
219
+ "name": "access",
220
+ "type": "uint8"
221
+ }],
222
+ "name": "setContractRights",
223
+ "outputs": [],
224
+ "payable": false,
225
+ "stateMutability": "nonpayable",
226
+ "type": "function"
227
+ }, {
228
+ "constant": false,
229
+ "inputs": [{
230
+ "name": "group",
231
+ "type": "address"
232
+ }, {
233
+ "name": "access_type",
234
+ "type": "uint8"
235
+ }, {
236
+ "name": "access",
237
+ "type": "uint8"
238
+ }],
239
+ "name": "setGroupRights",
240
+ "outputs": [],
241
+ "payable": false,
242
+ "stateMutability": "nonpayable",
243
+ "type": "function"
244
+ }, {
245
+ "constant": true,
246
+ "inputs": [{
247
+ "name": "_candidate",
248
+ "type": "address"
249
+ }],
250
+ "name": "isAdmin",
251
+ "outputs": [{
252
+ "name": "",
253
+ "type": "bool"
254
+ }],
255
+ "payable": false,
256
+ "stateMutability": "view",
257
+ "type": "function"
258
+ }, {
259
+ "constant": false,
260
+ "inputs": [{
261
+ "name": "_ident",
262
+ "type": "bytes32"
263
+ }, {
264
+ "name": "_ord",
265
+ "type": "uint8"
266
+ }],
267
+ "name": "setAndGetBit",
268
+ "outputs": [{
269
+ "name": "",
270
+ "type": "bool"
271
+ }],
272
+ "payable": false,
273
+ "stateMutability": "nonpayable",
274
+ "type": "function"
275
+ }, {
276
+ "constant": true,
277
+ "inputs": [],
278
+ "name": "visibility",
279
+ "outputs": [{
280
+ "name": "",
281
+ "type": "uint8"
282
+ }],
283
+ "payable": false,
284
+ "stateMutability": "view",
285
+ "type": "function"
286
+ }, {
287
+ "constant": true,
288
+ "inputs": [{
289
+ "name": "position",
290
+ "type": "uint256"
291
+ }],
292
+ "name": "getAccessGroup",
293
+ "outputs": [{
294
+ "name": "",
295
+ "type": "address"
296
+ }],
297
+ "payable": false,
298
+ "stateMutability": "view",
299
+ "type": "function"
300
+ }, {
301
+ "constant": false,
302
+ "inputs": [{
303
+ "name": "_tenantAddr",
304
+ "type": "address"
305
+ }],
306
+ "name": "setTenant",
307
+ "outputs": [],
308
+ "payable": false,
309
+ "stateMutability": "nonpayable",
310
+ "type": "function"
311
+ }, {
312
+ "constant": false,
313
+ "inputs": [],
314
+ "name": "cleanUpAll",
315
+ "outputs": [{
316
+ "name": "",
317
+ "type": "uint256"
318
+ }, {
319
+ "name": "",
320
+ "type": "uint256"
321
+ }, {
322
+ "name": "",
323
+ "type": "uint256"
324
+ }, {
325
+ "name": "",
326
+ "type": "uint256"
327
+ }, {
328
+ "name": "",
329
+ "type": "uint256"
330
+ }],
331
+ "payable": false,
332
+ "stateMutability": "nonpayable",
333
+ "type": "function"
334
+ }, {
335
+ "constant": true,
336
+ "inputs": [{
337
+ "name": "group",
338
+ "type": "address"
339
+ }],
340
+ "name": "getAccessGroupRights",
341
+ "outputs": [{
342
+ "name": "",
343
+ "type": "uint8"
344
+ }],
345
+ "payable": false,
346
+ "stateMutability": "view",
347
+ "type": "function"
348
+ }, {
349
+ "constant": true,
350
+ "inputs": [],
351
+ "name": "accessGroups",
352
+ "outputs": [{
353
+ "name": "category",
354
+ "type": "uint8"
355
+ }, {
356
+ "name": "length",
357
+ "type": "uint256"
358
+ }],
359
+ "payable": false,
360
+ "stateMutability": "view",
361
+ "type": "function"
362
+ }, {
363
+ "constant": true,
364
+ "inputs": [{
365
+ "name": "_ident",
366
+ "type": "bytes32"
367
+ }, {
368
+ "name": "_ord",
369
+ "type": "uint8"
370
+ }],
371
+ "name": "getBit",
372
+ "outputs": [{
373
+ "name": "",
374
+ "type": "bool"
375
+ }],
376
+ "payable": false,
377
+ "stateMutability": "view",
378
+ "type": "function"
379
+ }, {
380
+ "constant": true,
381
+ "inputs": [],
382
+ "name": "countVersionHashes",
383
+ "outputs": [{
384
+ "name": "",
385
+ "type": "uint256"
386
+ }],
387
+ "payable": false,
388
+ "stateMutability": "view",
389
+ "type": "function"
390
+ }, {
391
+ "constant": true,
392
+ "inputs": [],
393
+ "name": "commitPending",
394
+ "outputs": [{
395
+ "name": "",
396
+ "type": "bool"
397
+ }],
398
+ "payable": false,
399
+ "stateMutability": "view",
400
+ "type": "function"
401
+ }, {
402
+ "constant": false,
403
+ "inputs": [{
404
+ "name": "obj",
405
+ "type": "address"
406
+ }, {
407
+ "name": "access_type",
408
+ "type": "uint8"
409
+ }, {
410
+ "name": "access",
411
+ "type": "uint8"
412
+ }],
413
+ "name": "setContentObjectRights",
414
+ "outputs": [],
415
+ "payable": false,
416
+ "stateMutability": "nonpayable",
417
+ "type": "function"
418
+ }, {
419
+ "constant": true,
420
+ "inputs": [],
421
+ "name": "objectTimestamp",
422
+ "outputs": [{
423
+ "name": "",
424
+ "type": "uint256"
425
+ }],
426
+ "payable": false,
427
+ "stateMutability": "view",
428
+ "type": "function"
429
+ }, {
430
+ "constant": false,
431
+ "inputs": [],
432
+ "name": "kill",
433
+ "outputs": [],
434
+ "payable": false,
435
+ "stateMutability": "nonpayable",
436
+ "type": "function"
437
+ }, {
438
+ "constant": true,
439
+ "inputs": [{
440
+ "name": "_candidate",
441
+ "type": "address"
442
+ }],
443
+ "name": "hasManagerAccess",
444
+ "outputs": [{
445
+ "name": "",
446
+ "type": "bool"
447
+ }],
448
+ "payable": false,
449
+ "stateMutability": "view",
450
+ "type": "function"
451
+ }, {
452
+ "constant": false,
453
+ "inputs": [],
454
+ "name": "confirmCommit",
455
+ "outputs": [{
456
+ "name": "",
457
+ "type": "bool"
458
+ }],
459
+ "payable": true,
460
+ "stateMutability": "payable",
461
+ "type": "function"
462
+ }, {
463
+ "constant": true,
464
+ "inputs": [],
465
+ "name": "ACCESS_TENTATIVE",
466
+ "outputs": [{
467
+ "name": "",
468
+ "type": "uint8"
469
+ }],
470
+ "payable": false,
471
+ "stateMutability": "view",
472
+ "type": "function"
473
+ }, {
474
+ "constant": true,
475
+ "inputs": [],
476
+ "name": "others",
477
+ "outputs": [{
478
+ "name": "category",
479
+ "type": "uint8"
480
+ }, {
481
+ "name": "length",
482
+ "type": "uint256"
483
+ }],
484
+ "payable": false,
485
+ "stateMutability": "view",
486
+ "type": "function"
487
+ }, {
488
+ "constant": true,
489
+ "inputs": [],
490
+ "name": "version",
491
+ "outputs": [{
492
+ "name": "",
493
+ "type": "bytes32"
494
+ }],
495
+ "payable": false,
496
+ "stateMutability": "view",
497
+ "type": "function"
498
+ }, {
499
+ "constant": true,
500
+ "inputs": [],
501
+ "name": "membersNum",
502
+ "outputs": [{
503
+ "name": "",
504
+ "type": "uint256"
505
+ }],
506
+ "payable": false,
507
+ "stateMutability": "view",
508
+ "type": "function"
509
+ }, {
510
+ "constant": true,
511
+ "inputs": [],
512
+ "name": "getContentTypesLength",
513
+ "outputs": [{
514
+ "name": "",
515
+ "type": "uint256"
516
+ }],
517
+ "payable": false,
518
+ "stateMutability": "view",
519
+ "type": "function"
520
+ }, {
521
+ "constant": false,
522
+ "inputs": [{
523
+ "name": "indexType",
524
+ "type": "uint8"
525
+ }, {
526
+ "name": "obj",
527
+ "type": "address"
528
+ }, {
529
+ "name": "access_type",
530
+ "type": "uint8"
531
+ }, {
532
+ "name": "access",
533
+ "type": "uint8"
534
+ }],
535
+ "name": "setEntityRights",
536
+ "outputs": [],
537
+ "payable": false,
538
+ "stateMutability": "nonpayable",
539
+ "type": "function"
540
+ }, {
541
+ "constant": true,
542
+ "inputs": [],
543
+ "name": "TYPE_EDIT",
544
+ "outputs": [{
545
+ "name": "",
546
+ "type": "uint8"
547
+ }],
548
+ "payable": false,
549
+ "stateMutability": "view",
550
+ "type": "function"
551
+ }, {
552
+ "constant": true,
553
+ "inputs": [],
554
+ "name": "versionAPI",
555
+ "outputs": [{
556
+ "name": "",
557
+ "type": "bytes32"
558
+ }],
559
+ "payable": false,
560
+ "stateMutability": "view",
561
+ "type": "function"
562
+ }, {
563
+ "constant": false,
564
+ "inputs": [],
565
+ "name": "clearPending",
566
+ "outputs": [],
567
+ "payable": false,
568
+ "stateMutability": "nonpayable",
569
+ "type": "function"
570
+ }, {
571
+ "constant": true,
572
+ "inputs": [{
573
+ "name": "obj",
574
+ "type": "address"
575
+ }, {
576
+ "name": "access_type",
577
+ "type": "uint8"
578
+ }],
579
+ "name": "checkContentObjectRights",
580
+ "outputs": [{
581
+ "name": "",
582
+ "type": "bool"
583
+ }],
584
+ "payable": false,
585
+ "stateMutability": "view",
586
+ "type": "function"
587
+ }, {
588
+ "constant": true,
589
+ "inputs": [],
590
+ "name": "pendingHash",
591
+ "outputs": [{
592
+ "name": "",
593
+ "type": "string"
594
+ }],
595
+ "payable": false,
596
+ "stateMutability": "view",
597
+ "type": "function"
598
+ }, {
599
+ "constant": true,
600
+ "inputs": [],
601
+ "name": "CATEGORY_CONTRACT",
602
+ "outputs": [{
603
+ "name": "",
604
+ "type": "uint8"
605
+ }],
606
+ "payable": false,
607
+ "stateMutability": "view",
608
+ "type": "function"
609
+ }, {
610
+ "constant": true,
611
+ "inputs": [],
612
+ "name": "indexCategory",
613
+ "outputs": [{
614
+ "name": "",
615
+ "type": "uint8"
616
+ }],
617
+ "payable": false,
618
+ "stateMutability": "view",
619
+ "type": "function"
620
+ }, {
621
+ "constant": true,
622
+ "inputs": [],
623
+ "name": "managersNum",
624
+ "outputs": [{
625
+ "name": "",
626
+ "type": "uint256"
627
+ }],
628
+ "payable": false,
629
+ "stateMutability": "view",
630
+ "type": "function"
631
+ }, {
632
+ "constant": true,
633
+ "inputs": [{
634
+ "name": "_candidate",
635
+ "type": "address"
636
+ }],
637
+ "name": "hasEditorRight",
638
+ "outputs": [{
639
+ "name": "",
640
+ "type": "bool"
641
+ }],
642
+ "payable": false,
643
+ "stateMutability": "view",
644
+ "type": "function"
645
+ }, {
646
+ "constant": true,
647
+ "inputs": [{
648
+ "name": "lib",
649
+ "type": "address"
650
+ }, {
651
+ "name": "access_type",
652
+ "type": "uint8"
653
+ }],
654
+ "name": "checkLibraryRights",
655
+ "outputs": [{
656
+ "name": "",
657
+ "type": "bool"
658
+ }],
659
+ "payable": false,
660
+ "stateMutability": "view",
661
+ "type": "function"
662
+ }, {
663
+ "constant": true,
664
+ "inputs": [],
665
+ "name": "CATEGORY_CONTENT_TYPE",
666
+ "outputs": [{
667
+ "name": "",
668
+ "type": "uint8"
669
+ }],
670
+ "payable": false,
671
+ "stateMutability": "view",
672
+ "type": "function"
673
+ }, {
674
+ "constant": true,
675
+ "inputs": [{
676
+ "name": "obj",
677
+ "type": "address"
678
+ }],
679
+ "name": "getContentObjectRights",
680
+ "outputs": [{
681
+ "name": "",
682
+ "type": "uint8"
683
+ }],
684
+ "payable": false,
685
+ "stateMutability": "view",
686
+ "type": "function"
687
+ }, {
688
+ "constant": true,
689
+ "inputs": [],
690
+ "name": "contracts",
691
+ "outputs": [{
692
+ "name": "category",
693
+ "type": "uint8"
694
+ }, {
695
+ "name": "length",
696
+ "type": "uint256"
697
+ }],
698
+ "payable": false,
699
+ "stateMutability": "view",
700
+ "type": "function"
701
+ }, {
702
+ "constant": false,
703
+ "inputs": [{
704
+ "name": "newCreator",
705
+ "type": "address"
706
+ }],
707
+ "name": "transferCreatorship",
708
+ "outputs": [],
709
+ "payable": false,
710
+ "stateMutability": "nonpayable",
711
+ "type": "function"
712
+ }, {
713
+ "constant": true,
714
+ "inputs": [],
715
+ "name": "canCommit",
716
+ "outputs": [{
717
+ "name": "",
718
+ "type": "bool"
719
+ }],
720
+ "payable": false,
721
+ "stateMutability": "view",
722
+ "type": "function"
723
+ }, {
724
+ "constant": true,
725
+ "inputs": [{
726
+ "name": "position",
727
+ "type": "uint256"
728
+ }],
729
+ "name": "getContract",
730
+ "outputs": [{
731
+ "name": "",
732
+ "type": "address"
733
+ }],
734
+ "payable": false,
735
+ "stateMutability": "view",
736
+ "type": "function"
737
+ }, {
738
+ "constant": false,
739
+ "inputs": [{
740
+ "name": "_ident",
741
+ "type": "bytes32"
742
+ }, {
743
+ "name": "_ord",
744
+ "type": "uint8"
745
+ }],
746
+ "name": "incrementCounter",
747
+ "outputs": [],
748
+ "payable": false,
749
+ "stateMutability": "nonpayable",
750
+ "type": "function"
751
+ }, {
752
+ "constant": false,
753
+ "inputs": [{
754
+ "name": "manager",
755
+ "type": "address"
756
+ }],
757
+ "name": "grantManagerAccess",
758
+ "outputs": [],
759
+ "payable": false,
760
+ "stateMutability": "nonpayable",
761
+ "type": "function"
762
+ }, {
763
+ "constant": true,
764
+ "inputs": [{
765
+ "name": "addr",
766
+ "type": "address"
767
+ }],
768
+ "name": "contractExists",
769
+ "outputs": [{
770
+ "name": "",
771
+ "type": "bool"
772
+ }],
773
+ "payable": false,
774
+ "stateMutability": "view",
775
+ "type": "function"
776
+ }, {
777
+ "constant": true,
778
+ "inputs": [{
779
+ "name": "",
780
+ "type": "uint256"
781
+ }],
782
+ "name": "versionTimestamp",
783
+ "outputs": [{
784
+ "name": "",
785
+ "type": "uint256"
786
+ }],
787
+ "payable": false,
788
+ "stateMutability": "view",
789
+ "type": "function"
790
+ }, {
791
+ "constant": true,
792
+ "inputs": [{
793
+ "name": "",
794
+ "type": "address"
795
+ }],
796
+ "name": "managersMap",
797
+ "outputs": [{
798
+ "name": "",
799
+ "type": "bool"
800
+ }],
801
+ "payable": false,
802
+ "stateMutability": "view",
803
+ "type": "function"
804
+ }, {
805
+ "constant": true,
806
+ "inputs": [{
807
+ "name": "",
808
+ "type": "uint256"
809
+ }],
810
+ "name": "versionHashes",
811
+ "outputs": [{
812
+ "name": "",
813
+ "type": "string"
814
+ }],
815
+ "payable": false,
816
+ "stateMutability": "view",
817
+ "type": "function"
818
+ }, {
819
+ "constant": false,
820
+ "inputs": [{
821
+ "name": "lib",
822
+ "type": "address"
823
+ }, {
824
+ "name": "access_type",
825
+ "type": "uint8"
826
+ }, {
827
+ "name": "access",
828
+ "type": "uint8"
829
+ }],
830
+ "name": "setLibraryRights",
831
+ "outputs": [],
832
+ "payable": false,
833
+ "stateMutability": "nonpayable",
834
+ "type": "function"
835
+ }, {
836
+ "constant": true,
837
+ "inputs": [{
838
+ "name": "index_type",
839
+ "type": "uint8"
840
+ }, {
841
+ "name": "obj",
842
+ "type": "address"
843
+ }, {
844
+ "name": "access_type",
845
+ "type": "uint8"
846
+ }],
847
+ "name": "checkRights",
848
+ "outputs": [{
849
+ "name": "",
850
+ "type": "bool"
851
+ }],
852
+ "payable": false,
853
+ "stateMutability": "view",
854
+ "type": "function"
855
+ }, {
856
+ "constant": true,
857
+ "inputs": [],
858
+ "name": "canEdit",
859
+ "outputs": [{
860
+ "name": "",
861
+ "type": "bool"
862
+ }],
863
+ "payable": false,
864
+ "stateMutability": "view",
865
+ "type": "function"
866
+ }, {
867
+ "constant": true,
868
+ "inputs": [],
869
+ "name": "ACCESS_NONE",
870
+ "outputs": [{
871
+ "name": "",
872
+ "type": "uint8"
873
+ }],
874
+ "payable": false,
875
+ "stateMutability": "view",
876
+ "type": "function"
877
+ }, {
878
+ "constant": false,
879
+ "inputs": [],
880
+ "name": "cleanUpContentTypes",
881
+ "outputs": [{
882
+ "name": "",
883
+ "type": "uint256"
884
+ }],
885
+ "payable": false,
886
+ "stateMutability": "nonpayable",
887
+ "type": "function"
888
+ }, {
889
+ "constant": false,
890
+ "inputs": [{
891
+ "name": "candidate",
892
+ "type": "address"
893
+ }],
894
+ "name": "revokeAccess",
895
+ "outputs": [],
896
+ "payable": false,
897
+ "stateMutability": "nonpayable",
898
+ "type": "function"
899
+ }, {
900
+ "constant": false,
901
+ "inputs": [{
902
+ "name": "obj",
903
+ "type": "address"
904
+ }, {
905
+ "name": "access_type",
906
+ "type": "uint8"
907
+ }, {
908
+ "name": "access",
909
+ "type": "uint8"
910
+ }],
911
+ "name": "setContentTypeRights",
912
+ "outputs": [],
913
+ "payable": false,
914
+ "stateMutability": "nonpayable",
915
+ "type": "function"
916
+ }, {
917
+ "constant": true,
918
+ "inputs": [{
919
+ "name": "",
920
+ "type": "address"
921
+ }],
922
+ "name": "membersMap",
923
+ "outputs": [{
924
+ "name": "",
925
+ "type": "bool"
926
+ }],
927
+ "payable": false,
928
+ "stateMutability": "view",
929
+ "type": "function"
930
+ }, {
931
+ "constant": true,
932
+ "inputs": [],
933
+ "name": "owner",
934
+ "outputs": [{
935
+ "name": "",
936
+ "type": "address"
937
+ }],
938
+ "payable": false,
939
+ "stateMutability": "view",
940
+ "type": "function"
941
+ }, {
942
+ "constant": false,
943
+ "inputs": [],
944
+ "name": "cleanUpLibraries",
945
+ "outputs": [{
946
+ "name": "",
947
+ "type": "uint256"
948
+ }],
949
+ "payable": false,
950
+ "stateMutability": "nonpayable",
951
+ "type": "function"
952
+ }, {
953
+ "constant": true,
954
+ "inputs": [{
955
+ "name": "candidate",
956
+ "type": "address"
957
+ }],
958
+ "name": "hasAccess",
959
+ "outputs": [{
960
+ "name": "",
961
+ "type": "bool"
962
+ }],
963
+ "payable": false,
964
+ "stateMutability": "view",
965
+ "type": "function"
966
+ }, {
967
+ "constant": false,
968
+ "inputs": [{
969
+ "name": "candidates",
970
+ "type": "address[]"
971
+ }],
972
+ "name": "grantAccessMany",
973
+ "outputs": [],
974
+ "payable": false,
975
+ "stateMutability": "nonpayable",
976
+ "type": "function"
977
+ }, {
978
+ "constant": true,
979
+ "inputs": [],
980
+ "name": "TYPE_SEE",
981
+ "outputs": [{
982
+ "name": "",
983
+ "type": "uint8"
984
+ }],
985
+ "payable": false,
986
+ "stateMutability": "view",
987
+ "type": "function"
988
+ }, {
989
+ "constant": true,
990
+ "inputs": [],
991
+ "name": "CAN_ACCESS",
992
+ "outputs": [{
993
+ "name": "",
994
+ "type": "uint8"
995
+ }],
996
+ "payable": false,
997
+ "stateMutability": "view",
998
+ "type": "function"
999
+ }, {
1000
+ "constant": false,
1001
+ "inputs": [{
1002
+ "name": "_objectHash",
1003
+ "type": "string"
1004
+ }],
1005
+ "name": "commit",
1006
+ "outputs": [],
1007
+ "payable": false,
1008
+ "stateMutability": "nonpayable",
1009
+ "type": "function"
1010
+ }, {
1011
+ "constant": true,
1012
+ "inputs": [],
1013
+ "name": "contentTypes",
1014
+ "outputs": [{
1015
+ "name": "category",
1016
+ "type": "uint8"
1017
+ }, {
1018
+ "name": "length",
1019
+ "type": "uint256"
1020
+ }],
1021
+ "payable": false,
1022
+ "stateMutability": "view",
1023
+ "type": "function"
1024
+ }, {
1025
+ "constant": true,
1026
+ "inputs": [{
1027
+ "name": "index_type",
1028
+ "type": "uint8"
1029
+ }, {
1030
+ "name": "obj",
1031
+ "type": "address"
1032
+ }, {
1033
+ "name": "access_type",
1034
+ "type": "uint8"
1035
+ }],
1036
+ "name": "checkDirectRights",
1037
+ "outputs": [{
1038
+ "name": "",
1039
+ "type": "bool"
1040
+ }],
1041
+ "payable": false,
1042
+ "stateMutability": "view",
1043
+ "type": "function"
1044
+ }, {
1045
+ "constant": false,
1046
+ "inputs": [{
1047
+ "name": "_enabled",
1048
+ "type": "bool"
1049
+ }],
1050
+ "name": "setIsConsumerGroup",
1051
+ "outputs": [],
1052
+ "payable": false,
1053
+ "stateMutability": "nonpayable",
1054
+ "type": "function"
1055
+ }, {
1056
+ "constant": true,
1057
+ "inputs": [{
1058
+ "name": "obj",
1059
+ "type": "address"
1060
+ }],
1061
+ "name": "getContentTypeRights",
1062
+ "outputs": [{
1063
+ "name": "",
1064
+ "type": "uint8"
1065
+ }],
1066
+ "payable": false,
1067
+ "stateMutability": "view",
1068
+ "type": "function"
1069
+ }, {
1070
+ "constant": true,
1071
+ "inputs": [{
1072
+ "name": "obj",
1073
+ "type": "address"
1074
+ }, {
1075
+ "name": "access_type",
1076
+ "type": "uint8"
1077
+ }],
1078
+ "name": "checkContractRights",
1079
+ "outputs": [{
1080
+ "name": "",
1081
+ "type": "bool"
1082
+ }],
1083
+ "payable": false,
1084
+ "stateMutability": "view",
1085
+ "type": "function"
1086
+ }, {
1087
+ "constant": true,
1088
+ "inputs": [],
1089
+ "name": "contentObjects",
1090
+ "outputs": [{
1091
+ "name": "category",
1092
+ "type": "uint8"
1093
+ }, {
1094
+ "name": "length",
1095
+ "type": "uint256"
1096
+ }],
1097
+ "payable": false,
1098
+ "stateMutability": "view",
1099
+ "type": "function"
1100
+ }, {
1101
+ "constant": false,
1102
+ "inputs": [{
1103
+ "name": "_visibility_code",
1104
+ "type": "uint8"
1105
+ }],
1106
+ "name": "setVisibility",
1107
+ "outputs": [],
1108
+ "payable": false,
1109
+ "stateMutability": "nonpayable",
1110
+ "type": "function"
1111
+ }, {
1112
+ "constant": true,
1113
+ "inputs": [{
1114
+ "name": "position",
1115
+ "type": "uint256"
1116
+ }],
1117
+ "name": "getContentType",
1118
+ "outputs": [{
1119
+ "name": "",
1120
+ "type": "address"
1121
+ }],
1122
+ "payable": false,
1123
+ "stateMutability": "view",
1124
+ "type": "function"
1125
+ }, {
1126
+ "constant": true,
1127
+ "inputs": [{
1128
+ "name": "key",
1129
+ "type": "bytes"
1130
+ }],
1131
+ "name": "getMeta",
1132
+ "outputs": [{
1133
+ "name": "",
1134
+ "type": "bytes"
1135
+ }],
1136
+ "payable": false,
1137
+ "stateMutability": "view",
1138
+ "type": "function"
1139
+ }, {
1140
+ "constant": true,
1141
+ "inputs": [],
1142
+ "name": "tenant",
1143
+ "outputs": [{
1144
+ "name": "",
1145
+ "type": "address"
1146
+ }],
1147
+ "payable": false,
1148
+ "stateMutability": "view",
1149
+ "type": "function"
1150
+ }, {
1151
+ "constant": true,
1152
+ "inputs": [],
1153
+ "name": "contentSpace",
1154
+ "outputs": [{
1155
+ "name": "",
1156
+ "type": "address"
1157
+ }],
1158
+ "payable": false,
1159
+ "stateMutability": "view",
1160
+ "type": "function"
1161
+ }, {
1162
+ "constant": false,
1163
+ "inputs": [],
1164
+ "name": "setAccessRights",
1165
+ "outputs": [],
1166
+ "payable": false,
1167
+ "stateMutability": "nonpayable",
1168
+ "type": "function"
1169
+ }, {
1170
+ "constant": false,
1171
+ "inputs": [],
1172
+ "name": "updateRequest",
1173
+ "outputs": [],
1174
+ "payable": false,
1175
+ "stateMutability": "nonpayable",
1176
+ "type": "function"
1177
+ }, {
1178
+ "constant": true,
1179
+ "inputs": [],
1180
+ "name": "libraries",
1181
+ "outputs": [{
1182
+ "name": "category",
1183
+ "type": "uint8"
1184
+ }, {
1185
+ "name": "length",
1186
+ "type": "uint256"
1187
+ }],
1188
+ "payable": false,
1189
+ "stateMutability": "view",
1190
+ "type": "function"
1191
+ }, {
1192
+ "constant": true,
1193
+ "inputs": [],
1194
+ "name": "getLibrariesLength",
1195
+ "outputs": [{
1196
+ "name": "",
1197
+ "type": "uint256"
1198
+ }],
1199
+ "payable": false,
1200
+ "stateMutability": "view",
1201
+ "type": "function"
1202
+ }, {
1203
+ "constant": false,
1204
+ "inputs": [{
1205
+ "name": "manager",
1206
+ "type": "address"
1207
+ }],
1208
+ "name": "revokeManagerAccess",
1209
+ "outputs": [],
1210
+ "payable": false,
1211
+ "stateMutability": "nonpayable",
1212
+ "type": "function"
1213
+ }, {
1214
+ "constant": true,
1215
+ "inputs": [{
1216
+ "name": "position",
1217
+ "type": "uint256"
1218
+ }],
1219
+ "name": "getContentObject",
1220
+ "outputs": [{
1221
+ "name": "",
1222
+ "type": "address"
1223
+ }],
1224
+ "payable": false,
1225
+ "stateMutability": "view",
1226
+ "type": "function"
1227
+ }, {
1228
+ "constant": true,
1229
+ "inputs": [{
1230
+ "name": "position",
1231
+ "type": "uint256"
1232
+ }],
1233
+ "name": "getLibrary",
1234
+ "outputs": [{
1235
+ "name": "",
1236
+ "type": "address"
1237
+ }],
1238
+ "payable": false,
1239
+ "stateMutability": "view",
1240
+ "type": "function"
1241
+ }, {
1242
+ "constant": true,
1243
+ "inputs": [],
1244
+ "name": "TYPE_ACCESS",
1245
+ "outputs": [{
1246
+ "name": "",
1247
+ "type": "uint8"
1248
+ }],
1249
+ "payable": false,
1250
+ "stateMutability": "view",
1251
+ "type": "function"
1252
+ }, {
1253
+ "constant": false,
1254
+ "inputs": [],
1255
+ "name": "cleanUpAccessGroups",
1256
+ "outputs": [{
1257
+ "name": "",
1258
+ "type": "uint256"
1259
+ }],
1260
+ "payable": false,
1261
+ "stateMutability": "nonpayable",
1262
+ "type": "function"
1263
+ }, {
1264
+ "constant": true,
1265
+ "inputs": [{
1266
+ "name": "candidate",
1267
+ "type": "address"
1268
+ }, {
1269
+ "name": "mgr",
1270
+ "type": "bool"
1271
+ }],
1272
+ "name": "hasAccessRight",
1273
+ "outputs": [{
1274
+ "name": "",
1275
+ "type": "bool"
1276
+ }],
1277
+ "payable": false,
1278
+ "stateMutability": "view",
1279
+ "type": "function"
1280
+ }, {
1281
+ "constant": true,
1282
+ "inputs": [],
1283
+ "name": "isConsumerGroup",
1284
+ "outputs": [{
1285
+ "name": "",
1286
+ "type": "bool"
1287
+ }],
1288
+ "payable": false,
1289
+ "stateMutability": "view",
1290
+ "type": "function"
1291
+ }, {
1292
+ "constant": true,
1293
+ "inputs": [],
1294
+ "name": "objectHash",
1295
+ "outputs": [{
1296
+ "name": "",
1297
+ "type": "string"
1298
+ }],
1299
+ "payable": false,
1300
+ "stateMutability": "view",
1301
+ "type": "function"
1302
+ }, {
1303
+ "constant": true,
1304
+ "inputs": [{
1305
+ "name": "_ident",
1306
+ "type": "bytes32"
1307
+ }, {
1308
+ "name": "_ord",
1309
+ "type": "uint8"
1310
+ }],
1311
+ "name": "getCounter",
1312
+ "outputs": [{
1313
+ "name": "",
1314
+ "type": "uint32"
1315
+ }],
1316
+ "payable": false,
1317
+ "stateMutability": "view",
1318
+ "type": "function"
1319
+ }, {
1320
+ "constant": false,
1321
+ "inputs": [{
1322
+ "name": "_versionHash",
1323
+ "type": "string"
1324
+ }],
1325
+ "name": "deleteVersion",
1326
+ "outputs": [{
1327
+ "name": "",
1328
+ "type": "int256"
1329
+ }],
1330
+ "payable": false,
1331
+ "stateMutability": "nonpayable",
1332
+ "type": "function"
1333
+ }, {
1334
+ "constant": false,
1335
+ "inputs": [{
1336
+ "name": "key",
1337
+ "type": "bytes"
1338
+ }, {
1339
+ "name": "value",
1340
+ "type": "bytes"
1341
+ }],
1342
+ "name": "putMeta",
1343
+ "outputs": [],
1344
+ "payable": false,
1345
+ "stateMutability": "nonpayable",
1346
+ "type": "function"
1347
+ }, {
1348
+ "constant": false,
1349
+ "inputs": [{
1350
+ "name": "_ident",
1351
+ "type": "bytes32"
1352
+ }],
1353
+ "name": "deleteGroup",
1354
+ "outputs": [],
1355
+ "payable": false,
1356
+ "stateMutability": "nonpayable",
1357
+ "type": "function"
1358
+ }, {
1359
+ "constant": true,
1360
+ "inputs": [],
1361
+ "name": "getContentObjectsLength",
1362
+ "outputs": [{
1363
+ "name": "",
1364
+ "type": "uint256"
1365
+ }],
1366
+ "payable": false,
1367
+ "stateMutability": "view",
1368
+ "type": "function"
1369
+ }, {
1370
+ "constant": true,
1371
+ "inputs": [],
1372
+ "name": "CAN_EDIT",
1373
+ "outputs": [{
1374
+ "name": "",
1375
+ "type": "uint8"
1376
+ }],
1377
+ "payable": false,
1378
+ "stateMutability": "view",
1379
+ "type": "function"
1380
+ }, {
1381
+ "constant": false,
1382
+ "inputs": [{
1383
+ "name": "group",
1384
+ "type": "address"
1385
+ }, {
1386
+ "name": "access_type",
1387
+ "type": "uint8"
1388
+ }, {
1389
+ "name": "access",
1390
+ "type": "uint8"
1391
+ }],
1392
+ "name": "setAccessGroupRights",
1393
+ "outputs": [],
1394
+ "payable": false,
1395
+ "stateMutability": "nonpayable",
1396
+ "type": "function"
1397
+ }, {
1398
+ "constant": false,
1399
+ "inputs": [{
1400
+ "name": "newOwner",
1401
+ "type": "address"
1402
+ }],
1403
+ "name": "transferOwnership",
1404
+ "outputs": [],
1405
+ "payable": false,
1406
+ "stateMutability": "nonpayable",
1407
+ "type": "function"
1408
+ }, {
1409
+ "constant": true,
1410
+ "inputs": [{
1411
+ "name": "lib",
1412
+ "type": "address"
1413
+ }],
1414
+ "name": "getLibraryRights",
1415
+ "outputs": [{
1416
+ "name": "",
1417
+ "type": "uint8"
1418
+ }],
1419
+ "payable": false,
1420
+ "stateMutability": "view",
1421
+ "type": "function"
1422
+ }, {
1423
+ "constant": false,
1424
+ "inputs": [{
1425
+ "name": "_enabled",
1426
+ "type": "bool"
1427
+ }],
1428
+ "name": "setOAuthEnabled",
1429
+ "outputs": [],
1430
+ "payable": false,
1431
+ "stateMutability": "nonpayable",
1432
+ "type": "function"
1433
+ }, {
1434
+ "constant": true,
1435
+ "inputs": [],
1436
+ "name": "getContractsLength",
1437
+ "outputs": [{
1438
+ "name": "",
1439
+ "type": "uint256"
1440
+ }],
1441
+ "payable": false,
1442
+ "stateMutability": "view",
1443
+ "type": "function"
1444
+ }, {
1445
+ "constant": true,
1446
+ "inputs": [{
1447
+ "name": "obj",
1448
+ "type": "address"
1449
+ }, {
1450
+ "name": "access_type",
1451
+ "type": "uint8"
1452
+ }],
1453
+ "name": "checkContentTypeRights",
1454
+ "outputs": [{
1455
+ "name": "",
1456
+ "type": "bool"
1457
+ }],
1458
+ "payable": false,
1459
+ "stateMutability": "view",
1460
+ "type": "function"
1461
+ }, {
1462
+ "inputs": [{
1463
+ "name": "_contentSpace",
1464
+ "type": "address"
1465
+ }],
1466
+ "payable": false,
1467
+ "stateMutability": "nonpayable",
1468
+ "type": "constructor"
1469
+ }, {
1470
+ "payable": true,
1471
+ "stateMutability": "payable",
1472
+ "type": "fallback"
1473
+ }, {
1474
+ "anonymous": false,
1475
+ "inputs": [{
1476
+ "indexed": false,
1477
+ "name": "candidate",
1478
+ "type": "address"
1479
+ }],
1480
+ "name": "MemberAdded",
1481
+ "type": "event"
1482
+ }, {
1483
+ "anonymous": false,
1484
+ "inputs": [{
1485
+ "indexed": false,
1486
+ "name": "candidate",
1487
+ "type": "address"
1488
+ }],
1489
+ "name": "ManagerAccessGranted",
1490
+ "type": "event"
1491
+ }, {
1492
+ "anonymous": false,
1493
+ "inputs": [{
1494
+ "indexed": false,
1495
+ "name": "candidate",
1496
+ "type": "address"
1497
+ }],
1498
+ "name": "MemberRevoked",
1499
+ "type": "event"
1500
+ }, {
1501
+ "anonymous": false,
1502
+ "inputs": [{
1503
+ "indexed": false,
1504
+ "name": "candidate",
1505
+ "type": "address"
1506
+ }],
1507
+ "name": "ManagerAccessRevoked",
1508
+ "type": "event"
1509
+ }, {
1510
+ "anonymous": false,
1511
+ "inputs": [{
1512
+ "indexed": false,
1513
+ "name": "operationCode",
1514
+ "type": "uint256"
1515
+ }, {
1516
+ "indexed": false,
1517
+ "name": "candidate",
1518
+ "type": "address"
1519
+ }],
1520
+ "name": "UnauthorizedOperation",
1521
+ "type": "event"
1522
+ }, {
1523
+ "anonymous": false,
1524
+ "inputs": [{
1525
+ "indexed": false,
1526
+ "name": "enabled",
1527
+ "type": "bool"
1528
+ }],
1529
+ "name": "OAuthStatusChanged",
1530
+ "type": "event"
1531
+ }, {
1532
+ "anonymous": false,
1533
+ "inputs": [{
1534
+ "indexed": false,
1535
+ "name": "spaceAddress",
1536
+ "type": "address"
1537
+ }, {
1538
+ "indexed": false,
1539
+ "name": "parentAddress",
1540
+ "type": "address"
1541
+ }, {
1542
+ "indexed": false,
1543
+ "name": "objectHash",
1544
+ "type": "string"
1545
+ }],
1546
+ "name": "CommitPending",
1547
+ "type": "event"
1548
+ }, {
1549
+ "anonymous": false,
1550
+ "inputs": [{
1551
+ "indexed": false,
1552
+ "name": "objectHash",
1553
+ "type": "string"
1554
+ }],
1555
+ "name": "UpdateRequest",
1556
+ "type": "event"
1557
+ }, {
1558
+ "anonymous": false,
1559
+ "inputs": [{
1560
+ "indexed": false,
1561
+ "name": "spaceAddress",
1562
+ "type": "address"
1563
+ }, {
1564
+ "indexed": false,
1565
+ "name": "parentAddress",
1566
+ "type": "address"
1567
+ }, {
1568
+ "indexed": false,
1569
+ "name": "objectHash",
1570
+ "type": "string"
1571
+ }],
1572
+ "name": "VersionConfirm",
1573
+ "type": "event"
1574
+ }, {
1575
+ "anonymous": false,
1576
+ "inputs": [{
1577
+ "indexed": false,
1578
+ "name": "spaceAddress",
1579
+ "type": "address"
1580
+ }, {
1581
+ "indexed": false,
1582
+ "name": "versionHash",
1583
+ "type": "string"
1584
+ }, {
1585
+ "indexed": false,
1586
+ "name": "index",
1587
+ "type": "int256"
1588
+ }],
1589
+ "name": "VersionDelete",
1590
+ "type": "event"
1591
+ }, {
1592
+ "anonymous": false,
1593
+ "inputs": [{
1594
+ "indexed": false,
1595
+ "name": "requestNonce",
1596
+ "type": "uint256"
1597
+ }, {
1598
+ "indexed": false,
1599
+ "name": "parentAddress",
1600
+ "type": "address"
1601
+ }, {
1602
+ "indexed": false,
1603
+ "name": "contextHash",
1604
+ "type": "bytes32"
1605
+ }, {
1606
+ "indexed": false,
1607
+ "name": "accessor",
1608
+ "type": "address"
1609
+ }, {
1610
+ "indexed": false,
1611
+ "name": "requestTimestamp",
1612
+ "type": "uint256"
1613
+ }],
1614
+ "name": "AccessRequestV3",
1615
+ "type": "event"
1616
+ }, {
1617
+ "anonymous": false,
1618
+ "inputs": [{
1619
+ "indexed": false,
1620
+ "name": "contentSpace",
1621
+ "type": "address"
1622
+ }, {
1623
+ "indexed": false,
1624
+ "name": "parentAddress",
1625
+ "type": "address"
1626
+ }, {
1627
+ "indexed": false,
1628
+ "name": "visibility",
1629
+ "type": "uint8"
1630
+ }],
1631
+ "name": "VisibilityChanged",
1632
+ "type": "event"
1633
+ }, {
1634
+ "anonymous": false,
1635
+ "inputs": [{
1636
+ "indexed": false,
1637
+ "name": "principal",
1638
+ "type": "address"
1639
+ }, {
1640
+ "indexed": false,
1641
+ "name": "entity",
1642
+ "type": "address"
1643
+ }, {
1644
+ "indexed": false,
1645
+ "name": "aggregate",
1646
+ "type": "uint8"
1647
+ }],
1648
+ "name": "RightsChanged",
1649
+ "type": "event"
1650
+ }, {
1651
+ "anonymous": false,
1652
+ "inputs": [{
1653
+ "indexed": false,
1654
+ "name": "ident",
1655
+ "type": "bytes32"
1656
+ }, {
1657
+ "indexed": false,
1658
+ "name": "slot",
1659
+ "type": "uint8"
1660
+ }, {
1661
+ "indexed": false,
1662
+ "name": "val",
1663
+ "type": "uint32"
1664
+ }],
1665
+ "name": "CounterIncremented",
1666
+ "type": "event"
1667
+ }, {
1668
+ "anonymous": false,
1669
+ "inputs": [{
1670
+ "indexed": false,
1671
+ "name": "ident",
1672
+ "type": "bytes32"
1673
+ }, {
1674
+ "indexed": false,
1675
+ "name": "ord",
1676
+ "type": "uint8"
1677
+ }, {
1678
+ "indexed": false,
1679
+ "name": "prev",
1680
+ "type": "bool"
1681
+ }],
1682
+ "name": "BitSetAndGet",
1683
+ "type": "event"
1684
+ }, {
1685
+ "anonymous": false,
1686
+ "inputs": [{
1687
+ "indexed": false,
1688
+ "name": "ident",
1689
+ "type": "bytes32"
1690
+ }],
1691
+ "name": "WordGroupDeleted",
1692
+ "type": "event"
1693
+ }, {
1694
+ "anonymous": false,
1695
+ "inputs": [{
1696
+ "indexed": false,
1697
+ "name": "key",
1698
+ "type": "bytes"
1699
+ }],
1700
+ "name": "ObjectMetaChanged",
1701
+ "type": "event"
1702
+ }]
1703
+ };
1704
+ module.exports = contract;