@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,586 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": false,
4
+ "inputs": [{
5
+ "name": "content",
6
+ "type": "address"
7
+ }, {
8
+ "name": "accessor",
9
+ "type": "address"
10
+ }],
11
+ "name": "setAccessorGroup",
12
+ "outputs": [],
13
+ "payable": false,
14
+ "stateMutability": "nonpayable",
15
+ "type": "function"
16
+ }, {
17
+ "constant": true,
18
+ "inputs": [],
19
+ "name": "creator",
20
+ "outputs": [{
21
+ "name": "",
22
+ "type": "address"
23
+ }],
24
+ "payable": false,
25
+ "stateMutability": "view",
26
+ "type": "function"
27
+ }, {
28
+ "constant": true,
29
+ "inputs": [{
30
+ "name": "content",
31
+ "type": "address"
32
+ }, {
33
+ "name": "accessor",
34
+ "type": "address"
35
+ }],
36
+ "name": "hasAccess",
37
+ "outputs": [{
38
+ "name": "",
39
+ "type": "bool"
40
+ }],
41
+ "payable": false,
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ }, {
45
+ "constant": false,
46
+ "inputs": [{
47
+ "name": "",
48
+ "type": "uint256"
49
+ }, {
50
+ "name": "",
51
+ "type": "bytes32[]"
52
+ }, {
53
+ "name": "",
54
+ "type": "address[]"
55
+ }, {
56
+ "name": "accessor",
57
+ "type": "address"
58
+ }],
59
+ "name": "runFinalize",
60
+ "outputs": [{
61
+ "name": "",
62
+ "type": "uint256"
63
+ }],
64
+ "payable": true,
65
+ "stateMutability": "payable",
66
+ "type": "function"
67
+ }, {
68
+ "constant": false,
69
+ "inputs": [],
70
+ "name": "commandKill",
71
+ "outputs": [],
72
+ "payable": false,
73
+ "stateMutability": "nonpayable",
74
+ "type": "function"
75
+ }, {
76
+ "constant": false,
77
+ "inputs": [{
78
+ "name": "proposed_status_code",
79
+ "type": "int256"
80
+ }],
81
+ "name": "runStatusChange",
82
+ "outputs": [{
83
+ "name": "",
84
+ "type": "int256"
85
+ }],
86
+ "payable": true,
87
+ "stateMutability": "payable",
88
+ "type": "function"
89
+ }, {
90
+ "constant": false,
91
+ "inputs": [],
92
+ "name": "kill",
93
+ "outputs": [],
94
+ "payable": false,
95
+ "stateMutability": "nonpayable",
96
+ "type": "function"
97
+ }, {
98
+ "constant": true,
99
+ "inputs": [{
100
+ "name": "",
101
+ "type": "int256"
102
+ }],
103
+ "name": "runDescribeStatus",
104
+ "outputs": [{
105
+ "name": "",
106
+ "type": "bytes32"
107
+ }],
108
+ "payable": false,
109
+ "stateMutability": "view",
110
+ "type": "function"
111
+ }, {
112
+ "constant": true,
113
+ "inputs": [],
114
+ "name": "version",
115
+ "outputs": [{
116
+ "name": "",
117
+ "type": "bytes32"
118
+ }],
119
+ "payable": false,
120
+ "stateMutability": "view",
121
+ "type": "function"
122
+ }, {
123
+ "constant": true,
124
+ "inputs": [],
125
+ "name": "versionAPI",
126
+ "outputs": [{
127
+ "name": "",
128
+ "type": "bytes32"
129
+ }],
130
+ "payable": false,
131
+ "stateMutability": "view",
132
+ "type": "function"
133
+ }, {
134
+ "constant": true,
135
+ "inputs": [],
136
+ "name": "DEFAULT_ACCESS",
137
+ "outputs": [{
138
+ "name": "",
139
+ "type": "uint8"
140
+ }],
141
+ "payable": false,
142
+ "stateMutability": "view",
143
+ "type": "function"
144
+ }, {
145
+ "constant": false,
146
+ "inputs": [{
147
+ "name": "newCreator",
148
+ "type": "address"
149
+ }],
150
+ "name": "transferCreatorship",
151
+ "outputs": [],
152
+ "payable": false,
153
+ "stateMutability": "nonpayable",
154
+ "type": "function"
155
+ }, {
156
+ "constant": true,
157
+ "inputs": [{
158
+ "name": "",
159
+ "type": "bytes32[]"
160
+ }, {
161
+ "name": "",
162
+ "type": "address[]"
163
+ }, {
164
+ "name": "accessor",
165
+ "type": "address"
166
+ }],
167
+ "name": "runAccessInfo",
168
+ "outputs": [{
169
+ "name": "",
170
+ "type": "uint8"
171
+ }, {
172
+ "name": "",
173
+ "type": "uint8"
174
+ }, {
175
+ "name": "",
176
+ "type": "uint8"
177
+ }, {
178
+ "name": "",
179
+ "type": "uint256"
180
+ }],
181
+ "payable": false,
182
+ "stateMutability": "view",
183
+ "type": "function"
184
+ }, {
185
+ "constant": false,
186
+ "inputs": [],
187
+ "name": "runCreate",
188
+ "outputs": [{
189
+ "name": "",
190
+ "type": "uint256"
191
+ }],
192
+ "payable": true,
193
+ "stateMutability": "payable",
194
+ "type": "function"
195
+ }, {
196
+ "constant": true,
197
+ "inputs": [{
198
+ "name": "",
199
+ "type": "address"
200
+ }],
201
+ "name": "accessors",
202
+ "outputs": [{
203
+ "name": "",
204
+ "type": "address"
205
+ }],
206
+ "payable": false,
207
+ "stateMutability": "view",
208
+ "type": "function"
209
+ }, {
210
+ "constant": false,
211
+ "inputs": [],
212
+ "name": "runKillExt",
213
+ "outputs": [{
214
+ "name": "",
215
+ "type": "uint256"
216
+ }],
217
+ "payable": true,
218
+ "stateMutability": "payable",
219
+ "type": "function"
220
+ }, {
221
+ "constant": true,
222
+ "inputs": [],
223
+ "name": "owner",
224
+ "outputs": [{
225
+ "name": "",
226
+ "type": "address"
227
+ }],
228
+ "payable": false,
229
+ "stateMutability": "view",
230
+ "type": "function"
231
+ }, {
232
+ "constant": true,
233
+ "inputs": [{
234
+ "name": "content",
235
+ "type": "address"
236
+ }, {
237
+ "name": "accessor",
238
+ "type": "address"
239
+ }],
240
+ "name": "isAvailable",
241
+ "outputs": [{
242
+ "name": "",
243
+ "type": "uint8"
244
+ }],
245
+ "payable": false,
246
+ "stateMutability": "view",
247
+ "type": "function"
248
+ }, {
249
+ "constant": false,
250
+ "inputs": [],
251
+ "name": "runKill",
252
+ "outputs": [{
253
+ "name": "",
254
+ "type": "uint256"
255
+ }],
256
+ "payable": true,
257
+ "stateMutability": "payable",
258
+ "type": "function"
259
+ }, {
260
+ "constant": false,
261
+ "inputs": [{
262
+ "name": "content",
263
+ "type": "address"
264
+ }, {
265
+ "name": "sd",
266
+ "type": "bool"
267
+ }, {
268
+ "name": "hd",
269
+ "type": "bool"
270
+ }, {
271
+ "name": "start",
272
+ "type": "uint256"
273
+ }, {
274
+ "name": "end",
275
+ "type": "uint256"
276
+ }, {
277
+ "name": "region",
278
+ "type": "address"
279
+ }],
280
+ "name": "setAvailability",
281
+ "outputs": [],
282
+ "payable": false,
283
+ "stateMutability": "nonpayable",
284
+ "type": "function"
285
+ }, {
286
+ "constant": true,
287
+ "inputs": [{
288
+ "name": "",
289
+ "type": "address"
290
+ }],
291
+ "name": "availability",
292
+ "outputs": [{
293
+ "name": "clearedSD",
294
+ "type": "bool"
295
+ }, {
296
+ "name": "clearedHD",
297
+ "type": "bool"
298
+ }, {
299
+ "name": "startDate",
300
+ "type": "uint256"
301
+ }, {
302
+ "name": "endDate",
303
+ "type": "uint256"
304
+ }, {
305
+ "name": "region",
306
+ "type": "address"
307
+ }],
308
+ "payable": false,
309
+ "stateMutability": "view",
310
+ "type": "function"
311
+ }, {
312
+ "constant": true,
313
+ "inputs": [],
314
+ "name": "contentSpace",
315
+ "outputs": [{
316
+ "name": "",
317
+ "type": "address"
318
+ }],
319
+ "payable": false,
320
+ "stateMutability": "view",
321
+ "type": "function"
322
+ }, {
323
+ "constant": true,
324
+ "inputs": [],
325
+ "name": "DEFAULT_SEE",
326
+ "outputs": [{
327
+ "name": "",
328
+ "type": "uint8"
329
+ }],
330
+ "payable": false,
331
+ "stateMutability": "view",
332
+ "type": "function"
333
+ }, {
334
+ "constant": false,
335
+ "inputs": [{
336
+ "name": "",
337
+ "type": "bytes32"
338
+ }, {
339
+ "name": "",
340
+ "type": "bytes32[]"
341
+ }, {
342
+ "name": "",
343
+ "type": "address[]"
344
+ }, {
345
+ "name": "accessor",
346
+ "type": "address"
347
+ }],
348
+ "name": "runAccess",
349
+ "outputs": [{
350
+ "name": "",
351
+ "type": "uint256"
352
+ }],
353
+ "payable": true,
354
+ "stateMutability": "payable",
355
+ "type": "function"
356
+ }, {
357
+ "constant": false,
358
+ "inputs": [],
359
+ "name": "runEdit",
360
+ "outputs": [{
361
+ "name": "",
362
+ "type": "uint256"
363
+ }],
364
+ "payable": false,
365
+ "stateMutability": "nonpayable",
366
+ "type": "function"
367
+ }, {
368
+ "constant": true,
369
+ "inputs": [{
370
+ "name": "accessor",
371
+ "type": "address"
372
+ }],
373
+ "name": "validateAvailability",
374
+ "outputs": [],
375
+ "payable": false,
376
+ "stateMutability": "view",
377
+ "type": "function"
378
+ }, {
379
+ "constant": true,
380
+ "inputs": [],
381
+ "name": "DEFAULT_CHARGE",
382
+ "outputs": [{
383
+ "name": "",
384
+ "type": "uint8"
385
+ }],
386
+ "payable": false,
387
+ "stateMutability": "view",
388
+ "type": "function"
389
+ }, {
390
+ "constant": false,
391
+ "inputs": [{
392
+ "name": "newOwner",
393
+ "type": "address"
394
+ }],
395
+ "name": "transferOwnership",
396
+ "outputs": [],
397
+ "payable": false,
398
+ "stateMutability": "nonpayable",
399
+ "type": "function"
400
+ }, {
401
+ "constant": false,
402
+ "inputs": [{
403
+ "name": "",
404
+ "type": "uint256"
405
+ }, {
406
+ "name": "",
407
+ "type": "bytes32[]"
408
+ }, {
409
+ "name": "",
410
+ "type": "address[]"
411
+ }, {
412
+ "name": "accessor",
413
+ "type": "address"
414
+ }],
415
+ "name": "runAccess",
416
+ "outputs": [{
417
+ "name": "",
418
+ "type": "uint256"
419
+ }],
420
+ "payable": true,
421
+ "stateMutability": "payable",
422
+ "type": "function"
423
+ }, {
424
+ "payable": true,
425
+ "stateMutability": "payable",
426
+ "type": "fallback"
427
+ }, {
428
+ "anonymous": false,
429
+ "inputs": [{
430
+ "indexed": false,
431
+ "name": "label",
432
+ "type": "string"
433
+ }],
434
+ "name": "Log",
435
+ "type": "event"
436
+ }, {
437
+ "anonymous": false,
438
+ "inputs": [{
439
+ "indexed": false,
440
+ "name": "label",
441
+ "type": "string"
442
+ }, {
443
+ "indexed": false,
444
+ "name": "b",
445
+ "type": "bool"
446
+ }],
447
+ "name": "LogBool",
448
+ "type": "event"
449
+ }, {
450
+ "anonymous": false,
451
+ "inputs": [{
452
+ "indexed": false,
453
+ "name": "label",
454
+ "type": "string"
455
+ }, {
456
+ "indexed": false,
457
+ "name": "a",
458
+ "type": "address"
459
+ }],
460
+ "name": "LogAddress",
461
+ "type": "event"
462
+ }, {
463
+ "anonymous": false,
464
+ "inputs": [{
465
+ "indexed": false,
466
+ "name": "label",
467
+ "type": "string"
468
+ }, {
469
+ "indexed": false,
470
+ "name": "u",
471
+ "type": "uint256"
472
+ }],
473
+ "name": "LogUint256",
474
+ "type": "event"
475
+ }, {
476
+ "anonymous": false,
477
+ "inputs": [{
478
+ "indexed": false,
479
+ "name": "label",
480
+ "type": "string"
481
+ }, {
482
+ "indexed": false,
483
+ "name": "u",
484
+ "type": "int256"
485
+ }],
486
+ "name": "LogInt256",
487
+ "type": "event"
488
+ }, {
489
+ "anonymous": false,
490
+ "inputs": [{
491
+ "indexed": false,
492
+ "name": "label",
493
+ "type": "string"
494
+ }, {
495
+ "indexed": false,
496
+ "name": "b",
497
+ "type": "bytes32"
498
+ }],
499
+ "name": "LogBytes32",
500
+ "type": "event"
501
+ }, {
502
+ "anonymous": false,
503
+ "inputs": [{
504
+ "indexed": false,
505
+ "name": "label",
506
+ "type": "string"
507
+ }, {
508
+ "indexed": false,
509
+ "name": "payee",
510
+ "type": "address"
511
+ }, {
512
+ "indexed": false,
513
+ "name": "amount",
514
+ "type": "uint256"
515
+ }],
516
+ "name": "LogPayment",
517
+ "type": "event"
518
+ }, {
519
+ "anonymous": false,
520
+ "inputs": [{
521
+ "indexed": false,
522
+ "name": "result",
523
+ "type": "uint256"
524
+ }],
525
+ "name": "RunCreate",
526
+ "type": "event"
527
+ }, {
528
+ "anonymous": false,
529
+ "inputs": [{
530
+ "indexed": false,
531
+ "name": "result",
532
+ "type": "uint256"
533
+ }],
534
+ "name": "RunKill",
535
+ "type": "event"
536
+ }, {
537
+ "anonymous": false,
538
+ "inputs": [{
539
+ "indexed": false,
540
+ "name": "proposedStatusCode",
541
+ "type": "int256"
542
+ }, {
543
+ "indexed": false,
544
+ "name": "returnStatusCode",
545
+ "type": "int256"
546
+ }],
547
+ "name": "RunStatusChange",
548
+ "type": "event"
549
+ }, {
550
+ "anonymous": false,
551
+ "inputs": [{
552
+ "indexed": false,
553
+ "name": "calculatedAccessCharge",
554
+ "type": "int256"
555
+ }],
556
+ "name": "RunAccessCharge",
557
+ "type": "event"
558
+ }, {
559
+ "anonymous": false,
560
+ "inputs": [{
561
+ "indexed": false,
562
+ "name": "requestNonce",
563
+ "type": "uint256"
564
+ }, {
565
+ "indexed": false,
566
+ "name": "result",
567
+ "type": "uint256"
568
+ }],
569
+ "name": "RunAccess",
570
+ "type": "event"
571
+ }, {
572
+ "anonymous": false,
573
+ "inputs": [{
574
+ "indexed": false,
575
+ "name": "requestNonce",
576
+ "type": "uint256"
577
+ }, {
578
+ "indexed": false,
579
+ "name": "result",
580
+ "type": "uint256"
581
+ }],
582
+ "name": "RunFinalize",
583
+ "type": "event"
584
+ }]
585
+ };
586
+ module.exports = contract;