@eluvio/elv-client-js 4.0.114 → 4.0.116

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