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