@etherisc/gif-next 0.0.2-ed4dd55 → 0.0.2-efdb520-159

Sign up to get free protection for your applications and to get access to all the features.
Files changed (319) hide show
  1. package/README.md +125 -0
  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 +1 -1
  19. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  20. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  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 +4 -0
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  32. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  34. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  36. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  38. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  40. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  42. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1364 -234
  44. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  45. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  46. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{access/IAccess.sol/IAccessComponentTypeRoles.json → IServiceLinked.sol/IServiceLinked.json} +14 -14
  48. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.json +1652 -373
  50. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → InstanceBase.sol/InstanceBase.json} +130 -144
  52. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  54. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  55. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  56. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  58. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  59. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +276 -0
  60. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  61. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  62. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +276 -0
  64. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  65. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +188 -0
  66. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  67. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  68. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponentModule.json +54 -111
  70. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  71. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +134 -0
  72. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.json +182 -0
  74. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +221 -0
  76. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  78. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +146 -116
  80. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +146 -116
  82. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  83. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  84. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  85. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +63 -63
  86. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +149 -0
  88. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.json +10 -0
  90. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.json +10 -0
  92. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
  94. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +538 -0
  96. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  98. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +538 -0
  100. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +519 -0
  102. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.json +300 -0
  104. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
  106. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +376 -0
  108. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +477 -0
  110. package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IService.sol/IService.json +300 -0
  112. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +499 -0
  114. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +685 -0
  116. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.json +300 -0
  118. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  119. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +65 -2
  120. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  121. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  122. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +115 -89
  123. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  124. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  125. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  126. package/artifacts/contracts/registry/Registry.sol/Registry.json +244 -77
  127. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  128. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  129. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  130. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  131. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  132. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +22 -67
  133. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  134. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
  135. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  136. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +23 -68
  137. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  138. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/Versionable.sol/Versionable.json} +72 -70
  139. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  140. package/artifacts/contracts/test/TestFee.sol/TestFee.json +95 -0
  141. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  142. package/artifacts/contracts/test/TestPool.sol/TestPool.json +387 -0
  143. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  144. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +393 -0
  145. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  146. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  147. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  148. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +82 -0
  149. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  150. package/artifacts/contracts/test/TestService.sol/TestService.json +407 -0
  151. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  152. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  153. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  154. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +222 -0
  155. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  156. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +230 -0
  157. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  158. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  159. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  160. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  161. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  163. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +85 -3
  165. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  166. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  167. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  168. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  169. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  170. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  171. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  172. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +236 -0
  173. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  174. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +453 -0
  175. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  176. package/artifacts/contracts/types/Version.sol/VersionLib.json +78 -0
  177. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  178. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  179. package/contracts/components/BaseComponent.sol +89 -0
  180. package/contracts/components/IBaseComponent.sol +19 -0
  181. package/contracts/components/IPoolComponent.sol +57 -0
  182. package/contracts/components/IProductComponent.sol +19 -0
  183. package/contracts/components/Pool.sol +161 -16
  184. package/contracts/components/Product.sol +79 -27
  185. package/contracts/experiment/errors/Require.sol +38 -0
  186. package/contracts/experiment/errors/Revert.sol +44 -0
  187. package/contracts/experiment/inheritance/A.sol +8 -11
  188. package/contracts/experiment/inheritance/B.sol +10 -5
  189. package/contracts/experiment/inheritance/C.sol +11 -5
  190. package/contracts/experiment/inheritance/IA.sol +2 -7
  191. package/contracts/experiment/inheritance/IB.sol +3 -2
  192. package/contracts/experiment/inheritance/IC.sol +4 -3
  193. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  194. package/contracts/experiment/statemachine/ISM.sol +25 -0
  195. package/contracts/experiment/statemachine/README.md +112 -0
  196. package/contracts/experiment/statemachine/SM.sol +57 -0
  197. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  198. package/contracts/experiment/types/TypeA.sol +14 -9
  199. package/contracts/experiment/types/TypeB.sol +14 -9
  200. package/contracts/instance/IInstance.sol +38 -8
  201. package/contracts/instance/IInstanceLinked.sol +8 -0
  202. package/contracts/instance/IServiceLinked.sol +12 -0
  203. package/contracts/instance/Instance.sol +43 -44
  204. package/contracts/instance/InstanceBase.sol +74 -0
  205. package/contracts/instance/module/access/Access.sol +149 -0
  206. package/contracts/instance/module/access/IAccess.sol +53 -0
  207. package/contracts/instance/module/bundle/BundleModule.sol +228 -0
  208. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  209. package/contracts/instance/module/component/ComponentModule.sol +104 -0
  210. package/contracts/instance/module/component/IComponent.sol +53 -0
  211. package/contracts/instance/module/lifecycle/ILifecycle.sol +47 -0
  212. package/contracts/instance/module/lifecycle/LifecycleModule.sol +89 -0
  213. package/contracts/instance/module/policy/IPolicy.sol +60 -0
  214. package/contracts/instance/module/policy/PolicyModule.sol +84 -0
  215. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  216. package/contracts/instance/module/pool/PoolModule.sol +87 -0
  217. package/contracts/instance/module/product/IProductModule.sol +6 -0
  218. package/contracts/instance/module/product/ProductModule.sol +8 -0
  219. package/contracts/instance/module/treasury/ITreasury.sol +104 -0
  220. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  221. package/contracts/instance/module/treasury/TreasuryModule.sol +148 -0
  222. package/contracts/instance/service/ComponentOwnerService.sol +174 -0
  223. package/contracts/instance/service/ComponentServiceBase.sol +41 -0
  224. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  225. package/contracts/instance/service/IPoolService.sol +30 -0
  226. package/contracts/instance/service/IProductService.sol +58 -0
  227. package/contracts/instance/service/IService.sol +15 -0
  228. package/contracts/instance/service/PoolService.sol +98 -0
  229. package/contracts/instance/service/ProductService.sol +358 -0
  230. package/contracts/instance/service/ServiceBase.sol +39 -0
  231. package/contracts/registry/ChainNft.sol +80 -94
  232. package/contracts/registry/IChainNft.sol +10 -7
  233. package/contracts/registry/IRegistry.sol +40 -51
  234. package/contracts/registry/IRegistryLinked.sol +8 -0
  235. package/contracts/registry/Registry.sol +312 -107
  236. package/contracts/shared/ERC165.sol +21 -0
  237. package/contracts/shared/IOwnable.sol +6 -0
  238. package/contracts/shared/IRegisterable.sol +24 -0
  239. package/contracts/shared/IVersionable.sol +52 -0
  240. package/contracts/shared/Registerable.sol +86 -0
  241. package/contracts/shared/Versionable.sol +92 -0
  242. package/contracts/test/TestFee.sol +25 -0
  243. package/contracts/test/TestPool.sol +22 -0
  244. package/contracts/test/TestProduct.sol +44 -0
  245. package/contracts/test/TestRegisterable.sol +19 -0
  246. package/contracts/test/TestRoleId.sol +14 -0
  247. package/contracts/test/TestService.sol +35 -0
  248. package/contracts/test/TestToken.sol +26 -0
  249. package/contracts/test/TestVersion.sol +47 -0
  250. package/contracts/test/TestVersionable.sol +20 -0
  251. package/contracts/types/AddressSet.sol +58 -0
  252. package/contracts/types/Blocknumber.sol +118 -0
  253. package/contracts/types/ChainId.sol +24 -10
  254. package/contracts/types/Fee.sol +32 -0
  255. package/contracts/types/NftId.sol +40 -8
  256. package/contracts/types/NftIdSet.sol +60 -0
  257. package/contracts/types/ObjectType.sol +115 -0
  258. package/contracts/types/RoleId.sol +36 -0
  259. package/contracts/types/StateId.sol +95 -0
  260. package/contracts/types/Timestamp.sol +123 -0
  261. package/contracts/types/UFixed.sol +206 -0
  262. package/contracts/types/Version.sol +91 -0
  263. package/package.json +19 -5
  264. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  265. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  266. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  267. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  268. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  269. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  270. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  271. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  272. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  273. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  274. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  275. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  276. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  277. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  278. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  279. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  280. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  281. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  282. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  283. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  284. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  285. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  286. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  287. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  288. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  289. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  290. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  291. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  292. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  293. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  294. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  295. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  296. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  297. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  298. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  299. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  300. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  301. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  302. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  303. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  304. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  305. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  306. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  307. package/contracts/components/Component.sol +0 -62
  308. package/contracts/components/IPool.sol +0 -9
  309. package/contracts/components/IProduct.sol +0 -11
  310. package/contracts/instance/access/Access.sol +0 -218
  311. package/contracts/instance/access/IAccess.sol +0 -83
  312. package/contracts/instance/component/ComponentModule.sol +0 -259
  313. package/contracts/instance/component/IComponent.sol +0 -94
  314. package/contracts/instance/policy/IPolicy.sol +0 -66
  315. package/contracts/instance/policy/PolicyModule.sol +0 -106
  316. package/contracts/instance/pool/IPoolModule.sol +0 -40
  317. package/contracts/instance/pool/PoolModule.sol +0 -83
  318. package/contracts/instance/product/IProductService.sol +0 -45
  319. package/contracts/instance/product/ProductService.sol +0 -105
@@ -3,76 +3,228 @@
3
3
  "contractName": "IInstance",
4
4
  "sourceName": "contracts/instance/IInstance.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "NftId",
10
+ "name": "nftId",
11
+ "type": "uint96"
12
+ },
13
+ {
14
+ "internalType": "ObjectType",
15
+ "name": "objectType",
16
+ "type": "uint8"
17
+ },
18
+ {
19
+ "internalType": "StateId",
20
+ "name": "fromStateId",
21
+ "type": "uint8"
22
+ },
23
+ {
24
+ "internalType": "StateId",
25
+ "name": "toStateId",
26
+ "type": "uint8"
27
+ }
28
+ ],
29
+ "name": "ErrorInvalidStateTransition",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "NftId",
36
+ "name": "nftId",
37
+ "type": "uint96"
38
+ },
39
+ {
40
+ "internalType": "ObjectType",
41
+ "name": "objectType",
42
+ "type": "uint8"
43
+ }
44
+ ],
45
+ "name": "ErrorNoLifecycle",
46
+ "type": "error"
47
+ },
6
48
  {
7
49
  "anonymous": false,
8
50
  "inputs": [
9
51
  {
10
52
  "indexed": false,
11
- "internalType": "uint256",
12
- "name": "idx",
13
- "type": "uint256"
53
+ "internalType": "RoleId",
54
+ "name": "role",
55
+ "type": "bytes8"
56
+ },
57
+ {
58
+ "indexed": false,
59
+ "internalType": "string",
60
+ "name": "roleName",
61
+ "type": "string"
62
+ }
63
+ ],
64
+ "name": "LogAccessRoleCreated",
65
+ "type": "event"
66
+ },
67
+ {
68
+ "anonymous": false,
69
+ "inputs": [
70
+ {
71
+ "indexed": false,
72
+ "internalType": "RoleId",
73
+ "name": "role",
74
+ "type": "bytes8"
14
75
  },
15
76
  {
16
77
  "indexed": false,
17
78
  "internalType": "address",
18
- "name": "module",
79
+ "name": "member",
19
80
  "type": "address"
20
81
  },
21
82
  {
22
83
  "indexed": false,
23
- "internalType": "string",
24
- "name": "comment",
25
- "type": "string"
84
+ "internalType": "bool",
85
+ "name": "isMember",
86
+ "type": "bool"
26
87
  }
27
88
  ],
28
- "name": "LogDebug",
89
+ "name": "LogAccessRoleGranted",
29
90
  "type": "event"
30
91
  },
31
92
  {
32
- "inputs": [],
33
- "name": "ORACLE_OWNER_ROLE",
34
- "outputs": [
93
+ "anonymous": false,
94
+ "inputs": [
35
95
  {
36
- "internalType": "bytes32",
96
+ "indexed": false,
97
+ "internalType": "RoleId",
37
98
  "name": "role",
38
- "type": "bytes32"
99
+ "type": "bytes8"
100
+ },
101
+ {
102
+ "indexed": false,
103
+ "internalType": "bool",
104
+ "name": "active",
105
+ "type": "bool"
39
106
  }
40
107
  ],
41
- "stateMutability": "view",
42
- "type": "function"
108
+ "name": "LogAccessRoleStateSet",
109
+ "type": "event"
43
110
  },
44
111
  {
45
- "inputs": [],
46
- "name": "POOL_OWNER_ROLE",
47
- "outputs": [
112
+ "anonymous": false,
113
+ "inputs": [
48
114
  {
49
- "internalType": "bytes32",
50
- "name": "role",
51
- "type": "bytes32"
115
+ "indexed": false,
116
+ "internalType": "NftId",
117
+ "name": "nftId",
118
+ "type": "uint96"
119
+ },
120
+ {
121
+ "indexed": false,
122
+ "internalType": "StateId",
123
+ "name": "fromStateId",
124
+ "type": "uint8"
125
+ },
126
+ {
127
+ "indexed": false,
128
+ "internalType": "StateId",
129
+ "name": "toStateId",
130
+ "type": "uint8"
52
131
  }
53
132
  ],
54
- "stateMutability": "view",
55
- "type": "function"
133
+ "name": "LogBundleStateChanged",
134
+ "type": "event"
56
135
  },
57
136
  {
58
- "inputs": [],
59
- "name": "PRODUCT_OWNER_ROLE",
60
- "outputs": [
137
+ "anonymous": false,
138
+ "inputs": [
61
139
  {
62
- "internalType": "bytes32",
63
- "name": "role",
64
- "type": "bytes32"
140
+ "indexed": false,
141
+ "internalType": "NftId",
142
+ "name": "nftId",
143
+ "type": "uint96"
144
+ },
145
+ {
146
+ "indexed": false,
147
+ "internalType": "ObjectType",
148
+ "name": "objectType",
149
+ "type": "uint8"
150
+ },
151
+ {
152
+ "indexed": false,
153
+ "internalType": "StateId",
154
+ "name": "fromStateId",
155
+ "type": "uint8"
156
+ },
157
+ {
158
+ "indexed": false,
159
+ "internalType": "StateId",
160
+ "name": "toStateId",
161
+ "type": "uint8"
65
162
  }
66
163
  ],
67
- "stateMutability": "view",
68
- "type": "function"
164
+ "name": "LogComponentStateChanged",
165
+ "type": "event"
69
166
  },
70
167
  {
168
+ "anonymous": false,
71
169
  "inputs": [
72
170
  {
73
- "internalType": "uint256",
171
+ "indexed": false,
172
+ "internalType": "NftId",
74
173
  "name": "nftId",
75
- "type": "uint256"
174
+ "type": "uint96"
175
+ },
176
+ {
177
+ "indexed": false,
178
+ "internalType": "StateId",
179
+ "name": "fromStateId",
180
+ "type": "uint8"
181
+ },
182
+ {
183
+ "indexed": false,
184
+ "internalType": "StateId",
185
+ "name": "toStateId",
186
+ "type": "uint8"
187
+ }
188
+ ],
189
+ "name": "LogPolicyStateChanged",
190
+ "type": "event"
191
+ },
192
+ {
193
+ "anonymous": false,
194
+ "inputs": [
195
+ {
196
+ "indexed": false,
197
+ "internalType": "Version",
198
+ "name": "version",
199
+ "type": "uint24"
200
+ },
201
+ {
202
+ "indexed": false,
203
+ "internalType": "address",
204
+ "name": "implementation",
205
+ "type": "address"
206
+ },
207
+ {
208
+ "indexed": false,
209
+ "internalType": "address",
210
+ "name": "activatedBy",
211
+ "type": "address"
212
+ }
213
+ ],
214
+ "name": "LogVersionableActivated",
215
+ "type": "event"
216
+ },
217
+ {
218
+ "inputs": [
219
+ {
220
+ "internalType": "address",
221
+ "name": "implementation",
222
+ "type": "address"
223
+ },
224
+ {
225
+ "internalType": "address",
226
+ "name": "activatedBy",
227
+ "type": "address"
76
228
  }
77
229
  ],
78
230
  "name": "activate",
@@ -81,56 +233,103 @@
81
233
  "type": "function"
82
234
  },
83
235
  {
84
- "inputs": [],
85
- "name": "components",
86
- "outputs": [
236
+ "inputs": [
237
+ {
238
+ "internalType": "NftId",
239
+ "name": "bundleNftId",
240
+ "type": "uint96"
241
+ },
242
+ {
243
+ "internalType": "NftId",
244
+ "name": "poolNftId",
245
+ "type": "uint96"
246
+ },
87
247
  {
88
248
  "internalType": "uint256",
89
- "name": "numberOfCompnents",
249
+ "name": "amount",
90
250
  "type": "uint256"
91
251
  }
92
252
  ],
93
- "stateMutability": "view",
253
+ "name": "addBundleToPool",
254
+ "outputs": [],
255
+ "stateMutability": "nonpayable",
94
256
  "type": "function"
95
257
  },
96
258
  {
97
259
  "inputs": [
260
+ {
261
+ "internalType": "uint256",
262
+ "name": "amount",
263
+ "type": "uint256"
264
+ },
98
265
  {
99
266
  "components": [
100
267
  {
101
- "internalType": "uint256",
102
- "name": "nftId",
103
- "type": "uint256"
104
- },
105
- {
106
- "internalType": "uint256",
107
- "name": "parentNftId",
268
+ "internalType": "UFixed",
269
+ "name": "fractionalFee",
108
270
  "type": "uint256"
109
271
  },
110
272
  {
111
273
  "internalType": "uint256",
112
- "name": "objectType",
274
+ "name": "fixedFee",
113
275
  "type": "uint256"
114
- },
115
- {
116
- "internalType": "address",
117
- "name": "objectAddress",
118
- "type": "address"
119
- },
120
- {
121
- "internalType": "address",
122
- "name": "initialOwner",
123
- "type": "address"
124
276
  }
125
277
  ],
126
- "internalType": "struct IRegistry.RegistryInfo",
127
- "name": "productInfo",
278
+ "internalType": "struct Fee",
279
+ "name": "fee",
128
280
  "type": "tuple"
281
+ }
282
+ ],
283
+ "name": "calculateFeeAmount",
284
+ "outputs": [
285
+ {
286
+ "internalType": "uint256",
287
+ "name": "feeAmount",
288
+ "type": "uint256"
129
289
  },
130
290
  {
131
- "internalType": "address",
132
- "name": "applicationOwner",
133
- "type": "address"
291
+ "internalType": "uint256",
292
+ "name": "netAmount",
293
+ "type": "uint256"
294
+ }
295
+ ],
296
+ "stateMutability": "pure",
297
+ "type": "function"
298
+ },
299
+ {
300
+ "inputs": [
301
+ {
302
+ "internalType": "NftId",
303
+ "name": "bundleNftId",
304
+ "type": "uint96"
305
+ },
306
+ {
307
+ "internalType": "NftId",
308
+ "name": "policyNftId",
309
+ "type": "uint96"
310
+ },
311
+ {
312
+ "internalType": "uint256",
313
+ "name": "amount",
314
+ "type": "uint256"
315
+ }
316
+ ],
317
+ "name": "collateralizePolicy",
318
+ "outputs": [],
319
+ "stateMutability": "nonpayable",
320
+ "type": "function"
321
+ },
322
+ {
323
+ "inputs": [
324
+ {
325
+ "internalType": "NftId",
326
+ "name": "productNftId",
327
+ "type": "uint96"
328
+ },
329
+ {
330
+ "internalType": "NftId",
331
+ "name": "policyNftId",
332
+ "type": "uint96"
134
333
  },
135
334
  {
136
335
  "internalType": "uint256",
@@ -148,41 +347,45 @@
148
347
  "type": "uint256"
149
348
  },
150
349
  {
151
- "internalType": "uint256",
350
+ "internalType": "NftId",
152
351
  "name": "bundleNftId",
153
- "type": "uint256"
352
+ "type": "uint96"
154
353
  }
155
354
  ],
156
355
  "name": "createApplication",
157
- "outputs": [
158
- {
159
- "internalType": "uint256",
160
- "name": "nftId",
161
- "type": "uint256"
162
- }
163
- ],
356
+ "outputs": [],
164
357
  "stateMutability": "nonpayable",
165
358
  "type": "function"
166
359
  },
167
360
  {
168
361
  "inputs": [
362
+ {
363
+ "internalType": "NftId",
364
+ "name": "bundleNftId",
365
+ "type": "uint96"
366
+ },
367
+ {
368
+ "internalType": "NftId",
369
+ "name": "poolNftId",
370
+ "type": "uint96"
371
+ },
169
372
  {
170
373
  "internalType": "uint256",
171
- "name": "nftId",
374
+ "name": "amount",
172
375
  "type": "uint256"
173
376
  },
174
377
  {
175
- "internalType": "address",
176
- "name": "wallet",
177
- "type": "address"
378
+ "internalType": "uint256",
379
+ "name": "lifetime",
380
+ "type": "uint256"
178
381
  },
179
382
  {
180
- "internalType": "address",
181
- "name": "token",
182
- "type": "address"
383
+ "internalType": "bytes",
384
+ "name": "filter",
385
+ "type": "bytes"
183
386
  }
184
387
  ],
185
- "name": "createPoolInfo",
388
+ "name": "createBundleInfo",
186
389
  "outputs": [],
187
390
  "stateMutability": "nonpayable",
188
391
  "type": "function"
@@ -198,9 +401,9 @@
198
401
  "name": "createRole",
199
402
  "outputs": [
200
403
  {
201
- "internalType": "bytes32",
404
+ "internalType": "RoleId",
202
405
  "name": "role",
203
- "type": "bytes32"
406
+ "type": "bytes8"
204
407
  }
205
408
  ],
206
409
  "stateMutability": "nonpayable",
@@ -209,43 +412,93 @@
209
412
  {
210
413
  "inputs": [
211
414
  {
212
- "internalType": "bytes32",
213
- "name": "role",
214
- "type": "bytes32"
415
+ "internalType": "NftId",
416
+ "name": "poolNftId",
417
+ "type": "uint96"
215
418
  }
216
419
  ],
217
- "name": "disableRole",
218
- "outputs": [],
219
- "stateMutability": "nonpayable",
220
- "type": "function"
221
- },
222
- {
223
- "inputs": [
420
+ "name": "getBundleCount",
421
+ "outputs": [
224
422
  {
225
- "internalType": "bytes32",
226
- "name": "role",
227
- "type": "bytes32"
423
+ "internalType": "uint256",
424
+ "name": "bundleCount",
425
+ "type": "uint256"
228
426
  }
229
427
  ],
230
- "name": "enableRole",
231
- "outputs": [],
232
- "stateMutability": "nonpayable",
428
+ "stateMutability": "view",
233
429
  "type": "function"
234
430
  },
235
431
  {
236
432
  "inputs": [
237
433
  {
238
- "internalType": "uint256",
239
- "name": "nftId",
240
- "type": "uint256"
434
+ "internalType": "NftId",
435
+ "name": "bundleNftId",
436
+ "type": "uint96"
241
437
  }
242
438
  ],
243
- "name": "getBundleNftForPolicy",
439
+ "name": "getBundleInfo",
244
440
  "outputs": [
245
441
  {
246
- "internalType": "uint256",
247
- "name": "bundleNft",
248
- "type": "uint256"
442
+ "components": [
443
+ {
444
+ "internalType": "NftId",
445
+ "name": "nftId",
446
+ "type": "uint96"
447
+ },
448
+ {
449
+ "internalType": "NftId",
450
+ "name": "poolNftId",
451
+ "type": "uint96"
452
+ },
453
+ {
454
+ "internalType": "StateId",
455
+ "name": "state",
456
+ "type": "uint8"
457
+ },
458
+ {
459
+ "internalType": "bytes",
460
+ "name": "filter",
461
+ "type": "bytes"
462
+ },
463
+ {
464
+ "internalType": "uint256",
465
+ "name": "capitalAmount",
466
+ "type": "uint256"
467
+ },
468
+ {
469
+ "internalType": "uint256",
470
+ "name": "lockedAmount",
471
+ "type": "uint256"
472
+ },
473
+ {
474
+ "internalType": "uint256",
475
+ "name": "balanceAmount",
476
+ "type": "uint256"
477
+ },
478
+ {
479
+ "internalType": "Timestamp",
480
+ "name": "createdAt",
481
+ "type": "uint40"
482
+ },
483
+ {
484
+ "internalType": "Timestamp",
485
+ "name": "expiredAt",
486
+ "type": "uint40"
487
+ },
488
+ {
489
+ "internalType": "Timestamp",
490
+ "name": "closedAt",
491
+ "type": "uint40"
492
+ },
493
+ {
494
+ "internalType": "Blocknumber",
495
+ "name": "updatedIn",
496
+ "type": "uint32"
497
+ }
498
+ ],
499
+ "internalType": "struct IBundle.BundleInfo",
500
+ "name": "bundleInfo",
501
+ "type": "tuple"
249
502
  }
250
503
  ],
251
504
  "stateMutability": "view",
@@ -254,16 +507,34 @@
254
507
  {
255
508
  "inputs": [
256
509
  {
257
- "internalType": "address",
258
- "name": "componentAddress",
259
- "type": "address"
510
+ "internalType": "NftId",
511
+ "name": "poolNftId",
512
+ "type": "uint96"
513
+ },
514
+ {
515
+ "internalType": "uint256",
516
+ "name": "index",
517
+ "type": "uint256"
260
518
  }
261
519
  ],
262
- "name": "getComponentId",
520
+ "name": "getBundleNftId",
521
+ "outputs": [
522
+ {
523
+ "internalType": "NftId",
524
+ "name": "bundleNftId",
525
+ "type": "uint96"
526
+ }
527
+ ],
528
+ "stateMutability": "view",
529
+ "type": "function"
530
+ },
531
+ {
532
+ "inputs": [],
533
+ "name": "getComponentCount",
263
534
  "outputs": [
264
535
  {
265
536
  "internalType": "uint256",
266
- "name": "id",
537
+ "name": "numberOfCompnents",
267
538
  "type": "uint256"
268
539
  }
269
540
  ],
@@ -281,9 +552,9 @@
281
552
  "name": "getComponentId",
282
553
  "outputs": [
283
554
  {
284
- "internalType": "uint256",
285
- "name": "id",
286
- "type": "uint256"
555
+ "internalType": "NftId",
556
+ "name": "nftId",
557
+ "type": "uint96"
287
558
  }
288
559
  ],
289
560
  "stateMutability": "view",
@@ -292,9 +563,9 @@
292
563
  {
293
564
  "inputs": [
294
565
  {
295
- "internalType": "uint256",
296
- "name": "id",
297
- "type": "uint256"
566
+ "internalType": "NftId",
567
+ "name": "nftId",
568
+ "type": "uint96"
298
569
  }
299
570
  ],
300
571
  "name": "getComponentInfo",
@@ -302,14 +573,19 @@
302
573
  {
303
574
  "components": [
304
575
  {
305
- "internalType": "uint256",
576
+ "internalType": "NftId",
306
577
  "name": "nftId",
307
- "type": "uint256"
578
+ "type": "uint96"
308
579
  },
309
580
  {
310
- "internalType": "enum IComponent.CState",
581
+ "internalType": "StateId",
311
582
  "name": "state",
312
583
  "type": "uint8"
584
+ },
585
+ {
586
+ "internalType": "contract IERC20Metadata",
587
+ "name": "token",
588
+ "type": "address"
313
589
  }
314
590
  ],
315
591
  "internalType": "struct IComponent.ComponentInfo",
@@ -320,25 +596,6 @@
320
596
  "stateMutability": "view",
321
597
  "type": "function"
322
598
  },
323
- {
324
- "inputs": [
325
- {
326
- "internalType": "uint256",
327
- "name": "id",
328
- "type": "uint256"
329
- }
330
- ],
331
- "name": "getComponentOwner",
332
- "outputs": [
333
- {
334
- "internalType": "address",
335
- "name": "owner",
336
- "type": "address"
337
- }
338
- ],
339
- "stateMutability": "view",
340
- "type": "function"
341
- },
342
599
  {
343
600
  "inputs": [],
344
601
  "name": "getComponentOwnerService",
@@ -366,13 +623,55 @@
366
623
  "type": "function"
367
624
  },
368
625
  {
369
- "inputs": [],
370
- "name": "getInitialOwner",
626
+ "inputs": [
627
+ {
628
+ "internalType": "UFixed",
629
+ "name": "fractionalFee",
630
+ "type": "uint256"
631
+ },
632
+ {
633
+ "internalType": "uint256",
634
+ "name": "fixedFee",
635
+ "type": "uint256"
636
+ }
637
+ ],
638
+ "name": "getFee",
371
639
  "outputs": [
372
640
  {
373
- "internalType": "address",
374
- "name": "initialOwner",
375
- "type": "address"
641
+ "components": [
642
+ {
643
+ "internalType": "UFixed",
644
+ "name": "fractionalFee",
645
+ "type": "uint256"
646
+ },
647
+ {
648
+ "internalType": "uint256",
649
+ "name": "fixedFee",
650
+ "type": "uint256"
651
+ }
652
+ ],
653
+ "internalType": "struct Fee",
654
+ "name": "fee",
655
+ "type": "tuple"
656
+ }
657
+ ],
658
+ "stateMutability": "pure",
659
+ "type": "function"
660
+ },
661
+ {
662
+ "inputs": [
663
+ {
664
+ "internalType": "ObjectType",
665
+ "name": "objectType",
666
+ "type": "uint8"
667
+ }
668
+ ],
669
+ "name": "getInitialState",
670
+ "outputs": [
671
+ {
672
+ "internalType": "StateId",
673
+ "name": "",
674
+ "type": "uint8"
376
675
  }
377
676
  ],
378
677
  "stateMutability": "view",
@@ -383,9 +682,9 @@
383
682
  "name": "getNftId",
384
683
  "outputs": [
385
684
  {
386
- "internalType": "uint256",
685
+ "internalType": "NftId",
387
686
  "name": "nftId",
388
- "type": "uint256"
687
+ "type": "uint96"
389
688
  }
390
689
  ],
391
690
  "stateMutability": "view",
@@ -409,9 +708,9 @@
409
708
  "name": "getParentNftId",
410
709
  "outputs": [
411
710
  {
412
- "internalType": "uint256",
413
- "name": "parentNftId",
414
- "type": "uint256"
711
+ "internalType": "NftId",
712
+ "name": "nftId",
713
+ "type": "uint96"
415
714
  }
416
715
  ],
417
716
  "stateMutability": "view",
@@ -420,9 +719,9 @@
420
719
  {
421
720
  "inputs": [
422
721
  {
423
- "internalType": "uint256",
722
+ "internalType": "NftId",
424
723
  "name": "nftId",
425
- "type": "uint256"
724
+ "type": "uint96"
426
725
  }
427
726
  ],
428
727
  "name": "getPolicyInfo",
@@ -430,12 +729,27 @@
430
729
  {
431
730
  "components": [
432
731
  {
433
- "internalType": "uint256",
732
+ "internalType": "NftId",
434
733
  "name": "nftId",
435
- "type": "uint256"
734
+ "type": "uint96"
735
+ },
736
+ {
737
+ "internalType": "NftId",
738
+ "name": "productNftId",
739
+ "type": "uint96"
740
+ },
741
+ {
742
+ "internalType": "NftId",
743
+ "name": "bundleNftId",
744
+ "type": "uint96"
745
+ },
746
+ {
747
+ "internalType": "address",
748
+ "name": "beneficiary",
749
+ "type": "address"
436
750
  },
437
751
  {
438
- "internalType": "enum IPolicy.PolicyState",
752
+ "internalType": "StateId",
439
753
  "name": "state",
440
754
  "type": "uint8"
441
755
  },
@@ -451,28 +765,43 @@
451
765
  },
452
766
  {
453
767
  "internalType": "uint256",
454
- "name": "lifetime",
768
+ "name": "premiumPaidAmount",
455
769
  "type": "uint256"
456
770
  },
457
771
  {
458
772
  "internalType": "uint256",
459
- "name": "createdAt",
773
+ "name": "lifetime",
460
774
  "type": "uint256"
461
775
  },
462
776
  {
463
- "internalType": "uint256",
777
+ "internalType": "bytes",
778
+ "name": "data",
779
+ "type": "bytes"
780
+ },
781
+ {
782
+ "internalType": "Timestamp",
783
+ "name": "createdAt",
784
+ "type": "uint40"
785
+ },
786
+ {
787
+ "internalType": "Timestamp",
464
788
  "name": "activatedAt",
465
- "type": "uint256"
789
+ "type": "uint40"
466
790
  },
467
791
  {
468
- "internalType": "uint256",
792
+ "internalType": "Timestamp",
469
793
  "name": "expiredAt",
470
- "type": "uint256"
794
+ "type": "uint40"
471
795
  },
472
796
  {
473
- "internalType": "uint256",
797
+ "internalType": "Timestamp",
474
798
  "name": "closedAt",
475
- "type": "uint256"
799
+ "type": "uint40"
800
+ },
801
+ {
802
+ "internalType": "Blocknumber",
803
+ "name": "updatedIn",
804
+ "type": "uint32"
476
805
  }
477
806
  ],
478
807
  "internalType": "struct IPolicy.PolicyInfo",
@@ -486,9 +815,9 @@
486
815
  {
487
816
  "inputs": [
488
817
  {
489
- "internalType": "uint256",
818
+ "internalType": "NftId",
490
819
  "name": "nftId",
491
- "type": "uint256"
820
+ "type": "uint96"
492
821
  }
493
822
  ],
494
823
  "name": "getPoolInfo",
@@ -496,28 +825,18 @@
496
825
  {
497
826
  "components": [
498
827
  {
499
- "internalType": "uint256",
828
+ "internalType": "NftId",
500
829
  "name": "nftId",
501
- "type": "uint256"
502
- },
503
- {
504
- "internalType": "address",
505
- "name": "wallet",
506
- "type": "address"
507
- },
508
- {
509
- "internalType": "address",
510
- "name": "token",
511
- "type": "address"
830
+ "type": "uint96"
512
831
  },
513
832
  {
514
- "internalType": "uint256",
515
- "name": "capital",
516
- "type": "uint256"
833
+ "internalType": "bool",
834
+ "name": "isVerifying",
835
+ "type": "bool"
517
836
  },
518
837
  {
519
- "internalType": "uint256",
520
- "name": "lockedCapital",
838
+ "internalType": "UFixed",
839
+ "name": "collateralizationLevel",
521
840
  "type": "uint256"
522
841
  }
523
842
  ],
@@ -529,20 +848,79 @@
529
848
  "stateMutability": "view",
530
849
  "type": "function"
531
850
  },
851
+ {
852
+ "inputs": [],
853
+ "name": "getPoolService",
854
+ "outputs": [
855
+ {
856
+ "internalType": "contract IPoolService",
857
+ "name": "",
858
+ "type": "address"
859
+ }
860
+ ],
861
+ "stateMutability": "view",
862
+ "type": "function"
863
+ },
532
864
  {
533
865
  "inputs": [
534
866
  {
535
- "internalType": "uint256",
536
- "name": "productNftId",
537
- "type": "uint256"
867
+ "internalType": "NftId",
868
+ "name": "poolNftId",
869
+ "type": "uint96"
538
870
  }
539
871
  ],
540
- "name": "getPoolNftId",
872
+ "name": "getPoolSetup",
541
873
  "outputs": [
542
874
  {
543
- "internalType": "uint256",
544
- "name": "poolNftId",
545
- "type": "uint256"
875
+ "components": [
876
+ {
877
+ "internalType": "NftId",
878
+ "name": "poolNftId",
879
+ "type": "uint96"
880
+ },
881
+ {
882
+ "internalType": "address",
883
+ "name": "wallet",
884
+ "type": "address"
885
+ },
886
+ {
887
+ "components": [
888
+ {
889
+ "internalType": "UFixed",
890
+ "name": "fractionalFee",
891
+ "type": "uint256"
892
+ },
893
+ {
894
+ "internalType": "uint256",
895
+ "name": "fixedFee",
896
+ "type": "uint256"
897
+ }
898
+ ],
899
+ "internalType": "struct Fee",
900
+ "name": "stakingFee",
901
+ "type": "tuple"
902
+ },
903
+ {
904
+ "components": [
905
+ {
906
+ "internalType": "UFixed",
907
+ "name": "fractionalFee",
908
+ "type": "uint256"
909
+ },
910
+ {
911
+ "internalType": "uint256",
912
+ "name": "fixedFee",
913
+ "type": "uint256"
914
+ }
915
+ ],
916
+ "internalType": "struct Fee",
917
+ "name": "performanceFee",
918
+ "type": "tuple"
919
+ }
920
+ ],
921
+ "internalType": "struct ITreasury.PoolSetup",
922
+ "name": "setup",
923
+ "type": "tuple"
546
924
  }
547
925
  ],
548
926
  "stateMutability": "view",
@@ -561,6 +939,91 @@
561
939
  "stateMutability": "view",
562
940
  "type": "function"
563
941
  },
942
+ {
943
+ "inputs": [
944
+ {
945
+ "internalType": "NftId",
946
+ "name": "productNftId",
947
+ "type": "uint96"
948
+ }
949
+ ],
950
+ "name": "getProductSetup",
951
+ "outputs": [
952
+ {
953
+ "components": [
954
+ {
955
+ "internalType": "NftId",
956
+ "name": "productNftId",
957
+ "type": "uint96"
958
+ },
959
+ {
960
+ "internalType": "NftId",
961
+ "name": "distributorNftId",
962
+ "type": "uint96"
963
+ },
964
+ {
965
+ "internalType": "NftId",
966
+ "name": "poolNftId",
967
+ "type": "uint96"
968
+ },
969
+ {
970
+ "internalType": "contract IERC20Metadata",
971
+ "name": "token",
972
+ "type": "address"
973
+ },
974
+ {
975
+ "internalType": "contract TokenHandler",
976
+ "name": "tokenHandler",
977
+ "type": "address"
978
+ },
979
+ {
980
+ "internalType": "address",
981
+ "name": "wallet",
982
+ "type": "address"
983
+ },
984
+ {
985
+ "components": [
986
+ {
987
+ "internalType": "UFixed",
988
+ "name": "fractionalFee",
989
+ "type": "uint256"
990
+ },
991
+ {
992
+ "internalType": "uint256",
993
+ "name": "fixedFee",
994
+ "type": "uint256"
995
+ }
996
+ ],
997
+ "internalType": "struct Fee",
998
+ "name": "policyFee",
999
+ "type": "tuple"
1000
+ },
1001
+ {
1002
+ "components": [
1003
+ {
1004
+ "internalType": "UFixed",
1005
+ "name": "fractionalFee",
1006
+ "type": "uint256"
1007
+ },
1008
+ {
1009
+ "internalType": "uint256",
1010
+ "name": "fixedFee",
1011
+ "type": "uint256"
1012
+ }
1013
+ ],
1014
+ "internalType": "struct Fee",
1015
+ "name": "processingFee",
1016
+ "type": "tuple"
1017
+ }
1018
+ ],
1019
+ "internalType": "struct ITreasury.ProductSetup",
1020
+ "name": "setup",
1021
+ "type": "tuple"
1022
+ }
1023
+ ],
1024
+ "stateMutability": "view",
1025
+ "type": "function"
1026
+ },
564
1027
  {
565
1028
  "inputs": [],
566
1029
  "name": "getRegistry",
@@ -585,9 +1048,9 @@
585
1048
  "name": "getRole",
586
1049
  "outputs": [
587
1050
  {
588
- "internalType": "bytes32",
1051
+ "internalType": "RoleId",
589
1052
  "name": "role",
590
- "type": "bytes32"
1053
+ "type": "bytes8"
591
1054
  }
592
1055
  ],
593
1056
  "stateMutability": "view",
@@ -614,12 +1077,12 @@
614
1077
  "type": "string"
615
1078
  }
616
1079
  ],
617
- "name": "getRoleForName",
1080
+ "name": "getRoleId",
618
1081
  "outputs": [
619
1082
  {
620
- "internalType": "bytes32",
1083
+ "internalType": "RoleId",
621
1084
  "name": "role",
622
- "type": "bytes32"
1085
+ "type": "bytes8"
623
1086
  }
624
1087
  ],
625
1088
  "stateMutability": "pure",
@@ -628,9 +1091,9 @@
628
1091
  {
629
1092
  "inputs": [
630
1093
  {
631
- "internalType": "bytes32",
1094
+ "internalType": "RoleId",
632
1095
  "name": "role",
633
- "type": "bytes32"
1096
+ "type": "bytes8"
634
1097
  }
635
1098
  ],
636
1099
  "name": "getRoleInfo",
@@ -638,9 +1101,9 @@
638
1101
  {
639
1102
  "components": [
640
1103
  {
641
- "internalType": "bytes32",
1104
+ "internalType": "RoleId",
642
1105
  "name": "id",
643
- "type": "bytes32"
1106
+ "type": "bytes8"
644
1107
  },
645
1108
  {
646
1109
  "internalType": "string",
@@ -664,9 +1127,9 @@
664
1127
  {
665
1128
  "inputs": [
666
1129
  {
667
- "internalType": "bytes32",
1130
+ "internalType": "RoleId",
668
1131
  "name": "role",
669
- "type": "bytes32"
1132
+ "type": "bytes8"
670
1133
  },
671
1134
  {
672
1135
  "internalType": "uint256",
@@ -678,7 +1141,7 @@
678
1141
  "outputs": [
679
1142
  {
680
1143
  "internalType": "address",
681
- "name": "roleMembers",
1144
+ "name": "roleMember",
682
1145
  "type": "address"
683
1146
  }
684
1147
  ],
@@ -688,9 +1151,9 @@
688
1151
  {
689
1152
  "inputs": [
690
1153
  {
691
- "internalType": "bytes32",
1154
+ "internalType": "RoleId",
692
1155
  "name": "role",
693
- "type": "bytes32"
1156
+ "type": "bytes8"
694
1157
  }
695
1158
  ],
696
1159
  "name": "getRoleMemberCount",
@@ -705,24 +1168,202 @@
705
1168
  "type": "function"
706
1169
  },
707
1170
  {
708
- "inputs": [],
709
- "name": "getType",
710
- "outputs": [
1171
+ "inputs": [
711
1172
  {
712
- "internalType": "uint256",
713
- "name": "objectType",
714
- "type": "uint256"
1173
+ "internalType": "NftId",
1174
+ "name": "productNftId",
1175
+ "type": "uint96"
715
1176
  }
716
1177
  ],
717
- "stateMutability": "view",
1178
+ "name": "getTokenHandler",
1179
+ "outputs": [
1180
+ {
1181
+ "internalType": "contract TokenHandler",
1182
+ "name": "tokenHandler",
1183
+ "type": "address"
1184
+ }
1185
+ ],
1186
+ "stateMutability": "view",
1187
+ "type": "function"
1188
+ },
1189
+ {
1190
+ "inputs": [],
1191
+ "name": "getType",
1192
+ "outputs": [
1193
+ {
1194
+ "internalType": "ObjectType",
1195
+ "name": "objectType",
1196
+ "type": "uint8"
1197
+ }
1198
+ ],
1199
+ "stateMutability": "pure",
1200
+ "type": "function"
1201
+ },
1202
+ {
1203
+ "inputs": [
1204
+ {
1205
+ "internalType": "uint256",
1206
+ "name": "a",
1207
+ "type": "uint256"
1208
+ },
1209
+ {
1210
+ "internalType": "int8",
1211
+ "name": "exp",
1212
+ "type": "int8"
1213
+ }
1214
+ ],
1215
+ "name": "getUFixed",
1216
+ "outputs": [
1217
+ {
1218
+ "internalType": "UFixed",
1219
+ "name": "",
1220
+ "type": "uint256"
1221
+ }
1222
+ ],
1223
+ "stateMutability": "pure",
1224
+ "type": "function"
1225
+ },
1226
+ {
1227
+ "inputs": [
1228
+ {
1229
+ "internalType": "uint256",
1230
+ "name": "a",
1231
+ "type": "uint256"
1232
+ }
1233
+ ],
1234
+ "name": "getUFixed",
1235
+ "outputs": [
1236
+ {
1237
+ "internalType": "UFixed",
1238
+ "name": "",
1239
+ "type": "uint256"
1240
+ }
1241
+ ],
1242
+ "stateMutability": "pure",
1243
+ "type": "function"
1244
+ },
1245
+ {
1246
+ "inputs": [],
1247
+ "name": "getVersion",
1248
+ "outputs": [
1249
+ {
1250
+ "internalType": "Version",
1251
+ "name": "",
1252
+ "type": "uint24"
1253
+ }
1254
+ ],
1255
+ "stateMutability": "pure",
1256
+ "type": "function"
1257
+ },
1258
+ {
1259
+ "inputs": [
1260
+ {
1261
+ "internalType": "uint256",
1262
+ "name": "index",
1263
+ "type": "uint256"
1264
+ }
1265
+ ],
1266
+ "name": "getVersion",
1267
+ "outputs": [
1268
+ {
1269
+ "internalType": "Version",
1270
+ "name": "version",
1271
+ "type": "uint24"
1272
+ }
1273
+ ],
1274
+ "stateMutability": "view",
1275
+ "type": "function"
1276
+ },
1277
+ {
1278
+ "inputs": [],
1279
+ "name": "getVersionCount",
1280
+ "outputs": [
1281
+ {
1282
+ "internalType": "uint256",
1283
+ "name": "numberOfVersions",
1284
+ "type": "uint256"
1285
+ }
1286
+ ],
1287
+ "stateMutability": "view",
1288
+ "type": "function"
1289
+ },
1290
+ {
1291
+ "inputs": [
1292
+ {
1293
+ "internalType": "Version",
1294
+ "name": "version",
1295
+ "type": "uint24"
1296
+ }
1297
+ ],
1298
+ "name": "getVersionInfo",
1299
+ "outputs": [
1300
+ {
1301
+ "components": [
1302
+ {
1303
+ "internalType": "Version",
1304
+ "name": "version",
1305
+ "type": "uint24"
1306
+ },
1307
+ {
1308
+ "internalType": "address",
1309
+ "name": "implementation",
1310
+ "type": "address"
1311
+ },
1312
+ {
1313
+ "internalType": "address",
1314
+ "name": "activatedBy",
1315
+ "type": "address"
1316
+ },
1317
+ {
1318
+ "internalType": "Blocknumber",
1319
+ "name": "activatedIn",
1320
+ "type": "uint32"
1321
+ },
1322
+ {
1323
+ "internalType": "Timestamp",
1324
+ "name": "activatedAt",
1325
+ "type": "uint40"
1326
+ }
1327
+ ],
1328
+ "internalType": "struct IVersionable.VersionInfo",
1329
+ "name": "versionInfo",
1330
+ "type": "tuple"
1331
+ }
1332
+ ],
1333
+ "stateMutability": "view",
1334
+ "type": "function"
1335
+ },
1336
+ {
1337
+ "inputs": [],
1338
+ "name": "getZeroFee",
1339
+ "outputs": [
1340
+ {
1341
+ "components": [
1342
+ {
1343
+ "internalType": "UFixed",
1344
+ "name": "fractionalFee",
1345
+ "type": "uint256"
1346
+ },
1347
+ {
1348
+ "internalType": "uint256",
1349
+ "name": "fixedFee",
1350
+ "type": "uint256"
1351
+ }
1352
+ ],
1353
+ "internalType": "struct Fee",
1354
+ "name": "fee",
1355
+ "type": "tuple"
1356
+ }
1357
+ ],
1358
+ "stateMutability": "pure",
718
1359
  "type": "function"
719
1360
  },
720
1361
  {
721
1362
  "inputs": [
722
1363
  {
723
- "internalType": "bytes32",
1364
+ "internalType": "RoleId",
724
1365
  "name": "role",
725
- "type": "bytes32"
1366
+ "type": "bytes8"
726
1367
  },
727
1368
  {
728
1369
  "internalType": "address",
@@ -738,9 +1379,9 @@
738
1379
  {
739
1380
  "inputs": [
740
1381
  {
741
- "internalType": "bytes32",
1382
+ "internalType": "RoleId",
742
1383
  "name": "role",
743
- "type": "bytes32"
1384
+ "type": "bytes8"
744
1385
  },
745
1386
  {
746
1387
  "internalType": "address",
@@ -752,7 +1393,7 @@
752
1393
  "outputs": [
753
1394
  {
754
1395
  "internalType": "bool",
755
- "name": "",
1396
+ "name": "hasRole",
756
1397
  "type": "bool"
757
1398
  }
758
1399
  ],
@@ -760,8 +1401,14 @@
760
1401
  "type": "function"
761
1402
  },
762
1403
  {
763
- "inputs": [],
764
- "name": "isRegisterable",
1404
+ "inputs": [
1405
+ {
1406
+ "internalType": "Version",
1407
+ "name": "version",
1408
+ "type": "uint24"
1409
+ }
1410
+ ],
1411
+ "name": "isActivated",
765
1412
  "outputs": [
766
1413
  {
767
1414
  "internalType": "bool",
@@ -769,12 +1416,28 @@
769
1416
  "type": "bool"
770
1417
  }
771
1418
  ],
772
- "stateMutability": "pure",
1419
+ "stateMutability": "view",
773
1420
  "type": "function"
774
1421
  },
775
1422
  {
776
- "inputs": [],
777
- "name": "isRegistered",
1423
+ "inputs": [
1424
+ {
1425
+ "internalType": "ObjectType",
1426
+ "name": "objectType",
1427
+ "type": "uint8"
1428
+ },
1429
+ {
1430
+ "internalType": "StateId",
1431
+ "name": "fromId",
1432
+ "type": "uint8"
1433
+ },
1434
+ {
1435
+ "internalType": "StateId",
1436
+ "name": "toId",
1437
+ "type": "uint8"
1438
+ }
1439
+ ],
1440
+ "name": "isValidTransition",
778
1441
  "outputs": [
779
1442
  {
780
1443
  "internalType": "bool",
@@ -790,9 +1453,9 @@
790
1453
  "name": "register",
791
1454
  "outputs": [
792
1455
  {
793
- "internalType": "uint256",
1456
+ "internalType": "NftId",
794
1457
  "name": "nftId",
795
- "type": "uint256"
1458
+ "type": "uint96"
796
1459
  }
797
1460
  ],
798
1461
  "stateMutability": "nonpayable",
@@ -801,16 +1464,186 @@
801
1464
  {
802
1465
  "inputs": [
803
1466
  {
804
- "internalType": "contract IComponentContract",
805
- "name": "component",
1467
+ "internalType": "NftId",
1468
+ "name": "nftId",
1469
+ "type": "uint96"
1470
+ },
1471
+ {
1472
+ "internalType": "ObjectType",
1473
+ "name": "objectType",
1474
+ "type": "uint8"
1475
+ },
1476
+ {
1477
+ "internalType": "contract IERC20Metadata",
1478
+ "name": "token",
806
1479
  "type": "address"
807
1480
  }
808
1481
  ],
809
1482
  "name": "registerComponent",
1483
+ "outputs": [],
1484
+ "stateMutability": "nonpayable",
1485
+ "type": "function"
1486
+ },
1487
+ {
1488
+ "inputs": [
1489
+ {
1490
+ "internalType": "NftId",
1491
+ "name": "poolNftId",
1492
+ "type": "uint96"
1493
+ },
1494
+ {
1495
+ "internalType": "address",
1496
+ "name": "wallet",
1497
+ "type": "address"
1498
+ },
1499
+ {
1500
+ "components": [
1501
+ {
1502
+ "internalType": "UFixed",
1503
+ "name": "fractionalFee",
1504
+ "type": "uint256"
1505
+ },
1506
+ {
1507
+ "internalType": "uint256",
1508
+ "name": "fixedFee",
1509
+ "type": "uint256"
1510
+ }
1511
+ ],
1512
+ "internalType": "struct Fee",
1513
+ "name": "stakingFee",
1514
+ "type": "tuple"
1515
+ },
1516
+ {
1517
+ "components": [
1518
+ {
1519
+ "internalType": "UFixed",
1520
+ "name": "fractionalFee",
1521
+ "type": "uint256"
1522
+ },
1523
+ {
1524
+ "internalType": "uint256",
1525
+ "name": "fixedFee",
1526
+ "type": "uint256"
1527
+ }
1528
+ ],
1529
+ "internalType": "struct Fee",
1530
+ "name": "performanceFee",
1531
+ "type": "tuple"
1532
+ }
1533
+ ],
1534
+ "name": "registerPool",
1535
+ "outputs": [],
1536
+ "stateMutability": "nonpayable",
1537
+ "type": "function"
1538
+ },
1539
+ {
1540
+ "inputs": [
1541
+ {
1542
+ "internalType": "NftId",
1543
+ "name": "poolNftId",
1544
+ "type": "uint96"
1545
+ },
1546
+ {
1547
+ "internalType": "bool",
1548
+ "name": "isVerifying",
1549
+ "type": "bool"
1550
+ },
1551
+ {
1552
+ "internalType": "UFixed",
1553
+ "name": "collateralizationLevel",
1554
+ "type": "uint256"
1555
+ }
1556
+ ],
1557
+ "name": "registerPool",
1558
+ "outputs": [],
1559
+ "stateMutability": "nonpayable",
1560
+ "type": "function"
1561
+ },
1562
+ {
1563
+ "inputs": [
1564
+ {
1565
+ "internalType": "NftId",
1566
+ "name": "productNftId",
1567
+ "type": "uint96"
1568
+ },
1569
+ {
1570
+ "internalType": "NftId",
1571
+ "name": "distributorNftId",
1572
+ "type": "uint96"
1573
+ },
1574
+ {
1575
+ "internalType": "NftId",
1576
+ "name": "poolNftId",
1577
+ "type": "uint96"
1578
+ },
1579
+ {
1580
+ "internalType": "contract IERC20Metadata",
1581
+ "name": "token",
1582
+ "type": "address"
1583
+ },
1584
+ {
1585
+ "internalType": "address",
1586
+ "name": "wallet",
1587
+ "type": "address"
1588
+ },
1589
+ {
1590
+ "components": [
1591
+ {
1592
+ "internalType": "UFixed",
1593
+ "name": "fractionalFee",
1594
+ "type": "uint256"
1595
+ },
1596
+ {
1597
+ "internalType": "uint256",
1598
+ "name": "fixedFee",
1599
+ "type": "uint256"
1600
+ }
1601
+ ],
1602
+ "internalType": "struct Fee",
1603
+ "name": "policyFee",
1604
+ "type": "tuple"
1605
+ },
1606
+ {
1607
+ "components": [
1608
+ {
1609
+ "internalType": "UFixed",
1610
+ "name": "fractionalFee",
1611
+ "type": "uint256"
1612
+ },
1613
+ {
1614
+ "internalType": "uint256",
1615
+ "name": "fixedFee",
1616
+ "type": "uint256"
1617
+ }
1618
+ ],
1619
+ "internalType": "struct Fee",
1620
+ "name": "processingFee",
1621
+ "type": "tuple"
1622
+ }
1623
+ ],
1624
+ "name": "registerProduct",
1625
+ "outputs": [],
1626
+ "stateMutability": "nonpayable",
1627
+ "type": "function"
1628
+ },
1629
+ {
1630
+ "inputs": [
1631
+ {
1632
+ "internalType": "NftId",
1633
+ "name": "bundleNftId",
1634
+ "type": "uint96"
1635
+ },
1636
+ {
1637
+ "internalType": "NftId",
1638
+ "name": "policyNftId",
1639
+ "type": "uint96"
1640
+ }
1641
+ ],
1642
+ "name": "releasePolicy",
810
1643
  "outputs": [
811
1644
  {
812
1645
  "internalType": "uint256",
813
- "name": "nftInfo",
1646
+ "name": "collateralAmount",
814
1647
  "type": "uint256"
815
1648
  }
816
1649
  ],
@@ -820,9 +1653,9 @@
820
1653
  {
821
1654
  "inputs": [
822
1655
  {
823
- "internalType": "bytes32",
1656
+ "internalType": "RoleId",
824
1657
  "name": "role",
825
- "type": "bytes32"
1658
+ "type": "bytes8"
826
1659
  },
827
1660
  {
828
1661
  "internalType": "address",
@@ -835,19 +1668,113 @@
835
1668
  "stateMutability": "nonpayable",
836
1669
  "type": "function"
837
1670
  },
1671
+ {
1672
+ "inputs": [
1673
+ {
1674
+ "internalType": "RoleId",
1675
+ "name": "role",
1676
+ "type": "bytes8"
1677
+ }
1678
+ ],
1679
+ "name": "roleExists",
1680
+ "outputs": [
1681
+ {
1682
+ "internalType": "bool",
1683
+ "name": "",
1684
+ "type": "bool"
1685
+ }
1686
+ ],
1687
+ "stateMutability": "view",
1688
+ "type": "function"
1689
+ },
838
1690
  {
839
1691
  "inputs": [
840
1692
  {
841
1693
  "components": [
842
1694
  {
843
- "internalType": "uint256",
1695
+ "internalType": "NftId",
844
1696
  "name": "nftId",
1697
+ "type": "uint96"
1698
+ },
1699
+ {
1700
+ "internalType": "NftId",
1701
+ "name": "poolNftId",
1702
+ "type": "uint96"
1703
+ },
1704
+ {
1705
+ "internalType": "StateId",
1706
+ "name": "state",
1707
+ "type": "uint8"
1708
+ },
1709
+ {
1710
+ "internalType": "bytes",
1711
+ "name": "filter",
1712
+ "type": "bytes"
1713
+ },
1714
+ {
1715
+ "internalType": "uint256",
1716
+ "name": "capitalAmount",
845
1717
  "type": "uint256"
846
1718
  },
847
1719
  {
848
- "internalType": "enum IComponent.CState",
1720
+ "internalType": "uint256",
1721
+ "name": "lockedAmount",
1722
+ "type": "uint256"
1723
+ },
1724
+ {
1725
+ "internalType": "uint256",
1726
+ "name": "balanceAmount",
1727
+ "type": "uint256"
1728
+ },
1729
+ {
1730
+ "internalType": "Timestamp",
1731
+ "name": "createdAt",
1732
+ "type": "uint40"
1733
+ },
1734
+ {
1735
+ "internalType": "Timestamp",
1736
+ "name": "expiredAt",
1737
+ "type": "uint40"
1738
+ },
1739
+ {
1740
+ "internalType": "Timestamp",
1741
+ "name": "closedAt",
1742
+ "type": "uint40"
1743
+ },
1744
+ {
1745
+ "internalType": "Blocknumber",
1746
+ "name": "updatedIn",
1747
+ "type": "uint32"
1748
+ }
1749
+ ],
1750
+ "internalType": "struct IBundle.BundleInfo",
1751
+ "name": "bundleInfo",
1752
+ "type": "tuple"
1753
+ }
1754
+ ],
1755
+ "name": "setBundleInfo",
1756
+ "outputs": [],
1757
+ "stateMutability": "nonpayable",
1758
+ "type": "function"
1759
+ },
1760
+ {
1761
+ "inputs": [
1762
+ {
1763
+ "components": [
1764
+ {
1765
+ "internalType": "NftId",
1766
+ "name": "nftId",
1767
+ "type": "uint96"
1768
+ },
1769
+ {
1770
+ "internalType": "StateId",
849
1771
  "name": "state",
850
1772
  "type": "uint8"
1773
+ },
1774
+ {
1775
+ "internalType": "contract IERC20Metadata",
1776
+ "name": "token",
1777
+ "type": "address"
851
1778
  }
852
1779
  ],
853
1780
  "internalType": "struct IComponent.ComponentInfo",
@@ -858,9 +1785,9 @@
858
1785
  "name": "setComponentInfo",
859
1786
  "outputs": [
860
1787
  {
861
- "internalType": "uint256",
862
- "name": "componentId",
863
- "type": "uint256"
1788
+ "internalType": "NftId",
1789
+ "name": "componentNftId",
1790
+ "type": "uint96"
864
1791
  }
865
1792
  ],
866
1793
  "stateMutability": "nonpayable",
@@ -869,20 +1796,223 @@
869
1796
  {
870
1797
  "inputs": [
871
1798
  {
872
- "internalType": "uint256",
1799
+ "components": [
1800
+ {
1801
+ "internalType": "NftId",
1802
+ "name": "nftId",
1803
+ "type": "uint96"
1804
+ },
1805
+ {
1806
+ "internalType": "NftId",
1807
+ "name": "productNftId",
1808
+ "type": "uint96"
1809
+ },
1810
+ {
1811
+ "internalType": "NftId",
1812
+ "name": "bundleNftId",
1813
+ "type": "uint96"
1814
+ },
1815
+ {
1816
+ "internalType": "address",
1817
+ "name": "beneficiary",
1818
+ "type": "address"
1819
+ },
1820
+ {
1821
+ "internalType": "StateId",
1822
+ "name": "state",
1823
+ "type": "uint8"
1824
+ },
1825
+ {
1826
+ "internalType": "uint256",
1827
+ "name": "sumInsuredAmount",
1828
+ "type": "uint256"
1829
+ },
1830
+ {
1831
+ "internalType": "uint256",
1832
+ "name": "premiumAmount",
1833
+ "type": "uint256"
1834
+ },
1835
+ {
1836
+ "internalType": "uint256",
1837
+ "name": "premiumPaidAmount",
1838
+ "type": "uint256"
1839
+ },
1840
+ {
1841
+ "internalType": "uint256",
1842
+ "name": "lifetime",
1843
+ "type": "uint256"
1844
+ },
1845
+ {
1846
+ "internalType": "bytes",
1847
+ "name": "data",
1848
+ "type": "bytes"
1849
+ },
1850
+ {
1851
+ "internalType": "Timestamp",
1852
+ "name": "createdAt",
1853
+ "type": "uint40"
1854
+ },
1855
+ {
1856
+ "internalType": "Timestamp",
1857
+ "name": "activatedAt",
1858
+ "type": "uint40"
1859
+ },
1860
+ {
1861
+ "internalType": "Timestamp",
1862
+ "name": "expiredAt",
1863
+ "type": "uint40"
1864
+ },
1865
+ {
1866
+ "internalType": "Timestamp",
1867
+ "name": "closedAt",
1868
+ "type": "uint40"
1869
+ },
1870
+ {
1871
+ "internalType": "Blocknumber",
1872
+ "name": "updatedIn",
1873
+ "type": "uint32"
1874
+ }
1875
+ ],
1876
+ "internalType": "struct IPolicy.PolicyInfo",
1877
+ "name": "policyInfo",
1878
+ "type": "tuple"
1879
+ }
1880
+ ],
1881
+ "name": "setPolicyInfo",
1882
+ "outputs": [],
1883
+ "stateMutability": "nonpayable",
1884
+ "type": "function"
1885
+ },
1886
+ {
1887
+ "inputs": [
1888
+ {
1889
+ "internalType": "NftId",
873
1890
  "name": "poolNftId",
874
- "type": "uint256"
1891
+ "type": "uint96"
875
1892
  },
876
1893
  {
877
- "internalType": "uint256",
878
- "name": "policyNftId",
879
- "type": "uint256"
1894
+ "components": [
1895
+ {
1896
+ "internalType": "UFixed",
1897
+ "name": "fractionalFee",
1898
+ "type": "uint256"
1899
+ },
1900
+ {
1901
+ "internalType": "uint256",
1902
+ "name": "fixedFee",
1903
+ "type": "uint256"
1904
+ }
1905
+ ],
1906
+ "internalType": "struct Fee",
1907
+ "name": "stakingFee",
1908
+ "type": "tuple"
1909
+ },
1910
+ {
1911
+ "components": [
1912
+ {
1913
+ "internalType": "UFixed",
1914
+ "name": "fractionalFee",
1915
+ "type": "uint256"
1916
+ },
1917
+ {
1918
+ "internalType": "uint256",
1919
+ "name": "fixedFee",
1920
+ "type": "uint256"
1921
+ }
1922
+ ],
1923
+ "internalType": "struct Fee",
1924
+ "name": "performanceFee",
1925
+ "type": "tuple"
880
1926
  }
881
1927
  ],
882
- "name": "underwrite",
1928
+ "name": "setPoolFees",
883
1929
  "outputs": [],
884
1930
  "stateMutability": "nonpayable",
885
1931
  "type": "function"
1932
+ },
1933
+ {
1934
+ "inputs": [
1935
+ {
1936
+ "internalType": "NftId",
1937
+ "name": "productNftId",
1938
+ "type": "uint96"
1939
+ },
1940
+ {
1941
+ "components": [
1942
+ {
1943
+ "internalType": "UFixed",
1944
+ "name": "fractionalFee",
1945
+ "type": "uint256"
1946
+ },
1947
+ {
1948
+ "internalType": "uint256",
1949
+ "name": "fixedFee",
1950
+ "type": "uint256"
1951
+ }
1952
+ ],
1953
+ "internalType": "struct Fee",
1954
+ "name": "policyFee",
1955
+ "type": "tuple"
1956
+ },
1957
+ {
1958
+ "components": [
1959
+ {
1960
+ "internalType": "UFixed",
1961
+ "name": "fractionalFee",
1962
+ "type": "uint256"
1963
+ },
1964
+ {
1965
+ "internalType": "uint256",
1966
+ "name": "fixedFee",
1967
+ "type": "uint256"
1968
+ }
1969
+ ],
1970
+ "internalType": "struct Fee",
1971
+ "name": "processingFee",
1972
+ "type": "tuple"
1973
+ }
1974
+ ],
1975
+ "name": "setProductFees",
1976
+ "outputs": [],
1977
+ "stateMutability": "nonpayable",
1978
+ "type": "function"
1979
+ },
1980
+ {
1981
+ "inputs": [
1982
+ {
1983
+ "internalType": "RoleId",
1984
+ "name": "role",
1985
+ "type": "bytes8"
1986
+ },
1987
+ {
1988
+ "internalType": "bool",
1989
+ "name": "active",
1990
+ "type": "bool"
1991
+ }
1992
+ ],
1993
+ "name": "setRoleState",
1994
+ "outputs": [],
1995
+ "stateMutability": "nonpayable",
1996
+ "type": "function"
1997
+ },
1998
+ {
1999
+ "inputs": [
2000
+ {
2001
+ "internalType": "bytes4",
2002
+ "name": "interfaceId",
2003
+ "type": "bytes4"
2004
+ }
2005
+ ],
2006
+ "name": "supportsInterface",
2007
+ "outputs": [
2008
+ {
2009
+ "internalType": "bool",
2010
+ "name": "",
2011
+ "type": "bool"
2012
+ }
2013
+ ],
2014
+ "stateMutability": "view",
2015
+ "type": "function"
886
2016
  }
887
2017
  ],
888
2018
  "bytecode": "0x",