@etherisc/gif-next 0.0.2-ac5f18b → 0.0.2-aeb86f4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/README.md +70 -0
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
  3. package/artifacts/contracts/components/Component.sol/Component.json +179 -0
  4. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +4 -0
  5. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +35 -0
  6. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +179 -0
  8. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +192 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +213 -0
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
  13. package/artifacts/contracts/components/Product.sol/Product.json +231 -0
  14. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  15. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  16. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  17. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  18. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
  20. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
  24. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
  26. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +128 -0
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
  30. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
  32. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
  34. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  36. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +892 -0
  40. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  41. package/artifacts/contracts/instance/Instance.sol/Instance.json +1067 -0
  42. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +4 -0
  43. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +400 -0
  44. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +4 -0
  45. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.json +10 -0
  46. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +4 -0
  47. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +35 -0
  48. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +4 -0
  49. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +50 -0
  50. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  51. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +336 -0
  52. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  53. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +327 -0
  54. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +4 -0
  55. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +147 -0
  56. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +4 -0
  57. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.json +10 -0
  58. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +4 -0
  59. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +179 -0
  60. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  61. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +245 -0
  62. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +4 -0
  63. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +94 -0
  64. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +4 -0
  65. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +24 -0
  66. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  67. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.json +10 -0
  68. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +231 -0
  70. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +231 -0
  72. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  73. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.json +10 -0
  74. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +149 -0
  76. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  77. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +162 -0
  78. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +75 -0
  80. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +114 -0
  82. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +4 -0
  83. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +75 -0
  84. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +4 -0
  85. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +167 -0
  86. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  87. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +534 -0
  88. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +4 -0
  89. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +452 -0
  90. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +4 -0
  91. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +24 -0
  92. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +4 -0
  93. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +166 -0
  94. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  95. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +279 -0
  96. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +4 -0
  97. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +49 -0
  98. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +4 -0
  99. package/artifacts/contracts/registry/Registry.sol/Registerable.json +166 -0
  100. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  101. package/artifacts/contracts/registry/Registry.sol/Registry.json +347 -0
  102. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +4 -0
  103. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +60 -0
  104. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  105. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  106. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  107. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  108. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  109. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +92 -0
  110. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  111. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +174 -0
  112. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  113. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +453 -0
  114. package/contracts/components/Component.sol +62 -0
  115. package/contracts/components/IPool.sol +9 -0
  116. package/contracts/components/IProduct.sol +12 -0
  117. package/contracts/components/Pool.sol +29 -0
  118. package/contracts/components/Product.sol +66 -0
  119. package/contracts/experiment/errors/Require.sol +33 -0
  120. package/contracts/experiment/errors/Revert.sol +39 -0
  121. package/contracts/experiment/inheritance/A.sol +56 -0
  122. package/contracts/experiment/inheritance/B.sol +23 -0
  123. package/contracts/experiment/inheritance/C.sol +28 -0
  124. package/contracts/experiment/inheritance/IA.sol +18 -0
  125. package/contracts/experiment/inheritance/IB.sol +9 -0
  126. package/contracts/experiment/inheritance/IC.sol +11 -0
  127. package/contracts/experiment/types/TypeA.sol +42 -0
  128. package/contracts/experiment/types/TypeB.sol +24 -0
  129. package/contracts/instance/IInstance.sol +20 -0
  130. package/contracts/instance/Instance.sol +64 -0
  131. package/contracts/instance/access/Access.sol +218 -0
  132. package/contracts/instance/access/IAccess.sol +83 -0
  133. package/contracts/instance/component/ComponentModule.sol +248 -0
  134. package/contracts/instance/component/IComponent.sol +95 -0
  135. package/contracts/instance/policy/IPolicy.sol +66 -0
  136. package/contracts/instance/policy/PolicyModule.sol +107 -0
  137. package/contracts/instance/pool/IPoolModule.sol +41 -0
  138. package/contracts/instance/pool/PoolModule.sol +86 -0
  139. package/contracts/instance/product/IProductService.sol +46 -0
  140. package/contracts/instance/product/ProductService.sol +108 -0
  141. package/contracts/registry/ChainNft.sol +173 -0
  142. package/contracts/registry/IChainNft.sol +18 -0
  143. package/contracts/registry/IRegistry.sol +70 -0
  144. package/contracts/registry/Registry.sol +182 -0
  145. package/contracts/types/Blocknumber.sol +60 -0
  146. package/contracts/types/ChainId.sol +30 -0
  147. package/contracts/types/NftId.sol +35 -0
  148. package/contracts/types/Timestamp.sol +55 -0
  149. package/contracts/types/UFixed.sol +211 -0
  150. package/package.json +6 -6
  151. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  152. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  153. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  154. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  155. package/contracts/Dip.sol +0 -26
  156. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,147 @@
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": "0x60806040523480156200001157600080fd5b506040516200162f3803806200162f8339818101604052810190620000379190620000ea565b80806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200011c565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620000b28262000085565b9050919050565b620000c481620000a5565b8114620000d057600080fd5b50565b600081519050620000e481620000b9565b92915050565b60006020828403121562000103576200010262000080565b5b60006200011384828501620000d3565b91505092915050565b611503806200012c6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632f6c493c146100515780634420e4861461006d5780635ab1bd531461009d578063f435f5a7146100bb575b600080fd5b61006b60048036038101906100669190610dec565b6100d7565b005b61008760048036038101906100829190610dec565b610623565b6040516100949190610e6c565b60405180910390f35b6100a56107f8565b6040516100b29190610edc565b60405180910390f35b6100d560048036038101906100d09190610dec565b610821565b005b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016101349190610f06565b602060405180830381865afa158015610151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101759190610f4d565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016101be9190610f89565b602060405180830381865af41580156101db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ff9190610fdc565b61023e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023590611066565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016102979190610e6c565b602060405180830381865afa1580156102b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d891906110b2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033c9061112b565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610392573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b69190611189565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610421573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104459190610f4d565b6040518263ffffffff1660e01b81526004016104619190610e6c565b6040805180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a191906112bc565b905080600001516bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016104ee9190610f89565b602060405180830381865af415801561050b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190610fdc565b61056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056590611335565b60405180910390fd5b60018160200190600281111561058757610586611355565b5b9081600281111561059b5761059a611355565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b81526004016105d8919061140a565b6020604051808303816000875af11580156105f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061b9190610f4d565b505050505050565b60008173ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015610670573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069491906110b2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890611471565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561074e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107729190611189565b90508073ffffffffffffffffffffffffffffffffffffffff16636078a3b2846040518263ffffffff1660e01b81526004016107ad91906114b2565b6020604051808303816000875af11580156107cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f09190610f4d565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b815260040161087e9190610f06565b602060405180830381865afa15801561089b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bf9190610f4d565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016109089190610f89565b602060405180830381865af4158015610925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109499190610fdc565b610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90611066565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016109e19190610e6c565b602060405180830381865afa1580156109fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2291906110b2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061112b565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b009190611189565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190610f4d565b6040518263ffffffff1660e01b8152600401610bab9190610e6c565b6040805180830381865afa158015610bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610beb91906112bc565b905080600001516bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401610c389190610f89565b602060405180830381865af4158015610c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c799190610fdc565b610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90611335565b60405180910390fd5b600281602001906002811115610cd157610cd0611355565b5b90816002811115610ce557610ce4611355565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b8152600401610d22919061140a565b6020604051808303816000875af1158015610d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d659190610f4d565b505050505050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610da782610d7c565b9050919050565b6000610db982610d9c565b9050919050565b610dc981610dae565b8114610dd457600080fd5b50565b600081359050610de681610dc0565b92915050565b600060208284031215610e0257610e01610d77565b5b6000610e1084828501610dd7565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610e56610e51610e4c84610e19565b610e31565b610e19565b9050919050565b610e6681610e3b565b82525050565b6000602082019050610e816000830184610e5d565b92915050565b6000610ea2610e9d610e9884610d7c565b610e31565b610d7c565b9050919050565b6000610eb482610e87565b9050919050565b6000610ec682610ea9565b9050919050565b610ed681610ebb565b82525050565b6000602082019050610ef16000830184610ecd565b92915050565b610f0081610d9c565b82525050565b6000602082019050610f1b6000830184610ef7565b92915050565b610f2a81610e19565b8114610f3557600080fd5b50565b600081519050610f4781610f21565b92915050565b600060208284031215610f6357610f62610d77565b5b6000610f7184828501610f38565b91505092915050565b610f8381610e3b565b82525050565b6000602082019050610f9e6000830184610f7a565b92915050565b60008115159050919050565b610fb981610fa4565b8114610fc457600080fd5b50565b600081519050610fd681610fb0565b92915050565b600060208284031215610ff257610ff1610d77565b5b600061100084828501610fc7565b91505092915050565b600082825260208201905092915050565b7f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000611050601f83611009565b915061105b8261101a565b602082019050919050565b6000602082019050818103600083015261107f81611043565b9050919050565b61108f81610d9c565b811461109a57600080fd5b50565b6000815190506110ac81611086565b92915050565b6000602082840312156110c8576110c7610d77565b5b60006110d68482850161109d565b91505092915050565b7f4552524f523a434f532d3030323a4e4f545f4f574e4552000000000000000000600082015250565b6000611115601783611009565b9150611120826110df565b602082019050919050565b6000602082019050818103600083015261114481611108565b9050919050565b600061115682610d9c565b9050919050565b6111668161114b565b811461117157600080fd5b50565b6000815190506111838161115d565b92915050565b60006020828403121561119f5761119e610d77565b5b60006111ad84828501611174565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611204826111bb565b810181811067ffffffffffffffff82111715611223576112226111cc565b5b80604052505050565b6000611236610d6d565b905061124282826111fb565b919050565b6003811061125457600080fd5b50565b60008151905061126681611247565b92915050565b600060408284031215611282576112816111b6565b5b61128c604061122c565b9050600061129c84828501610f38565b60008301525060206112b084828501611257565b60208301525092915050565b6000604082840312156112d2576112d1610d77565b5b60006112e08482850161126c565b91505092915050565b7f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000600082015250565b600061131f601783611009565b915061132a826112e9565b602082019050919050565b6000602082019050818103600083015261134e81611312565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b61138d81610e3b565b82525050565b600381106113a4576113a3611355565b5b50565b60008190506113b582611393565b919050565b60006113c5826113a7565b9050919050565b6113d5816113ba565b82525050565b6040820160008201516113f16000850182611384565b50602082015161140460208501826113cc565b50505050565b600060408201905061141f60008301846113db565b92915050565b7f4552524f523a434f532d3030333a4e4f545f4f574e4552000000000000000000600082015250565b600061145b601783611009565b915061146682611425565b602082019050919050565b6000602082019050818103600083015261148a8161144e565b9050919050565b600061149c82610ea9565b9050919050565b6114ac81611491565b82525050565b60006020820190506114c760008301846114a3565b9291505056fea26469706673582212203272804d364bf3b4cf6436955f573e50ba290d17285140b60b58a42a8ab44a7b64736f6c63430008140033",
102
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80632f6c493c146100515780634420e4861461006d5780635ab1bd531461009d578063f435f5a7146100bb575b600080fd5b61006b60048036038101906100669190610dec565b6100d7565b005b61008760048036038101906100829190610dec565b610623565b6040516100949190610e6c565b60405180910390f35b6100a56107f8565b6040516100b29190610edc565b60405180910390f35b6100d560048036038101906100d09190610dec565b610821565b005b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b81526004016101349190610f06565b602060405180830381865afa158015610151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101759190610f4d565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016101be9190610f89565b602060405180830381865af41580156101db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ff9190610fdc565b61023e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023590611066565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016102979190610e6c565b602060405180830381865afa1580156102b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d891906110b2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033c9061112b565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610392573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b69190611189565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610421573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104459190610f4d565b6040518263ffffffff1660e01b81526004016104619190610e6c565b6040805180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a191906112bc565b905080600001516bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016104ee9190610f89565b602060405180830381865af415801561050b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190610fdc565b61056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056590611335565b60405180910390fd5b60018160200190600281111561058757610586611355565b5b9081600281111561059b5761059a611355565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b81526004016105d8919061140a565b6020604051808303816000875af11580156105f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061b9190610f4d565b505050505050565b60008173ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015610670573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069491906110b2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890611471565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561074e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107729190611189565b90508073ffffffffffffffffffffffffffffffffffffffff16636078a3b2846040518263ffffffff1660e01b81526004016107ad91906114b2565b6020604051808303816000875af11580156107cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f09190610f4d565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e836040518263ffffffff1660e01b815260040161087e9190610f06565b602060405180830381865afa15801561089b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bf9190610f4d565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016109089190610f89565b602060405180830381865af4158015610925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109499190610fdc565b610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90611066565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016109e19190610e6c565b602060405180830381865afa1580156109fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2291906110b2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061112b565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b009190611189565b905060008173ffffffffffffffffffffffffffffffffffffffff1663f0ea17c38673ffffffffffffffffffffffffffffffffffffffff1663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190610f4d565b6040518263ffffffff1660e01b8152600401610bab9190610e6c565b6040805180830381865afa158015610bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610beb91906112bc565b905080600001516bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401610c389190610f89565b602060405180830381865af4158015610c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c799190610fdc565b610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90611335565b60405180910390fd5b600281602001906002811115610cd157610cd0611355565b5b90816002811115610ce557610ce4611355565b5b815250508173ffffffffffffffffffffffffffffffffffffffff1663559dc3d0826040518263ffffffff1660e01b8152600401610d22919061140a565b6020604051808303816000875af1158015610d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d659190610f4d565b505050505050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610da782610d7c565b9050919050565b6000610db982610d9c565b9050919050565b610dc981610dae565b8114610dd457600080fd5b50565b600081359050610de681610dc0565b92915050565b600060208284031215610e0257610e01610d77565b5b6000610e1084828501610dd7565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610e56610e51610e4c84610e19565b610e31565b610e19565b9050919050565b610e6681610e3b565b82525050565b6000602082019050610e816000830184610e5d565b92915050565b6000610ea2610e9d610e9884610d7c565b610e31565b610d7c565b9050919050565b6000610eb482610e87565b9050919050565b6000610ec682610ea9565b9050919050565b610ed681610ebb565b82525050565b6000602082019050610ef16000830184610ecd565b92915050565b610f0081610d9c565b82525050565b6000602082019050610f1b6000830184610ef7565b92915050565b610f2a81610e19565b8114610f3557600080fd5b50565b600081519050610f4781610f21565b92915050565b600060208284031215610f6357610f62610d77565b5b6000610f7184828501610f38565b91505092915050565b610f8381610e3b565b82525050565b6000602082019050610f9e6000830184610f7a565b92915050565b60008115159050919050565b610fb981610fa4565b8114610fc457600080fd5b50565b600081519050610fd681610fb0565b92915050565b600060208284031215610ff257610ff1610d77565b5b600061100084828501610fc7565b91505092915050565b600082825260208201905092915050565b7f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000611050601f83611009565b915061105b8261101a565b602082019050919050565b6000602082019050818103600083015261107f81611043565b9050919050565b61108f81610d9c565b811461109a57600080fd5b50565b6000815190506110ac81611086565b92915050565b6000602082840312156110c8576110c7610d77565b5b60006110d68482850161109d565b91505092915050565b7f4552524f523a434f532d3030323a4e4f545f4f574e4552000000000000000000600082015250565b6000611115601783611009565b9150611120826110df565b602082019050919050565b6000602082019050818103600083015261114481611108565b9050919050565b600061115682610d9c565b9050919050565b6111668161114b565b811461117157600080fd5b50565b6000815190506111838161115d565b92915050565b60006020828403121561119f5761119e610d77565b5b60006111ad84828501611174565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611204826111bb565b810181811067ffffffffffffffff82111715611223576112226111cc565b5b80604052505050565b6000611236610d6d565b905061124282826111fb565b919050565b6003811061125457600080fd5b50565b60008151905061126681611247565b92915050565b600060408284031215611282576112816111b6565b5b61128c604061122c565b9050600061129c84828501610f38565b60008301525060206112b084828501611257565b60208301525092915050565b6000604082840312156112d2576112d1610d77565b5b60006112e08482850161126c565b91505092915050565b7f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000600082015250565b600061131f601783611009565b915061132a826112e9565b602082019050919050565b6000602082019050818103600083015261134e81611312565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b61138d81610e3b565b82525050565b600381106113a4576113a3611355565b5b50565b60008190506113b582611393565b919050565b60006113c5826113a7565b9050919050565b6113d5816113ba565b82525050565b6040820160008201516113f16000850182611384565b50602082015161140460208501826113cc565b50505050565b600060408201905061141f60008301846113db565b92915050565b7f4552524f523a434f532d3030333a4e4f545f4f574e4552000000000000000000600082015250565b600061145b601783611009565b915061146682611425565b602082019050919050565b6000602082019050818103600083015261148a8161144e565b9050919050565b600061149c82610ea9565b9050919050565b6114ac81611491565b82525050565b60006020820190506114c760008301846114a3565b9291505056fea26469706673582212203272804d364bf3b4cf6436955f573e50ba290d17285140b60b58a42a8ab44a7b64736f6c63430008140033",
103
+ "linkReferences": {
104
+ "contracts/types/NftId.sol": {
105
+ "NftIdLib": [
106
+ {
107
+ "length": 20,
108
+ "start": 692
109
+ },
110
+ {
111
+ "length": 20,
112
+ "start": 1508
113
+ },
114
+ {
115
+ "length": 20,
116
+ "start": 2558
117
+ },
118
+ {
119
+ "length": 20,
120
+ "start": 3374
121
+ }
122
+ ]
123
+ }
124
+ },
125
+ "deployedLinkReferences": {
126
+ "contracts/types/NftId.sol": {
127
+ "NftIdLib": [
128
+ {
129
+ "length": 20,
130
+ "start": 392
131
+ },
132
+ {
133
+ "length": 20,
134
+ "start": 1208
135
+ },
136
+ {
137
+ "length": 20,
138
+ "start": 2258
139
+ },
140
+ {
141
+ "length": 20,
142
+ "start": 3074
143
+ }
144
+ ]
145
+ }
146
+ }
147
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/7f46eba5c4cf2f66b039050445fbb1f7.json"
4
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IComponent",
4
+ "sourceName": "contracts/instance/component/IComponent.sol",
5
+ "abi": [],
6
+ "bytecode": "0x",
7
+ "deployedBytecode": "0x",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/7f46eba5c4cf2f66b039050445fbb1f7.json"
4
+ }
@@ -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,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/7f46eba5c4cf2f66b039050445fbb1f7.json"
4
+ }
@@ -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
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/7f46eba5c4cf2f66b039050445fbb1f7.json"
4
+ }