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