@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,1032 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": false,
4
+ "inputs": [{
5
+ "name": "requestNonce",
6
+ "type": "uint256"
7
+ }, {
8
+ "name": "percentPlayed",
9
+ "type": "uint8"
10
+ }, {
11
+ "name": "originator",
12
+ "type": "address"
13
+ }, {
14
+ "name": "requestTimestamp",
15
+ "type": "uint256"
16
+ }],
17
+ "name": "logRecordingPlaybackCompleted",
18
+ "outputs": [],
19
+ "payable": false,
20
+ "stateMutability": "nonpayable",
21
+ "type": "function"
22
+ }, {
23
+ "constant": true,
24
+ "inputs": [],
25
+ "name": "creator",
26
+ "outputs": [{
27
+ "name": "",
28
+ "type": "address"
29
+ }],
30
+ "payable": false,
31
+ "stateMutability": "view",
32
+ "type": "function"
33
+ }, {
34
+ "constant": false,
35
+ "inputs": [{
36
+ "name": "requestNonce",
37
+ "type": "uint256"
38
+ }, {
39
+ "name": "originator",
40
+ "type": "address"
41
+ }, {
42
+ "name": "requestTimestamp",
43
+ "type": "uint256"
44
+ }],
45
+ "name": "logRecordingPlaybackStarted",
46
+ "outputs": [],
47
+ "payable": false,
48
+ "stateMutability": "nonpayable",
49
+ "type": "function"
50
+ }, {
51
+ "constant": false,
52
+ "inputs": [{
53
+ "name": "",
54
+ "type": "uint256"
55
+ }, {
56
+ "name": "",
57
+ "type": "bytes32[]"
58
+ }, {
59
+ "name": "",
60
+ "type": "address[]"
61
+ }, {
62
+ "name": "accessor",
63
+ "type": "address"
64
+ }],
65
+ "name": "runFinalize",
66
+ "outputs": [{
67
+ "name": "",
68
+ "type": "uint256"
69
+ }],
70
+ "payable": true,
71
+ "stateMutability": "payable",
72
+ "type": "function"
73
+ }, {
74
+ "constant": true,
75
+ "inputs": [],
76
+ "name": "recordingStream",
77
+ "outputs": [{
78
+ "name": "",
79
+ "type": "address"
80
+ }],
81
+ "payable": false,
82
+ "stateMutability": "view",
83
+ "type": "function"
84
+ }, {
85
+ "constant": false,
86
+ "inputs": [],
87
+ "name": "logRecordingStatus",
88
+ "outputs": [{
89
+ "name": "",
90
+ "type": "uint8"
91
+ }],
92
+ "payable": false,
93
+ "stateMutability": "nonpayable",
94
+ "type": "function"
95
+ }, {
96
+ "constant": false,
97
+ "inputs": [],
98
+ "name": "commandKill",
99
+ "outputs": [],
100
+ "payable": false,
101
+ "stateMutability": "nonpayable",
102
+ "type": "function"
103
+ }, {
104
+ "constant": true,
105
+ "inputs": [],
106
+ "name": "endTime",
107
+ "outputs": [{
108
+ "name": "",
109
+ "type": "uint256"
110
+ }],
111
+ "payable": false,
112
+ "stateMutability": "view",
113
+ "type": "function"
114
+ }, {
115
+ "constant": false,
116
+ "inputs": [{
117
+ "name": "proposed_status_code",
118
+ "type": "int256"
119
+ }],
120
+ "name": "runStatusChange",
121
+ "outputs": [{
122
+ "name": "",
123
+ "type": "int256"
124
+ }],
125
+ "payable": true,
126
+ "stateMutability": "payable",
127
+ "type": "function"
128
+ }, {
129
+ "constant": false,
130
+ "inputs": [],
131
+ "name": "kill",
132
+ "outputs": [],
133
+ "payable": false,
134
+ "stateMutability": "nonpayable",
135
+ "type": "function"
136
+ }, {
137
+ "constant": true,
138
+ "inputs": [{
139
+ "name": "",
140
+ "type": "int256"
141
+ }],
142
+ "name": "runDescribeStatus",
143
+ "outputs": [{
144
+ "name": "",
145
+ "type": "bytes32"
146
+ }],
147
+ "payable": false,
148
+ "stateMutability": "view",
149
+ "type": "function"
150
+ }, {
151
+ "constant": true,
152
+ "inputs": [],
153
+ "name": "version",
154
+ "outputs": [{
155
+ "name": "",
156
+ "type": "bytes32"
157
+ }],
158
+ "payable": false,
159
+ "stateMutability": "view",
160
+ "type": "function"
161
+ }, {
162
+ "constant": false,
163
+ "inputs": [{
164
+ "name": "_handle",
165
+ "type": "string"
166
+ }],
167
+ "name": "startStream",
168
+ "outputs": [],
169
+ "payable": false,
170
+ "stateMutability": "nonpayable",
171
+ "type": "function"
172
+ }, {
173
+ "constant": true,
174
+ "inputs": [],
175
+ "name": "versionAPI",
176
+ "outputs": [{
177
+ "name": "",
178
+ "type": "bytes32"
179
+ }],
180
+ "payable": false,
181
+ "stateMutability": "view",
182
+ "type": "function"
183
+ }, {
184
+ "constant": true,
185
+ "inputs": [{
186
+ "name": "",
187
+ "type": "uint256"
188
+ }],
189
+ "name": "membershipGroups",
190
+ "outputs": [{
191
+ "name": "",
192
+ "type": "address"
193
+ }],
194
+ "payable": false,
195
+ "stateMutability": "view",
196
+ "type": "function"
197
+ }, {
198
+ "constant": true,
199
+ "inputs": [],
200
+ "name": "recordingEnabled",
201
+ "outputs": [{
202
+ "name": "",
203
+ "type": "bool"
204
+ }],
205
+ "payable": false,
206
+ "stateMutability": "view",
207
+ "type": "function"
208
+ }, {
209
+ "constant": false,
210
+ "inputs": [{
211
+ "name": "stream",
212
+ "type": "address"
213
+ }],
214
+ "name": "setRecordingStream",
215
+ "outputs": [],
216
+ "payable": false,
217
+ "stateMutability": "nonpayable",
218
+ "type": "function"
219
+ }, {
220
+ "constant": true,
221
+ "inputs": [],
222
+ "name": "DEFAULT_ACCESS",
223
+ "outputs": [{
224
+ "name": "",
225
+ "type": "uint8"
226
+ }],
227
+ "payable": false,
228
+ "stateMutability": "view",
229
+ "type": "function"
230
+ }, {
231
+ "constant": false,
232
+ "inputs": [{
233
+ "name": "newCreator",
234
+ "type": "address"
235
+ }],
236
+ "name": "transferCreatorship",
237
+ "outputs": [],
238
+ "payable": false,
239
+ "stateMutability": "nonpayable",
240
+ "type": "function"
241
+ }, {
242
+ "constant": true,
243
+ "inputs": [{
244
+ "name": "",
245
+ "type": "bytes32[]"
246
+ }, {
247
+ "name": "",
248
+ "type": "address[]"
249
+ }, {
250
+ "name": "accessor",
251
+ "type": "address"
252
+ }],
253
+ "name": "runAccessInfo",
254
+ "outputs": [{
255
+ "name": "",
256
+ "type": "uint8"
257
+ }, {
258
+ "name": "",
259
+ "type": "uint8"
260
+ }, {
261
+ "name": "",
262
+ "type": "uint8"
263
+ }, {
264
+ "name": "",
265
+ "type": "uint256"
266
+ }],
267
+ "payable": false,
268
+ "stateMutability": "view",
269
+ "type": "function"
270
+ }, {
271
+ "constant": false,
272
+ "inputs": [{
273
+ "name": "programId",
274
+ "type": "string"
275
+ }, {
276
+ "name": "programStart",
277
+ "type": "uint256"
278
+ }, {
279
+ "name": "programEnd",
280
+ "type": "uint256"
281
+ }, {
282
+ "name": "programTitle",
283
+ "type": "string"
284
+ }],
285
+ "name": "logRecordedProgramId",
286
+ "outputs": [],
287
+ "payable": false,
288
+ "stateMutability": "nonpayable",
289
+ "type": "function"
290
+ }, {
291
+ "constant": true,
292
+ "inputs": [],
293
+ "name": "startTime",
294
+ "outputs": [{
295
+ "name": "",
296
+ "type": "uint256"
297
+ }],
298
+ "payable": false,
299
+ "stateMutability": "view",
300
+ "type": "function"
301
+ }, {
302
+ "constant": false,
303
+ "inputs": [],
304
+ "name": "enableRecording",
305
+ "outputs": [],
306
+ "payable": false,
307
+ "stateMutability": "nonpayable",
308
+ "type": "function"
309
+ }, {
310
+ "constant": false,
311
+ "inputs": [],
312
+ "name": "runCreate",
313
+ "outputs": [{
314
+ "name": "",
315
+ "type": "uint256"
316
+ }],
317
+ "payable": true,
318
+ "stateMutability": "payable",
319
+ "type": "function"
320
+ }, {
321
+ "constant": true,
322
+ "inputs": [],
323
+ "name": "rightsHolder",
324
+ "outputs": [{
325
+ "name": "",
326
+ "type": "address"
327
+ }],
328
+ "payable": false,
329
+ "stateMutability": "view",
330
+ "type": "function"
331
+ }, {
332
+ "constant": false,
333
+ "inputs": [],
334
+ "name": "runKillExt",
335
+ "outputs": [{
336
+ "name": "",
337
+ "type": "uint256"
338
+ }],
339
+ "payable": true,
340
+ "stateMutability": "payable",
341
+ "type": "function"
342
+ }, {
343
+ "constant": true,
344
+ "inputs": [],
345
+ "name": "owner",
346
+ "outputs": [{
347
+ "name": "",
348
+ "type": "address"
349
+ }],
350
+ "payable": false,
351
+ "stateMutability": "view",
352
+ "type": "function"
353
+ }, {
354
+ "constant": false,
355
+ "inputs": [{
356
+ "name": "group",
357
+ "type": "address"
358
+ }],
359
+ "name": "addMembershipGroup",
360
+ "outputs": [],
361
+ "payable": false,
362
+ "stateMutability": "nonpayable",
363
+ "type": "function"
364
+ }, {
365
+ "constant": false,
366
+ "inputs": [{
367
+ "name": "accessor",
368
+ "type": "address"
369
+ }, {
370
+ "name": "rightsHolderDecision",
371
+ "type": "bool"
372
+ }],
373
+ "name": "logRecordingAuthorization",
374
+ "outputs": [{
375
+ "name": "",
376
+ "type": "bool"
377
+ }, {
378
+ "name": "",
379
+ "type": "bool"
380
+ }],
381
+ "payable": false,
382
+ "stateMutability": "nonpayable",
383
+ "type": "function"
384
+ }, {
385
+ "constant": false,
386
+ "inputs": [],
387
+ "name": "runKill",
388
+ "outputs": [{
389
+ "name": "",
390
+ "type": "uint256"
391
+ }],
392
+ "payable": true,
393
+ "stateMutability": "payable",
394
+ "type": "function"
395
+ }, {
396
+ "constant": false,
397
+ "inputs": [{
398
+ "name": "_rightsHolder",
399
+ "type": "address"
400
+ }],
401
+ "name": "setRightsHolder",
402
+ "outputs": [],
403
+ "payable": false,
404
+ "stateMutability": "nonpayable",
405
+ "type": "function"
406
+ }, {
407
+ "constant": true,
408
+ "inputs": [{
409
+ "name": "accessor",
410
+ "type": "address"
411
+ }],
412
+ "name": "hasMembership",
413
+ "outputs": [{
414
+ "name": "",
415
+ "type": "bool"
416
+ }],
417
+ "payable": false,
418
+ "stateMutability": "view",
419
+ "type": "function"
420
+ }, {
421
+ "constant": true,
422
+ "inputs": [],
423
+ "name": "contentSpace",
424
+ "outputs": [{
425
+ "name": "",
426
+ "type": "address"
427
+ }],
428
+ "payable": false,
429
+ "stateMutability": "view",
430
+ "type": "function"
431
+ }, {
432
+ "constant": true,
433
+ "inputs": [],
434
+ "name": "hasRightsHolderPermission",
435
+ "outputs": [{
436
+ "name": "",
437
+ "type": "bool"
438
+ }],
439
+ "payable": false,
440
+ "stateMutability": "view",
441
+ "type": "function"
442
+ }, {
443
+ "constant": true,
444
+ "inputs": [],
445
+ "name": "DEFAULT_SEE",
446
+ "outputs": [{
447
+ "name": "",
448
+ "type": "uint8"
449
+ }],
450
+ "payable": false,
451
+ "stateMutability": "view",
452
+ "type": "function"
453
+ }, {
454
+ "constant": false,
455
+ "inputs": [],
456
+ "name": "stopStream",
457
+ "outputs": [],
458
+ "payable": false,
459
+ "stateMutability": "nonpayable",
460
+ "type": "function"
461
+ }, {
462
+ "constant": false,
463
+ "inputs": [],
464
+ "name": "logRecordingTimes",
465
+ "outputs": [],
466
+ "payable": false,
467
+ "stateMutability": "nonpayable",
468
+ "type": "function"
469
+ }, {
470
+ "constant": false,
471
+ "inputs": [],
472
+ "name": "disableRecording",
473
+ "outputs": [],
474
+ "payable": false,
475
+ "stateMutability": "nonpayable",
476
+ "type": "function"
477
+ }, {
478
+ "constant": false,
479
+ "inputs": [],
480
+ "name": "logRecordingDeletion",
481
+ "outputs": [],
482
+ "payable": false,
483
+ "stateMutability": "nonpayable",
484
+ "type": "function"
485
+ }, {
486
+ "constant": false,
487
+ "inputs": [{
488
+ "name": "accessor",
489
+ "type": "address"
490
+ }],
491
+ "name": "authorizeRecording",
492
+ "outputs": [{
493
+ "name": "",
494
+ "type": "bool"
495
+ }],
496
+ "payable": false,
497
+ "stateMutability": "nonpayable",
498
+ "type": "function"
499
+ }, {
500
+ "constant": false,
501
+ "inputs": [],
502
+ "name": "runEdit",
503
+ "outputs": [{
504
+ "name": "",
505
+ "type": "uint256"
506
+ }],
507
+ "payable": false,
508
+ "stateMutability": "nonpayable",
509
+ "type": "function"
510
+ }, {
511
+ "constant": true,
512
+ "inputs": [],
513
+ "name": "canRecord",
514
+ "outputs": [{
515
+ "name": "",
516
+ "type": "bool"
517
+ }],
518
+ "payable": false,
519
+ "stateMutability": "view",
520
+ "type": "function"
521
+ }, {
522
+ "constant": false,
523
+ "inputs": [{
524
+ "name": "group",
525
+ "type": "address"
526
+ }],
527
+ "name": "removeMembershipGroup",
528
+ "outputs": [{
529
+ "name": "",
530
+ "type": "bool"
531
+ }],
532
+ "payable": false,
533
+ "stateMutability": "nonpayable",
534
+ "type": "function"
535
+ }, {
536
+ "constant": true,
537
+ "inputs": [],
538
+ "name": "membershipGroupsLength",
539
+ "outputs": [{
540
+ "name": "",
541
+ "type": "uint256"
542
+ }],
543
+ "payable": false,
544
+ "stateMutability": "view",
545
+ "type": "function"
546
+ }, {
547
+ "constant": true,
548
+ "inputs": [],
549
+ "name": "DEFAULT_CHARGE",
550
+ "outputs": [{
551
+ "name": "",
552
+ "type": "uint8"
553
+ }],
554
+ "payable": false,
555
+ "stateMutability": "view",
556
+ "type": "function"
557
+ }, {
558
+ "constant": false,
559
+ "inputs": [{
560
+ "name": "newOwner",
561
+ "type": "address"
562
+ }],
563
+ "name": "transferOwnership",
564
+ "outputs": [],
565
+ "payable": false,
566
+ "stateMutability": "nonpayable",
567
+ "type": "function"
568
+ }, {
569
+ "constant": false,
570
+ "inputs": [{
571
+ "name": "",
572
+ "type": "uint256"
573
+ }, {
574
+ "name": "",
575
+ "type": "bytes32[]"
576
+ }, {
577
+ "name": "",
578
+ "type": "address[]"
579
+ }, {
580
+ "name": "accessor",
581
+ "type": "address"
582
+ }],
583
+ "name": "runAccess",
584
+ "outputs": [{
585
+ "name": "",
586
+ "type": "uint256"
587
+ }],
588
+ "payable": true,
589
+ "stateMutability": "payable",
590
+ "type": "function"
591
+ }, {
592
+ "constant": true,
593
+ "inputs": [],
594
+ "name": "handle",
595
+ "outputs": [{
596
+ "name": "",
597
+ "type": "string"
598
+ }],
599
+ "payable": false,
600
+ "stateMutability": "view",
601
+ "type": "function"
602
+ }, {
603
+ "inputs": [],
604
+ "payable": true,
605
+ "stateMutability": "payable",
606
+ "type": "constructor"
607
+ }, {
608
+ "payable": true,
609
+ "stateMutability": "payable",
610
+ "type": "fallback"
611
+ }, {
612
+ "anonymous": false,
613
+ "inputs": [{
614
+ "indexed": false,
615
+ "name": "timestamp",
616
+ "type": "uint256"
617
+ }, {
618
+ "indexed": false,
619
+ "name": "accessor",
620
+ "type": "address"
621
+ }, {
622
+ "indexed": false,
623
+ "name": "rightsHolder",
624
+ "type": "bool"
625
+ }, {
626
+ "indexed": false,
627
+ "name": "provider",
628
+ "type": "bool"
629
+ }, {
630
+ "indexed": false,
631
+ "name": "membership",
632
+ "type": "bool"
633
+ }],
634
+ "name": "AuthorizeRecording",
635
+ "type": "event"
636
+ }, {
637
+ "anonymous": false,
638
+ "inputs": [{
639
+ "indexed": false,
640
+ "name": "timestamp",
641
+ "type": "uint256"
642
+ }, {
643
+ "indexed": false,
644
+ "name": "accessor",
645
+ "type": "address"
646
+ }, {
647
+ "indexed": false,
648
+ "name": "recObj",
649
+ "type": "address"
650
+ }, {
651
+ "indexed": false,
652
+ "name": "recContract",
653
+ "type": "address"
654
+ }],
655
+ "name": "CreateRecording",
656
+ "type": "event"
657
+ }, {
658
+ "anonymous": false,
659
+ "inputs": [{
660
+ "indexed": false,
661
+ "name": "timestamp",
662
+ "type": "uint256"
663
+ }, {
664
+ "indexed": false,
665
+ "name": "accessor",
666
+ "type": "address"
667
+ }, {
668
+ "indexed": false,
669
+ "name": "recObj",
670
+ "type": "address"
671
+ }, {
672
+ "indexed": false,
673
+ "name": "recContract",
674
+ "type": "address"
675
+ }],
676
+ "name": "DeleteRecording",
677
+ "type": "event"
678
+ }, {
679
+ "anonymous": false,
680
+ "inputs": [{
681
+ "indexed": false,
682
+ "name": "timestamp",
683
+ "type": "uint256"
684
+ }, {
685
+ "indexed": false,
686
+ "name": "accessor",
687
+ "type": "address"
688
+ }, {
689
+ "indexed": false,
690
+ "name": "recObj",
691
+ "type": "address"
692
+ }, {
693
+ "indexed": false,
694
+ "name": "recStartTime",
695
+ "type": "uint256"
696
+ }, {
697
+ "indexed": false,
698
+ "name": "recEndTime",
699
+ "type": "uint256"
700
+ }],
701
+ "name": "SetRecordingTimes",
702
+ "type": "event"
703
+ }, {
704
+ "anonymous": false,
705
+ "inputs": [{
706
+ "indexed": false,
707
+ "name": "timestamp",
708
+ "type": "uint256"
709
+ }, {
710
+ "indexed": false,
711
+ "name": "accessor",
712
+ "type": "address"
713
+ }, {
714
+ "indexed": false,
715
+ "name": "recObj",
716
+ "type": "address"
717
+ }, {
718
+ "indexed": false,
719
+ "name": "recStatus",
720
+ "type": "string"
721
+ }],
722
+ "name": "SetRecordingStatus",
723
+ "type": "event"
724
+ }, {
725
+ "anonymous": false,
726
+ "inputs": [{
727
+ "indexed": false,
728
+ "name": "timestamp",
729
+ "type": "uint256"
730
+ }, {
731
+ "indexed": false,
732
+ "name": "accessor",
733
+ "type": "address"
734
+ }, {
735
+ "indexed": false,
736
+ "name": "recObj",
737
+ "type": "address"
738
+ }, {
739
+ "indexed": false,
740
+ "name": "requestNonce",
741
+ "type": "uint256"
742
+ }, {
743
+ "indexed": false,
744
+ "name": "accessTimestamp",
745
+ "type": "uint256"
746
+ }],
747
+ "name": "RecordingPlaybackStarted",
748
+ "type": "event"
749
+ }, {
750
+ "anonymous": false,
751
+ "inputs": [{
752
+ "indexed": false,
753
+ "name": "timestamp",
754
+ "type": "uint256"
755
+ }, {
756
+ "indexed": false,
757
+ "name": "accessor",
758
+ "type": "address"
759
+ }, {
760
+ "indexed": false,
761
+ "name": "recObj",
762
+ "type": "address"
763
+ }, {
764
+ "indexed": false,
765
+ "name": "requestNonce",
766
+ "type": "uint256"
767
+ }, {
768
+ "indexed": false,
769
+ "name": "percentPlayed",
770
+ "type": "uint8"
771
+ }, {
772
+ "indexed": false,
773
+ "name": "finalizeTimestamp",
774
+ "type": "uint256"
775
+ }],
776
+ "name": "RecordingPlaybackCompleted",
777
+ "type": "event"
778
+ }, {
779
+ "anonymous": false,
780
+ "inputs": [{
781
+ "indexed": false,
782
+ "name": "timestamp",
783
+ "type": "uint256"
784
+ }, {
785
+ "indexed": false,
786
+ "name": "accessor",
787
+ "type": "address"
788
+ }, {
789
+ "indexed": false,
790
+ "name": "recObj",
791
+ "type": "address"
792
+ }, {
793
+ "indexed": false,
794
+ "name": "programId",
795
+ "type": "string"
796
+ }, {
797
+ "indexed": false,
798
+ "name": "programStart",
799
+ "type": "uint256"
800
+ }, {
801
+ "indexed": false,
802
+ "name": "programEnd",
803
+ "type": "uint256"
804
+ }, {
805
+ "indexed": false,
806
+ "name": "programTitle",
807
+ "type": "string"
808
+ }],
809
+ "name": "RecordedProgramId",
810
+ "type": "event"
811
+ }, {
812
+ "anonymous": false,
813
+ "inputs": [{
814
+ "indexed": false,
815
+ "name": "timestamp",
816
+ "type": "uint256"
817
+ }, {
818
+ "indexed": false,
819
+ "name": "group",
820
+ "type": "address"
821
+ }],
822
+ "name": "MembershipGroupRemoved",
823
+ "type": "event"
824
+ }, {
825
+ "anonymous": false,
826
+ "inputs": [{
827
+ "indexed": false,
828
+ "name": "timestamp",
829
+ "type": "uint256"
830
+ }, {
831
+ "indexed": false,
832
+ "name": "group",
833
+ "type": "address"
834
+ }],
835
+ "name": "MembershipGroupAdded",
836
+ "type": "event"
837
+ }, {
838
+ "anonymous": false,
839
+ "inputs": [{
840
+ "indexed": false,
841
+ "name": "timestamp",
842
+ "type": "uint256"
843
+ }],
844
+ "name": "StartStream",
845
+ "type": "event"
846
+ }, {
847
+ "anonymous": false,
848
+ "inputs": [{
849
+ "indexed": false,
850
+ "name": "timestamp",
851
+ "type": "uint256"
852
+ }],
853
+ "name": "StopStream",
854
+ "type": "event"
855
+ }, {
856
+ "anonymous": false,
857
+ "inputs": [{
858
+ "indexed": false,
859
+ "name": "timestamp",
860
+ "type": "uint256"
861
+ }],
862
+ "name": "EnableRecording",
863
+ "type": "event"
864
+ }, {
865
+ "anonymous": false,
866
+ "inputs": [{
867
+ "indexed": false,
868
+ "name": "timestamp",
869
+ "type": "uint256"
870
+ }],
871
+ "name": "DisableRecording",
872
+ "type": "event"
873
+ }, {
874
+ "anonymous": false,
875
+ "inputs": [{
876
+ "indexed": false,
877
+ "name": "label",
878
+ "type": "string"
879
+ }],
880
+ "name": "Log",
881
+ "type": "event"
882
+ }, {
883
+ "anonymous": false,
884
+ "inputs": [{
885
+ "indexed": false,
886
+ "name": "label",
887
+ "type": "string"
888
+ }, {
889
+ "indexed": false,
890
+ "name": "b",
891
+ "type": "bool"
892
+ }],
893
+ "name": "LogBool",
894
+ "type": "event"
895
+ }, {
896
+ "anonymous": false,
897
+ "inputs": [{
898
+ "indexed": false,
899
+ "name": "label",
900
+ "type": "string"
901
+ }, {
902
+ "indexed": false,
903
+ "name": "a",
904
+ "type": "address"
905
+ }],
906
+ "name": "LogAddress",
907
+ "type": "event"
908
+ }, {
909
+ "anonymous": false,
910
+ "inputs": [{
911
+ "indexed": false,
912
+ "name": "label",
913
+ "type": "string"
914
+ }, {
915
+ "indexed": false,
916
+ "name": "u",
917
+ "type": "uint256"
918
+ }],
919
+ "name": "LogUint256",
920
+ "type": "event"
921
+ }, {
922
+ "anonymous": false,
923
+ "inputs": [{
924
+ "indexed": false,
925
+ "name": "label",
926
+ "type": "string"
927
+ }, {
928
+ "indexed": false,
929
+ "name": "u",
930
+ "type": "int256"
931
+ }],
932
+ "name": "LogInt256",
933
+ "type": "event"
934
+ }, {
935
+ "anonymous": false,
936
+ "inputs": [{
937
+ "indexed": false,
938
+ "name": "label",
939
+ "type": "string"
940
+ }, {
941
+ "indexed": false,
942
+ "name": "b",
943
+ "type": "bytes32"
944
+ }],
945
+ "name": "LogBytes32",
946
+ "type": "event"
947
+ }, {
948
+ "anonymous": false,
949
+ "inputs": [{
950
+ "indexed": false,
951
+ "name": "label",
952
+ "type": "string"
953
+ }, {
954
+ "indexed": false,
955
+ "name": "payee",
956
+ "type": "address"
957
+ }, {
958
+ "indexed": false,
959
+ "name": "amount",
960
+ "type": "uint256"
961
+ }],
962
+ "name": "LogPayment",
963
+ "type": "event"
964
+ }, {
965
+ "anonymous": false,
966
+ "inputs": [{
967
+ "indexed": false,
968
+ "name": "result",
969
+ "type": "uint256"
970
+ }],
971
+ "name": "RunCreate",
972
+ "type": "event"
973
+ }, {
974
+ "anonymous": false,
975
+ "inputs": [{
976
+ "indexed": false,
977
+ "name": "result",
978
+ "type": "uint256"
979
+ }],
980
+ "name": "RunKill",
981
+ "type": "event"
982
+ }, {
983
+ "anonymous": false,
984
+ "inputs": [{
985
+ "indexed": false,
986
+ "name": "proposedStatusCode",
987
+ "type": "int256"
988
+ }, {
989
+ "indexed": false,
990
+ "name": "returnStatusCode",
991
+ "type": "int256"
992
+ }],
993
+ "name": "RunStatusChange",
994
+ "type": "event"
995
+ }, {
996
+ "anonymous": false,
997
+ "inputs": [{
998
+ "indexed": false,
999
+ "name": "calculatedAccessCharge",
1000
+ "type": "int256"
1001
+ }],
1002
+ "name": "RunAccessCharge",
1003
+ "type": "event"
1004
+ }, {
1005
+ "anonymous": false,
1006
+ "inputs": [{
1007
+ "indexed": false,
1008
+ "name": "requestNonce",
1009
+ "type": "uint256"
1010
+ }, {
1011
+ "indexed": false,
1012
+ "name": "result",
1013
+ "type": "uint256"
1014
+ }],
1015
+ "name": "RunAccess",
1016
+ "type": "event"
1017
+ }, {
1018
+ "anonymous": false,
1019
+ "inputs": [{
1020
+ "indexed": false,
1021
+ "name": "requestNonce",
1022
+ "type": "uint256"
1023
+ }, {
1024
+ "indexed": false,
1025
+ "name": "result",
1026
+ "type": "uint256"
1027
+ }],
1028
+ "name": "RunFinalize",
1029
+ "type": "event"
1030
+ }]
1031
+ };
1032
+ module.exports = contract;