@eluvio/elv-client-js 4.0.113 → 4.0.115

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 (129) hide show
  1. package/dist/ElvClient-min.js +67 -0
  2. package/dist/ElvClient-node-min.js +66 -0
  3. package/dist/ElvFrameClient-min.js +60 -0
  4. package/dist/ElvPermissionsClient-min.js +60 -0
  5. package/dist/ElvWalletClient-min.js +67 -0
  6. package/dist/ElvWalletClient-node-min.js +66 -0
  7. package/dist/src/AuthorizationClient.js +2169 -0
  8. package/dist/src/ContentObjectAudit.js +175 -0
  9. package/dist/src/ContentObjectVerification.js +281 -0
  10. package/dist/src/Crypto.js +412 -0
  11. package/dist/src/ElvClient.js +2044 -0
  12. package/dist/src/ElvWallet.js +245 -0
  13. package/dist/src/EthClient.js +1154 -0
  14. package/dist/src/FrameClient.js +485 -0
  15. package/dist/src/HttpClient.js +315 -0
  16. package/dist/src/Id.js +21 -0
  17. package/dist/src/LogMessage.js +25 -0
  18. package/dist/src/PermissionsClient.js +1544 -0
  19. package/dist/src/RemoteSigner.js +385 -0
  20. package/dist/src/UserProfileClient.js +1450 -0
  21. package/dist/src/Utils.js +894 -0
  22. package/dist/src/Validation.js +121 -0
  23. package/dist/src/abr_profiles/abr_profile_live_drm.js +1661 -0
  24. package/dist/src/abr_profiles/abr_profile_live_to_vod.js +1606 -0
  25. package/dist/src/client/ABRPublishing.js +1018 -0
  26. package/dist/src/client/AccessGroups.js +1503 -0
  27. package/dist/src/client/ContentAccess.js +5195 -0
  28. package/dist/src/client/ContentManagement.js +2680 -0
  29. package/dist/src/client/Contracts.js +1520 -0
  30. package/dist/src/client/Files.js +2181 -0
  31. package/dist/src/client/LiveConf.js +569 -0
  32. package/dist/src/client/LiveStream.js +2640 -0
  33. package/dist/src/client/NFT.js +162 -0
  34. package/dist/src/client/NTP.js +581 -0
  35. package/dist/src/contracts/v2/AccessIndexor.js +831 -0
  36. package/dist/src/contracts/v2/Accessible.js +31 -0
  37. package/dist/src/contracts/v2/BaseAccessControlGroup.js +1263 -0
  38. package/dist/src/contracts/v2/BaseAccessWallet.js +1609 -0
  39. package/dist/src/contracts/v2/BaseAccessWalletFactory.js +93 -0
  40. package/dist/src/contracts/v2/BaseContent.js +1076 -0
  41. package/dist/src/contracts/v2/BaseContentFactory.js +219 -0
  42. package/dist/src/contracts/v2/BaseContentSpace.js +1352 -0
  43. package/dist/src/contracts/v2/BaseContentType.js +364 -0
  44. package/dist/src/contracts/v2/BaseFactory.js +107 -0
  45. package/dist/src/contracts/v2/BaseGroupFactory.js +93 -0
  46. package/dist/src/contracts/v2/BaseLibrary.js +1041 -0
  47. package/dist/src/contracts/v2/BaseLibraryFactory.js +96 -0
  48. package/dist/src/contracts/v2/Certifyer.js +86 -0
  49. package/dist/src/contracts/v2/Container.js +540 -0
  50. package/dist/src/contracts/v2/Content.js +443 -0
  51. package/dist/src/contracts/v2/Editable.js +306 -0
  52. package/dist/src/contracts/v2/ExternalUserWallet.js +379 -0
  53. package/dist/src/contracts/v2/IFactorySpace.js +57 -0
  54. package/dist/src/contracts/v2/IKmsSpace.js +52 -0
  55. package/dist/src/contracts/v2/INodeSpace.js +18 -0
  56. package/dist/src/contracts/v2/IUserSpace.js +18 -0
  57. package/dist/src/contracts/v2/LvRecordableStream.js +1037 -0
  58. package/dist/src/contracts/v2/LvRecording.js +627 -0
  59. package/dist/src/contracts/v2/LvStreamRightsHolder.js +562 -0
  60. package/dist/src/contracts/v2/MetaObject.js +119 -0
  61. package/dist/src/contracts/v2/Node.js +167 -0
  62. package/dist/src/contracts/v2/NodeSpace.js +273 -0
  63. package/dist/src/contracts/v2/Ownable.js +87 -0
  64. package/dist/src/contracts/v2/PaymentService.js +627 -0
  65. package/dist/src/contracts/v2/Precompile.js +15 -0
  66. package/dist/src/contracts/v2/Transactable.js +82 -0
  67. package/dist/src/contracts/v2/UserSpace.js +29 -0
  68. package/dist/src/contracts/v2/Utils.js +18 -0
  69. package/dist/src/contracts/v2/Verifier.js +53 -0
  70. package/dist/src/contracts/v2/strings.js +4 -0
  71. package/dist/src/contracts/v3/AccessIndexor.js +774 -0
  72. package/dist/src/contracts/v3/Accessible.js +232 -0
  73. package/dist/src/contracts/v3/Adminable.js +107 -0
  74. package/dist/src/contracts/v3/AvailsDelivery.js +586 -0
  75. package/dist/src/contracts/v3/BaseAccessControlGroup.js +1603 -0
  76. package/dist/src/contracts/v3/BaseAccessWallet.js +1628 -0
  77. package/dist/src/contracts/v3/BaseAccessWalletFactory.js +112 -0
  78. package/dist/src/contracts/v3/BaseContent.js +1312 -0
  79. package/dist/src/contracts/v3/BaseContentFactory.js +183 -0
  80. package/dist/src/contracts/v3/BaseContentFactoryExt.js +175 -0
  81. package/dist/src/contracts/v3/BaseContentSpace.js +1515 -0
  82. package/dist/src/contracts/v3/BaseContentType.js +527 -0
  83. package/dist/src/contracts/v3/BaseFactory.js +126 -0
  84. package/dist/src/contracts/v3/BaseGroupFactory.js +112 -0
  85. package/dist/src/contracts/v3/BaseLibrary.js +1204 -0
  86. package/dist/src/contracts/v3/BaseLibraryFactory.js +115 -0
  87. package/dist/src/contracts/v3/BaseTenantSpace.js +1587 -0
  88. package/dist/src/contracts/v3/Certifyer.js +86 -0
  89. package/dist/src/contracts/v3/Container.js +739 -0
  90. package/dist/src/contracts/v3/Content.js +438 -0
  91. package/dist/src/contracts/v3/CounterObject.js +243 -0
  92. package/dist/src/contracts/v3/Editable.js +519 -0
  93. package/dist/src/contracts/v3/EncToken.js +4 -0
  94. package/dist/src/contracts/v3/ExternalUserWallet.js +587 -0
  95. package/dist/src/contracts/v3/IAdmin.js +18 -0
  96. package/dist/src/contracts/v3/IFactorySpace.js +57 -0
  97. package/dist/src/contracts/v3/IKmsSpace.js +52 -0
  98. package/dist/src/contracts/v3/INodeSpace.js +18 -0
  99. package/dist/src/contracts/v3/IUserSpace.js +32 -0
  100. package/dist/src/contracts/v3/LvRecordableStream.js +1032 -0
  101. package/dist/src/contracts/v3/LvRecording.js +650 -0
  102. package/dist/src/contracts/v3/LvStreamRightsHolder.js +557 -0
  103. package/dist/src/contracts/v3/MetaObject.js +144 -0
  104. package/dist/src/contracts/v3/Node.js +178 -0
  105. package/dist/src/contracts/v3/NodeSpace.js +284 -0
  106. package/dist/src/contracts/v3/Ownable.js +98 -0
  107. package/dist/src/contracts/v3/PaymentService.js +622 -0
  108. package/dist/src/contracts/v3/Precompile.js +26 -0
  109. package/dist/src/contracts/v3/TenantFuncsBase.js +351 -0
  110. package/dist/src/contracts/v3/Transactable.js +82 -0
  111. package/dist/src/contracts/v3/UserSpace.js +43 -0
  112. package/dist/src/contracts/v3/Utils.js +18 -0
  113. package/dist/src/contracts/v3/Verifier.js +53 -0
  114. package/dist/src/contracts/v3/strings.js +4 -0
  115. package/dist/src/contracts/v3b/BaseAccessControlGroup.js +1704 -0
  116. package/dist/src/events/Topics.js +1793 -0
  117. package/dist/src/index.js +8 -0
  118. package/dist/src/walletClient/ClientMethods.js +3102 -0
  119. package/dist/src/walletClient/Configuration.js +38 -0
  120. package/dist/src/walletClient/Notifications.js +168 -0
  121. package/dist/src/walletClient/Profile.js +332 -0
  122. package/dist/src/walletClient/Utils.js +281 -0
  123. package/dist/src/walletClient/index.js +2106 -0
  124. package/package.json +1 -1
  125. package/src/AuthorizationClient.js +25 -18
  126. package/src/ElvClient.js +19 -0
  127. package/src/client/ContentAccess.js +10 -1
  128. package/src/client/LiveConf.js +10 -8
  129. package/src/client/LiveStream.js +6 -4
@@ -0,0 +1,831 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "creator",
6
+ "outputs": [{
7
+ "name": "",
8
+ "type": "address"
9
+ }],
10
+ "payable": false,
11
+ "stateMutability": "view",
12
+ "type": "function"
13
+ }, {
14
+ "constant": false,
15
+ "inputs": [],
16
+ "name": "cleanUpContentObjects",
17
+ "outputs": [{
18
+ "name": "",
19
+ "type": "uint256"
20
+ }],
21
+ "payable": false,
22
+ "stateMutability": "nonpayable",
23
+ "type": "function"
24
+ }, {
25
+ "constant": false,
26
+ "inputs": [{
27
+ "name": "content_space",
28
+ "type": "address"
29
+ }],
30
+ "name": "setContentSpace",
31
+ "outputs": [],
32
+ "payable": false,
33
+ "stateMutability": "nonpayable",
34
+ "type": "function"
35
+ }, {
36
+ "constant": true,
37
+ "inputs": [{
38
+ "name": "obj",
39
+ "type": "address"
40
+ }],
41
+ "name": "getContractRights",
42
+ "outputs": [{
43
+ "name": "",
44
+ "type": "uint8"
45
+ }],
46
+ "payable": false,
47
+ "stateMutability": "view",
48
+ "type": "function"
49
+ }, {
50
+ "constant": true,
51
+ "inputs": [],
52
+ "name": "CATEGORY_CONTENT_OBJECT",
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": "getAccessGroupsLength",
64
+ "outputs": [{
65
+ "name": "",
66
+ "type": "uint256"
67
+ }],
68
+ "payable": false,
69
+ "stateMutability": "view",
70
+ "type": "function"
71
+ }, {
72
+ "constant": true,
73
+ "inputs": [],
74
+ "name": "CATEGORY_GROUP",
75
+ "outputs": [{
76
+ "name": "",
77
+ "type": "uint8"
78
+ }],
79
+ "payable": false,
80
+ "stateMutability": "view",
81
+ "type": "function"
82
+ }, {
83
+ "constant": true,
84
+ "inputs": [{
85
+ "name": "group",
86
+ "type": "address"
87
+ }, {
88
+ "name": "access_type",
89
+ "type": "uint8"
90
+ }],
91
+ "name": "checkAccessGroupRights",
92
+ "outputs": [{
93
+ "name": "",
94
+ "type": "bool"
95
+ }],
96
+ "payable": false,
97
+ "stateMutability": "view",
98
+ "type": "function"
99
+ }, {
100
+ "constant": true,
101
+ "inputs": [],
102
+ "name": "CATEGORY_LIBRARY",
103
+ "outputs": [{
104
+ "name": "",
105
+ "type": "uint8"
106
+ }],
107
+ "payable": false,
108
+ "stateMutability": "view",
109
+ "type": "function"
110
+ }, {
111
+ "constant": true,
112
+ "inputs": [],
113
+ "name": "ACCESS_CONFIRMED",
114
+ "outputs": [{
115
+ "name": "",
116
+ "type": "uint8"
117
+ }],
118
+ "payable": false,
119
+ "stateMutability": "view",
120
+ "type": "function"
121
+ }, {
122
+ "constant": false,
123
+ "inputs": [{
124
+ "name": "obj",
125
+ "type": "address"
126
+ }, {
127
+ "name": "access_type",
128
+ "type": "uint8"
129
+ }, {
130
+ "name": "access",
131
+ "type": "uint8"
132
+ }],
133
+ "name": "setContractRights",
134
+ "outputs": [],
135
+ "payable": false,
136
+ "stateMutability": "nonpayable",
137
+ "type": "function"
138
+ }, {
139
+ "constant": true,
140
+ "inputs": [{
141
+ "name": "position",
142
+ "type": "uint256"
143
+ }],
144
+ "name": "getAccessGroup",
145
+ "outputs": [{
146
+ "name": "",
147
+ "type": "address"
148
+ }],
149
+ "payable": false,
150
+ "stateMutability": "view",
151
+ "type": "function"
152
+ }, {
153
+ "constant": false,
154
+ "inputs": [],
155
+ "name": "cleanUpAll",
156
+ "outputs": [{
157
+ "name": "",
158
+ "type": "uint256"
159
+ }, {
160
+ "name": "",
161
+ "type": "uint256"
162
+ }, {
163
+ "name": "",
164
+ "type": "uint256"
165
+ }, {
166
+ "name": "",
167
+ "type": "uint256"
168
+ }, {
169
+ "name": "",
170
+ "type": "uint256"
171
+ }],
172
+ "payable": false,
173
+ "stateMutability": "nonpayable",
174
+ "type": "function"
175
+ }, {
176
+ "constant": true,
177
+ "inputs": [{
178
+ "name": "group",
179
+ "type": "address"
180
+ }],
181
+ "name": "getAccessGroupRights",
182
+ "outputs": [{
183
+ "name": "",
184
+ "type": "uint8"
185
+ }],
186
+ "payable": false,
187
+ "stateMutability": "view",
188
+ "type": "function"
189
+ }, {
190
+ "constant": true,
191
+ "inputs": [],
192
+ "name": "accessGroups",
193
+ "outputs": [{
194
+ "name": "category",
195
+ "type": "uint8"
196
+ }, {
197
+ "name": "length",
198
+ "type": "uint256"
199
+ }],
200
+ "payable": false,
201
+ "stateMutability": "view",
202
+ "type": "function"
203
+ }, {
204
+ "constant": false,
205
+ "inputs": [{
206
+ "name": "obj",
207
+ "type": "address"
208
+ }, {
209
+ "name": "access_type",
210
+ "type": "uint8"
211
+ }, {
212
+ "name": "access",
213
+ "type": "uint8"
214
+ }],
215
+ "name": "setContentObjectRights",
216
+ "outputs": [],
217
+ "payable": false,
218
+ "stateMutability": "nonpayable",
219
+ "type": "function"
220
+ }, {
221
+ "constant": false,
222
+ "inputs": [],
223
+ "name": "kill",
224
+ "outputs": [],
225
+ "payable": false,
226
+ "stateMutability": "nonpayable",
227
+ "type": "function"
228
+ }, {
229
+ "constant": true,
230
+ "inputs": [{
231
+ "name": "candidate",
232
+ "type": "address"
233
+ }],
234
+ "name": "hasManagerAccess",
235
+ "outputs": [{
236
+ "name": "",
237
+ "type": "bool"
238
+ }],
239
+ "payable": false,
240
+ "stateMutability": "view",
241
+ "type": "function"
242
+ }, {
243
+ "constant": true,
244
+ "inputs": [],
245
+ "name": "ACCESS_TENTATIVE",
246
+ "outputs": [{
247
+ "name": "",
248
+ "type": "uint8"
249
+ }],
250
+ "payable": false,
251
+ "stateMutability": "view",
252
+ "type": "function"
253
+ }, {
254
+ "constant": true,
255
+ "inputs": [],
256
+ "name": "version",
257
+ "outputs": [{
258
+ "name": "",
259
+ "type": "bytes32"
260
+ }],
261
+ "payable": false,
262
+ "stateMutability": "view",
263
+ "type": "function"
264
+ }, {
265
+ "constant": true,
266
+ "inputs": [],
267
+ "name": "getContentTypesLength",
268
+ "outputs": [{
269
+ "name": "",
270
+ "type": "uint256"
271
+ }],
272
+ "payable": false,
273
+ "stateMutability": "view",
274
+ "type": "function"
275
+ }, {
276
+ "constant": true,
277
+ "inputs": [],
278
+ "name": "TYPE_EDIT",
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": "obj",
290
+ "type": "address"
291
+ }, {
292
+ "name": "access_type",
293
+ "type": "uint8"
294
+ }],
295
+ "name": "checkContentObjectRights",
296
+ "outputs": [{
297
+ "name": "",
298
+ "type": "bool"
299
+ }],
300
+ "payable": false,
301
+ "stateMutability": "view",
302
+ "type": "function"
303
+ }, {
304
+ "constant": true,
305
+ "inputs": [],
306
+ "name": "CATEGORY_CONTRACT",
307
+ "outputs": [{
308
+ "name": "",
309
+ "type": "uint8"
310
+ }],
311
+ "payable": false,
312
+ "stateMutability": "view",
313
+ "type": "function"
314
+ }, {
315
+ "constant": true,
316
+ "inputs": [{
317
+ "name": "lib",
318
+ "type": "address"
319
+ }, {
320
+ "name": "access_type",
321
+ "type": "uint8"
322
+ }],
323
+ "name": "checkLibraryRights",
324
+ "outputs": [{
325
+ "name": "",
326
+ "type": "bool"
327
+ }],
328
+ "payable": false,
329
+ "stateMutability": "view",
330
+ "type": "function"
331
+ }, {
332
+ "constant": true,
333
+ "inputs": [],
334
+ "name": "CATEGORY_CONTENT_TYPE",
335
+ "outputs": [{
336
+ "name": "",
337
+ "type": "uint8"
338
+ }],
339
+ "payable": false,
340
+ "stateMutability": "view",
341
+ "type": "function"
342
+ }, {
343
+ "constant": true,
344
+ "inputs": [{
345
+ "name": "obj",
346
+ "type": "address"
347
+ }],
348
+ "name": "getContentObjectRights",
349
+ "outputs": [{
350
+ "name": "",
351
+ "type": "uint8"
352
+ }],
353
+ "payable": false,
354
+ "stateMutability": "view",
355
+ "type": "function"
356
+ }, {
357
+ "constant": true,
358
+ "inputs": [],
359
+ "name": "contracts",
360
+ "outputs": [{
361
+ "name": "category",
362
+ "type": "uint8"
363
+ }, {
364
+ "name": "length",
365
+ "type": "uint256"
366
+ }],
367
+ "payable": false,
368
+ "stateMutability": "view",
369
+ "type": "function"
370
+ }, {
371
+ "constant": false,
372
+ "inputs": [{
373
+ "name": "newCreator",
374
+ "type": "address"
375
+ }],
376
+ "name": "transferCreatorship",
377
+ "outputs": [],
378
+ "payable": false,
379
+ "stateMutability": "nonpayable",
380
+ "type": "function"
381
+ }, {
382
+ "constant": true,
383
+ "inputs": [{
384
+ "name": "position",
385
+ "type": "uint256"
386
+ }],
387
+ "name": "getContract",
388
+ "outputs": [{
389
+ "name": "",
390
+ "type": "address"
391
+ }],
392
+ "payable": false,
393
+ "stateMutability": "view",
394
+ "type": "function"
395
+ }, {
396
+ "constant": true,
397
+ "inputs": [{
398
+ "name": "addr",
399
+ "type": "address"
400
+ }],
401
+ "name": "contractExists",
402
+ "outputs": [{
403
+ "name": "",
404
+ "type": "bool"
405
+ }],
406
+ "payable": false,
407
+ "stateMutability": "view",
408
+ "type": "function"
409
+ }, {
410
+ "constant": false,
411
+ "inputs": [{
412
+ "name": "lib",
413
+ "type": "address"
414
+ }, {
415
+ "name": "access_type",
416
+ "type": "uint8"
417
+ }, {
418
+ "name": "access",
419
+ "type": "uint8"
420
+ }],
421
+ "name": "setLibraryRights",
422
+ "outputs": [],
423
+ "payable": false,
424
+ "stateMutability": "nonpayable",
425
+ "type": "function"
426
+ }, {
427
+ "constant": true,
428
+ "inputs": [{
429
+ "name": "index_type",
430
+ "type": "uint8"
431
+ }, {
432
+ "name": "obj",
433
+ "type": "address"
434
+ }, {
435
+ "name": "access_type",
436
+ "type": "uint8"
437
+ }],
438
+ "name": "checkRights",
439
+ "outputs": [{
440
+ "name": "",
441
+ "type": "bool"
442
+ }],
443
+ "payable": false,
444
+ "stateMutability": "view",
445
+ "type": "function"
446
+ }, {
447
+ "constant": true,
448
+ "inputs": [],
449
+ "name": "ACCESS_NONE",
450
+ "outputs": [{
451
+ "name": "",
452
+ "type": "uint8"
453
+ }],
454
+ "payable": false,
455
+ "stateMutability": "view",
456
+ "type": "function"
457
+ }, {
458
+ "constant": false,
459
+ "inputs": [],
460
+ "name": "cleanUpContentTypes",
461
+ "outputs": [{
462
+ "name": "",
463
+ "type": "uint256"
464
+ }],
465
+ "payable": false,
466
+ "stateMutability": "nonpayable",
467
+ "type": "function"
468
+ }, {
469
+ "constant": false,
470
+ "inputs": [{
471
+ "name": "obj",
472
+ "type": "address"
473
+ }, {
474
+ "name": "access_type",
475
+ "type": "uint8"
476
+ }, {
477
+ "name": "access",
478
+ "type": "uint8"
479
+ }],
480
+ "name": "setContentTypeRights",
481
+ "outputs": [],
482
+ "payable": false,
483
+ "stateMutability": "nonpayable",
484
+ "type": "function"
485
+ }, {
486
+ "constant": true,
487
+ "inputs": [],
488
+ "name": "owner",
489
+ "outputs": [{
490
+ "name": "",
491
+ "type": "address"
492
+ }],
493
+ "payable": false,
494
+ "stateMutability": "view",
495
+ "type": "function"
496
+ }, {
497
+ "constant": false,
498
+ "inputs": [],
499
+ "name": "cleanUpLibraries",
500
+ "outputs": [{
501
+ "name": "",
502
+ "type": "uint256"
503
+ }],
504
+ "payable": false,
505
+ "stateMutability": "nonpayable",
506
+ "type": "function"
507
+ }, {
508
+ "constant": true,
509
+ "inputs": [],
510
+ "name": "TYPE_SEE",
511
+ "outputs": [{
512
+ "name": "",
513
+ "type": "uint8"
514
+ }],
515
+ "payable": false,
516
+ "stateMutability": "view",
517
+ "type": "function"
518
+ }, {
519
+ "constant": true,
520
+ "inputs": [],
521
+ "name": "contentTypes",
522
+ "outputs": [{
523
+ "name": "category",
524
+ "type": "uint8"
525
+ }, {
526
+ "name": "length",
527
+ "type": "uint256"
528
+ }],
529
+ "payable": false,
530
+ "stateMutability": "view",
531
+ "type": "function"
532
+ }, {
533
+ "constant": true,
534
+ "inputs": [{
535
+ "name": "index_type",
536
+ "type": "uint8"
537
+ }, {
538
+ "name": "obj",
539
+ "type": "address"
540
+ }, {
541
+ "name": "access_type",
542
+ "type": "uint8"
543
+ }],
544
+ "name": "checkDirectRights",
545
+ "outputs": [{
546
+ "name": "",
547
+ "type": "bool"
548
+ }],
549
+ "payable": false,
550
+ "stateMutability": "view",
551
+ "type": "function"
552
+ }, {
553
+ "constant": true,
554
+ "inputs": [{
555
+ "name": "obj",
556
+ "type": "address"
557
+ }],
558
+ "name": "getContentTypeRights",
559
+ "outputs": [{
560
+ "name": "",
561
+ "type": "uint8"
562
+ }],
563
+ "payable": false,
564
+ "stateMutability": "view",
565
+ "type": "function"
566
+ }, {
567
+ "constant": true,
568
+ "inputs": [{
569
+ "name": "obj",
570
+ "type": "address"
571
+ }, {
572
+ "name": "access_type",
573
+ "type": "uint8"
574
+ }],
575
+ "name": "checkContractRights",
576
+ "outputs": [{
577
+ "name": "",
578
+ "type": "bool"
579
+ }],
580
+ "payable": false,
581
+ "stateMutability": "view",
582
+ "type": "function"
583
+ }, {
584
+ "constant": true,
585
+ "inputs": [],
586
+ "name": "contentObjects",
587
+ "outputs": [{
588
+ "name": "category",
589
+ "type": "uint8"
590
+ }, {
591
+ "name": "length",
592
+ "type": "uint256"
593
+ }],
594
+ "payable": false,
595
+ "stateMutability": "view",
596
+ "type": "function"
597
+ }, {
598
+ "constant": true,
599
+ "inputs": [{
600
+ "name": "position",
601
+ "type": "uint256"
602
+ }],
603
+ "name": "getContentType",
604
+ "outputs": [{
605
+ "name": "",
606
+ "type": "address"
607
+ }],
608
+ "payable": false,
609
+ "stateMutability": "view",
610
+ "type": "function"
611
+ }, {
612
+ "constant": true,
613
+ "inputs": [],
614
+ "name": "contentSpace",
615
+ "outputs": [{
616
+ "name": "",
617
+ "type": "address"
618
+ }],
619
+ "payable": false,
620
+ "stateMutability": "view",
621
+ "type": "function"
622
+ }, {
623
+ "constant": false,
624
+ "inputs": [],
625
+ "name": "setAccessRights",
626
+ "outputs": [],
627
+ "payable": false,
628
+ "stateMutability": "nonpayable",
629
+ "type": "function"
630
+ }, {
631
+ "constant": true,
632
+ "inputs": [],
633
+ "name": "libraries",
634
+ "outputs": [{
635
+ "name": "category",
636
+ "type": "uint8"
637
+ }, {
638
+ "name": "length",
639
+ "type": "uint256"
640
+ }],
641
+ "payable": false,
642
+ "stateMutability": "view",
643
+ "type": "function"
644
+ }, {
645
+ "constant": true,
646
+ "inputs": [],
647
+ "name": "getLibrariesLength",
648
+ "outputs": [{
649
+ "name": "",
650
+ "type": "uint256"
651
+ }],
652
+ "payable": false,
653
+ "stateMutability": "view",
654
+ "type": "function"
655
+ }, {
656
+ "constant": true,
657
+ "inputs": [{
658
+ "name": "position",
659
+ "type": "uint256"
660
+ }],
661
+ "name": "getContentObject",
662
+ "outputs": [{
663
+ "name": "",
664
+ "type": "address"
665
+ }],
666
+ "payable": false,
667
+ "stateMutability": "view",
668
+ "type": "function"
669
+ }, {
670
+ "constant": true,
671
+ "inputs": [{
672
+ "name": "position",
673
+ "type": "uint256"
674
+ }],
675
+ "name": "getLibrary",
676
+ "outputs": [{
677
+ "name": "",
678
+ "type": "address"
679
+ }],
680
+ "payable": false,
681
+ "stateMutability": "view",
682
+ "type": "function"
683
+ }, {
684
+ "constant": true,
685
+ "inputs": [],
686
+ "name": "TYPE_ACCESS",
687
+ "outputs": [{
688
+ "name": "",
689
+ "type": "uint8"
690
+ }],
691
+ "payable": false,
692
+ "stateMutability": "view",
693
+ "type": "function"
694
+ }, {
695
+ "constant": false,
696
+ "inputs": [],
697
+ "name": "cleanUpAccessGroups",
698
+ "outputs": [{
699
+ "name": "",
700
+ "type": "uint256"
701
+ }],
702
+ "payable": false,
703
+ "stateMutability": "nonpayable",
704
+ "type": "function"
705
+ }, {
706
+ "constant": true,
707
+ "inputs": [],
708
+ "name": "getContentObjectsLength",
709
+ "outputs": [{
710
+ "name": "",
711
+ "type": "uint256"
712
+ }],
713
+ "payable": false,
714
+ "stateMutability": "view",
715
+ "type": "function"
716
+ }, {
717
+ "constant": false,
718
+ "inputs": [{
719
+ "name": "group",
720
+ "type": "address"
721
+ }, {
722
+ "name": "access_type",
723
+ "type": "uint8"
724
+ }, {
725
+ "name": "access",
726
+ "type": "uint8"
727
+ }],
728
+ "name": "setAccessGroupRights",
729
+ "outputs": [],
730
+ "payable": false,
731
+ "stateMutability": "nonpayable",
732
+ "type": "function"
733
+ }, {
734
+ "constant": false,
735
+ "inputs": [{
736
+ "name": "newOwner",
737
+ "type": "address"
738
+ }],
739
+ "name": "transferOwnership",
740
+ "outputs": [],
741
+ "payable": false,
742
+ "stateMutability": "nonpayable",
743
+ "type": "function"
744
+ }, {
745
+ "constant": true,
746
+ "inputs": [{
747
+ "name": "lib",
748
+ "type": "address"
749
+ }],
750
+ "name": "getLibraryRights",
751
+ "outputs": [{
752
+ "name": "",
753
+ "type": "uint8"
754
+ }],
755
+ "payable": false,
756
+ "stateMutability": "view",
757
+ "type": "function"
758
+ }, {
759
+ "constant": true,
760
+ "inputs": [],
761
+ "name": "getContractsLength",
762
+ "outputs": [{
763
+ "name": "",
764
+ "type": "uint256"
765
+ }],
766
+ "payable": false,
767
+ "stateMutability": "view",
768
+ "type": "function"
769
+ }, {
770
+ "constant": true,
771
+ "inputs": [{
772
+ "name": "obj",
773
+ "type": "address"
774
+ }, {
775
+ "name": "access_type",
776
+ "type": "uint8"
777
+ }],
778
+ "name": "checkContentTypeRights",
779
+ "outputs": [{
780
+ "name": "",
781
+ "type": "bool"
782
+ }],
783
+ "payable": false,
784
+ "stateMutability": "view",
785
+ "type": "function"
786
+ }, {
787
+ "inputs": [],
788
+ "payable": true,
789
+ "stateMutability": "payable",
790
+ "type": "constructor"
791
+ }, {
792
+ "payable": true,
793
+ "stateMutability": "payable",
794
+ "type": "fallback"
795
+ }, {
796
+ "anonymous": false,
797
+ "inputs": [{
798
+ "indexed": false,
799
+ "name": "principal",
800
+ "type": "address"
801
+ }, {
802
+ "indexed": false,
803
+ "name": "entity",
804
+ "type": "address"
805
+ }, {
806
+ "indexed": false,
807
+ "name": "aggregate",
808
+ "type": "uint8"
809
+ }],
810
+ "name": "RightsChanged",
811
+ "type": "event"
812
+ }, {
813
+ "anonymous": false,
814
+ "inputs": [{
815
+ "indexed": false,
816
+ "name": "label",
817
+ "type": "string"
818
+ }, {
819
+ "indexed": false,
820
+ "name": "index",
821
+ "type": "uint256"
822
+ }, {
823
+ "indexed": false,
824
+ "name": "a",
825
+ "type": "address"
826
+ }],
827
+ "name": "dbgAddress",
828
+ "type": "event"
829
+ }]
830
+ };
831
+ module.exports = contract;