@etherisc/gif-next 0.0.2-7631288 → 0.0.2-886fd8b
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.
- 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/errors/Require.sol/Require.dbg.json +4 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +128 -0
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -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/ChainNft.sol/ChainNft.dbg.json +4 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +534 -0
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +4 -0
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +452 -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 +279 -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 +305 -0
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +60 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +10 -0
- package/contracts/components/Component.sol +62 -0
- package/contracts/components/IPool.sol +9 -0
- package/contracts/components/IProduct.sol +12 -0
- package/contracts/components/Pool.sol +29 -0
- package/contracts/components/Product.sol +66 -0
- package/contracts/experiment/errors/Require.sol +33 -0
- package/contracts/experiment/errors/Revert.sol +39 -0
- package/contracts/experiment/inheritance/A.sol +56 -0
- package/contracts/experiment/inheritance/B.sol +23 -0
- package/contracts/experiment/inheritance/C.sol +28 -0
- package/contracts/experiment/inheritance/IA.sol +18 -0
- package/contracts/experiment/inheritance/IB.sol +9 -0
- package/contracts/experiment/inheritance/IC.sol +11 -0
- package/contracts/experiment/types/TypeA.sol +42 -0
- package/contracts/experiment/types/TypeB.sol +24 -0
- package/contracts/instance/IInstance.sol +20 -0
- package/contracts/instance/Instance.sol +64 -0
- package/contracts/instance/access/Access.sol +218 -0
- package/contracts/instance/access/IAccess.sol +83 -0
- package/contracts/instance/component/ComponentModule.sol +246 -0
- package/contracts/instance/component/IComponent.sol +95 -0
- package/contracts/instance/policy/IPolicy.sol +66 -0
- package/contracts/instance/policy/PolicyModule.sol +106 -0
- package/contracts/instance/pool/IPoolModule.sol +41 -0
- package/contracts/instance/pool/PoolModule.sol +84 -0
- package/contracts/instance/product/IProductService.sol +46 -0
- package/contracts/instance/product/ProductService.sol +106 -0
- package/contracts/registry/ChainNft.sol +173 -0
- package/contracts/registry/IChainNft.sol +18 -0
- package/contracts/registry/IRegistry.sol +70 -0
- package/contracts/registry/Registry.sol +181 -0
- package/contracts/types/ChainId.sol +24 -0
- package/contracts/types/NftId.sol +26 -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": "NftId",
|
80
|
+
"name": "nftId",
|
81
|
+
"type": "uint96"
|
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": "0x60806040523480156200001157600080fd5b50604051620013be380380620013be8339818101604052810190620000379190620000ea565b80806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200011c565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620000b28262000085565b9050919050565b620000c481620000a5565b8114620000d057600080fd5b50565b600081519050620000e481620000b9565b92915050565b60006020828403121562000103576200010262000080565b5b60006200011384828501620000d3565b91505092915050565b611292806200012c6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632f6c493c146100515780634420e4861461006d5780635ab1bd531461009d578063f435f5a7146100bb575b600080fd5b61006b60048036038101906100669190610c0a565b6100d7565b005b61008760048036038101906100829190610c0a565b610525565b6040516100949190610c8a565b60405180910390f35b6100a56106fa565b6040516100b29190610cfa565b60405180910390f35b6100d560048036038101906100d09190610c0a565b610723565b005b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016101349190610d24565b602060405180830381865afa158015610151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101759190610d6b565b905061018081610b71565b6101bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b690610df5565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016102189190610c8a565b602060405180830381865afa158015610235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102599190610e41565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146102c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102bd90610eba565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610313573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103379190610f18565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c69190610d6b565b6040518263ffffffff1660e01b81526004016103e29190610c8a565b6040805180830381865afa1580156103fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610422919061104b565b90506104318160000151610b71565b610470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610467906110c4565b60405180910390fd5b600181602001906002811115610489576104886110e4565b5b9081600281111561049d5761049c6110e4565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b81526004016104da9190611199565b6020604051808303816000875af11580156104f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051d9190610d6b565b505050505050565b60008173ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015610572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105969190610e41565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fa90611200565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610650573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106749190610f18565b90508073ffffffffffffffffffffffffffffffffffffffff16636078a3b2846040518263ffffffff1660e01b81526004016106af9190611241565b6020604051808303816000875af11580156106ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f29190610d6b565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016107809190610d24565b602060405180830381865afa15801561079d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c19190610d6b565b90506107cc81610b71565b61080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290610df5565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016108649190610c8a565b602060405180830381865afa158015610881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a59190610e41565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090990610eba565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109839190610f18565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a129190610d6b565b6040518263ffffffff1660e01b8152600401610a2e9190610c8a565b6040805180830381865afa158015610a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6e919061104b565b9050610a7d8160000151610b71565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906110c4565b60405180910390fd5b600281602001906002811115610ad557610ad46110e4565b5b90816002811115610ae957610ae86110e4565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b8152600401610b269190611199565b6020604051808303816000875af1158015610b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b699190610d6b565b505050505050565b600080826bffffffffffffffffffffffff16119050919050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bc582610b9a565b9050919050565b6000610bd782610bba565b9050919050565b610be781610bcc565b8114610bf257600080fd5b50565b600081359050610c0481610bde565b92915050565b600060208284031215610c2057610c1f610b95565b5b6000610c2e84828501610bf5565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610c74610c6f610c6a84610c37565b610c4f565b610c37565b9050919050565b610c8481610c59565b82525050565b6000602082019050610c9f6000830184610c7b565b92915050565b6000610cc0610cbb610cb684610b9a565b610c4f565b610b9a565b9050919050565b6000610cd282610ca5565b9050919050565b6000610ce482610cc7565b9050919050565b610cf481610cd9565b82525050565b6000602082019050610d0f6000830184610ceb565b92915050565b610d1e81610bba565b82525050565b6000602082019050610d396000830184610d15565b92915050565b610d4881610c37565b8114610d5357600080fd5b50565b600081519050610d6581610d3f565b92915050565b600060208284031215610d8157610d80610b95565b5b6000610d8f84828501610d56565b91505092915050565b600082825260208201905092915050565b7f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000610ddf601f83610d98565b9150610dea82610da9565b602082019050919050565b60006020820190508181036000830152610e0e81610dd2565b9050919050565b610e1e81610bba565b8114610e2957600080fd5b50565b600081519050610e3b81610e15565b92915050565b600060208284031215610e5757610e56610b95565b5b6000610e6584828501610e2c565b91505092915050565b7f4552524f523a434f532d3030323a4e4f545f4f574e4552000000000000000000600082015250565b6000610ea4601783610d98565b9150610eaf82610e6e565b602082019050919050565b60006020820190508181036000830152610ed381610e97565b9050919050565b6000610ee582610bba565b9050919050565b610ef581610eda565b8114610f0057600080fd5b50565b600081519050610f1281610eec565b92915050565b600060208284031215610f2e57610f2d610b95565b5b6000610f3c84828501610f03565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f9382610f4a565b810181811067ffffffffffffffff82111715610fb257610fb1610f5b565b5b80604052505050565b6000610fc5610b8b565b9050610fd18282610f8a565b919050565b60038110610fe357600080fd5b50565b600081519050610ff581610fd6565b92915050565b60006040828403121561101157611010610f45565b5b61101b6040610fbb565b9050600061102b84828501610d56565b600083015250602061103f84828501610fe6565b60208301525092915050565b60006040828403121561106157611060610b95565b5b600061106f84828501610ffb565b91505092915050565b7f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000600082015250565b60006110ae601783610d98565b91506110b982611078565b602082019050919050565b600060208201905081810360008301526110dd816110a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b61111c81610c59565b82525050565b60038110611133576111326110e4565b5b50565b600081905061114482611122565b919050565b600061115482611136565b9050919050565b61116481611149565b82525050565b6040820160008201516111806000850182611113565b506020820151611193602085018261115b565b50505050565b60006040820190506111ae600083018461116a565b92915050565b7f4552524f523a434f532d3030333a4e4f545f4f574e4552000000000000000000600082015250565b60006111ea601783610d98565b91506111f5826111b4565b602082019050919050565b60006020820190508181036000830152611219816111dd565b9050919050565b600061122b82610cc7565b9050919050565b61123b81611220565b82525050565b60006020820190506112566000830184611232565b9291505056fea2646970667358221220a975e3bd6fec0355443cd8d93652c892129b712def5bb6df856bf6d068e779bb64736f6c63430008140033",
|
102
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80632f6c493c146100515780634420e4861461006d5780635ab1bd531461009d578063f435f5a7146100bb575b600080fd5b61006b60048036038101906100669190610c0a565b6100d7565b005b61008760048036038101906100829190610c0a565b610525565b6040516100949190610c8a565b60405180910390f35b6100a56106fa565b6040516100b29190610cfa565b60405180910390f35b6100d560048036038101906100d09190610c0a565b610723565b005b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016101349190610d24565b602060405180830381865afa158015610151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101759190610d6b565b905061018081610b71565b6101bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b690610df5565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016102189190610c8a565b602060405180830381865afa158015610235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102599190610e41565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146102c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102bd90610eba565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610313573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103379190610f18565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c69190610d6b565b6040518263ffffffff1660e01b81526004016103e29190610c8a565b6040805180830381865afa1580156103fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610422919061104b565b90506104318160000151610b71565b610470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610467906110c4565b60405180910390fd5b600181602001906002811115610489576104886110e4565b5b9081600281111561049d5761049c6110e4565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b81526004016104da9190611199565b6020604051808303816000875af11580156104f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051d9190610d6b565b505050505050565b60008173ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015610572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105969190610e41565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fa90611200565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610650573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106749190610f18565b90508073ffffffffffffffffffffffffffffffffffffffff16636078a3b2846040518263ffffffff1660e01b81526004016106af9190611241565b6020604051808303816000875af11580156106ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f29190610d6b565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016107809190610d24565b602060405180830381865afa15801561079d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c19190610d6b565b90506107cc81610b71565b61080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290610df5565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016108649190610c8a565b602060405180830381865afa158015610881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a59190610e41565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090990610eba565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109839190610f18565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a129190610d6b565b6040518263ffffffff1660e01b8152600401610a2e9190610c8a565b6040805180830381865afa158015610a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6e919061104b565b9050610a7d8160000151610b71565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906110c4565b60405180910390fd5b600281602001906002811115610ad557610ad46110e4565b5b90816002811115610ae957610ae86110e4565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b8152600401610b269190611199565b6020604051808303816000875af1158015610b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b699190610d6b565b505050505050565b600080826bffffffffffffffffffffffff16119050919050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bc582610b9a565b9050919050565b6000610bd782610bba565b9050919050565b610be781610bcc565b8114610bf257600080fd5b50565b600081359050610c0481610bde565b92915050565b600060208284031215610c2057610c1f610b95565b5b6000610c2e84828501610bf5565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610c74610c6f610c6a84610c37565b610c4f565b610c37565b9050919050565b610c8481610c59565b82525050565b6000602082019050610c9f6000830184610c7b565b92915050565b6000610cc0610cbb610cb684610b9a565b610c4f565b610b9a565b9050919050565b6000610cd282610ca5565b9050919050565b6000610ce482610cc7565b9050919050565b610cf481610cd9565b82525050565b6000602082019050610d0f6000830184610ceb565b92915050565b610d1e81610bba565b82525050565b6000602082019050610d396000830184610d15565b92915050565b610d4881610c37565b8114610d5357600080fd5b50565b600081519050610d6581610d3f565b92915050565b600060208284031215610d8157610d80610b95565b5b6000610d8f84828501610d56565b91505092915050565b600082825260208201905092915050565b7f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000610ddf601f83610d98565b9150610dea82610da9565b602082019050919050565b60006020820190508181036000830152610e0e81610dd2565b9050919050565b610e1e81610bba565b8114610e2957600080fd5b50565b600081519050610e3b81610e15565b92915050565b600060208284031215610e5757610e56610b95565b5b6000610e6584828501610e2c565b91505092915050565b7f4552524f523a434f532d3030323a4e4f545f4f574e4552000000000000000000600082015250565b6000610ea4601783610d98565b9150610eaf82610e6e565b602082019050919050565b60006020820190508181036000830152610ed381610e97565b9050919050565b6000610ee582610bba565b9050919050565b610ef581610eda565b8114610f0057600080fd5b50565b600081519050610f1281610eec565b92915050565b600060208284031215610f2e57610f2d610b95565b5b6000610f3c84828501610f03565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f9382610f4a565b810181811067ffffffffffffffff82111715610fb257610fb1610f5b565b5b80604052505050565b6000610fc5610b8b565b9050610fd18282610f8a565b919050565b60038110610fe357600080fd5b50565b600081519050610ff581610fd6565b92915050565b60006040828403121561101157611010610f45565b5b61101b6040610fbb565b9050600061102b84828501610d56565b600083015250602061103f84828501610fe6565b60208301525092915050565b60006040828403121561106157611060610b95565b5b600061106f84828501610ffb565b91505092915050565b7f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000600082015250565b60006110ae601783610d98565b91506110b982611078565b602082019050919050565b600060208201905081810360008301526110dd816110a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b61111c81610c59565b82525050565b60038110611133576111326110e4565b5b50565b600081905061114482611122565b919050565b600061115482611136565b9050919050565b61116481611149565b82525050565b6040820160008201516111806000850182611113565b506020820151611193602085018261115b565b50505050565b60006040820190506111ae600083018461116a565b92915050565b7f4552524f523a434f532d3030333a4e4f545f4f574e4552000000000000000000600082015250565b60006111ea601783610d98565b91506111f5826111b4565b602082019050919050565b60006020820190508181036000830152611219816111dd565b9050919050565b600061122b82610cc7565b9050919050565b61123b81611220565b82525050565b60006020820190506112566000830184611232565b9291505056fea2646970667358221220a975e3bd6fec0355443cd8d93652c892129b712def5bb6df856bf6d068e779bb64736f6c63430008140033",
|
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": "NftId",
|
76
|
+
"name": "nftId",
|
77
|
+
"type": "uint96"
|
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": "NftId",
|
102
|
+
"name": "parentNftId",
|
103
|
+
"type": "uint96"
|
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": "NftId",
|
167
|
+
"name": "nftId",
|
168
|
+
"type": "uint96"
|
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": "NftId",
|
56
|
+
"name": "nftId",
|
57
|
+
"type": "uint96"
|
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": "NftId",
|
75
|
+
"name": "nftId",
|
76
|
+
"type": "uint96"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"stateMutability": "view",
|
80
|
+
"type": "function"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "NftId",
|
86
|
+
"name": "nftId",
|
87
|
+
"type": "uint96"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "getComponentInfo",
|
91
|
+
"outputs": [
|
92
|
+
{
|
93
|
+
"components": [
|
94
|
+
{
|
95
|
+
"internalType": "NftId",
|
96
|
+
"name": "nftId",
|
97
|
+
"type": "uint96"
|
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": "NftId",
|
117
|
+
"name": "nftId",
|
118
|
+
"type": "uint96"
|
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": "NftId",
|
162
|
+
"name": "productNftId",
|
163
|
+
"type": "uint96"
|
164
|
+
}
|
165
|
+
],
|
166
|
+
"name": "getPoolNftId",
|
167
|
+
"outputs": [
|
168
|
+
{
|
169
|
+
"internalType": "NftId",
|
170
|
+
"name": "poolNftId",
|
171
|
+
"type": "uint96"
|
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": "NftId",
|
202
|
+
"name": "nftId",
|
203
|
+
"type": "uint96"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"stateMutability": "nonpayable",
|
207
|
+
"type": "function"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"inputs": [
|
211
|
+
{
|
212
|
+
"components": [
|
213
|
+
{
|
214
|
+
"internalType": "NftId",
|
215
|
+
"name": "nftId",
|
216
|
+
"type": "uint96"
|
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": "NftId",
|
233
|
+
"name": "componentNftId",
|
234
|
+
"type": "uint96"
|
235
|
+
}
|
236
|
+
],
|
237
|
+
"stateMutability": "nonpayable",
|
238
|
+
"type": "function"
|
239
|
+
}
|
240
|
+
],
|
241
|
+
"bytecode": "0x",
|
242
|
+
"deployedBytecode": "0x",
|
243
|
+
"linkReferences": {},
|
244
|
+
"deployedLinkReferences": {}
|
245
|
+
}
|