@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,306 @@
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": true,
26
+ "inputs": [],
27
+ "name": "canConfirm",
28
+ "outputs": [{
29
+ "name": "",
30
+ "type": "bool"
31
+ }],
32
+ "payable": false,
33
+ "stateMutability": "view",
34
+ "type": "function"
35
+ }, {
36
+ "constant": true,
37
+ "inputs": [],
38
+ "name": "countVersionHashes",
39
+ "outputs": [{
40
+ "name": "",
41
+ "type": "uint256"
42
+ }],
43
+ "payable": false,
44
+ "stateMutability": "view",
45
+ "type": "function"
46
+ }, {
47
+ "constant": true,
48
+ "inputs": [],
49
+ "name": "commitPending",
50
+ "outputs": [{
51
+ "name": "",
52
+ "type": "bool"
53
+ }],
54
+ "payable": false,
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ }, {
58
+ "constant": false,
59
+ "inputs": [],
60
+ "name": "kill",
61
+ "outputs": [],
62
+ "payable": false,
63
+ "stateMutability": "nonpayable",
64
+ "type": "function"
65
+ }, {
66
+ "constant": false,
67
+ "inputs": [],
68
+ "name": "confirmCommit",
69
+ "outputs": [{
70
+ "name": "",
71
+ "type": "bool"
72
+ }],
73
+ "payable": true,
74
+ "stateMutability": "payable",
75
+ "type": "function"
76
+ }, {
77
+ "constant": true,
78
+ "inputs": [],
79
+ "name": "version",
80
+ "outputs": [{
81
+ "name": "",
82
+ "type": "bytes32"
83
+ }],
84
+ "payable": false,
85
+ "stateMutability": "view",
86
+ "type": "function"
87
+ }, {
88
+ "constant": false,
89
+ "inputs": [],
90
+ "name": "clearPending",
91
+ "outputs": [],
92
+ "payable": false,
93
+ "stateMutability": "nonpayable",
94
+ "type": "function"
95
+ }, {
96
+ "constant": true,
97
+ "inputs": [],
98
+ "name": "pendingHash",
99
+ "outputs": [{
100
+ "name": "",
101
+ "type": "string"
102
+ }],
103
+ "payable": false,
104
+ "stateMutability": "view",
105
+ "type": "function"
106
+ }, {
107
+ "constant": false,
108
+ "inputs": [{
109
+ "name": "newCreator",
110
+ "type": "address"
111
+ }],
112
+ "name": "transferCreatorship",
113
+ "outputs": [],
114
+ "payable": false,
115
+ "stateMutability": "nonpayable",
116
+ "type": "function"
117
+ }, {
118
+ "constant": true,
119
+ "inputs": [],
120
+ "name": "canCommit",
121
+ "outputs": [{
122
+ "name": "",
123
+ "type": "bool"
124
+ }],
125
+ "payable": false,
126
+ "stateMutability": "view",
127
+ "type": "function"
128
+ }, {
129
+ "constant": true,
130
+ "inputs": [{
131
+ "name": "",
132
+ "type": "uint256"
133
+ }],
134
+ "name": "versionTimestamp",
135
+ "outputs": [{
136
+ "name": "",
137
+ "type": "uint256"
138
+ }],
139
+ "payable": false,
140
+ "stateMutability": "view",
141
+ "type": "function"
142
+ }, {
143
+ "constant": true,
144
+ "inputs": [{
145
+ "name": "",
146
+ "type": "uint256"
147
+ }],
148
+ "name": "versionHashes",
149
+ "outputs": [{
150
+ "name": "",
151
+ "type": "string"
152
+ }],
153
+ "payable": false,
154
+ "stateMutability": "view",
155
+ "type": "function"
156
+ }, {
157
+ "constant": true,
158
+ "inputs": [],
159
+ "name": "canEdit",
160
+ "outputs": [{
161
+ "name": "",
162
+ "type": "bool"
163
+ }],
164
+ "payable": false,
165
+ "stateMutability": "view",
166
+ "type": "function"
167
+ }, {
168
+ "constant": true,
169
+ "inputs": [],
170
+ "name": "owner",
171
+ "outputs": [{
172
+ "name": "",
173
+ "type": "address"
174
+ }],
175
+ "payable": false,
176
+ "stateMutability": "view",
177
+ "type": "function"
178
+ }, {
179
+ "constant": false,
180
+ "inputs": [{
181
+ "name": "_objectHash",
182
+ "type": "string"
183
+ }],
184
+ "name": "commit",
185
+ "outputs": [],
186
+ "payable": false,
187
+ "stateMutability": "nonpayable",
188
+ "type": "function"
189
+ }, {
190
+ "constant": true,
191
+ "inputs": [],
192
+ "name": "contentSpace",
193
+ "outputs": [{
194
+ "name": "",
195
+ "type": "address"
196
+ }],
197
+ "payable": false,
198
+ "stateMutability": "view",
199
+ "type": "function"
200
+ }, {
201
+ "constant": false,
202
+ "inputs": [],
203
+ "name": "updateRequest",
204
+ "outputs": [],
205
+ "payable": false,
206
+ "stateMutability": "nonpayable",
207
+ "type": "function"
208
+ }, {
209
+ "constant": true,
210
+ "inputs": [],
211
+ "name": "objectHash",
212
+ "outputs": [{
213
+ "name": "",
214
+ "type": "string"
215
+ }],
216
+ "payable": false,
217
+ "stateMutability": "view",
218
+ "type": "function"
219
+ }, {
220
+ "constant": false,
221
+ "inputs": [{
222
+ "name": "_versionHash",
223
+ "type": "string"
224
+ }],
225
+ "name": "deleteVersion",
226
+ "outputs": [{
227
+ "name": "",
228
+ "type": "int256"
229
+ }],
230
+ "payable": false,
231
+ "stateMutability": "nonpayable",
232
+ "type": "function"
233
+ }, {
234
+ "constant": false,
235
+ "inputs": [{
236
+ "name": "newOwner",
237
+ "type": "address"
238
+ }],
239
+ "name": "transferOwnership",
240
+ "outputs": [],
241
+ "payable": false,
242
+ "stateMutability": "nonpayable",
243
+ "type": "function"
244
+ }, {
245
+ "payable": true,
246
+ "stateMutability": "payable",
247
+ "type": "fallback"
248
+ }, {
249
+ "anonymous": false,
250
+ "inputs": [{
251
+ "indexed": false,
252
+ "name": "spaceAddress",
253
+ "type": "address"
254
+ }, {
255
+ "indexed": false,
256
+ "name": "parentAddress",
257
+ "type": "address"
258
+ }, {
259
+ "indexed": false,
260
+ "name": "objectHash",
261
+ "type": "string"
262
+ }],
263
+ "name": "CommitPending",
264
+ "type": "event"
265
+ }, {
266
+ "anonymous": false,
267
+ "inputs": [{
268
+ "indexed": false,
269
+ "name": "objectHash",
270
+ "type": "string"
271
+ }],
272
+ "name": "UpdateRequest",
273
+ "type": "event"
274
+ }, {
275
+ "anonymous": false,
276
+ "inputs": [{
277
+ "indexed": false,
278
+ "name": "spaceAddress",
279
+ "type": "address"
280
+ }, {
281
+ "indexed": false,
282
+ "name": "objectHash",
283
+ "type": "string"
284
+ }],
285
+ "name": "VersionConfirm",
286
+ "type": "event"
287
+ }, {
288
+ "anonymous": false,
289
+ "inputs": [{
290
+ "indexed": false,
291
+ "name": "spaceAddress",
292
+ "type": "address"
293
+ }, {
294
+ "indexed": false,
295
+ "name": "versionHash",
296
+ "type": "string"
297
+ }, {
298
+ "indexed": false,
299
+ "name": "index",
300
+ "type": "int256"
301
+ }],
302
+ "name": "VersionDelete",
303
+ "type": "event"
304
+ }]
305
+ };
306
+ module.exports = contract;
@@ -0,0 +1,379 @@
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": true,
26
+ "inputs": [],
27
+ "name": "canConfirm",
28
+ "outputs": [{
29
+ "name": "",
30
+ "type": "bool"
31
+ }],
32
+ "payable": false,
33
+ "stateMutability": "view",
34
+ "type": "function"
35
+ }, {
36
+ "constant": true,
37
+ "inputs": [],
38
+ "name": "countVersionHashes",
39
+ "outputs": [{
40
+ "name": "",
41
+ "type": "uint256"
42
+ }],
43
+ "payable": false,
44
+ "stateMutability": "view",
45
+ "type": "function"
46
+ }, {
47
+ "constant": true,
48
+ "inputs": [],
49
+ "name": "commitPending",
50
+ "outputs": [{
51
+ "name": "",
52
+ "type": "bool"
53
+ }],
54
+ "payable": false,
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ }, {
58
+ "constant": false,
59
+ "inputs": [],
60
+ "name": "kill",
61
+ "outputs": [],
62
+ "payable": false,
63
+ "stateMutability": "nonpayable",
64
+ "type": "function"
65
+ }, {
66
+ "constant": false,
67
+ "inputs": [],
68
+ "name": "confirmCommit",
69
+ "outputs": [{
70
+ "name": "",
71
+ "type": "bool"
72
+ }],
73
+ "payable": true,
74
+ "stateMutability": "payable",
75
+ "type": "function"
76
+ }, {
77
+ "constant": false,
78
+ "inputs": [],
79
+ "name": "claimOwnership",
80
+ "outputs": [],
81
+ "payable": false,
82
+ "stateMutability": "nonpayable",
83
+ "type": "function"
84
+ }, {
85
+ "constant": true,
86
+ "inputs": [],
87
+ "name": "version",
88
+ "outputs": [{
89
+ "name": "",
90
+ "type": "bytes32"
91
+ }],
92
+ "payable": false,
93
+ "stateMutability": "view",
94
+ "type": "function"
95
+ }, {
96
+ "constant": true,
97
+ "inputs": [],
98
+ "name": "addressExtUser",
99
+ "outputs": [{
100
+ "name": "",
101
+ "type": "address"
102
+ }],
103
+ "payable": false,
104
+ "stateMutability": "view",
105
+ "type": "function"
106
+ }, {
107
+ "constant": false,
108
+ "inputs": [],
109
+ "name": "clearPending",
110
+ "outputs": [],
111
+ "payable": false,
112
+ "stateMutability": "nonpayable",
113
+ "type": "function"
114
+ }, {
115
+ "constant": true,
116
+ "inputs": [],
117
+ "name": "pendingHash",
118
+ "outputs": [{
119
+ "name": "",
120
+ "type": "string"
121
+ }],
122
+ "payable": false,
123
+ "stateMutability": "view",
124
+ "type": "function"
125
+ }, {
126
+ "constant": false,
127
+ "inputs": [{
128
+ "name": "newCreator",
129
+ "type": "address"
130
+ }],
131
+ "name": "transferCreatorship",
132
+ "outputs": [],
133
+ "payable": false,
134
+ "stateMutability": "nonpayable",
135
+ "type": "function"
136
+ }, {
137
+ "constant": true,
138
+ "inputs": [],
139
+ "name": "canCommit",
140
+ "outputs": [{
141
+ "name": "",
142
+ "type": "bool"
143
+ }],
144
+ "payable": false,
145
+ "stateMutability": "view",
146
+ "type": "function"
147
+ }, {
148
+ "constant": true,
149
+ "inputs": [{
150
+ "name": "",
151
+ "type": "uint256"
152
+ }],
153
+ "name": "versionTimestamp",
154
+ "outputs": [{
155
+ "name": "",
156
+ "type": "uint256"
157
+ }],
158
+ "payable": false,
159
+ "stateMutability": "view",
160
+ "type": "function"
161
+ }, {
162
+ "constant": true,
163
+ "inputs": [{
164
+ "name": "",
165
+ "type": "uint256"
166
+ }],
167
+ "name": "versionHashes",
168
+ "outputs": [{
169
+ "name": "",
170
+ "type": "string"
171
+ }],
172
+ "payable": false,
173
+ "stateMutability": "view",
174
+ "type": "function"
175
+ }, {
176
+ "constant": true,
177
+ "inputs": [],
178
+ "name": "canEdit",
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": "owner",
190
+ "outputs": [{
191
+ "name": "",
192
+ "type": "address"
193
+ }],
194
+ "payable": false,
195
+ "stateMutability": "view",
196
+ "type": "function"
197
+ }, {
198
+ "constant": false,
199
+ "inputs": [{
200
+ "name": "_objectHash",
201
+ "type": "string"
202
+ }],
203
+ "name": "commit",
204
+ "outputs": [],
205
+ "payable": false,
206
+ "stateMutability": "nonpayable",
207
+ "type": "function"
208
+ }, {
209
+ "constant": true,
210
+ "inputs": [],
211
+ "name": "contentSpace",
212
+ "outputs": [{
213
+ "name": "",
214
+ "type": "address"
215
+ }],
216
+ "payable": false,
217
+ "stateMutability": "view",
218
+ "type": "function"
219
+ }, {
220
+ "constant": false,
221
+ "inputs": [],
222
+ "name": "updateRequest",
223
+ "outputs": [],
224
+ "payable": false,
225
+ "stateMutability": "nonpayable",
226
+ "type": "function"
227
+ }, {
228
+ "constant": true,
229
+ "inputs": [],
230
+ "name": "objectHash",
231
+ "outputs": [{
232
+ "name": "",
233
+ "type": "string"
234
+ }],
235
+ "payable": false,
236
+ "stateMutability": "view",
237
+ "type": "function"
238
+ }, {
239
+ "constant": false,
240
+ "inputs": [{
241
+ "name": "_versionHash",
242
+ "type": "string"
243
+ }],
244
+ "name": "deleteVersion",
245
+ "outputs": [{
246
+ "name": "",
247
+ "type": "int256"
248
+ }],
249
+ "payable": false,
250
+ "stateMutability": "nonpayable",
251
+ "type": "function"
252
+ }, {
253
+ "constant": false,
254
+ "inputs": [],
255
+ "name": "accessRequest",
256
+ "outputs": [{
257
+ "name": "",
258
+ "type": "bool"
259
+ }],
260
+ "payable": false,
261
+ "stateMutability": "nonpayable",
262
+ "type": "function"
263
+ }, {
264
+ "constant": false,
265
+ "inputs": [{
266
+ "name": "newOwner",
267
+ "type": "address"
268
+ }],
269
+ "name": "transferOwnership",
270
+ "outputs": [],
271
+ "payable": false,
272
+ "stateMutability": "nonpayable",
273
+ "type": "function"
274
+ }, {
275
+ "constant": true,
276
+ "inputs": [],
277
+ "name": "addressTA",
278
+ "outputs": [{
279
+ "name": "",
280
+ "type": "address"
281
+ }],
282
+ "payable": false,
283
+ "stateMutability": "view",
284
+ "type": "function"
285
+ }, {
286
+ "inputs": [{
287
+ "name": "_content_space",
288
+ "type": "address"
289
+ }, {
290
+ "name": "_taAddr",
291
+ "type": "address"
292
+ }, {
293
+ "name": "_extUserAddr",
294
+ "type": "address"
295
+ }],
296
+ "payable": true,
297
+ "stateMutability": "payable",
298
+ "type": "constructor"
299
+ }, {
300
+ "payable": true,
301
+ "stateMutability": "payable",
302
+ "type": "fallback"
303
+ }, {
304
+ "anonymous": false,
305
+ "inputs": [{
306
+ "indexed": false,
307
+ "name": "contentSpace",
308
+ "type": "address"
309
+ }, {
310
+ "indexed": false,
311
+ "name": "extUserAddr",
312
+ "type": "address"
313
+ }],
314
+ "name": "CreateExtUserWallet",
315
+ "type": "event"
316
+ }, {
317
+ "anonymous": false,
318
+ "inputs": [{
319
+ "indexed": false,
320
+ "name": "spaceAddress",
321
+ "type": "address"
322
+ }, {
323
+ "indexed": false,
324
+ "name": "parentAddress",
325
+ "type": "address"
326
+ }, {
327
+ "indexed": false,
328
+ "name": "objectHash",
329
+ "type": "string"
330
+ }],
331
+ "name": "CommitPending",
332
+ "type": "event"
333
+ }, {
334
+ "anonymous": false,
335
+ "inputs": [{
336
+ "indexed": false,
337
+ "name": "objectHash",
338
+ "type": "string"
339
+ }],
340
+ "name": "UpdateRequest",
341
+ "type": "event"
342
+ }, {
343
+ "anonymous": false,
344
+ "inputs": [{
345
+ "indexed": false,
346
+ "name": "spaceAddress",
347
+ "type": "address"
348
+ }, {
349
+ "indexed": false,
350
+ "name": "objectHash",
351
+ "type": "string"
352
+ }],
353
+ "name": "VersionConfirm",
354
+ "type": "event"
355
+ }, {
356
+ "anonymous": false,
357
+ "inputs": [{
358
+ "indexed": false,
359
+ "name": "spaceAddress",
360
+ "type": "address"
361
+ }, {
362
+ "indexed": false,
363
+ "name": "versionHash",
364
+ "type": "string"
365
+ }, {
366
+ "indexed": false,
367
+ "name": "index",
368
+ "type": "int256"
369
+ }],
370
+ "name": "VersionDelete",
371
+ "type": "event"
372
+ }, {
373
+ "anonymous": false,
374
+ "inputs": [],
375
+ "name": "AccessRequest",
376
+ "type": "event"
377
+ }]
378
+ };
379
+ module.exports = contract;