@etherisc/gif-next 0.0.2-70d92f6-918 → 0.0.2-7143611-252

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 (375) hide show
  1. package/README.md +268 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +162 -147
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +610 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +125 -113
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/{instance/policy/IPolicy.sol/IPolicyModule.json → components/IPoolComponent.sol/IPoolComponent.json} +124 -129
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +523 -77
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +505 -97
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  36. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  40. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  42. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  43. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  44. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  45. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  46. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  47. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1119 -0
  48. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  49. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  50. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  51. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +244 -1372
  52. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  53. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +421 -0
  54. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  55. package/artifacts/contracts/instance/Instance.sol/Instance.json +2708 -974
  56. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  57. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  58. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  59. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1257 -0
  60. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  61. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +703 -0
  62. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +424 -0
  64. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +481 -0
  66. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  67. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  68. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  69. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  70. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  71. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  72. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  74. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  76. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  78. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  79. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  80. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  81. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
  82. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  83. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  84. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  85. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  86. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  88. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
  90. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  91. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  92. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  93. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  94. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  95. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  96. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  98. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  100. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  101. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  102. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  103. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +576 -24
  104. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  105. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +872 -0
  106. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  107. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  108. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  109. package/artifacts/contracts/registry/Registry.sol/Registry.json +707 -50
  110. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  111. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1261 -0
  112. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  113. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +508 -0
  114. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  115. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  116. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  117. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  118. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  119. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  120. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  121. package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
  122. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  123. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  124. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  125. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  126. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  127. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  128. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  129. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  130. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  131. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  132. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  133. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  134. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  135. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  136. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  137. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  138. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  139. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  140. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  141. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  142. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  143. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  144. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  145. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  146. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  147. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  148. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  149. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  150. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  151. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  152. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  153. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  154. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  155. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  156. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  157. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  158. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  159. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  160. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  161. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  163. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  164. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  165. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  166. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  167. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  168. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  169. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  170. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  171. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  172. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  173. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  174. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  175. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  176. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  177. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  178. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  179. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  180. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  181. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  182. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  183. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  184. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  185. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
  186. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  187. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  188. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  189. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  190. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  192. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  194. package/contracts/components/BaseComponent.sol +86 -0
  195. package/contracts/components/Distribution.sol +166 -0
  196. package/contracts/components/IBaseComponent.sol +24 -0
  197. package/contracts/components/IDistributionComponent.sol +43 -0
  198. package/contracts/components/IPoolComponent.sol +62 -0
  199. package/contracts/components/IProductComponent.sol +35 -0
  200. package/contracts/components/Pool.sol +232 -25
  201. package/contracts/components/Product.sol +254 -46
  202. package/contracts/experiment/cloning/Cloner.sol +47 -0
  203. package/contracts/instance/AccessManagedSimple.sol +114 -0
  204. package/contracts/instance/AccessManagerSimple.sol +682 -0
  205. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  206. package/contracts/instance/IInstance.sol +24 -21
  207. package/contracts/instance/IInstanceService.sol +17 -0
  208. package/contracts/instance/Instance.sol +416 -52
  209. package/contracts/instance/InstanceAccessManager.sol +288 -0
  210. package/contracts/instance/InstanceReader.sol +280 -0
  211. package/contracts/instance/InstanceService.sol +102 -0
  212. package/contracts/instance/InstanceServiceManager.sol +56 -0
  213. package/contracts/instance/base/ComponentServiceBase.sol +49 -0
  214. package/contracts/instance/base/IInstanceBase.sol +23 -0
  215. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  216. package/contracts/instance/base/ILifecycle.sol +30 -0
  217. package/contracts/instance/base/KeyValueStore.sol +172 -0
  218. package/contracts/instance/base/Lifecycle.sol +100 -0
  219. package/contracts/instance/module/IAccess.sol +38 -0
  220. package/contracts/instance/module/IBundle.sol +19 -0
  221. package/contracts/instance/module/IDistribution.sol +39 -0
  222. package/contracts/instance/module/IPolicy.sol +45 -0
  223. package/contracts/instance/module/IRisk.sol +11 -0
  224. package/contracts/instance/module/ISetup.sol +43 -0
  225. package/contracts/instance/module/ITreasury.sol +23 -0
  226. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  227. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  228. package/contracts/instance/service/IDistributionService.sol +12 -0
  229. package/contracts/instance/service/IPoolService.sol +37 -0
  230. package/contracts/instance/service/IProductService.sol +107 -0
  231. package/contracts/registry/ChainNft.sol +129 -62
  232. package/contracts/registry/IRegistry.sol +69 -44
  233. package/contracts/registry/IRegistryService.sol +35 -0
  234. package/contracts/registry/ITransferInterceptor.sol +6 -0
  235. package/contracts/registry/Registry.sol +417 -125
  236. package/contracts/registry/RegistryService.sol +439 -0
  237. package/contracts/registry/RegistryServiceManager.sol +64 -0
  238. package/contracts/shared/ContractDeployerLib.sol +72 -0
  239. package/contracts/shared/ERC165.sol +21 -0
  240. package/contracts/shared/INftOwnable.sol +22 -0
  241. package/contracts/shared/IRegisterable.sol +17 -0
  242. package/contracts/shared/IService.sol +15 -0
  243. package/contracts/shared/IVersionable.sol +96 -0
  244. package/contracts/shared/NftOwnable.sol +136 -0
  245. package/contracts/shared/ProxyManager.sol +94 -0
  246. package/contracts/shared/Registerable.sol +89 -0
  247. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  248. package/contracts/shared/Service.sol +54 -0
  249. package/contracts/shared/TokenHandler.sol +27 -0
  250. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  251. package/contracts/shared/Versionable.sol +147 -0
  252. package/contracts/test/TestFee.sol +25 -0
  253. package/contracts/test/TestRegisterable.sol +18 -0
  254. package/contracts/test/TestRoleId.sol +14 -0
  255. package/contracts/test/TestService.sol +24 -0
  256. package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
  257. package/contracts/test/TestVersion.sol +44 -0
  258. package/contracts/test/TestVersionable.sol +17 -0
  259. package/contracts/{mock → test}/Usdc.sol +1 -1
  260. package/contracts/types/AddressSet.sol +58 -0
  261. package/contracts/types/DistributorType.sol +55 -0
  262. package/contracts/types/Fee.sol +44 -20
  263. package/contracts/types/Key32.sol +50 -0
  264. package/contracts/types/NftId.sol +22 -1
  265. package/contracts/types/NftIdSet.sol +60 -0
  266. package/contracts/types/NumberId.sol +52 -0
  267. package/contracts/types/ObjectType.sol +60 -15
  268. package/contracts/types/Referral.sol +85 -0
  269. package/contracts/types/RiskId.sol +43 -0
  270. package/contracts/types/RoleId.sol +82 -0
  271. package/contracts/types/StateId.sol +14 -4
  272. package/contracts/types/Timestamp.sol +29 -4
  273. package/contracts/types/UFixed.sol +138 -23
  274. package/contracts/types/Version.sol +107 -0
  275. package/package.json +11 -5
  276. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  277. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  278. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  279. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  280. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  281. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  282. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  283. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  284. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  285. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  286. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  287. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  288. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  289. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  290. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  291. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  292. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  293. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  294. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  295. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  296. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  297. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  298. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  299. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  300. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  301. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  302. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  303. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  304. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  305. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  306. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  307. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  308. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  309. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  310. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  311. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
  312. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  313. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  314. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
  315. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  316. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
  317. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  318. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  319. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  320. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
  321. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  322. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  323. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  324. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  325. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  326. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  327. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  328. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  329. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  330. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  331. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  332. package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
  333. package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
  334. package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
  335. package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
  336. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
  337. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
  338. package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
  339. package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
  340. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  341. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  342. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  343. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  344. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  345. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  346. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  347. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  348. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  349. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  350. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  351. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  352. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  353. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  354. package/contracts/components/Component.sol +0 -77
  355. package/contracts/components/IPool.sol +0 -15
  356. package/contracts/components/IProduct.sol +0 -16
  357. package/contracts/experiment/statemachine/README.md +0 -112
  358. package/contracts/instance/access/Access.sol +0 -165
  359. package/contracts/instance/access/IAccess.sol +0 -63
  360. package/contracts/instance/component/ComponentModule.sol +0 -274
  361. package/contracts/instance/component/IComponent.sol +0 -74
  362. package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
  363. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  364. package/contracts/instance/policy/IPolicy.sol +0 -50
  365. package/contracts/instance/policy/PolicyModule.sol +0 -114
  366. package/contracts/instance/pool/IPoolModule.sol +0 -23
  367. package/contracts/instance/pool/PoolModule.sol +0 -81
  368. package/contracts/instance/product/IProductService.sol +0 -36
  369. package/contracts/instance/product/ProductService.sol +0 -136
  370. package/contracts/instance/treasury/ITreasury.sol +0 -91
  371. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  372. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  373. package/contracts/mock/TestPool.sol +0 -16
  374. package/contracts/mock/TestProduct.sol +0 -39
  375. package/contracts/registry/IChainNft.sol +0 -21
@@ -3,16 +3,181 @@
3
3
  "contractName": "IRegistry",
4
4
  "sourceName": "contracts/registry/IRegistry.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "objectAddress",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "ContractAlreadyRegistered",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "VersionPart",
21
+ "name": "majorVersion",
22
+ "type": "uint8"
23
+ }
24
+ ],
25
+ "name": "InvalidServiceVersion",
26
+ "type": "error"
27
+ },
28
+ {
29
+ "inputs": [
30
+ {
31
+ "internalType": "ObjectType",
32
+ "name": "objectType",
33
+ "type": "uint8"
34
+ },
35
+ {
36
+ "internalType": "ObjectType",
37
+ "name": "parentType",
38
+ "type": "uint8"
39
+ }
40
+ ],
41
+ "name": "InvalidTypesCombination",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "VersionPart",
48
+ "name": "newMajorVersionMax",
49
+ "type": "uint8"
50
+ },
51
+ {
52
+ "internalType": "VersionPart",
53
+ "name": "existingMaxMajorVersion",
54
+ "type": "uint8"
55
+ }
56
+ ],
57
+ "name": "MajorVersionMaxIncreaseInvalid",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "account",
65
+ "type": "address"
66
+ }
67
+ ],
68
+ "name": "NotOwner",
69
+ "type": "error"
70
+ },
6
71
  {
7
72
  "inputs": [
8
73
  {
9
74
  "internalType": "NftId",
10
- "name": "nftId",
75
+ "name": "registrarNftId",
11
76
  "type": "uint96"
12
77
  }
13
78
  ],
14
- "name": "getInfo",
15
- "outputs": [
79
+ "name": "NotRegisteredContract",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "NotRegistryService",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "NftId",
91
+ "name": "registrarNftId",
92
+ "type": "uint96"
93
+ }
94
+ ],
95
+ "name": "NotService",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "address",
102
+ "name": "token",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "name": "NotToken",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "string",
113
+ "name": "name",
114
+ "type": "string"
115
+ },
116
+ {
117
+ "internalType": "VersionPart",
118
+ "name": "majorVersion",
119
+ "type": "uint8"
120
+ }
121
+ ],
122
+ "name": "ServiceNameAlreadyRegistered",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "VersionPart",
129
+ "name": "majorVersion",
130
+ "type": "uint8"
131
+ }
132
+ ],
133
+ "name": "TokenMajorVersionInvalid",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [
138
+ {
139
+ "internalType": "address",
140
+ "name": "token",
141
+ "type": "address"
142
+ }
143
+ ],
144
+ "name": "TokenNotRegistered",
145
+ "type": "error"
146
+ },
147
+ {
148
+ "inputs": [],
149
+ "name": "ZeroParentAddress",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "anonymous": false,
154
+ "inputs": [
155
+ {
156
+ "indexed": false,
157
+ "internalType": "VersionPart",
158
+ "name": "majorVersion",
159
+ "type": "uint8"
160
+ }
161
+ ],
162
+ "name": "LogInitialMajorVersionSet",
163
+ "type": "event"
164
+ },
165
+ {
166
+ "anonymous": false,
167
+ "inputs": [
168
+ {
169
+ "indexed": false,
170
+ "internalType": "VersionPart",
171
+ "name": "majorVersionMax",
172
+ "type": "uint8"
173
+ }
174
+ ],
175
+ "name": "LogMajorVersionMaxSet",
176
+ "type": "event"
177
+ },
178
+ {
179
+ "anonymous": false,
180
+ "inputs": [
16
181
  {
17
182
  "components": [
18
183
  {
@@ -30,6 +195,11 @@
30
195
  "name": "objectType",
31
196
  "type": "uint8"
32
197
  },
198
+ {
199
+ "internalType": "bool",
200
+ "name": "isInterceptor",
201
+ "type": "bool"
202
+ },
33
203
  {
34
204
  "internalType": "address",
35
205
  "name": "objectAddress",
@@ -39,24 +209,113 @@
39
209
  "internalType": "address",
40
210
  "name": "initialOwner",
41
211
  "type": "address"
212
+ },
213
+ {
214
+ "internalType": "bytes",
215
+ "name": "data",
216
+ "type": "bytes"
42
217
  }
43
218
  ],
44
- "internalType": "struct IRegistry.RegistryInfo",
219
+ "indexed": false,
220
+ "internalType": "struct IRegistry.ObjectInfo",
45
221
  "name": "info",
46
222
  "type": "tuple"
47
223
  }
48
224
  ],
225
+ "name": "LogRegistration",
226
+ "type": "event"
227
+ },
228
+ {
229
+ "anonymous": false,
230
+ "inputs": [
231
+ {
232
+ "indexed": false,
233
+ "internalType": "string",
234
+ "name": "serviceName",
235
+ "type": "string"
236
+ },
237
+ {
238
+ "indexed": false,
239
+ "internalType": "VersionPart",
240
+ "name": "majorVersion",
241
+ "type": "uint8"
242
+ }
243
+ ],
244
+ "name": "LogServiceNameRegistration",
245
+ "type": "event"
246
+ },
247
+ {
248
+ "anonymous": false,
249
+ "inputs": [
250
+ {
251
+ "indexed": false,
252
+ "internalType": "address",
253
+ "name": "token",
254
+ "type": "address"
255
+ },
256
+ {
257
+ "indexed": false,
258
+ "internalType": "VersionPart",
259
+ "name": "majorVersion",
260
+ "type": "uint8"
261
+ },
262
+ {
263
+ "indexed": false,
264
+ "internalType": "bool",
265
+ "name": "active",
266
+ "type": "bool"
267
+ }
268
+ ],
269
+ "name": "LogTokenStateSet",
270
+ "type": "event"
271
+ },
272
+ {
273
+ "inputs": [],
274
+ "name": "getChainNft",
275
+ "outputs": [
276
+ {
277
+ "internalType": "contract ChainNft",
278
+ "name": "",
279
+ "type": "address"
280
+ }
281
+ ],
49
282
  "stateMutability": "view",
50
283
  "type": "function"
51
284
  },
52
285
  {
53
286
  "inputs": [],
54
- "name": "getNftAddress",
287
+ "name": "getMajorVersionMax",
55
288
  "outputs": [
56
289
  {
57
- "internalType": "address",
58
- "name": "nft",
59
- "type": "address"
290
+ "internalType": "VersionPart",
291
+ "name": "",
292
+ "type": "uint8"
293
+ }
294
+ ],
295
+ "stateMutability": "view",
296
+ "type": "function"
297
+ },
298
+ {
299
+ "inputs": [],
300
+ "name": "getMajorVersionMin",
301
+ "outputs": [
302
+ {
303
+ "internalType": "VersionPart",
304
+ "name": "",
305
+ "type": "uint8"
306
+ }
307
+ ],
308
+ "stateMutability": "view",
309
+ "type": "function"
310
+ },
311
+ {
312
+ "inputs": [],
313
+ "name": "getNftId",
314
+ "outputs": [
315
+ {
316
+ "internalType": "NftId",
317
+ "name": "nftId",
318
+ "type": "uint96"
60
319
  }
61
320
  ],
62
321
  "stateMutability": "view",
@@ -94,6 +353,62 @@
94
353
  "stateMutability": "view",
95
354
  "type": "function"
96
355
  },
356
+ {
357
+ "inputs": [
358
+ {
359
+ "internalType": "address",
360
+ "name": "object",
361
+ "type": "address"
362
+ }
363
+ ],
364
+ "name": "getObjectInfo",
365
+ "outputs": [
366
+ {
367
+ "components": [
368
+ {
369
+ "internalType": "NftId",
370
+ "name": "nftId",
371
+ "type": "uint96"
372
+ },
373
+ {
374
+ "internalType": "NftId",
375
+ "name": "parentNftId",
376
+ "type": "uint96"
377
+ },
378
+ {
379
+ "internalType": "ObjectType",
380
+ "name": "objectType",
381
+ "type": "uint8"
382
+ },
383
+ {
384
+ "internalType": "bool",
385
+ "name": "isInterceptor",
386
+ "type": "bool"
387
+ },
388
+ {
389
+ "internalType": "address",
390
+ "name": "objectAddress",
391
+ "type": "address"
392
+ },
393
+ {
394
+ "internalType": "address",
395
+ "name": "initialOwner",
396
+ "type": "address"
397
+ },
398
+ {
399
+ "internalType": "bytes",
400
+ "name": "data",
401
+ "type": "bytes"
402
+ }
403
+ ],
404
+ "internalType": "struct IRegistry.ObjectInfo",
405
+ "name": "info",
406
+ "type": "tuple"
407
+ }
408
+ ],
409
+ "stateMutability": "view",
410
+ "type": "function"
411
+ },
97
412
  {
98
413
  "inputs": [
99
414
  {
@@ -102,11 +417,61 @@
102
417
  "type": "uint96"
103
418
  }
104
419
  ],
420
+ "name": "getObjectInfo",
421
+ "outputs": [
422
+ {
423
+ "components": [
424
+ {
425
+ "internalType": "NftId",
426
+ "name": "nftId",
427
+ "type": "uint96"
428
+ },
429
+ {
430
+ "internalType": "NftId",
431
+ "name": "parentNftId",
432
+ "type": "uint96"
433
+ },
434
+ {
435
+ "internalType": "ObjectType",
436
+ "name": "objectType",
437
+ "type": "uint8"
438
+ },
439
+ {
440
+ "internalType": "bool",
441
+ "name": "isInterceptor",
442
+ "type": "bool"
443
+ },
444
+ {
445
+ "internalType": "address",
446
+ "name": "objectAddress",
447
+ "type": "address"
448
+ },
449
+ {
450
+ "internalType": "address",
451
+ "name": "initialOwner",
452
+ "type": "address"
453
+ },
454
+ {
455
+ "internalType": "bytes",
456
+ "name": "data",
457
+ "type": "bytes"
458
+ }
459
+ ],
460
+ "internalType": "struct IRegistry.ObjectInfo",
461
+ "name": "info",
462
+ "type": "tuple"
463
+ }
464
+ ],
465
+ "stateMutability": "view",
466
+ "type": "function"
467
+ },
468
+ {
469
+ "inputs": [],
105
470
  "name": "getOwner",
106
471
  "outputs": [
107
472
  {
108
473
  "internalType": "address",
109
- "name": "ownerAddress",
474
+ "name": "",
110
475
  "type": "address"
111
476
  }
112
477
  ],
@@ -115,9 +480,52 @@
115
480
  },
116
481
  {
117
482
  "inputs": [
483
+ {
484
+ "internalType": "string",
485
+ "name": "serviceName",
486
+ "type": "string"
487
+ },
488
+ {
489
+ "internalType": "VersionPart",
490
+ "name": "majorVersion",
491
+ "type": "uint8"
492
+ }
493
+ ],
494
+ "name": "getServiceAddress",
495
+ "outputs": [
118
496
  {
119
497
  "internalType": "address",
120
- "name": "objectAddress",
498
+ "name": "serviceAddress",
499
+ "type": "address"
500
+ }
501
+ ],
502
+ "stateMutability": "view",
503
+ "type": "function"
504
+ },
505
+ {
506
+ "inputs": [
507
+ {
508
+ "internalType": "NftId",
509
+ "name": "nftId",
510
+ "type": "uint96"
511
+ }
512
+ ],
513
+ "name": "getServiceName",
514
+ "outputs": [
515
+ {
516
+ "internalType": "string",
517
+ "name": "name",
518
+ "type": "string"
519
+ }
520
+ ],
521
+ "stateMutability": "view",
522
+ "type": "function"
523
+ },
524
+ {
525
+ "inputs": [
526
+ {
527
+ "internalType": "address",
528
+ "name": "contractAddress",
121
529
  "type": "address"
122
530
  }
123
531
  ],
@@ -132,52 +540,196 @@
132
540
  "stateMutability": "view",
133
541
  "type": "function"
134
542
  },
543
+ {
544
+ "inputs": [
545
+ {
546
+ "internalType": "NftId",
547
+ "name": "nftId",
548
+ "type": "uint96"
549
+ }
550
+ ],
551
+ "name": "isRegistered",
552
+ "outputs": [
553
+ {
554
+ "internalType": "bool",
555
+ "name": "",
556
+ "type": "bool"
557
+ }
558
+ ],
559
+ "stateMutability": "view",
560
+ "type": "function"
561
+ },
135
562
  {
136
563
  "inputs": [
137
564
  {
138
565
  "internalType": "address",
139
- "name": "objectAddress",
566
+ "name": "token",
140
567
  "type": "address"
568
+ },
569
+ {
570
+ "internalType": "VersionPart",
571
+ "name": "majorVersion",
572
+ "type": "uint8"
141
573
  }
142
574
  ],
143
- "name": "register",
575
+ "name": "isTokenActive",
576
+ "outputs": [
577
+ {
578
+ "internalType": "bool",
579
+ "name": "",
580
+ "type": "bool"
581
+ }
582
+ ],
583
+ "stateMutability": "view",
584
+ "type": "function"
585
+ },
586
+ {
587
+ "inputs": [
588
+ {
589
+ "internalType": "address",
590
+ "name": "contractAddress",
591
+ "type": "address"
592
+ }
593
+ ],
594
+ "name": "ownerOf",
144
595
  "outputs": [
596
+ {
597
+ "internalType": "address",
598
+ "name": "",
599
+ "type": "address"
600
+ }
601
+ ],
602
+ "stateMutability": "view",
603
+ "type": "function"
604
+ },
605
+ {
606
+ "inputs": [
145
607
  {
146
608
  "internalType": "NftId",
147
609
  "name": "nftId",
148
610
  "type": "uint96"
149
611
  }
150
612
  ],
151
- "stateMutability": "nonpayable",
613
+ "name": "ownerOf",
614
+ "outputs": [
615
+ {
616
+ "internalType": "address",
617
+ "name": "",
618
+ "type": "address"
619
+ }
620
+ ],
621
+ "stateMutability": "view",
152
622
  "type": "function"
153
623
  },
154
624
  {
155
625
  "inputs": [
626
+ {
627
+ "components": [
628
+ {
629
+ "internalType": "NftId",
630
+ "name": "nftId",
631
+ "type": "uint96"
632
+ },
633
+ {
634
+ "internalType": "NftId",
635
+ "name": "parentNftId",
636
+ "type": "uint96"
637
+ },
638
+ {
639
+ "internalType": "ObjectType",
640
+ "name": "objectType",
641
+ "type": "uint8"
642
+ },
643
+ {
644
+ "internalType": "bool",
645
+ "name": "isInterceptor",
646
+ "type": "bool"
647
+ },
648
+ {
649
+ "internalType": "address",
650
+ "name": "objectAddress",
651
+ "type": "address"
652
+ },
653
+ {
654
+ "internalType": "address",
655
+ "name": "initialOwner",
656
+ "type": "address"
657
+ },
658
+ {
659
+ "internalType": "bytes",
660
+ "name": "data",
661
+ "type": "bytes"
662
+ }
663
+ ],
664
+ "internalType": "struct IRegistry.ObjectInfo",
665
+ "name": "info",
666
+ "type": "tuple"
667
+ }
668
+ ],
669
+ "name": "register",
670
+ "outputs": [
156
671
  {
157
672
  "internalType": "NftId",
158
- "name": "parentNftid",
673
+ "name": "nftId",
159
674
  "type": "uint96"
160
- },
675
+ }
676
+ ],
677
+ "stateMutability": "nonpayable",
678
+ "type": "function"
679
+ },
680
+ {
681
+ "inputs": [
161
682
  {
162
- "internalType": "ObjectType",
163
- "name": "objectType",
683
+ "internalType": "VersionPart",
684
+ "name": "newMajorVersionMax",
164
685
  "type": "uint8"
165
- },
686
+ }
687
+ ],
688
+ "name": "setMajorVersionMax",
689
+ "outputs": [],
690
+ "stateMutability": "nonpayable",
691
+ "type": "function"
692
+ },
693
+ {
694
+ "inputs": [
166
695
  {
167
696
  "internalType": "address",
168
- "name": "initialOwner",
697
+ "name": "token",
169
698
  "type": "address"
699
+ },
700
+ {
701
+ "internalType": "VersionPart",
702
+ "name": "majorVersion",
703
+ "type": "uint8"
704
+ },
705
+ {
706
+ "internalType": "bool",
707
+ "name": "active",
708
+ "type": "bool"
170
709
  }
171
710
  ],
172
- "name": "registerObjectForInstance",
711
+ "name": "setTokenActive",
712
+ "outputs": [],
713
+ "stateMutability": "nonpayable",
714
+ "type": "function"
715
+ },
716
+ {
717
+ "inputs": [
718
+ {
719
+ "internalType": "bytes4",
720
+ "name": "interfaceId",
721
+ "type": "bytes4"
722
+ }
723
+ ],
724
+ "name": "supportsInterface",
173
725
  "outputs": [
174
726
  {
175
- "internalType": "NftId",
176
- "name": "nftId",
177
- "type": "uint96"
727
+ "internalType": "bool",
728
+ "name": "",
729
+ "type": "bool"
178
730
  }
179
731
  ],
180
- "stateMutability": "nonpayable",
732
+ "stateMutability": "view",
181
733
  "type": "function"
182
734
  }
183
735
  ],
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/d214381c80e84980d7f47d9d65789500.json"
4
+ }