@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-fe77319
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +95 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +179 -0
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +35 -0
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +179 -0
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +192 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/components/Pool.sol/Pool.json +195 -0
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/components/Product.sol/Product.json +213 -0
- package/artifacts/contracts/experiment/A.sol/A.dbg.json +4 -0
- package/artifacts/contracts/experiment/A.sol/A.json +128 -0
- package/artifacts/contracts/experiment/A.sol/AShared.dbg.json +4 -0
- package/artifacts/contracts/experiment/A.sol/AShared.json +42 -0
- package/artifacts/contracts/experiment/B.sol/B.dbg.json +4 -0
- package/artifacts/contracts/experiment/B.sol/B.json +76 -0
- package/artifacts/contracts/experiment/C.sol/C.dbg.json +4 -0
- package/artifacts/contracts/experiment/C.sol/C.json +89 -0
- package/artifacts/contracts/experiment/IA.sol/IA.dbg.json +4 -0
- package/artifacts/contracts/experiment/IA.sol/IA.json +128 -0
- package/artifacts/contracts/experiment/IA.sol/ISharedA.dbg.json +4 -0
- package/artifacts/contracts/experiment/IA.sol/ISharedA.json +37 -0
- package/artifacts/contracts/experiment/IB.sol/IB.dbg.json +4 -0
- package/artifacts/contracts/experiment/IB.sol/IB.json +50 -0
- package/artifacts/contracts/experiment/IC.sol/IC.dbg.json +4 -0
- package/artifacts/contracts/experiment/IC.sol/IC.json +63 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +892 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1009 -0
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +400 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.json +10 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +4 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +35 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +4 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +50 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +336 -0
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +327 -0
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +105 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.json +10 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +4 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +179 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +245 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +94 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +4 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +24 -0
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.json +10 -0
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +231 -0
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +231 -0
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +4 -0
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.json +10 -0
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +149 -0
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +162 -0
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +4 -0
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +75 -0
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +114 -0
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +4 -0
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +75 -0
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +125 -0
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +24 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +166 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +271 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +49 -0
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +166 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.json +289 -0
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +60 -0
- package/contracts/components/Component.sol +62 -0
- package/contracts/components/IPool.sol +9 -0
- package/contracts/components/IProduct.sol +11 -0
- package/contracts/components/Pool.sol +29 -0
- package/contracts/components/Product.sol +65 -0
- package/contracts/experiment/A.sol +56 -0
- package/contracts/experiment/B.sol +23 -0
- package/contracts/experiment/C.sol +28 -0
- package/contracts/experiment/IA.sol +18 -0
- package/contracts/experiment/IB.sol +9 -0
- package/contracts/experiment/IC.sol +11 -0
- package/contracts/instance/IInstance.sol +20 -0
- package/contracts/instance/Instance.sol +63 -0
- package/contracts/instance/access/Access.sol +218 -0
- package/contracts/instance/access/IAccess.sol +83 -0
- package/contracts/instance/component/ComponentModule.sol +259 -0
- package/contracts/instance/component/IComponent.sol +94 -0
- package/contracts/instance/policy/IPolicy.sol +66 -0
- package/contracts/instance/policy/PolicyModule.sol +106 -0
- package/contracts/instance/pool/IPoolModule.sol +40 -0
- package/contracts/instance/pool/PoolModule.sol +83 -0
- package/contracts/instance/product/IProductService.sol +45 -0
- package/contracts/instance/product/ProductService.sol +105 -0
- package/contracts/registry/IRegistry.sol +66 -0
- package/contracts/registry/Registry.sol +197 -0
- package/package.json +7 -6
- package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
- package/artifacts/contracts/Lock.sol/Lock.json +0 -74
- package/contracts/Dip.sol +0 -26
- package/contracts/Lock.sol +0 -34
@@ -0,0 +1,336 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "IAccessModule",
|
4
|
+
"sourceName": "contracts/instance/access/IAccess.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"anonymous": false,
|
8
|
+
"inputs": [
|
9
|
+
{
|
10
|
+
"indexed": false,
|
11
|
+
"internalType": "uint256",
|
12
|
+
"name": "idx",
|
13
|
+
"type": "uint256"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"indexed": false,
|
17
|
+
"internalType": "address",
|
18
|
+
"name": "module",
|
19
|
+
"type": "address"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"indexed": false,
|
23
|
+
"internalType": "string",
|
24
|
+
"name": "comment",
|
25
|
+
"type": "string"
|
26
|
+
}
|
27
|
+
],
|
28
|
+
"name": "LogDebug",
|
29
|
+
"type": "event"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"inputs": [],
|
33
|
+
"name": "ORACLE_OWNER_ROLE",
|
34
|
+
"outputs": [
|
35
|
+
{
|
36
|
+
"internalType": "bytes32",
|
37
|
+
"name": "role",
|
38
|
+
"type": "bytes32"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"stateMutability": "view",
|
42
|
+
"type": "function"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [],
|
46
|
+
"name": "POOL_OWNER_ROLE",
|
47
|
+
"outputs": [
|
48
|
+
{
|
49
|
+
"internalType": "bytes32",
|
50
|
+
"name": "role",
|
51
|
+
"type": "bytes32"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"stateMutability": "view",
|
55
|
+
"type": "function"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"inputs": [],
|
59
|
+
"name": "PRODUCT_OWNER_ROLE",
|
60
|
+
"outputs": [
|
61
|
+
{
|
62
|
+
"internalType": "bytes32",
|
63
|
+
"name": "role",
|
64
|
+
"type": "bytes32"
|
65
|
+
}
|
66
|
+
],
|
67
|
+
"stateMutability": "view",
|
68
|
+
"type": "function"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"inputs": [
|
72
|
+
{
|
73
|
+
"internalType": "string",
|
74
|
+
"name": "roleName",
|
75
|
+
"type": "string"
|
76
|
+
}
|
77
|
+
],
|
78
|
+
"name": "createRole",
|
79
|
+
"outputs": [
|
80
|
+
{
|
81
|
+
"internalType": "bytes32",
|
82
|
+
"name": "role",
|
83
|
+
"type": "bytes32"
|
84
|
+
}
|
85
|
+
],
|
86
|
+
"stateMutability": "nonpayable",
|
87
|
+
"type": "function"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"inputs": [
|
91
|
+
{
|
92
|
+
"internalType": "bytes32",
|
93
|
+
"name": "role",
|
94
|
+
"type": "bytes32"
|
95
|
+
}
|
96
|
+
],
|
97
|
+
"name": "disableRole",
|
98
|
+
"outputs": [],
|
99
|
+
"stateMutability": "nonpayable",
|
100
|
+
"type": "function"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"inputs": [
|
104
|
+
{
|
105
|
+
"internalType": "bytes32",
|
106
|
+
"name": "role",
|
107
|
+
"type": "bytes32"
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"name": "enableRole",
|
111
|
+
"outputs": [],
|
112
|
+
"stateMutability": "nonpayable",
|
113
|
+
"type": "function"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [],
|
117
|
+
"name": "getOwner",
|
118
|
+
"outputs": [
|
119
|
+
{
|
120
|
+
"internalType": "address",
|
121
|
+
"name": "owner",
|
122
|
+
"type": "address"
|
123
|
+
}
|
124
|
+
],
|
125
|
+
"stateMutability": "view",
|
126
|
+
"type": "function"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"inputs": [],
|
130
|
+
"name": "getRegistry",
|
131
|
+
"outputs": [
|
132
|
+
{
|
133
|
+
"internalType": "contract IRegistry",
|
134
|
+
"name": "registry",
|
135
|
+
"type": "address"
|
136
|
+
}
|
137
|
+
],
|
138
|
+
"stateMutability": "view",
|
139
|
+
"type": "function"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"inputs": [
|
143
|
+
{
|
144
|
+
"internalType": "uint256",
|
145
|
+
"name": "idx",
|
146
|
+
"type": "uint256"
|
147
|
+
}
|
148
|
+
],
|
149
|
+
"name": "getRole",
|
150
|
+
"outputs": [
|
151
|
+
{
|
152
|
+
"internalType": "bytes32",
|
153
|
+
"name": "role",
|
154
|
+
"type": "bytes32"
|
155
|
+
}
|
156
|
+
],
|
157
|
+
"stateMutability": "view",
|
158
|
+
"type": "function"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"inputs": [],
|
162
|
+
"name": "getRoleCount",
|
163
|
+
"outputs": [
|
164
|
+
{
|
165
|
+
"internalType": "uint256",
|
166
|
+
"name": "roles",
|
167
|
+
"type": "uint256"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"stateMutability": "view",
|
171
|
+
"type": "function"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [
|
175
|
+
{
|
176
|
+
"internalType": "string",
|
177
|
+
"name": "roleName",
|
178
|
+
"type": "string"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"name": "getRoleForName",
|
182
|
+
"outputs": [
|
183
|
+
{
|
184
|
+
"internalType": "bytes32",
|
185
|
+
"name": "role",
|
186
|
+
"type": "bytes32"
|
187
|
+
}
|
188
|
+
],
|
189
|
+
"stateMutability": "pure",
|
190
|
+
"type": "function"
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"inputs": [
|
194
|
+
{
|
195
|
+
"internalType": "bytes32",
|
196
|
+
"name": "role",
|
197
|
+
"type": "bytes32"
|
198
|
+
}
|
199
|
+
],
|
200
|
+
"name": "getRoleInfo",
|
201
|
+
"outputs": [
|
202
|
+
{
|
203
|
+
"components": [
|
204
|
+
{
|
205
|
+
"internalType": "bytes32",
|
206
|
+
"name": "id",
|
207
|
+
"type": "bytes32"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"internalType": "string",
|
211
|
+
"name": "name",
|
212
|
+
"type": "string"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"internalType": "bool",
|
216
|
+
"name": "isActive",
|
217
|
+
"type": "bool"
|
218
|
+
}
|
219
|
+
],
|
220
|
+
"internalType": "struct IAccess.RoleInfo",
|
221
|
+
"name": "info",
|
222
|
+
"type": "tuple"
|
223
|
+
}
|
224
|
+
],
|
225
|
+
"stateMutability": "view",
|
226
|
+
"type": "function"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"inputs": [
|
230
|
+
{
|
231
|
+
"internalType": "bytes32",
|
232
|
+
"name": "role",
|
233
|
+
"type": "bytes32"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"internalType": "uint256",
|
237
|
+
"name": "idx",
|
238
|
+
"type": "uint256"
|
239
|
+
}
|
240
|
+
],
|
241
|
+
"name": "getRoleMember",
|
242
|
+
"outputs": [
|
243
|
+
{
|
244
|
+
"internalType": "address",
|
245
|
+
"name": "roleMembers",
|
246
|
+
"type": "address"
|
247
|
+
}
|
248
|
+
],
|
249
|
+
"stateMutability": "view",
|
250
|
+
"type": "function"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"inputs": [
|
254
|
+
{
|
255
|
+
"internalType": "bytes32",
|
256
|
+
"name": "role",
|
257
|
+
"type": "bytes32"
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"name": "getRoleMemberCount",
|
261
|
+
"outputs": [
|
262
|
+
{
|
263
|
+
"internalType": "uint256",
|
264
|
+
"name": "roleMembers",
|
265
|
+
"type": "uint256"
|
266
|
+
}
|
267
|
+
],
|
268
|
+
"stateMutability": "view",
|
269
|
+
"type": "function"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"inputs": [
|
273
|
+
{
|
274
|
+
"internalType": "bytes32",
|
275
|
+
"name": "role",
|
276
|
+
"type": "bytes32"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"internalType": "address",
|
280
|
+
"name": "member",
|
281
|
+
"type": "address"
|
282
|
+
}
|
283
|
+
],
|
284
|
+
"name": "grantRole",
|
285
|
+
"outputs": [],
|
286
|
+
"stateMutability": "nonpayable",
|
287
|
+
"type": "function"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"inputs": [
|
291
|
+
{
|
292
|
+
"internalType": "bytes32",
|
293
|
+
"name": "role",
|
294
|
+
"type": "bytes32"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"internalType": "address",
|
298
|
+
"name": "member",
|
299
|
+
"type": "address"
|
300
|
+
}
|
301
|
+
],
|
302
|
+
"name": "hasRole",
|
303
|
+
"outputs": [
|
304
|
+
{
|
305
|
+
"internalType": "bool",
|
306
|
+
"name": "",
|
307
|
+
"type": "bool"
|
308
|
+
}
|
309
|
+
],
|
310
|
+
"stateMutability": "view",
|
311
|
+
"type": "function"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"inputs": [
|
315
|
+
{
|
316
|
+
"internalType": "bytes32",
|
317
|
+
"name": "role",
|
318
|
+
"type": "bytes32"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"internalType": "address",
|
322
|
+
"name": "member",
|
323
|
+
"type": "address"
|
324
|
+
}
|
325
|
+
],
|
326
|
+
"name": "revokeRole",
|
327
|
+
"outputs": [],
|
328
|
+
"stateMutability": "nonpayable",
|
329
|
+
"type": "function"
|
330
|
+
}
|
331
|
+
],
|
332
|
+
"bytecode": "0x",
|
333
|
+
"deployedBytecode": "0x",
|
334
|
+
"linkReferences": {},
|
335
|
+
"deployedLinkReferences": {}
|
336
|
+
}
|
@@ -0,0 +1,327 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentModule",
|
4
|
+
"sourceName": "contracts/instance/component/ComponentModule.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"anonymous": false,
|
8
|
+
"inputs": [
|
9
|
+
{
|
10
|
+
"indexed": false,
|
11
|
+
"internalType": "uint256",
|
12
|
+
"name": "idx",
|
13
|
+
"type": "uint256"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"indexed": false,
|
17
|
+
"internalType": "address",
|
18
|
+
"name": "module",
|
19
|
+
"type": "address"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"indexed": false,
|
23
|
+
"internalType": "string",
|
24
|
+
"name": "comment",
|
25
|
+
"type": "string"
|
26
|
+
}
|
27
|
+
],
|
28
|
+
"name": "LogDebug",
|
29
|
+
"type": "event"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"inputs": [],
|
33
|
+
"name": "ORACLE_OWNER_ROLE",
|
34
|
+
"outputs": [
|
35
|
+
{
|
36
|
+
"internalType": "bytes32",
|
37
|
+
"name": "role",
|
38
|
+
"type": "bytes32"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"stateMutability": "view",
|
42
|
+
"type": "function"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [],
|
46
|
+
"name": "POOL_OWNER_ROLE",
|
47
|
+
"outputs": [
|
48
|
+
{
|
49
|
+
"internalType": "bytes32",
|
50
|
+
"name": "role",
|
51
|
+
"type": "bytes32"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"stateMutability": "view",
|
55
|
+
"type": "function"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"inputs": [],
|
59
|
+
"name": "PRODUCT_OWNER_ROLE",
|
60
|
+
"outputs": [
|
61
|
+
{
|
62
|
+
"internalType": "bytes32",
|
63
|
+
"name": "role",
|
64
|
+
"type": "bytes32"
|
65
|
+
}
|
66
|
+
],
|
67
|
+
"stateMutability": "view",
|
68
|
+
"type": "function"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"inputs": [],
|
72
|
+
"name": "components",
|
73
|
+
"outputs": [
|
74
|
+
{
|
75
|
+
"internalType": "uint256",
|
76
|
+
"name": "numberOfCompnents",
|
77
|
+
"type": "uint256"
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"stateMutability": "view",
|
81
|
+
"type": "function"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"inputs": [
|
85
|
+
{
|
86
|
+
"internalType": "address",
|
87
|
+
"name": "componentAddress",
|
88
|
+
"type": "address"
|
89
|
+
}
|
90
|
+
],
|
91
|
+
"name": "getComponentId",
|
92
|
+
"outputs": [
|
93
|
+
{
|
94
|
+
"internalType": "uint256",
|
95
|
+
"name": "id",
|
96
|
+
"type": "uint256"
|
97
|
+
}
|
98
|
+
],
|
99
|
+
"stateMutability": "view",
|
100
|
+
"type": "function"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"inputs": [
|
104
|
+
{
|
105
|
+
"internalType": "uint256",
|
106
|
+
"name": "idx",
|
107
|
+
"type": "uint256"
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"name": "getComponentId",
|
111
|
+
"outputs": [
|
112
|
+
{
|
113
|
+
"internalType": "uint256",
|
114
|
+
"name": "id",
|
115
|
+
"type": "uint256"
|
116
|
+
}
|
117
|
+
],
|
118
|
+
"stateMutability": "view",
|
119
|
+
"type": "function"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"inputs": [
|
123
|
+
{
|
124
|
+
"internalType": "uint256",
|
125
|
+
"name": "id",
|
126
|
+
"type": "uint256"
|
127
|
+
}
|
128
|
+
],
|
129
|
+
"name": "getComponentInfo",
|
130
|
+
"outputs": [
|
131
|
+
{
|
132
|
+
"components": [
|
133
|
+
{
|
134
|
+
"internalType": "uint256",
|
135
|
+
"name": "nftId",
|
136
|
+
"type": "uint256"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"internalType": "enum IComponent.CState",
|
140
|
+
"name": "state",
|
141
|
+
"type": "uint8"
|
142
|
+
}
|
143
|
+
],
|
144
|
+
"internalType": "struct IComponent.ComponentInfo",
|
145
|
+
"name": "",
|
146
|
+
"type": "tuple"
|
147
|
+
}
|
148
|
+
],
|
149
|
+
"stateMutability": "view",
|
150
|
+
"type": "function"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"inputs": [
|
154
|
+
{
|
155
|
+
"internalType": "uint256",
|
156
|
+
"name": "id",
|
157
|
+
"type": "uint256"
|
158
|
+
}
|
159
|
+
],
|
160
|
+
"name": "getComponentOwner",
|
161
|
+
"outputs": [
|
162
|
+
{
|
163
|
+
"internalType": "address",
|
164
|
+
"name": "owner",
|
165
|
+
"type": "address"
|
166
|
+
}
|
167
|
+
],
|
168
|
+
"stateMutability": "view",
|
169
|
+
"type": "function"
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"inputs": [],
|
173
|
+
"name": "getComponentOwnerService",
|
174
|
+
"outputs": [
|
175
|
+
{
|
176
|
+
"internalType": "contract IComponentOwnerService",
|
177
|
+
"name": "",
|
178
|
+
"type": "address"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"stateMutability": "view",
|
182
|
+
"type": "function"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"inputs": [],
|
186
|
+
"name": "getOwner",
|
187
|
+
"outputs": [
|
188
|
+
{
|
189
|
+
"internalType": "address",
|
190
|
+
"name": "owner",
|
191
|
+
"type": "address"
|
192
|
+
}
|
193
|
+
],
|
194
|
+
"stateMutability": "view",
|
195
|
+
"type": "function"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"inputs": [
|
199
|
+
{
|
200
|
+
"internalType": "uint256",
|
201
|
+
"name": "productNftId",
|
202
|
+
"type": "uint256"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"name": "getPoolNftId",
|
206
|
+
"outputs": [
|
207
|
+
{
|
208
|
+
"internalType": "uint256",
|
209
|
+
"name": "poolNftId",
|
210
|
+
"type": "uint256"
|
211
|
+
}
|
212
|
+
],
|
213
|
+
"stateMutability": "view",
|
214
|
+
"type": "function"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"inputs": [],
|
218
|
+
"name": "getRegistry",
|
219
|
+
"outputs": [
|
220
|
+
{
|
221
|
+
"internalType": "contract IRegistry",
|
222
|
+
"name": "registry",
|
223
|
+
"type": "address"
|
224
|
+
}
|
225
|
+
],
|
226
|
+
"stateMutability": "view",
|
227
|
+
"type": "function"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"inputs": [
|
231
|
+
{
|
232
|
+
"internalType": "uint256",
|
233
|
+
"name": "cType",
|
234
|
+
"type": "uint256"
|
235
|
+
}
|
236
|
+
],
|
237
|
+
"name": "getRoleForType",
|
238
|
+
"outputs": [
|
239
|
+
{
|
240
|
+
"internalType": "bytes32",
|
241
|
+
"name": "role",
|
242
|
+
"type": "bytes32"
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"stateMutability": "view",
|
246
|
+
"type": "function"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"inputs": [
|
250
|
+
{
|
251
|
+
"internalType": "bytes32",
|
252
|
+
"name": "role",
|
253
|
+
"type": "bytes32"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"internalType": "address",
|
257
|
+
"name": "member",
|
258
|
+
"type": "address"
|
259
|
+
}
|
260
|
+
],
|
261
|
+
"name": "hasRole",
|
262
|
+
"outputs": [
|
263
|
+
{
|
264
|
+
"internalType": "bool",
|
265
|
+
"name": "",
|
266
|
+
"type": "bool"
|
267
|
+
}
|
268
|
+
],
|
269
|
+
"stateMutability": "view",
|
270
|
+
"type": "function"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"inputs": [
|
274
|
+
{
|
275
|
+
"internalType": "contract IComponentContract",
|
276
|
+
"name": "component",
|
277
|
+
"type": "address"
|
278
|
+
}
|
279
|
+
],
|
280
|
+
"name": "registerComponent",
|
281
|
+
"outputs": [
|
282
|
+
{
|
283
|
+
"internalType": "uint256",
|
284
|
+
"name": "nftId",
|
285
|
+
"type": "uint256"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
"stateMutability": "nonpayable",
|
289
|
+
"type": "function"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"inputs": [
|
293
|
+
{
|
294
|
+
"components": [
|
295
|
+
{
|
296
|
+
"internalType": "uint256",
|
297
|
+
"name": "nftId",
|
298
|
+
"type": "uint256"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"internalType": "enum IComponent.CState",
|
302
|
+
"name": "state",
|
303
|
+
"type": "uint8"
|
304
|
+
}
|
305
|
+
],
|
306
|
+
"internalType": "struct IComponent.ComponentInfo",
|
307
|
+
"name": "info",
|
308
|
+
"type": "tuple"
|
309
|
+
}
|
310
|
+
],
|
311
|
+
"name": "setComponentInfo",
|
312
|
+
"outputs": [
|
313
|
+
{
|
314
|
+
"internalType": "uint256",
|
315
|
+
"name": "nftId",
|
316
|
+
"type": "uint256"
|
317
|
+
}
|
318
|
+
],
|
319
|
+
"stateMutability": "nonpayable",
|
320
|
+
"type": "function"
|
321
|
+
}
|
322
|
+
],
|
323
|
+
"bytecode": "0x",
|
324
|
+
"deployedBytecode": "0x",
|
325
|
+
"linkReferences": {},
|
326
|
+
"deployedLinkReferences": {}
|
327
|
+
}
|