@etherisc/gif-next 0.0.2-790d44b-698 → 0.0.2-7acbd99-227

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 (222) hide show
  1. package/README.md +40 -25
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +80 -41
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +101 -61
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +43 -40
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +55 -52
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +100 -113
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +50 -47
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +150 -126
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +110 -52
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  35. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  36. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +196 -72
  37. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
  38. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/Instance.sol/Instance.json +281 -155
  40. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  41. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +61 -32
  42. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  43. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +1 -1
  44. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  46. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
  47. package/artifacts/contracts/instance/base/IService.sol/IService.json +43 -40
  48. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
  49. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +64 -48
  50. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  51. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  52. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
  53. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
  54. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +57 -41
  55. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
  56. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
  58. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
  59. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
  60. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
  61. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
  62. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
  63. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
  64. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +1 -1
  65. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +2 -2
  66. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +1 -1
  68. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +29 -9
  74. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
  75. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +28 -8
  76. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
  77. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
  78. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
  79. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +2 -2
  80. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
  81. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
  82. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +138 -11
  83. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  84. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
  85. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
  86. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +138 -11
  87. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  88. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +164 -69
  89. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  90. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +86 -44
  91. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  92. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +43 -59
  93. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  94. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +43 -40
  95. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  96. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +43 -40
  97. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +43 -40
  99. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  100. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +88 -46
  101. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  102. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +110 -68
  103. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  104. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +141 -12
  105. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  106. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
  107. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  108. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +293 -40
  109. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  110. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  111. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -0
  112. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  113. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  114. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  115. package/artifacts/contracts/registry/Registry.sol/Registry.json +390 -292
  116. package/artifacts/contracts/registry/Registry.sol/RegistryCreationCode.dbg.json +4 -0
  117. package/artifacts/contracts/registry/Registry.sol/RegistryCreationCode.json +150 -0
  118. package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +4 -0
  119. package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +344 -0
  120. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +861 -0
  122. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  123. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
  124. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
  125. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  126. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +43 -40
  127. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  128. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  129. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -0
  130. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  131. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +76 -37
  132. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  133. package/artifacts/contracts/shared/{Proxy.sol/ProxyWithProxyAdminGetter.json → UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json} +4 -4
  134. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  135. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +1 -1
  136. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +101 -61
  137. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  138. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
  139. package/artifacts/contracts/test/TestPool.sol/TestPool.json +150 -126
  140. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
  141. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +115 -58
  142. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  143. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +93 -39
  144. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  145. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  146. package/artifacts/contracts/test/TestService.sol/TestService.json +80 -51
  147. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  148. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  150. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  151. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
  152. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  153. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  154. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  156. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  157. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  158. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  159. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  160. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  161. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  165. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  166. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  167. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  168. package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
  169. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  170. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  171. package/contracts/components/BaseComponent.sol +12 -27
  172. package/contracts/components/Distribution.sol +29 -6
  173. package/contracts/components/IBaseComponent.sol +2 -2
  174. package/contracts/components/IPoolComponent.sol +2 -8
  175. package/contracts/components/IProductComponent.sol +2 -1
  176. package/contracts/components/Pool.sol +84 -73
  177. package/contracts/components/Product.sol +85 -13
  178. package/contracts/instance/IInstance.sol +4 -3
  179. package/contracts/instance/Instance.sol +14 -3
  180. package/contracts/instance/base/ComponentServiceBase.sol +13 -6
  181. package/contracts/instance/base/IInstanceBase.sol +3 -2
  182. package/contracts/instance/base/InstanceBase.sol +6 -8
  183. package/contracts/instance/base/ServiceBase.sol +19 -13
  184. package/contracts/instance/module/component/ComponentModule.sol +5 -4
  185. package/contracts/instance/module/component/IComponent.sol +2 -2
  186. package/contracts/instance/module/pool/IPoolModule.sol +4 -3
  187. package/contracts/instance/module/pool/PoolModule.sol +12 -7
  188. package/contracts/instance/module/treasury/ITreasury.sol +7 -5
  189. package/contracts/instance/module/treasury/TokenHandler.sol +2 -2
  190. package/contracts/instance/module/treasury/TreasuryModule.sol +21 -28
  191. package/contracts/instance/service/ComponentOwnerService.sol +181 -66
  192. package/contracts/instance/service/DistributionService.sol +6 -11
  193. package/contracts/instance/service/IComponentOwnerService.sol +0 -2
  194. package/contracts/instance/service/PoolService.sol +19 -19
  195. package/contracts/instance/service/ProductService.sol +20 -20
  196. package/contracts/registry/ChainNft.sol +43 -15
  197. package/contracts/registry/IChainNft.sol +3 -2
  198. package/contracts/registry/IRegistry.sol +44 -28
  199. package/contracts/registry/IRegistryService.sol +29 -0
  200. package/contracts/registry/ITransferInterceptor.sol +6 -0
  201. package/contracts/registry/Registry.sol +368 -328
  202. package/contracts/registry/RegistryInstaller.sol +100 -0
  203. package/contracts/registry/RegistryService.sol +383 -0
  204. package/contracts/shared/ERC165.sol +1 -1
  205. package/contracts/shared/IRegisterable.sol +7 -9
  206. package/contracts/shared/IVersionable.sol +15 -13
  207. package/contracts/shared/ProxyManager.sol +115 -0
  208. package/contracts/shared/Registerable.sol +74 -43
  209. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  210. package/contracts/shared/Versionable.sol +46 -40
  211. package/contracts/test/TestDistribution.sol +3 -2
  212. package/contracts/test/TestPool.sol +4 -2
  213. package/contracts/test/TestProduct.sol +4 -2
  214. package/contracts/test/TestRegisterable.sol +5 -6
  215. package/contracts/test/TestService.sol +5 -11
  216. package/contracts/types/Version.sol +1 -0
  217. package/package.json +1 -1
  218. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +0 -4
  219. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +0 -248
  220. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
  221. package/contracts/experiment/statemachine/README.md +0 -112
  222. package/contracts/shared/Proxy.sol +0 -94
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -53,8 +53,63 @@
53
53
  },
54
54
  {
55
55
  "inputs": [],
56
- "name": "getData",
56
+ "name": "REGISTERABLE_LOCATION_V1",
57
57
  "outputs": [
58
+ {
59
+ "internalType": "bytes32",
60
+ "name": "",
61
+ "type": "bytes32"
62
+ }
63
+ ],
64
+ "stateMutability": "view",
65
+ "type": "function"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "getInitialInfo",
70
+ "outputs": [
71
+ {
72
+ "components": [
73
+ {
74
+ "internalType": "NftId",
75
+ "name": "nftId",
76
+ "type": "uint96"
77
+ },
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "parentNftId",
81
+ "type": "uint96"
82
+ },
83
+ {
84
+ "internalType": "ObjectType",
85
+ "name": "objectType",
86
+ "type": "uint8"
87
+ },
88
+ {
89
+ "internalType": "bool",
90
+ "name": "isInterceptor",
91
+ "type": "bool"
92
+ },
93
+ {
94
+ "internalType": "address",
95
+ "name": "objectAddress",
96
+ "type": "address"
97
+ },
98
+ {
99
+ "internalType": "address",
100
+ "name": "initialOwner",
101
+ "type": "address"
102
+ },
103
+ {
104
+ "internalType": "bytes",
105
+ "name": "data",
106
+ "type": "bytes"
107
+ }
108
+ ],
109
+ "internalType": "struct IRegistry.ObjectInfo",
110
+ "name": "",
111
+ "type": "tuple"
112
+ },
58
113
  {
59
114
  "internalType": "bytes",
60
115
  "name": "data",
@@ -122,26 +177,13 @@
122
177
  "outputs": [
123
178
  {
124
179
  "internalType": "address",
125
- "name": "owner",
180
+ "name": "",
126
181
  "type": "address"
127
182
  }
128
183
  ],
129
184
  "stateMutability": "view",
130
185
  "type": "function"
131
186
  },
132
- {
133
- "inputs": [],
134
- "name": "getParentNftId",
135
- "outputs": [
136
- {
137
- "internalType": "NftId",
138
- "name": "nftId",
139
- "type": "uint96"
140
- }
141
- ],
142
- "stateMutability": "view",
143
- "type": "function"
144
- },
145
187
  {
146
188
  "inputs": [],
147
189
  "name": "getRegistry",
@@ -157,15 +199,15 @@
157
199
  },
158
200
  {
159
201
  "inputs": [],
160
- "name": "getType",
202
+ "name": "getRegistryService",
161
203
  "outputs": [
162
204
  {
163
- "internalType": "ObjectType",
205
+ "internalType": "contract IRegistryService",
164
206
  "name": "",
165
- "type": "uint8"
207
+ "type": "address"
166
208
  }
167
209
  ],
168
- "stateMutability": "pure",
210
+ "stateMutability": "view",
169
211
  "type": "function"
170
212
  },
171
213
  {
@@ -301,19 +343,6 @@
301
343
  "stateMutability": "view",
302
344
  "type": "function"
303
345
  },
304
- {
305
- "inputs": [],
306
- "name": "register",
307
- "outputs": [
308
- {
309
- "internalType": "NftId",
310
- "name": "nftId",
311
- "type": "uint96"
312
- }
313
- ],
314
- "stateMutability": "nonpayable",
315
- "type": "function"
316
- },
317
346
  {
318
347
  "inputs": [
319
348
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -9,7 +9,7 @@
9
9
  "outputs": [
10
10
  {
11
11
  "internalType": "contract IComponentOwnerService",
12
- "name": "service",
12
+ "name": "",
13
13
  "type": "address"
14
14
  }
15
15
  ],
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -30,8 +30,50 @@
30
30
  },
31
31
  {
32
32
  "inputs": [],
33
- "name": "getData",
33
+ "name": "getInitialInfo",
34
34
  "outputs": [
35
+ {
36
+ "components": [
37
+ {
38
+ "internalType": "NftId",
39
+ "name": "nftId",
40
+ "type": "uint96"
41
+ },
42
+ {
43
+ "internalType": "NftId",
44
+ "name": "parentNftId",
45
+ "type": "uint96"
46
+ },
47
+ {
48
+ "internalType": "ObjectType",
49
+ "name": "objectType",
50
+ "type": "uint8"
51
+ },
52
+ {
53
+ "internalType": "bool",
54
+ "name": "isInterceptor",
55
+ "type": "bool"
56
+ },
57
+ {
58
+ "internalType": "address",
59
+ "name": "objectAddress",
60
+ "type": "address"
61
+ },
62
+ {
63
+ "internalType": "address",
64
+ "name": "initialOwner",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "internalType": "bytes",
69
+ "name": "data",
70
+ "type": "bytes"
71
+ }
72
+ ],
73
+ "internalType": "struct IRegistry.ObjectInfo",
74
+ "name": "",
75
+ "type": "tuple"
76
+ },
35
77
  {
36
78
  "internalType": "bytes",
37
79
  "name": "data",
@@ -106,19 +148,6 @@
106
148
  "stateMutability": "view",
107
149
  "type": "function"
108
150
  },
109
- {
110
- "inputs": [],
111
- "name": "getParentNftId",
112
- "outputs": [
113
- {
114
- "internalType": "NftId",
115
- "name": "nftId",
116
- "type": "uint96"
117
- }
118
- ],
119
- "stateMutability": "view",
120
- "type": "function"
121
- },
122
151
  {
123
152
  "inputs": [],
124
153
  "name": "getRegistry",
@@ -132,19 +161,6 @@
132
161
  "stateMutability": "view",
133
162
  "type": "function"
134
163
  },
135
- {
136
- "inputs": [],
137
- "name": "getType",
138
- "outputs": [
139
- {
140
- "internalType": "ObjectType",
141
- "name": "objectType",
142
- "type": "uint8"
143
- }
144
- ],
145
- "stateMutability": "pure",
146
- "type": "function"
147
- },
148
164
  {
149
165
  "inputs": [],
150
166
  "name": "getVersion",
@@ -278,19 +294,6 @@
278
294
  "stateMutability": "view",
279
295
  "type": "function"
280
296
  },
281
- {
282
- "inputs": [],
283
- "name": "register",
284
- "outputs": [
285
- {
286
- "internalType": "NftId",
287
- "name": "nftId",
288
- "type": "uint96"
289
- }
290
- ],
291
- "stateMutability": "nonpayable",
292
- "type": "function"
293
- },
294
297
  {
295
298
  "inputs": [
296
299
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -53,12 +53,12 @@
53
53
  },
54
54
  {
55
55
  "inputs": [],
56
- "name": "getComponentOwnerService",
56
+ "name": "REGISTERABLE_LOCATION_V1",
57
57
  "outputs": [
58
58
  {
59
- "internalType": "contract IComponentOwnerService",
60
- "name": "service",
61
- "type": "address"
59
+ "internalType": "bytes32",
60
+ "name": "",
61
+ "type": "bytes32"
62
62
  }
63
63
  ],
64
64
  "stateMutability": "view",
@@ -66,12 +66,12 @@
66
66
  },
67
67
  {
68
68
  "inputs": [],
69
- "name": "getData",
69
+ "name": "getComponentOwnerService",
70
70
  "outputs": [
71
71
  {
72
- "internalType": "bytes",
73
- "name": "data",
74
- "type": "bytes"
72
+ "internalType": "contract IComponentOwnerService",
73
+ "name": "",
74
+ "type": "address"
75
75
  }
76
76
  ],
77
77
  "stateMutability": "view",
@@ -90,6 +90,61 @@
90
90
  "stateMutability": "view",
91
91
  "type": "function"
92
92
  },
93
+ {
94
+ "inputs": [],
95
+ "name": "getInitialInfo",
96
+ "outputs": [
97
+ {
98
+ "components": [
99
+ {
100
+ "internalType": "NftId",
101
+ "name": "nftId",
102
+ "type": "uint96"
103
+ },
104
+ {
105
+ "internalType": "NftId",
106
+ "name": "parentNftId",
107
+ "type": "uint96"
108
+ },
109
+ {
110
+ "internalType": "ObjectType",
111
+ "name": "objectType",
112
+ "type": "uint8"
113
+ },
114
+ {
115
+ "internalType": "bool",
116
+ "name": "isInterceptor",
117
+ "type": "bool"
118
+ },
119
+ {
120
+ "internalType": "address",
121
+ "name": "objectAddress",
122
+ "type": "address"
123
+ },
124
+ {
125
+ "internalType": "address",
126
+ "name": "initialOwner",
127
+ "type": "address"
128
+ },
129
+ {
130
+ "internalType": "bytes",
131
+ "name": "data",
132
+ "type": "bytes"
133
+ }
134
+ ],
135
+ "internalType": "struct IRegistry.ObjectInfo",
136
+ "name": "",
137
+ "type": "tuple"
138
+ },
139
+ {
140
+ "internalType": "bytes",
141
+ "name": "data",
142
+ "type": "bytes"
143
+ }
144
+ ],
145
+ "stateMutability": "view",
146
+ "type": "function"
147
+ },
93
148
  {
94
149
  "inputs": [],
95
150
  "name": "getInitializedVersion",
@@ -135,26 +190,13 @@
135
190
  "outputs": [
136
191
  {
137
192
  "internalType": "address",
138
- "name": "owner",
193
+ "name": "",
139
194
  "type": "address"
140
195
  }
141
196
  ],
142
197
  "stateMutability": "view",
143
198
  "type": "function"
144
199
  },
145
- {
146
- "inputs": [],
147
- "name": "getParentNftId",
148
- "outputs": [
149
- {
150
- "internalType": "NftId",
151
- "name": "nftId",
152
- "type": "uint96"
153
- }
154
- ],
155
- "stateMutability": "view",
156
- "type": "function"
157
- },
158
200
  {
159
201
  "inputs": [],
160
202
  "name": "getPoolService",
@@ -213,19 +255,6 @@
213
255
  "stateMutability": "view",
214
256
  "type": "function"
215
257
  },
216
- {
217
- "inputs": [],
218
- "name": "getType",
219
- "outputs": [
220
- {
221
- "internalType": "ObjectType",
222
- "name": "objectType",
223
- "type": "uint8"
224
- }
225
- ],
226
- "stateMutability": "pure",
227
- "type": "function"
228
- },
229
258
  {
230
259
  "inputs": [],
231
260
  "name": "getVersion",
@@ -359,19 +388,6 @@
359
388
  "stateMutability": "view",
360
389
  "type": "function"
361
390
  },
362
- {
363
- "inputs": [],
364
- "name": "register",
365
- "outputs": [
366
- {
367
- "internalType": "NftId",
368
- "name": "nftId",
369
- "type": "uint96"
370
- }
371
- ],
372
- "stateMutability": "nonpayable",
373
- "type": "function"
374
- },
375
391
  {
376
392
  "inputs": [
377
393
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -53,8 +53,63 @@
53
53
  },
54
54
  {
55
55
  "inputs": [],
56
- "name": "getData",
56
+ "name": "REGISTERABLE_LOCATION_V1",
57
57
  "outputs": [
58
+ {
59
+ "internalType": "bytes32",
60
+ "name": "",
61
+ "type": "bytes32"
62
+ }
63
+ ],
64
+ "stateMutability": "view",
65
+ "type": "function"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "getInitialInfo",
70
+ "outputs": [
71
+ {
72
+ "components": [
73
+ {
74
+ "internalType": "NftId",
75
+ "name": "nftId",
76
+ "type": "uint96"
77
+ },
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "parentNftId",
81
+ "type": "uint96"
82
+ },
83
+ {
84
+ "internalType": "ObjectType",
85
+ "name": "objectType",
86
+ "type": "uint8"
87
+ },
88
+ {
89
+ "internalType": "bool",
90
+ "name": "isInterceptor",
91
+ "type": "bool"
92
+ },
93
+ {
94
+ "internalType": "address",
95
+ "name": "objectAddress",
96
+ "type": "address"
97
+ },
98
+ {
99
+ "internalType": "address",
100
+ "name": "initialOwner",
101
+ "type": "address"
102
+ },
103
+ {
104
+ "internalType": "bytes",
105
+ "name": "data",
106
+ "type": "bytes"
107
+ }
108
+ ],
109
+ "internalType": "struct IRegistry.ObjectInfo",
110
+ "name": "",
111
+ "type": "tuple"
112
+ },
58
113
  {
59
114
  "internalType": "bytes",
60
115
  "name": "data",
@@ -122,26 +177,13 @@
122
177
  "outputs": [
123
178
  {
124
179
  "internalType": "address",
125
- "name": "owner",
180
+ "name": "",
126
181
  "type": "address"
127
182
  }
128
183
  ],
129
184
  "stateMutability": "view",
130
185
  "type": "function"
131
186
  },
132
- {
133
- "inputs": [],
134
- "name": "getParentNftId",
135
- "outputs": [
136
- {
137
- "internalType": "NftId",
138
- "name": "nftId",
139
- "type": "uint96"
140
- }
141
- ],
142
- "stateMutability": "view",
143
- "type": "function"
144
- },
145
187
  {
146
188
  "inputs": [],
147
189
  "name": "getRegistry",
@@ -155,19 +197,6 @@
155
197
  "stateMutability": "view",
156
198
  "type": "function"
157
199
  },
158
- {
159
- "inputs": [],
160
- "name": "getType",
161
- "outputs": [
162
- {
163
- "internalType": "ObjectType",
164
- "name": "",
165
- "type": "uint8"
166
- }
167
- ],
168
- "stateMutability": "pure",
169
- "type": "function"
170
- },
171
200
  {
172
201
  "inputs": [],
173
202
  "name": "getVersion",
@@ -301,19 +330,6 @@
301
330
  "stateMutability": "view",
302
331
  "type": "function"
303
332
  },
304
- {
305
- "inputs": [],
306
- "name": "register",
307
- "outputs": [
308
- {
309
- "internalType": "NftId",
310
- "name": "nftId",
311
- "type": "uint96"
312
- }
313
- ],
314
- "stateMutability": "nonpayable",
315
- "type": "function"
316
- },
317
333
  {
318
334
  "inputs": [
319
335
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
3
+ "buildInfo": "../../../../../build-info/36ad046d230cde4231cdb783ccea0c2c.json"
4
4
  }