@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,105 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentOwnerService",
|
4
|
+
"sourceName": "contracts/instance/component/ComponentModule.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registry",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"stateMutability": "nonpayable",
|
15
|
+
"type": "constructor"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"anonymous": false,
|
19
|
+
"inputs": [
|
20
|
+
{
|
21
|
+
"indexed": false,
|
22
|
+
"internalType": "uint256",
|
23
|
+
"name": "idx",
|
24
|
+
"type": "uint256"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"indexed": false,
|
28
|
+
"internalType": "address",
|
29
|
+
"name": "module",
|
30
|
+
"type": "address"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"indexed": false,
|
34
|
+
"internalType": "string",
|
35
|
+
"name": "comment",
|
36
|
+
"type": "string"
|
37
|
+
}
|
38
|
+
],
|
39
|
+
"name": "LogDebug",
|
40
|
+
"type": "event"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"inputs": [],
|
44
|
+
"name": "getRegistry",
|
45
|
+
"outputs": [
|
46
|
+
{
|
47
|
+
"internalType": "contract IRegistry",
|
48
|
+
"name": "registry",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"stateMutability": "view",
|
53
|
+
"type": "function"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "contract IComponentContract",
|
59
|
+
"name": "component",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "lock",
|
64
|
+
"outputs": [],
|
65
|
+
"stateMutability": "nonpayable",
|
66
|
+
"type": "function"
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"inputs": [
|
70
|
+
{
|
71
|
+
"internalType": "contract IComponentContract",
|
72
|
+
"name": "component",
|
73
|
+
"type": "address"
|
74
|
+
}
|
75
|
+
],
|
76
|
+
"name": "register",
|
77
|
+
"outputs": [
|
78
|
+
{
|
79
|
+
"internalType": "uint256",
|
80
|
+
"name": "nftId",
|
81
|
+
"type": "uint256"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"stateMutability": "nonpayable",
|
85
|
+
"type": "function"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [
|
89
|
+
{
|
90
|
+
"internalType": "contract IComponentContract",
|
91
|
+
"name": "component",
|
92
|
+
"type": "address"
|
93
|
+
}
|
94
|
+
],
|
95
|
+
"name": "unlock",
|
96
|
+
"outputs": [],
|
97
|
+
"stateMutability": "nonpayable",
|
98
|
+
"type": "function"
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"bytecode": "0x60806040523480156200001157600080fd5b5060405162001360380380620013608339818101604052810190620000379190620000ea565b80806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200011c565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620000b28262000085565b9050919050565b620000c481620000a5565b8114620000d057600080fd5b50565b600081519050620000e481620000b9565b92915050565b60006020828403121562000103576200010262000080565b5b60006200011384828501620000d3565b91505092915050565b611234806200012c6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632f6c493c146100515780634420e4861461006d5780635ab1bd531461009d578063f435f5a7146100bb575b600080fd5b61006b60048036038101906100669190610bdc565b6100d7565b005b61008760048036038101906100829190610bdc565b61051b565b6040516100949190610c22565b60405180910390f35b6100a56106f0565b6040516100b29190610c9c565b60405180910390f35b6100d560048036038101906100d09190610bdc565b610719565b005b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016101349190610cc6565b602060405180830381865afa158015610151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101759190610d0d565b9050600081116101ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b190610d97565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b81526004016102139190610c22565b602060405180830381865afa158015610230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102549190610de3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146102c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b890610e5c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561030e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103329190610eba565b905060008173ffffffffffffffffffffffffffffffffffffffff16632a3d616e8673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561039d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c19190610d0d565b6040518263ffffffff1660e01b81526004016103dd9190610c22565b6040805180830381865afa1580156103f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041d9190610fed565b90506000816000015111610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d90611066565b60405180910390fd5b60018160200190600281111561047f5761047e611086565b5b9081600281111561049357610492611086565b5b815250508173ffffffffffffffffffffffffffffffffffffffff16637ab4253a826040518263ffffffff1660e01b81526004016104d0919061113b565b6020604051808303816000875af11580156104ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105139190610d0d565b505050505050565b60008173ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015610568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058c9190610de3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f0906111a2565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a9190610eba565b90508073ffffffffffffffffffffffffffffffffffffffff16636078a3b2846040518263ffffffff1660e01b81526004016106a591906111e3565b6020604051808303816000875af11580156106c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e89190610d0d565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016107769190610cc6565b602060405180830381865afa158015610793573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b79190610d0d565b9050600081116107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390610d97565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b81526004016108559190610c22565b602060405180830381865afa158015610872573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108969190610de3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90610e5c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610950573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109749190610eba565b905060008173ffffffffffffffffffffffffffffffffffffffff16632a3d616e8673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a039190610d0d565b6040518263ffffffff1660e01b8152600401610a1f9190610c22565b6040805180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f9190610fed565b90506000816000015111610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90611066565b60405180910390fd5b600281602001906002811115610ac157610ac0611086565b5b90816002811115610ad557610ad4611086565b5b815250508173ffffffffffffffffffffffffffffffffffffffff16637ab4253a826040518263ffffffff1660e01b8152600401610b12919061113b565b6020604051808303816000875af1158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b559190610d0d565b505050505050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b9782610b6c565b9050919050565b6000610ba982610b8c565b9050919050565b610bb981610b9e565b8114610bc457600080fd5b50565b600081359050610bd681610bb0565b92915050565b600060208284031215610bf257610bf1610b67565b5b6000610c0084828501610bc7565b91505092915050565b6000819050919050565b610c1c81610c09565b82525050565b6000602082019050610c376000830184610c13565b92915050565b6000819050919050565b6000610c62610c5d610c5884610b6c565b610c3d565b610b6c565b9050919050565b6000610c7482610c47565b9050919050565b6000610c8682610c69565b9050919050565b610c9681610c7b565b82525050565b6000602082019050610cb16000830184610c8d565b92915050565b610cc081610b8c565b82525050565b6000602082019050610cdb6000830184610cb7565b92915050565b610cea81610c09565b8114610cf557600080fd5b50565b600081519050610d0781610ce1565b92915050565b600060208284031215610d2357610d22610b67565b5b6000610d3184828501610cf8565b91505092915050565b600082825260208201905092915050565b7f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000610d81601f83610d3a565b9150610d8c82610d4b565b602082019050919050565b60006020820190508181036000830152610db081610d74565b9050919050565b610dc081610b8c565b8114610dcb57600080fd5b50565b600081519050610ddd81610db7565b92915050565b600060208284031215610df957610df8610b67565b5b6000610e0784828501610dce565b91505092915050565b7f4552524f523a434f532d3030323a4e4f545f4f574e4552000000000000000000600082015250565b6000610e46601783610d3a565b9150610e5182610e10565b602082019050919050565b60006020820190508181036000830152610e7581610e39565b9050919050565b6000610e8782610b8c565b9050919050565b610e9781610e7c565b8114610ea257600080fd5b50565b600081519050610eb481610e8e565b92915050565b600060208284031215610ed057610ecf610b67565b5b6000610ede84828501610ea5565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f3582610eec565b810181811067ffffffffffffffff82111715610f5457610f53610efd565b5b80604052505050565b6000610f67610b5d565b9050610f738282610f2c565b919050565b60038110610f8557600080fd5b50565b600081519050610f9781610f78565b92915050565b600060408284031215610fb357610fb2610ee7565b5b610fbd6040610f5d565b90506000610fcd84828501610cf8565b6000830152506020610fe184828501610f88565b60208301525092915050565b60006040828403121561100357611002610b67565b5b600061101184828501610f9d565b91505092915050565b7f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000600082015250565b6000611050601783610d3a565b915061105b8261101a565b602082019050919050565b6000602082019050818103600083015261107f81611043565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6110be81610c09565b82525050565b600381106110d5576110d4611086565b5b50565b60008190506110e6826110c4565b919050565b60006110f6826110d8565b9050919050565b611106816110eb565b82525050565b60408201600082015161112260008501826110b5565b50602082015161113560208501826110fd565b50505050565b6000604082019050611150600083018461110c565b92915050565b7f4552524f523a434f532d3030333a4e4f545f4f574e4552000000000000000000600082015250565b600061118c601783610d3a565b915061119782611156565b602082019050919050565b600060208201905081810360008301526111bb8161117f565b9050919050565b60006111cd82610c69565b9050919050565b6111dd816111c2565b82525050565b60006020820190506111f860008301846111d4565b9291505056fea26469706673582212206fe5c638d601bdb4047f3aa0ab7605ba229abcc6efa2b88baaaff8a3aedd642664736f6c63430008140033",
|
102
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80632f6c493c146100515780634420e4861461006d5780635ab1bd531461009d578063f435f5a7146100bb575b600080fd5b61006b60048036038101906100669190610bdc565b6100d7565b005b61008760048036038101906100829190610bdc565b61051b565b6040516100949190610c22565b60405180910390f35b6100a56106f0565b6040516100b29190610c9c565b60405180910390f35b6100d560048036038101906100d09190610bdc565b610719565b005b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016101349190610cc6565b602060405180830381865afa158015610151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101759190610d0d565b9050600081116101ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b190610d97565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b81526004016102139190610c22565b602060405180830381865afa158015610230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102549190610de3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146102c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b890610e5c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561030e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103329190610eba565b905060008173ffffffffffffffffffffffffffffffffffffffff16632a3d616e8673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561039d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c19190610d0d565b6040518263ffffffff1660e01b81526004016103dd9190610c22565b6040805180830381865afa1580156103f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041d9190610fed565b90506000816000015111610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d90611066565b60405180910390fd5b60018160200190600281111561047f5761047e611086565b5b9081600281111561049357610492611086565b5b815250508173ffffffffffffffffffffffffffffffffffffffff16637ab4253a826040518263ffffffff1660e01b81526004016104d0919061113b565b6020604051808303816000875af11580156104ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105139190610d0d565b505050505050565b60008173ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015610568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058c9190610de3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f0906111a2565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a9190610eba565b90508073ffffffffffffffffffffffffffffffffffffffff16636078a3b2846040518263ffffffff1660e01b81526004016106a591906111e3565b6020604051808303816000875af11580156106c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e89190610d0d565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016107769190610cc6565b602060405180830381865afa158015610793573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b79190610d0d565b9050600081116107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390610d97565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b81526004016108559190610c22565b602060405180830381865afa158015610872573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108969190610de3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90610e5c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610950573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109749190610eba565b905060008173ffffffffffffffffffffffffffffffffffffffff16632a3d616e8673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a039190610d0d565b6040518263ffffffff1660e01b8152600401610a1f9190610c22565b6040805180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f9190610fed565b90506000816000015111610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90611066565b60405180910390fd5b600281602001906002811115610ac157610ac0611086565b5b90816002811115610ad557610ad4611086565b5b815250508173ffffffffffffffffffffffffffffffffffffffff16637ab4253a826040518263ffffffff1660e01b8152600401610b12919061113b565b6020604051808303816000875af1158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b559190610d0d565b505050505050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b9782610b6c565b9050919050565b6000610ba982610b8c565b9050919050565b610bb981610b9e565b8114610bc457600080fd5b50565b600081359050610bd681610bb0565b92915050565b600060208284031215610bf257610bf1610b67565b5b6000610c0084828501610bc7565b91505092915050565b6000819050919050565b610c1c81610c09565b82525050565b6000602082019050610c376000830184610c13565b92915050565b6000819050919050565b6000610c62610c5d610c5884610b6c565b610c3d565b610b6c565b9050919050565b6000610c7482610c47565b9050919050565b6000610c8682610c69565b9050919050565b610c9681610c7b565b82525050565b6000602082019050610cb16000830184610c8d565b92915050565b610cc081610b8c565b82525050565b6000602082019050610cdb6000830184610cb7565b92915050565b610cea81610c09565b8114610cf557600080fd5b50565b600081519050610d0781610ce1565b92915050565b600060208284031215610d2357610d22610b67565b5b6000610d3184828501610cf8565b91505092915050565b600082825260208201905092915050565b7f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000610d81601f83610d3a565b9150610d8c82610d4b565b602082019050919050565b60006020820190508181036000830152610db081610d74565b9050919050565b610dc081610b8c565b8114610dcb57600080fd5b50565b600081519050610ddd81610db7565b92915050565b600060208284031215610df957610df8610b67565b5b6000610e0784828501610dce565b91505092915050565b7f4552524f523a434f532d3030323a4e4f545f4f574e4552000000000000000000600082015250565b6000610e46601783610d3a565b9150610e5182610e10565b602082019050919050565b60006020820190508181036000830152610e7581610e39565b9050919050565b6000610e8782610b8c565b9050919050565b610e9781610e7c565b8114610ea257600080fd5b50565b600081519050610eb481610e8e565b92915050565b600060208284031215610ed057610ecf610b67565b5b6000610ede84828501610ea5565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f3582610eec565b810181811067ffffffffffffffff82111715610f5457610f53610efd565b5b80604052505050565b6000610f67610b5d565b9050610f738282610f2c565b919050565b60038110610f8557600080fd5b50565b600081519050610f9781610f78565b92915050565b600060408284031215610fb357610fb2610ee7565b5b610fbd6040610f5d565b90506000610fcd84828501610cf8565b6000830152506020610fe184828501610f88565b60208301525092915050565b60006040828403121561100357611002610b67565b5b600061101184828501610f9d565b91505092915050565b7f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000600082015250565b6000611050601783610d3a565b915061105b8261101a565b602082019050919050565b6000602082019050818103600083015261107f81611043565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6110be81610c09565b82525050565b600381106110d5576110d4611086565b5b50565b60008190506110e6826110c4565b919050565b60006110f6826110d8565b9050919050565b611106816110eb565b82525050565b60408201600082015161112260008501826110b5565b50602082015161113560208501826110fd565b50505050565b6000604082019050611150600083018461110c565b92915050565b7f4552524f523a434f532d3030333a4e4f545f4f574e4552000000000000000000600082015250565b600061118c601783610d3a565b915061119782611156565b602082019050919050565b600060208201905081810360008301526111bb8161117f565b9050919050565b60006111cd82610c69565b9050919050565b6111dd816111c2565b82525050565b60006020820190506111f860008301846111d4565b9291505056fea26469706673582212206fe5c638d601bdb4047f3aa0ab7605ba229abcc6efa2b88baaaff8a3aedd642664736f6c63430008140033",
|
103
|
+
"linkReferences": {},
|
104
|
+
"deployedLinkReferences": {}
|
105
|
+
}
|
@@ -0,0 +1,179 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "IComponentContract",
|
4
|
+
"sourceName": "contracts/instance/component/IComponent.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": "getData",
|
34
|
+
"outputs": [
|
35
|
+
{
|
36
|
+
"internalType": "bytes",
|
37
|
+
"name": "data",
|
38
|
+
"type": "bytes"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"stateMutability": "view",
|
42
|
+
"type": "function"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [],
|
46
|
+
"name": "getInitialOwner",
|
47
|
+
"outputs": [
|
48
|
+
{
|
49
|
+
"internalType": "address",
|
50
|
+
"name": "initialOwner",
|
51
|
+
"type": "address"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"stateMutability": "view",
|
55
|
+
"type": "function"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"inputs": [],
|
59
|
+
"name": "getInstance",
|
60
|
+
"outputs": [
|
61
|
+
{
|
62
|
+
"internalType": "contract IInstance",
|
63
|
+
"name": "instance",
|
64
|
+
"type": "address"
|
65
|
+
}
|
66
|
+
],
|
67
|
+
"stateMutability": "view",
|
68
|
+
"type": "function"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"inputs": [],
|
72
|
+
"name": "getNftId",
|
73
|
+
"outputs": [
|
74
|
+
{
|
75
|
+
"internalType": "uint256",
|
76
|
+
"name": "nftId",
|
77
|
+
"type": "uint256"
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"stateMutability": "view",
|
81
|
+
"type": "function"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"inputs": [],
|
85
|
+
"name": "getOwner",
|
86
|
+
"outputs": [
|
87
|
+
{
|
88
|
+
"internalType": "address",
|
89
|
+
"name": "owner",
|
90
|
+
"type": "address"
|
91
|
+
}
|
92
|
+
],
|
93
|
+
"stateMutability": "view",
|
94
|
+
"type": "function"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"inputs": [],
|
98
|
+
"name": "getParentNftId",
|
99
|
+
"outputs": [
|
100
|
+
{
|
101
|
+
"internalType": "uint256",
|
102
|
+
"name": "parentNftId",
|
103
|
+
"type": "uint256"
|
104
|
+
}
|
105
|
+
],
|
106
|
+
"stateMutability": "view",
|
107
|
+
"type": "function"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"inputs": [],
|
111
|
+
"name": "getRegistry",
|
112
|
+
"outputs": [
|
113
|
+
{
|
114
|
+
"internalType": "contract IRegistry",
|
115
|
+
"name": "registry",
|
116
|
+
"type": "address"
|
117
|
+
}
|
118
|
+
],
|
119
|
+
"stateMutability": "view",
|
120
|
+
"type": "function"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"inputs": [],
|
124
|
+
"name": "getType",
|
125
|
+
"outputs": [
|
126
|
+
{
|
127
|
+
"internalType": "uint256",
|
128
|
+
"name": "objectType",
|
129
|
+
"type": "uint256"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"stateMutability": "view",
|
133
|
+
"type": "function"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"inputs": [],
|
137
|
+
"name": "isRegisterable",
|
138
|
+
"outputs": [
|
139
|
+
{
|
140
|
+
"internalType": "bool",
|
141
|
+
"name": "",
|
142
|
+
"type": "bool"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"stateMutability": "pure",
|
146
|
+
"type": "function"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [],
|
150
|
+
"name": "isRegistered",
|
151
|
+
"outputs": [
|
152
|
+
{
|
153
|
+
"internalType": "bool",
|
154
|
+
"name": "",
|
155
|
+
"type": "bool"
|
156
|
+
}
|
157
|
+
],
|
158
|
+
"stateMutability": "view",
|
159
|
+
"type": "function"
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"inputs": [],
|
163
|
+
"name": "register",
|
164
|
+
"outputs": [
|
165
|
+
{
|
166
|
+
"internalType": "uint256",
|
167
|
+
"name": "nftId",
|
168
|
+
"type": "uint256"
|
169
|
+
}
|
170
|
+
],
|
171
|
+
"stateMutability": "nonpayable",
|
172
|
+
"type": "function"
|
173
|
+
}
|
174
|
+
],
|
175
|
+
"bytecode": "0x",
|
176
|
+
"deployedBytecode": "0x",
|
177
|
+
"linkReferences": {},
|
178
|
+
"deployedLinkReferences": {}
|
179
|
+
}
|
@@ -0,0 +1,245 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "IComponentModule",
|
4
|
+
"sourceName": "contracts/instance/component/IComponent.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": "components",
|
34
|
+
"outputs": [
|
35
|
+
{
|
36
|
+
"internalType": "uint256",
|
37
|
+
"name": "numberOfCompnents",
|
38
|
+
"type": "uint256"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"stateMutability": "view",
|
42
|
+
"type": "function"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "componentAddress",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "getComponentId",
|
53
|
+
"outputs": [
|
54
|
+
{
|
55
|
+
"internalType": "uint256",
|
56
|
+
"name": "id",
|
57
|
+
"type": "uint256"
|
58
|
+
}
|
59
|
+
],
|
60
|
+
"stateMutability": "view",
|
61
|
+
"type": "function"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"inputs": [
|
65
|
+
{
|
66
|
+
"internalType": "uint256",
|
67
|
+
"name": "idx",
|
68
|
+
"type": "uint256"
|
69
|
+
}
|
70
|
+
],
|
71
|
+
"name": "getComponentId",
|
72
|
+
"outputs": [
|
73
|
+
{
|
74
|
+
"internalType": "uint256",
|
75
|
+
"name": "id",
|
76
|
+
"type": "uint256"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"stateMutability": "view",
|
80
|
+
"type": "function"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "uint256",
|
86
|
+
"name": "id",
|
87
|
+
"type": "uint256"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "getComponentInfo",
|
91
|
+
"outputs": [
|
92
|
+
{
|
93
|
+
"components": [
|
94
|
+
{
|
95
|
+
"internalType": "uint256",
|
96
|
+
"name": "nftId",
|
97
|
+
"type": "uint256"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"internalType": "enum IComponent.CState",
|
101
|
+
"name": "state",
|
102
|
+
"type": "uint8"
|
103
|
+
}
|
104
|
+
],
|
105
|
+
"internalType": "struct IComponent.ComponentInfo",
|
106
|
+
"name": "info",
|
107
|
+
"type": "tuple"
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"stateMutability": "view",
|
111
|
+
"type": "function"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"inputs": [
|
115
|
+
{
|
116
|
+
"internalType": "uint256",
|
117
|
+
"name": "id",
|
118
|
+
"type": "uint256"
|
119
|
+
}
|
120
|
+
],
|
121
|
+
"name": "getComponentOwner",
|
122
|
+
"outputs": [
|
123
|
+
{
|
124
|
+
"internalType": "address",
|
125
|
+
"name": "owner",
|
126
|
+
"type": "address"
|
127
|
+
}
|
128
|
+
],
|
129
|
+
"stateMutability": "view",
|
130
|
+
"type": "function"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"inputs": [],
|
134
|
+
"name": "getComponentOwnerService",
|
135
|
+
"outputs": [
|
136
|
+
{
|
137
|
+
"internalType": "contract IComponentOwnerService",
|
138
|
+
"name": "",
|
139
|
+
"type": "address"
|
140
|
+
}
|
141
|
+
],
|
142
|
+
"stateMutability": "view",
|
143
|
+
"type": "function"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"inputs": [],
|
147
|
+
"name": "getOwner",
|
148
|
+
"outputs": [
|
149
|
+
{
|
150
|
+
"internalType": "address",
|
151
|
+
"name": "owner",
|
152
|
+
"type": "address"
|
153
|
+
}
|
154
|
+
],
|
155
|
+
"stateMutability": "view",
|
156
|
+
"type": "function"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"inputs": [
|
160
|
+
{
|
161
|
+
"internalType": "uint256",
|
162
|
+
"name": "productNftId",
|
163
|
+
"type": "uint256"
|
164
|
+
}
|
165
|
+
],
|
166
|
+
"name": "getPoolNftId",
|
167
|
+
"outputs": [
|
168
|
+
{
|
169
|
+
"internalType": "uint256",
|
170
|
+
"name": "poolNftId",
|
171
|
+
"type": "uint256"
|
172
|
+
}
|
173
|
+
],
|
174
|
+
"stateMutability": "view",
|
175
|
+
"type": "function"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"inputs": [],
|
179
|
+
"name": "getRegistry",
|
180
|
+
"outputs": [
|
181
|
+
{
|
182
|
+
"internalType": "contract IRegistry",
|
183
|
+
"name": "registry",
|
184
|
+
"type": "address"
|
185
|
+
}
|
186
|
+
],
|
187
|
+
"stateMutability": "view",
|
188
|
+
"type": "function"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"inputs": [
|
192
|
+
{
|
193
|
+
"internalType": "contract IComponentContract",
|
194
|
+
"name": "component",
|
195
|
+
"type": "address"
|
196
|
+
}
|
197
|
+
],
|
198
|
+
"name": "registerComponent",
|
199
|
+
"outputs": [
|
200
|
+
{
|
201
|
+
"internalType": "uint256",
|
202
|
+
"name": "nftInfo",
|
203
|
+
"type": "uint256"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"stateMutability": "nonpayable",
|
207
|
+
"type": "function"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"inputs": [
|
211
|
+
{
|
212
|
+
"components": [
|
213
|
+
{
|
214
|
+
"internalType": "uint256",
|
215
|
+
"name": "nftId",
|
216
|
+
"type": "uint256"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"internalType": "enum IComponent.CState",
|
220
|
+
"name": "state",
|
221
|
+
"type": "uint8"
|
222
|
+
}
|
223
|
+
],
|
224
|
+
"internalType": "struct IComponent.ComponentInfo",
|
225
|
+
"name": "info",
|
226
|
+
"type": "tuple"
|
227
|
+
}
|
228
|
+
],
|
229
|
+
"name": "setComponentInfo",
|
230
|
+
"outputs": [
|
231
|
+
{
|
232
|
+
"internalType": "uint256",
|
233
|
+
"name": "componentId",
|
234
|
+
"type": "uint256"
|
235
|
+
}
|
236
|
+
],
|
237
|
+
"stateMutability": "nonpayable",
|
238
|
+
"type": "function"
|
239
|
+
}
|
240
|
+
],
|
241
|
+
"bytecode": "0x",
|
242
|
+
"deployedBytecode": "0x",
|
243
|
+
"linkReferences": {},
|
244
|
+
"deployedLinkReferences": {}
|
245
|
+
}
|