@etherisc/gif-next 0.0.2-b9b3e89 → 0.0.2-c336201-668

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. package/README.md +123 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → BaseComponent.sol/BaseComponent.json} +55 -60
  4. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  5. package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +54 -59
  6. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +356 -0
  8. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +279 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +225 -33
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  13. package/artifacts/contracts/components/Product.sol/Product.json +154 -62
  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/{instance/product/IProductService.sol/IProductService.json → experiment/inheritance/IA.sol/IA.json} +64 -50
  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/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  36. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  38. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  40. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  42. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  44. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  46. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  48. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1249 -275
  50. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  52. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  53. package/artifacts/contracts/instance/Instance.sol/Instance.json +1560 -373
  54. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +300 -0
  56. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{product/ProductService.sol/ProductModule.json → base/IInstanceBase.sol/IInstanceBase.json} +18 -30
  58. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +511 -0
  60. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  62. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/IService.sol/IService.json +300 -0
  64. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  65. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/InstanceBase.sol/InstanceBase.json} +140 -141
  66. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  67. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +692 -0
  68. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  69. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  70. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  71. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  72. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +300 -0
  74. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  76. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  78. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  80. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +296 -0
  82. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  84. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +296 -0
  86. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +10 -0
  88. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +10 -0
  90. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +10 -0
  92. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +188 -0
  94. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  96. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponentModule.json +54 -111
  98. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  100. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  101. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +146 -116
  102. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +146 -116
  104. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  105. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  106. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  107. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +63 -63
  108. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +149 -0
  110. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  112. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  113. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +10 -0
  114. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  115. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +10 -0
  116. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  117. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
  118. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  119. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +533 -0
  120. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  121. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  122. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  123. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +533 -0
  124. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +523 -0
  126. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
  128. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +376 -0
  130. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  131. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +477 -0
  132. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  133. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +471 -0
  134. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  135. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +673 -0
  136. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  137. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +597 -0
  138. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +4 -0
  139. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +452 -0
  140. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  141. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +115 -81
  142. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  143. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  144. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  145. package/artifacts/contracts/registry/Registry.sol/Registry.json +265 -82
  146. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  147. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  148. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  149. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  150. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  151. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +22 -67
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  153. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
  154. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  155. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +23 -68
  156. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  157. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/Versionable.sol/Versionable.json} +72 -70
  158. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  159. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  160. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  161. package/artifacts/contracts/test/TestPool.sol/TestPool.json +387 -0
  162. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +393 -0
  164. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  166. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  168. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestService.sol/TestService.json +379 -0
  170. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  172. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  174. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +206 -0
  176. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  177. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  178. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  179. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  180. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  181. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  182. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  184. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Fee.sol/FeeLib.json +218 -0
  186. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  187. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  188. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  189. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +153 -0
  190. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  191. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  192. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  194. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  196. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  198. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +236 -0
  200. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +479 -0
  202. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/Version.sol/VersionLib.json +139 -0
  204. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  206. package/contracts/components/BaseComponent.sol +88 -0
  207. package/contracts/components/IBaseComponent.sol +19 -0
  208. package/contracts/components/IPoolComponent.sol +57 -0
  209. package/contracts/components/IProductComponent.sol +19 -0
  210. package/contracts/components/Pool.sol +161 -16
  211. package/contracts/components/Product.sol +79 -27
  212. package/contracts/experiment/errors/Require.sol +38 -0
  213. package/contracts/experiment/errors/Revert.sol +44 -0
  214. package/contracts/experiment/inheritance/A.sol +53 -0
  215. package/contracts/experiment/inheritance/B.sol +28 -0
  216. package/contracts/experiment/inheritance/C.sol +34 -0
  217. package/contracts/experiment/inheritance/IA.sol +13 -0
  218. package/contracts/experiment/inheritance/IB.sol +10 -0
  219. package/contracts/experiment/inheritance/IC.sol +12 -0
  220. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  221. package/contracts/experiment/statemachine/ISM.sol +25 -0
  222. package/contracts/experiment/statemachine/README.md +112 -0
  223. package/contracts/experiment/statemachine/SM.sol +57 -0
  224. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  225. package/contracts/experiment/types/TypeA.sol +47 -0
  226. package/contracts/experiment/types/TypeB.sol +29 -0
  227. package/contracts/instance/IInstance.sol +42 -10
  228. package/contracts/instance/IInstanceLinked.sol +8 -0
  229. package/contracts/instance/Instance.sol +47 -42
  230. package/contracts/instance/base/ComponentServiceBase.sol +42 -0
  231. package/contracts/instance/base/IInstanceBase.sol +14 -0
  232. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  233. package/contracts/instance/base/ILifecycle.sol +30 -0
  234. package/contracts/instance/base/IService.sol +15 -0
  235. package/contracts/instance/base/InstanceBase.sol +80 -0
  236. package/contracts/instance/base/KeyValueStore.sol +156 -0
  237. package/contracts/instance/base/Lifecycle.sol +95 -0
  238. package/contracts/instance/base/ModuleBase.sol +52 -0
  239. package/contracts/instance/base/ServiceBase.sol +37 -0
  240. package/contracts/instance/module/access/Access.sol +149 -0
  241. package/contracts/instance/module/access/IAccess.sol +53 -0
  242. package/contracts/instance/module/bundle/BundleModule.sol +136 -0
  243. package/contracts/instance/module/bundle/IBundle.sol +58 -0
  244. package/contracts/instance/module/compensation/CompensationModule.sol +8 -0
  245. package/contracts/instance/module/compensation/ICompensation.sol +10 -0
  246. package/contracts/instance/module/component/ComponentModule.sol +95 -0
  247. package/contracts/instance/module/component/IComponent.sol +53 -0
  248. package/contracts/instance/module/policy/IPolicy.sol +60 -0
  249. package/contracts/instance/module/policy/PolicyModule.sol +76 -0
  250. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  251. package/contracts/instance/module/pool/PoolModule.sol +87 -0
  252. package/contracts/instance/module/risk/IRisk.sol +10 -0
  253. package/contracts/instance/module/risk/RiskModule.sol +8 -0
  254. package/contracts/instance/module/treasury/ITreasury.sol +103 -0
  255. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  256. package/contracts/instance/module/treasury/TreasuryModule.sol +152 -0
  257. package/contracts/instance/service/ComponentOwnerService.sol +170 -0
  258. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  259. package/contracts/instance/service/IPoolService.sol +30 -0
  260. package/contracts/instance/service/IProductService.sol +58 -0
  261. package/contracts/instance/service/PoolService.sol +123 -0
  262. package/contracts/instance/service/ProductService.sol +354 -0
  263. package/contracts/registry/ChainNft.sol +159 -0
  264. package/contracts/registry/IChainNft.sol +21 -0
  265. package/contracts/registry/IRegistry.sol +41 -50
  266. package/contracts/registry/IRegistryLinked.sol +8 -0
  267. package/contracts/registry/Registry.sol +307 -123
  268. package/contracts/shared/ERC165.sol +21 -0
  269. package/contracts/shared/IOwnable.sol +6 -0
  270. package/contracts/shared/IRegisterable.sol +24 -0
  271. package/contracts/shared/IVersionable.sol +52 -0
  272. package/contracts/shared/Registerable.sol +86 -0
  273. package/contracts/shared/Versionable.sol +89 -0
  274. package/contracts/test/TestFee.sol +25 -0
  275. package/contracts/test/TestPool.sol +22 -0
  276. package/contracts/test/TestProduct.sol +44 -0
  277. package/contracts/test/TestRegisterable.sol +19 -0
  278. package/contracts/test/TestRoleId.sol +14 -0
  279. package/contracts/test/TestService.sol +32 -0
  280. package/contracts/test/TestToken.sol +26 -0
  281. package/contracts/test/TestVersion.sol +44 -0
  282. package/contracts/test/TestVersionable.sol +17 -0
  283. package/contracts/test/Usdc.sol +26 -0
  284. package/contracts/types/AddressSet.sol +58 -0
  285. package/contracts/types/Blocknumber.sol +118 -0
  286. package/contracts/types/ChainId.sol +38 -0
  287. package/contracts/types/Fee.sol +51 -0
  288. package/contracts/types/Key32.sol +45 -0
  289. package/contracts/types/NftId.sol +72 -0
  290. package/contracts/types/NftIdSet.sol +60 -0
  291. package/contracts/types/ObjectType.sol +115 -0
  292. package/contracts/types/RoleId.sol +38 -0
  293. package/contracts/types/StateId.sol +101 -0
  294. package/contracts/types/Timestamp.sol +123 -0
  295. package/contracts/types/UFixed.sol +209 -0
  296. package/contracts/types/Version.sol +95 -0
  297. package/package.json +19 -5
  298. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  299. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  300. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  301. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  302. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  303. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  304. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  305. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  306. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  307. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  308. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  309. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  310. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  311. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  312. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  313. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  314. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  315. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  316. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  317. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  318. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  319. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  320. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  321. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  322. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  323. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  324. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  325. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  326. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  327. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  328. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  329. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  330. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  331. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  332. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  333. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  334. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  335. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  336. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  337. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  338. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  339. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  340. package/contracts/components/Component.sol +0 -62
  341. package/contracts/components/IPool.sol +0 -9
  342. package/contracts/components/IProduct.sol +0 -11
  343. package/contracts/instance/access/Access.sol +0 -218
  344. package/contracts/instance/access/IAccess.sol +0 -83
  345. package/contracts/instance/component/ComponentModule.sol +0 -259
  346. package/contracts/instance/component/IComponent.sol +0 -94
  347. package/contracts/instance/policy/IPolicy.sol +0 -66
  348. package/contracts/instance/policy/PolicyModule.sol +0 -106
  349. package/contracts/instance/pool/IPoolModule.sol +0 -40
  350. package/contracts/instance/pool/PoolModule.sol +0 -83
  351. package/contracts/instance/product/IProductService.sol +0 -45
  352. package/contracts/instance/product/ProductService.sol +0 -105
@@ -0,0 +1,128 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "A",
4
+ "sourceName": "contracts/experiment/inheritance/A.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "getA",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint256",
12
+ "name": "",
13
+ "type": "uint256"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "getAfromB",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint256",
25
+ "name": "",
26
+ "type": "uint256"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "getAfromC",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "",
39
+ "type": "uint256"
40
+ }
41
+ ],
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "getB",
48
+ "outputs": [
49
+ {
50
+ "internalType": "uint256",
51
+ "name": "",
52
+ "type": "uint256"
53
+ }
54
+ ],
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ },
58
+ {
59
+ "inputs": [],
60
+ "name": "getBfromC",
61
+ "outputs": [
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "",
65
+ "type": "uint256"
66
+ }
67
+ ],
68
+ "stateMutability": "view",
69
+ "type": "function"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "getC",
74
+ "outputs": [
75
+ {
76
+ "internalType": "uint256",
77
+ "name": "",
78
+ "type": "uint256"
79
+ }
80
+ ],
81
+ "stateMutability": "view",
82
+ "type": "function"
83
+ },
84
+ {
85
+ "inputs": [
86
+ {
87
+ "internalType": "uint256",
88
+ "name": "newA",
89
+ "type": "uint256"
90
+ }
91
+ ],
92
+ "name": "setA",
93
+ "outputs": [],
94
+ "stateMutability": "nonpayable",
95
+ "type": "function"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "uint256",
101
+ "name": "newB",
102
+ "type": "uint256"
103
+ }
104
+ ],
105
+ "name": "setB",
106
+ "outputs": [],
107
+ "stateMutability": "nonpayable",
108
+ "type": "function"
109
+ },
110
+ {
111
+ "inputs": [
112
+ {
113
+ "internalType": "uint256",
114
+ "name": "newC",
115
+ "type": "uint256"
116
+ }
117
+ ],
118
+ "name": "setC",
119
+ "outputs": [],
120
+ "stateMutability": "nonpayable",
121
+ "type": "function"
122
+ }
123
+ ],
124
+ "bytecode": "0x608060405234801561001057600080fd5b50602a60005560018055600280556102488061002d6000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063d46300fd11610066578063d46300fd146100d3578063d4febc86146100db578063e2c11f20146100db578063ee919d50146100e3578063eeb4914e146100f657600080fd5b806309cdcf9b14610098578063a1c51915146100ad578063a2375d1e146100c3578063b9c23ae9146100cb575b600080fd5b6100ab6100a63660046101e0565b600155565b005b6001545b60405190815260200160405180910390f35b6002546100b1565b6100b1610109565b6000546100b1565b6100b1610177565b6100ab6100f13660046101e0565b600055565b6100ab6101043660046101e0565b600255565b600080309050806001600160a01b031663a1c519156040518163ffffffff1660e01b8152600401602060405180830381865afa15801561014d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061017191906101f9565b91505090565b6000306001600160a01b031663d46300fd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101db91906101f9565b905090565b6000602082840312156101f257600080fd5b5035919050565b60006020828403121561020b57600080fd5b505191905056fea26469706673582212209f0222d418abde01d04d1e182c58ee620abbe0d402c527a3397b73f7c260f81b64736f6c63430008140033",
125
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063d46300fd11610066578063d46300fd146100d3578063d4febc86146100db578063e2c11f20146100db578063ee919d50146100e3578063eeb4914e146100f657600080fd5b806309cdcf9b14610098578063a1c51915146100ad578063a2375d1e146100c3578063b9c23ae9146100cb575b600080fd5b6100ab6100a63660046101e0565b600155565b005b6001545b60405190815260200160405180910390f35b6002546100b1565b6100b1610109565b6000546100b1565b6100b1610177565b6100ab6100f13660046101e0565b600055565b6100ab6101043660046101e0565b600255565b600080309050806001600160a01b031663a1c519156040518163ffffffff1660e01b8152600401602060405180830381865afa15801561014d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061017191906101f9565b91505090565b6000306001600160a01b031663d46300fd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101db91906101f9565b905090565b6000602082840312156101f257600080fd5b5035919050565b60006020828403121561020b57600080fd5b505191905056fea26469706673582212209f0222d418abde01d04d1e182c58ee620abbe0d402c527a3397b73f7c260f81b64736f6c63430008140033",
126
+ "linkReferences": {},
127
+ "deployedLinkReferences": {}
128
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "AShared",
4
+ "sourceName": "contracts/experiment/inheritance/A.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "stateMutability": "nonpayable",
9
+ "type": "constructor"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "getA",
14
+ "outputs": [
15
+ {
16
+ "internalType": "uint256",
17
+ "name": "",
18
+ "type": "uint256"
19
+ }
20
+ ],
21
+ "stateMutability": "view",
22
+ "type": "function"
23
+ },
24
+ {
25
+ "inputs": [
26
+ {
27
+ "internalType": "uint256",
28
+ "name": "newA",
29
+ "type": "uint256"
30
+ }
31
+ ],
32
+ "name": "setA",
33
+ "outputs": [],
34
+ "stateMutability": "nonpayable",
35
+ "type": "function"
36
+ }
37
+ ],
38
+ "bytecode": "0x608060405234801561001057600080fd5b50602a60005560ac806100246000396000f3fe6080604052348015600f57600080fd5b506004361060325760003560e01c8063d46300fd146037578063ee919d5014604c575b600080fd5b60005460405190815260200160405180910390f35b605c6057366004605e565b600055565b005b600060208284031215606f57600080fd5b503591905056fea26469706673582212205368bc3fa78bd92d791aba3d469035cccfe59767c9c43ee03454d08de90a6d5264736f6c63430008140033",
39
+ "deployedBytecode": "0x6080604052348015600f57600080fd5b506004361060325760003560e01c8063d46300fd146037578063ee919d5014604c575b600080fd5b60005460405190815260200160405180910390f35b605c6057366004605e565b600055565b005b600060208284031215606f57600080fd5b503591905056fea26469706673582212205368bc3fa78bd92d791aba3d469035cccfe59767c9c43ee03454d08de90a6d5264736f6c63430008140033",
40
+ "linkReferences": {},
41
+ "deployedLinkReferences": {}
42
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -0,0 +1,76 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "B",
4
+ "sourceName": "contracts/experiment/inheritance/B.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "getA",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint256",
12
+ "name": "",
13
+ "type": "uint256"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "getAfromB",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint256",
25
+ "name": "",
26
+ "type": "uint256"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "getB",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "",
39
+ "type": "uint256"
40
+ }
41
+ ],
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [
47
+ {
48
+ "internalType": "uint256",
49
+ "name": "newA",
50
+ "type": "uint256"
51
+ }
52
+ ],
53
+ "name": "setA",
54
+ "outputs": [],
55
+ "stateMutability": "nonpayable",
56
+ "type": "function"
57
+ },
58
+ {
59
+ "inputs": [
60
+ {
61
+ "internalType": "uint256",
62
+ "name": "newB",
63
+ "type": "uint256"
64
+ }
65
+ ],
66
+ "name": "setB",
67
+ "outputs": [],
68
+ "stateMutability": "nonpayable",
69
+ "type": "function"
70
+ }
71
+ ],
72
+ "bytecode": "0x",
73
+ "deployedBytecode": "0x",
74
+ "linkReferences": {},
75
+ "deployedLinkReferences": {}
76
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -0,0 +1,89 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "C",
4
+ "sourceName": "contracts/experiment/inheritance/C.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "getA",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint256",
12
+ "name": "",
13
+ "type": "uint256"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "getAfromC",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint256",
25
+ "name": "",
26
+ "type": "uint256"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "getBfromC",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "",
39
+ "type": "uint256"
40
+ }
41
+ ],
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "getC",
48
+ "outputs": [
49
+ {
50
+ "internalType": "uint256",
51
+ "name": "",
52
+ "type": "uint256"
53
+ }
54
+ ],
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ },
58
+ {
59
+ "inputs": [
60
+ {
61
+ "internalType": "uint256",
62
+ "name": "newA",
63
+ "type": "uint256"
64
+ }
65
+ ],
66
+ "name": "setA",
67
+ "outputs": [],
68
+ "stateMutability": "nonpayable",
69
+ "type": "function"
70
+ },
71
+ {
72
+ "inputs": [
73
+ {
74
+ "internalType": "uint256",
75
+ "name": "newC",
76
+ "type": "uint256"
77
+ }
78
+ ],
79
+ "name": "setC",
80
+ "outputs": [],
81
+ "stateMutability": "nonpayable",
82
+ "type": "function"
83
+ }
84
+ ],
85
+ "bytecode": "0x",
86
+ "deployedBytecode": "0x",
87
+ "linkReferences": {},
88
+ "deployedLinkReferences": {}
89
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -1,107 +1,121 @@
1
1
  {
2
2
  "_format": "hh-sol-artifact-1",
3
- "contractName": "IProductService",
4
- "sourceName": "contracts/instance/product/IProductService.sol",
3
+ "contractName": "IA",
4
+ "sourceName": "contracts/experiment/inheritance/IA.sol",
5
5
  "abi": [
6
6
  {
7
- "anonymous": false,
8
- "inputs": [
7
+ "inputs": [],
8
+ "name": "getA",
9
+ "outputs": [
9
10
  {
10
- "indexed": false,
11
11
  "internalType": "uint256",
12
- "name": "idx",
12
+ "name": "",
13
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
14
  }
27
15
  ],
28
- "name": "LogDebug",
29
- "type": "event"
16
+ "stateMutability": "view",
17
+ "type": "function"
30
18
  },
31
19
  {
32
- "inputs": [
20
+ "inputs": [],
21
+ "name": "getAfromB",
22
+ "outputs": [
33
23
  {
34
24
  "internalType": "uint256",
35
- "name": "nftId",
25
+ "name": "",
36
26
  "type": "uint256"
37
27
  }
38
28
  ],
39
- "name": "close",
40
- "outputs": [],
41
- "stateMutability": "nonpayable",
29
+ "stateMutability": "view",
42
30
  "type": "function"
43
31
  },
44
32
  {
45
- "inputs": [
46
- {
47
- "internalType": "address",
48
- "name": "applicationOwner",
49
- "type": "address"
50
- },
33
+ "inputs": [],
34
+ "name": "getAfromC",
35
+ "outputs": [
51
36
  {
52
37
  "internalType": "uint256",
53
- "name": "sumInsuredAmount",
38
+ "name": "",
54
39
  "type": "uint256"
55
- },
40
+ }
41
+ ],
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "getB",
48
+ "outputs": [
56
49
  {
57
50
  "internalType": "uint256",
58
- "name": "premiumAmount",
51
+ "name": "",
59
52
  "type": "uint256"
60
- },
53
+ }
54
+ ],
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ },
58
+ {
59
+ "inputs": [],
60
+ "name": "getBfromC",
61
+ "outputs": [
61
62
  {
62
63
  "internalType": "uint256",
63
- "name": "lifetime",
64
+ "name": "",
64
65
  "type": "uint256"
65
- },
66
+ }
67
+ ],
68
+ "stateMutability": "view",
69
+ "type": "function"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "getC",
74
+ "outputs": [
66
75
  {
67
76
  "internalType": "uint256",
68
- "name": "bundleNftId",
77
+ "name": "",
69
78
  "type": "uint256"
70
79
  }
71
80
  ],
72
- "name": "createApplication",
73
- "outputs": [
81
+ "stateMutability": "view",
82
+ "type": "function"
83
+ },
84
+ {
85
+ "inputs": [
74
86
  {
75
87
  "internalType": "uint256",
76
- "name": "nftId",
88
+ "name": "newA",
77
89
  "type": "uint256"
78
90
  }
79
91
  ],
92
+ "name": "setA",
93
+ "outputs": [],
80
94
  "stateMutability": "nonpayable",
81
95
  "type": "function"
82
96
  },
83
97
  {
84
- "inputs": [],
85
- "name": "getRegistry",
86
- "outputs": [
98
+ "inputs": [
87
99
  {
88
- "internalType": "contract IRegistry",
89
- "name": "registry",
90
- "type": "address"
100
+ "internalType": "uint256",
101
+ "name": "newA",
102
+ "type": "uint256"
91
103
  }
92
104
  ],
93
- "stateMutability": "view",
105
+ "name": "setB",
106
+ "outputs": [],
107
+ "stateMutability": "nonpayable",
94
108
  "type": "function"
95
109
  },
96
110
  {
97
111
  "inputs": [
98
112
  {
99
113
  "internalType": "uint256",
100
- "name": "nftId",
114
+ "name": "newA",
101
115
  "type": "uint256"
102
116
  }
103
117
  ],
104
- "name": "underwrite",
118
+ "name": "setC",
105
119
  "outputs": [],
106
120
  "stateMutability": "nonpayable",
107
121
  "type": "function"
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ISharedA",
4
+ "sourceName": "contracts/experiment/inheritance/IA.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "getA",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint256",
12
+ "name": "",
13
+ "type": "uint256"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [
21
+ {
22
+ "internalType": "uint256",
23
+ "name": "newA",
24
+ "type": "uint256"
25
+ }
26
+ ],
27
+ "name": "setA",
28
+ "outputs": [],
29
+ "stateMutability": "nonpayable",
30
+ "type": "function"
31
+ }
32
+ ],
33
+ "bytecode": "0x",
34
+ "deployedBytecode": "0x",
35
+ "linkReferences": {},
36
+ "deployedLinkReferences": {}
37
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IB",
4
+ "sourceName": "contracts/experiment/inheritance/IB.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "getAfromB",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint256",
12
+ "name": "",
13
+ "type": "uint256"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "getB",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint256",
25
+ "name": "",
26
+ "type": "uint256"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "uint256",
36
+ "name": "newA",
37
+ "type": "uint256"
38
+ }
39
+ ],
40
+ "name": "setB",
41
+ "outputs": [],
42
+ "stateMutability": "nonpayable",
43
+ "type": "function"
44
+ }
45
+ ],
46
+ "bytecode": "0x",
47
+ "deployedBytecode": "0x",
48
+ "linkReferences": {},
49
+ "deployedLinkReferences": {}
50
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }