@etherisc/gif-next 0.0.2-fbe8e04-715 → 0.0.2-fc0563c-260

Sign up to get free protection for your applications and to get access to all the features.
Files changed (783) hide show
  1. package/README.md +141 -23
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1664 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1244 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +949 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1809 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +930 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +848 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1284 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1472 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2045 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1423 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1639 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2484 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +658 -1236
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +733 -142
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +575 -2838
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1963 -739
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +766 -483
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +382 -162
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3784 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  102. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  103. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  106. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  107. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +957 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
  118. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +873 -0
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +810 -0
  124. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1242 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1438 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +866 -0
  132. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  133. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +905 -0
  136. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1449 -0
  138. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  139. package/artifacts/contracts/pool/Pool.sol/Pool.json +1025 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1833 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +866 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +790 -0
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1159 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1552 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +894 -0
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  159. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  165. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IPricingService.sol/IPricingService.json} +340 -357
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  167. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1016 -0
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  169. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IRiskService.sol/IRiskService.json} +292 -291
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1404 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +854 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +814 -0
  180. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  181. package/artifacts/contracts/product/Product.sol/Product.json +1117 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +774 -0
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  187. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  189. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +689 -113
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +351 -226
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  193. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  194. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  195. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  196. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  197. package/artifacts/contracts/registry/Registry.sol/Registry.json +1027 -149
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2147 -0
  200. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  201. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
  202. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  203. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +327 -322
  204. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  205. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +375 -119
  206. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  207. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  208. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  209. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  210. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
  212. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  214. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  215. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +352 -101
  216. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  217. package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → shared/Component.sol/Component.json} +350 -98
  218. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1535 -0
  220. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  221. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +854 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  230. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  231. package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/IComponent.sol/IComponent.json} +292 -183
  232. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  233. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1175 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +707 -0
  236. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  237. package/artifacts/contracts/{instance/IInstanceBase.sol/IInstanceBase.json → shared/IKeyValueStore.sol/IKeyValueStore.json} +96 -34
  238. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  239. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  240. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +61 -22
  242. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  243. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  244. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +162 -15
  246. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  247. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  248. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IService.sol/IService.json +161 -154
  250. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  251. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  252. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  253. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +795 -0
  254. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  255. package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +129 -20
  256. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  257. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  258. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  259. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  260. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  261. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +98 -28
  262. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  263. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  264. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  265. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +178 -55
  266. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  267. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  268. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Service.sol/Service.json +177 -163
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  271. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  272. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  274. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  276. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  277. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1646 -0
  278. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  279. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1196 -0
  280. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/Staking.sol/Staking.json +2054 -0
  282. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  283. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  284. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  286. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +842 -0
  288. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  290. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1425 -0
  292. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +782 -0
  294. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  296. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  297. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  298. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  299. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  300. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  302. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  304. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  306. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  308. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  310. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  312. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  313. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  314. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  316. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  317. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  318. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  320. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  322. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  324. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  326. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  328. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  330. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +265 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  334. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  336. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  338. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  340. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  342. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  344. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  346. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  348. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  349. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  350. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  351. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +656 -0
  352. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  353. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  354. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  356. package/contracts/accounting/AccountingService.sol +274 -0
  357. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  358. package/contracts/accounting/IAccountingService.sol +47 -0
  359. package/contracts/authorization/AccessAdmin.sol +780 -0
  360. package/contracts/authorization/AccessAdminLib.sol +396 -0
  361. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  362. package/contracts/authorization/Authorization.sol +169 -0
  363. package/contracts/authorization/IAccess.sol +67 -0
  364. package/contracts/authorization/IAccessAdmin.sol +144 -0
  365. package/contracts/authorization/IAuthorization.sol +27 -0
  366. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  367. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  368. package/contracts/distribution/BasicDistribution.sol +141 -0
  369. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  370. package/contracts/distribution/Distribution.sol +247 -0
  371. package/contracts/distribution/DistributionService.sol +448 -0
  372. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  373. package/contracts/distribution/IDistributionComponent.sol +45 -0
  374. package/contracts/distribution/IDistributionService.sol +115 -0
  375. package/contracts/examples/fire/DamageLevel.sol +59 -0
  376. package/contracts/examples/fire/FirePool.sol +86 -0
  377. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  378. package/contracts/examples/fire/FireProduct.sol +433 -0
  379. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  380. package/contracts/examples/fire/FireUSD.sol +26 -0
  381. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  382. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  383. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  384. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  385. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  386. package/contracts/examples/unpermissioned/SimpleProduct.sol +391 -0
  387. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  388. package/contracts/instance/BundleSet.sol +130 -0
  389. package/contracts/instance/IInstance.sol +136 -51
  390. package/contracts/instance/IInstanceService.sol +103 -19
  391. package/contracts/instance/Instance.sol +246 -365
  392. package/contracts/instance/InstanceAdmin.sol +383 -0
  393. package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
  394. package/contracts/instance/InstanceReader.sol +525 -208
  395. package/contracts/instance/InstanceService.sol +447 -209
  396. package/contracts/instance/InstanceServiceManager.sol +14 -32
  397. package/contracts/instance/InstanceStore.sol +298 -0
  398. package/contracts/instance/RiskSet.sol +126 -0
  399. package/contracts/instance/base/BalanceStore.sol +121 -0
  400. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  401. package/contracts/instance/base/ObjectCounter.sol +20 -0
  402. package/contracts/instance/base/ObjectLifecycle.sol +108 -0
  403. package/contracts/instance/base/ObjectSet.sol +77 -0
  404. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  405. package/contracts/instance/module/IBundle.sol +10 -9
  406. package/contracts/instance/module/IComponents.sol +62 -0
  407. package/contracts/instance/module/IDistribution.sol +25 -10
  408. package/contracts/instance/module/IPolicy.sol +81 -21
  409. package/contracts/instance/module/IRisk.sol +6 -1
  410. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  411. package/contracts/oracle/BasicOracle.sol +45 -0
  412. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  413. package/contracts/oracle/IOracle.sol +41 -0
  414. package/contracts/oracle/IOracleComponent.sol +33 -0
  415. package/contracts/oracle/IOracleService.sol +66 -0
  416. package/contracts/oracle/Oracle.sol +154 -0
  417. package/contracts/oracle/OracleService.sol +310 -0
  418. package/contracts/oracle/OracleServiceManager.sol +39 -0
  419. package/contracts/pool/BasicPool.sol +162 -0
  420. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  421. package/contracts/pool/BundleService.sol +386 -0
  422. package/contracts/pool/BundleServiceManager.sol +39 -0
  423. package/contracts/pool/IBundleService.sol +116 -0
  424. package/contracts/pool/IPoolComponent.sol +62 -0
  425. package/contracts/pool/IPoolService.sol +170 -0
  426. package/contracts/pool/Pool.sol +333 -0
  427. package/contracts/pool/PoolLib.sol +341 -0
  428. package/contracts/pool/PoolService.sol +614 -0
  429. package/contracts/pool/PoolServiceManager.sol +39 -0
  430. package/contracts/product/ApplicationService.sol +327 -0
  431. package/contracts/product/ApplicationServiceManager.sol +38 -0
  432. package/contracts/product/BasicProduct.sol +49 -0
  433. package/contracts/product/BasicProductAuthorization.sol +63 -0
  434. package/contracts/product/ClaimService.sol +641 -0
  435. package/contracts/product/ClaimServiceManager.sol +38 -0
  436. package/contracts/product/IApplicationService.sol +88 -0
  437. package/contracts/product/IClaimService.sol +135 -0
  438. package/contracts/product/IPolicyService.sol +102 -0
  439. package/contracts/product/IPricingService.sol +40 -0
  440. package/contracts/product/IProductComponent.sol +62 -0
  441. package/contracts/product/IRiskService.sol +48 -0
  442. package/contracts/product/PolicyService.sol +645 -0
  443. package/contracts/product/PolicyServiceLib.sol +139 -0
  444. package/contracts/product/PolicyServiceManager.sol +39 -0
  445. package/contracts/product/PricingService.sol +306 -0
  446. package/contracts/product/PricingServiceManager.sol +39 -0
  447. package/contracts/product/Product.sol +483 -0
  448. package/contracts/product/RiskService.sol +190 -0
  449. package/contracts/product/RiskServiceManager.sol +39 -0
  450. package/contracts/registry/ChainNft.sol +82 -35
  451. package/contracts/registry/IRegistry.sol +126 -32
  452. package/contracts/registry/IRegistryService.sol +40 -28
  453. package/contracts/registry/IRelease.sol +29 -0
  454. package/contracts/registry/ITransferInterceptor.sol +1 -1
  455. package/contracts/registry/Registry.sol +561 -273
  456. package/contracts/registry/RegistryAdmin.sol +188 -0
  457. package/contracts/registry/RegistryAuthorization.sol +284 -0
  458. package/contracts/registry/RegistryService.sol +116 -233
  459. package/contracts/registry/RegistryServiceManager.sol +26 -53
  460. package/contracts/registry/ReleaseAdmin.sol +195 -0
  461. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  462. package/contracts/registry/ReleaseRegistry.sol +520 -0
  463. package/contracts/registry/ServiceAuthorizationV3.sol +345 -0
  464. package/contracts/registry/TokenRegistry.sol +263 -60
  465. package/contracts/shared/Component.sol +210 -0
  466. package/contracts/shared/ComponentService.sol +679 -0
  467. package/contracts/shared/ComponentServiceManager.sol +38 -0
  468. package/contracts/shared/ContractLib.sol +311 -0
  469. package/contracts/shared/IComponent.sol +58 -0
  470. package/contracts/shared/IComponentService.sol +111 -0
  471. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  472. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  473. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  474. package/contracts/shared/INftOwnable.sol +17 -12
  475. package/contracts/shared/IPolicyHolder.sol +35 -0
  476. package/contracts/shared/IRegisterable.sol +24 -5
  477. package/contracts/shared/IRegistryLinked.sol +11 -0
  478. package/contracts/shared/IService.sol +13 -5
  479. package/contracts/shared/InitializableERC165.sol +35 -0
  480. package/contracts/shared/InstanceLinkedComponent.sol +194 -0
  481. package/contracts/shared/KeyValueStore.sol +131 -0
  482. package/contracts/shared/Lifecycle.sol +88 -0
  483. package/contracts/shared/NftIdSet.sol +65 -0
  484. package/contracts/shared/NftOwnable.sol +77 -82
  485. package/contracts/shared/PolicyHolder.sol +63 -0
  486. package/contracts/shared/Registerable.sol +54 -38
  487. package/contracts/shared/RegistryLinked.sol +38 -0
  488. package/contracts/shared/Service.sol +45 -33
  489. package/contracts/shared/TokenHandler.sol +327 -12
  490. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  491. package/contracts/staking/IStaking.sol +195 -0
  492. package/contracts/staking/IStakingService.sol +170 -0
  493. package/contracts/staking/Staking.sol +605 -0
  494. package/contracts/staking/StakingLib.sol +281 -0
  495. package/contracts/staking/StakingLifecycle.sol +23 -0
  496. package/contracts/staking/StakingManager.sol +52 -0
  497. package/contracts/staking/StakingReader.sol +199 -0
  498. package/contracts/staking/StakingService.sol +468 -0
  499. package/contracts/staking/StakingServiceManager.sol +45 -0
  500. package/contracts/staking/StakingStore.sol +606 -0
  501. package/contracts/staking/TargetManagerLib.sol +211 -0
  502. package/contracts/{types → type}/AddressSet.sol +1 -1
  503. package/contracts/type/Amount.sol +150 -0
  504. package/contracts/{types → type}/Blocknumber.sol +27 -3
  505. package/contracts/type/ClaimId.sol +80 -0
  506. package/contracts/{types → type}/DistributorType.sol +2 -2
  507. package/contracts/type/Fee.sol +66 -0
  508. package/contracts/{types → type}/Key32.sol +2 -2
  509. package/contracts/type/Key32Set.sol +62 -0
  510. package/contracts/{types → type}/NftId.sol +28 -15
  511. package/contracts/{types → type}/NftIdSet.sol +2 -2
  512. package/contracts/type/ObjectType.sol +307 -0
  513. package/contracts/type/PayoutId.sol +82 -0
  514. package/contracts/{types → type}/Referral.sol +6 -1
  515. package/contracts/type/RequestId.sol +75 -0
  516. package/contracts/type/RiskId.sol +75 -0
  517. package/contracts/type/RoleId.sol +180 -0
  518. package/contracts/type/Seconds.sol +105 -0
  519. package/contracts/type/Selector.sol +107 -0
  520. package/contracts/{types → type}/StateId.sol +48 -4
  521. package/contracts/type/String.sol +65 -0
  522. package/contracts/{types → type}/Timestamp.sol +33 -19
  523. package/contracts/type/UFixed.sol +262 -0
  524. package/contracts/{types → type}/Version.sol +59 -7
  525. package/contracts/{shared → upgradeability}/IVersionable.sol +7 -47
  526. package/contracts/upgradeability/ProxyManager.sol +246 -0
  527. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +8 -4
  528. package/contracts/upgradeability/Versionable.sol +62 -0
  529. package/package.json +12 -8
  530. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  531. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  532. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -744
  533. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  534. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -368
  535. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  536. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  537. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  538. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
  539. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  540. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  541. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  542. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -939
  543. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  544. package/artifacts/contracts/components/Product.sol/Product.json +0 -855
  545. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  546. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  547. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  548. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  549. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  550. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  551. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  552. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  553. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  554. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  555. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  556. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  557. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  558. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  559. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  560. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  561. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  562. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  563. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  564. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  565. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  566. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  568. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  570. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  572. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  574. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  576. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  577. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  578. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  579. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  580. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  581. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  582. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  583. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  584. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  585. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  586. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  587. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -788
  588. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  589. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  590. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  591. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  592. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  593. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -940
  594. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  595. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
  596. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  597. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -285
  598. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  599. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  600. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  601. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  602. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  603. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  604. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  605. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  606. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  607. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  608. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -211
  609. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  610. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  611. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  612. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -923
  613. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  614. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -440
  615. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  616. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
  617. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  618. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -684
  619. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  620. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -428
  621. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  622. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  623. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -466
  624. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  625. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
  626. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  627. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  628. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -499
  629. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  630. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +0 -536
  631. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  632. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -984
  633. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  634. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -464
  635. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  636. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -718
  637. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  638. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -428
  639. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  640. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -768
  641. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  642. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -420
  643. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  644. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  645. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  646. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  647. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  648. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  649. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  650. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  651. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  652. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  653. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  654. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  655. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  656. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  657. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  658. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  659. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  660. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  661. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  662. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  663. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  664. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  665. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  666. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  667. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  668. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  669. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  670. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  671. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  672. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  673. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  674. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  675. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  677. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  679. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  680. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  681. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  682. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  683. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  684. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  685. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  686. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  687. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  688. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  689. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  690. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  691. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  692. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  693. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  694. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  695. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  696. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  697. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  698. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  699. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  700. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  701. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  702. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  703. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  704. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  705. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  706. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  707. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  708. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  709. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  710. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  711. package/contracts/components/BaseComponent.sol +0 -132
  712. package/contracts/components/Distribution.sol +0 -163
  713. package/contracts/components/IBaseComponent.sol +0 -31
  714. package/contracts/components/IDistributionComponent.sol +0 -44
  715. package/contracts/components/IPoolComponent.sol +0 -66
  716. package/contracts/components/IProductComponent.sol +0 -35
  717. package/contracts/components/Pool.sol +0 -271
  718. package/contracts/components/Product.sol +0 -292
  719. package/contracts/experiment/cloning/Cloner.sol +0 -47
  720. package/contracts/experiment/errors/Require.sol +0 -38
  721. package/contracts/experiment/errors/Revert.sol +0 -44
  722. package/contracts/experiment/inheritance/A.sol +0 -53
  723. package/contracts/experiment/inheritance/B.sol +0 -28
  724. package/contracts/experiment/inheritance/C.sol +0 -34
  725. package/contracts/experiment/inheritance/IA.sol +0 -13
  726. package/contracts/experiment/inheritance/IB.sol +0 -10
  727. package/contracts/experiment/inheritance/IC.sol +0 -12
  728. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  729. package/contracts/experiment/statemachine/ISM.sol +0 -25
  730. package/contracts/experiment/statemachine/SM.sol +0 -57
  731. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  732. package/contracts/experiment/types/TypeA.sol +0 -47
  733. package/contracts/experiment/types/TypeB.sol +0 -29
  734. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -23
  735. package/contracts/instance/BundleManager.sol +0 -129
  736. package/contracts/instance/IAccessManagerSimple.sol +0 -391
  737. package/contracts/instance/IInstanceBase.sol +0 -26
  738. package/contracts/instance/InstanceAccessManager.sol +0 -288
  739. package/contracts/instance/InstanceBase.sol +0 -41
  740. package/contracts/instance/ObjectManager.sol +0 -101
  741. package/contracts/instance/base/ComponentServiceBase.sol +0 -72
  742. package/contracts/instance/base/IInstanceBase.sol +0 -23
  743. package/contracts/instance/base/KeyValueStore.sol +0 -172
  744. package/contracts/instance/base/Lifecycle.sol +0 -100
  745. package/contracts/instance/module/IAccess.sol +0 -38
  746. package/contracts/instance/module/ISetup.sol +0 -46
  747. package/contracts/instance/module/ITreasury.sol +0 -23
  748. package/contracts/instance/service/BundleService.sol +0 -260
  749. package/contracts/instance/service/BundleServiceManager.sol +0 -54
  750. package/contracts/instance/service/ComponentOwnerService.sol +0 -317
  751. package/contracts/instance/service/DistributionService.sol +0 -118
  752. package/contracts/instance/service/DistributionServiceManager.sol +0 -54
  753. package/contracts/instance/service/IBundleService.sol +0 -45
  754. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
  755. package/contracts/instance/service/IDistributionService.sol +0 -12
  756. package/contracts/instance/service/IPolicyService.sol +0 -87
  757. package/contracts/instance/service/IPoolService.sol +0 -20
  758. package/contracts/instance/service/IProductService.sol +0 -40
  759. package/contracts/instance/service/PolicyService.sol +0 -508
  760. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  761. package/contracts/instance/service/PoolService.sol +0 -124
  762. package/contracts/instance/service/PoolServiceManager.sol +0 -54
  763. package/contracts/instance/service/ProductService.sol +0 -173
  764. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  765. package/contracts/shared/ContractDeployerLib.sol +0 -72
  766. package/contracts/shared/ERC165.sol +0 -25
  767. package/contracts/shared/ProxyManager.sol +0 -94
  768. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  769. package/contracts/shared/Versionable.sol +0 -147
  770. package/contracts/test/TestFee.sol +0 -25
  771. package/contracts/test/TestRegisterable.sol +0 -18
  772. package/contracts/test/TestRoleId.sol +0 -14
  773. package/contracts/test/TestService.sol +0 -24
  774. package/contracts/test/TestToken.sol +0 -26
  775. package/contracts/test/TestVersion.sol +0 -44
  776. package/contracts/test/TestVersionable.sol +0 -17
  777. package/contracts/types/ChainId.sol +0 -38
  778. package/contracts/types/Fee.sol +0 -56
  779. package/contracts/types/NumberId.sol +0 -52
  780. package/contracts/types/ObjectType.sol +0 -152
  781. package/contracts/types/RiskId.sol +0 -43
  782. package/contracts/types/RoleId.sol +0 -92
  783. package/contracts/types/UFixed.sol +0 -325
@@ -6,22 +6,230 @@
6
6
  {
7
7
  "inputs": [
8
8
  {
9
- "internalType": "ObjectType",
10
- "name": "objectType",
11
- "type": "uint8"
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
12
23
  },
13
24
  {
14
- "internalType": "StateId",
15
- "name": "fromStateId",
16
- "type": "uint8"
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "instanceBundleSet",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorInstanceBundleSetAlreadySet",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "instanceAuthority",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorInstanceBundleSetAuthorityMismatch",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "address",
81
+ "name": "instance",
82
+ "type": "address"
83
+ }
84
+ ],
85
+ "name": "ErrorInstanceBundleSetInstanceMismatch",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "address",
92
+ "name": "instanceAdmin",
93
+ "type": "address"
94
+ }
95
+ ],
96
+ "name": "ErrorInstanceInstanceAdminAlreadySet",
97
+ "type": "error"
98
+ },
99
+ {
100
+ "inputs": [
101
+ {
102
+ "internalType": "address",
103
+ "name": "instanceAuthority",
104
+ "type": "address"
105
+ }
106
+ ],
107
+ "name": "ErrorInstanceInstanceAdminAuthorityMismatch",
108
+ "type": "error"
109
+ },
110
+ {
111
+ "inputs": [],
112
+ "name": "ErrorInstanceInstanceAdminZero",
113
+ "type": "error"
114
+ },
115
+ {
116
+ "inputs": [
117
+ {
118
+ "internalType": "address",
119
+ "name": "instanceAuthority",
120
+ "type": "address"
121
+ }
122
+ ],
123
+ "name": "ErrorInstanceInstanceReaderInstanceMismatch",
124
+ "type": "error"
125
+ },
126
+ {
127
+ "inputs": [
128
+ {
129
+ "internalType": "address",
130
+ "name": "instanceStore",
131
+ "type": "address"
132
+ }
133
+ ],
134
+ "name": "ErrorInstanceInstanceStoreAlreadySet",
135
+ "type": "error"
136
+ },
137
+ {
138
+ "inputs": [
139
+ {
140
+ "internalType": "address",
141
+ "name": "instanceAuthority",
142
+ "type": "address"
143
+ }
144
+ ],
145
+ "name": "ErrorInstanceInstanceStoreAuthorityMismatch",
146
+ "type": "error"
147
+ },
148
+ {
149
+ "inputs": [
150
+ {
151
+ "internalType": "RoleId",
152
+ "name": "roleId",
153
+ "type": "uint64"
154
+ }
155
+ ],
156
+ "name": "ErrorInstanceNotCustomRole",
157
+ "type": "error"
158
+ },
159
+ {
160
+ "inputs": [
161
+ {
162
+ "internalType": "RoleId",
163
+ "name": "roleId",
164
+ "type": "uint64"
17
165
  },
18
166
  {
19
- "internalType": "StateId",
20
- "name": "toStateId",
21
- "type": "uint8"
167
+ "internalType": "address",
168
+ "name": "account",
169
+ "type": "address"
170
+ }
171
+ ],
172
+ "name": "ErrorInstanceNotRoleAdmin",
173
+ "type": "error"
174
+ },
175
+ {
176
+ "inputs": [
177
+ {
178
+ "internalType": "address",
179
+ "name": "instanceRiskSet",
180
+ "type": "address"
22
181
  }
23
182
  ],
24
- "name": "ErrorInvalidStateTransition",
183
+ "name": "ErrorInstanceRiskSetAlreadySet",
184
+ "type": "error"
185
+ },
186
+ {
187
+ "inputs": [
188
+ {
189
+ "internalType": "address",
190
+ "name": "instanceAuthority",
191
+ "type": "address"
192
+ }
193
+ ],
194
+ "name": "ErrorInstanceRiskSetAuthorityMismatch",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "address",
201
+ "name": "instance",
202
+ "type": "address"
203
+ }
204
+ ],
205
+ "name": "ErrorInstanceRiskSetInstanceMismatch",
206
+ "type": "error"
207
+ },
208
+ {
209
+ "inputs": [
210
+ {
211
+ "internalType": "NftId",
212
+ "name": "nftId",
213
+ "type": "uint96"
214
+ }
215
+ ],
216
+ "name": "ErrorNftOwnableAlreadyLinked",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "address",
223
+ "name": "contractAddress",
224
+ "type": "address"
225
+ }
226
+ ],
227
+ "name": "ErrorNftOwnableContractNotRegistered",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [],
232
+ "name": "ErrorNftOwnableInitialOwnerZero",
25
233
  "type": "error"
26
234
  },
27
235
  {
@@ -33,48 +241,76 @@
33
241
  },
34
242
  {
35
243
  "internalType": "ObjectType",
36
- "name": "objectType",
244
+ "name": "expectedObjectType",
37
245
  "type": "uint8"
38
246
  }
39
247
  ],
40
- "name": "ErrorNoLifecycle",
248
+ "name": "ErrorNftOwnableInvalidType",
41
249
  "type": "error"
42
250
  },
43
251
  {
44
- "anonymous": false,
45
252
  "inputs": [
46
253
  {
47
- "indexed": false,
48
- "internalType": "ObjectType",
49
- "name": "objectType",
50
- "type": "uint8"
51
- },
254
+ "internalType": "address",
255
+ "name": "account",
256
+ "type": "address"
257
+ }
258
+ ],
259
+ "name": "ErrorNftOwnableNotOwner",
260
+ "type": "error"
261
+ },
262
+ {
263
+ "inputs": [
264
+ {
265
+ "internalType": "address",
266
+ "name": "registryAddress",
267
+ "type": "address"
268
+ }
269
+ ],
270
+ "name": "ErrorNotRegistry",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [],
275
+ "name": "ErrorRegisterableNotActive",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "anonymous": false,
280
+ "inputs": [
52
281
  {
53
282
  "indexed": false,
54
- "internalType": "KeyId",
55
- "name": "keyId",
56
- "type": "bytes31"
57
- },
283
+ "internalType": "address",
284
+ "name": "authority",
285
+ "type": "address"
286
+ }
287
+ ],
288
+ "name": "AuthorityUpdated",
289
+ "type": "event"
290
+ },
291
+ {
292
+ "anonymous": false,
293
+ "inputs": [
58
294
  {
59
295
  "indexed": false,
60
- "internalType": "StateId",
61
- "name": "state",
62
- "type": "uint8"
296
+ "internalType": "RoleId",
297
+ "name": "roleId",
298
+ "type": "uint64"
63
299
  },
64
300
  {
65
301
  "indexed": false,
66
- "internalType": "address",
67
- "name": "createdBy",
68
- "type": "address"
302
+ "internalType": "bool",
303
+ "name": "active",
304
+ "type": "bool"
69
305
  },
70
306
  {
71
307
  "indexed": false,
72
308
  "internalType": "address",
73
- "name": "txOrigin",
309
+ "name": "caller",
74
310
  "type": "address"
75
311
  }
76
312
  ],
77
- "name": "LogInfoCreated",
313
+ "name": "LogInstanceCustomRoleActiveSet",
78
314
  "type": "event"
79
315
  },
80
316
  {
@@ -82,42 +318,55 @@
82
318
  "inputs": [
83
319
  {
84
320
  "indexed": false,
85
- "internalType": "ObjectType",
86
- "name": "objectType",
87
- "type": "uint8"
321
+ "internalType": "RoleId",
322
+ "name": "roleId",
323
+ "type": "uint64"
88
324
  },
89
325
  {
90
326
  "indexed": false,
91
- "internalType": "KeyId",
92
- "name": "keyId",
93
- "type": "bytes31"
327
+ "internalType": "string",
328
+ "name": "roleName",
329
+ "type": "string"
94
330
  },
95
331
  {
96
332
  "indexed": false,
97
- "internalType": "StateId",
98
- "name": "state",
99
- "type": "uint8"
333
+ "internalType": "RoleId",
334
+ "name": "adminRoleId",
335
+ "type": "uint64"
100
336
  },
101
337
  {
102
338
  "indexed": false,
103
- "internalType": "address",
104
- "name": "updatedBy",
105
- "type": "address"
339
+ "internalType": "uint32",
340
+ "name": "maxMemberCount",
341
+ "type": "uint32"
342
+ }
343
+ ],
344
+ "name": "LogInstanceCustomRoleCreated",
345
+ "type": "event"
346
+ },
347
+ {
348
+ "anonymous": false,
349
+ "inputs": [
350
+ {
351
+ "indexed": false,
352
+ "internalType": "RoleId",
353
+ "name": "roleId",
354
+ "type": "uint64"
106
355
  },
107
356
  {
108
357
  "indexed": false,
109
358
  "internalType": "address",
110
- "name": "txOrigin",
359
+ "name": "account",
111
360
  "type": "address"
112
361
  },
113
362
  {
114
363
  "indexed": false,
115
- "internalType": "Blocknumber",
116
- "name": "lastUpdatedIn",
117
- "type": "uint32"
364
+ "internalType": "address",
365
+ "name": "caller",
366
+ "type": "address"
118
367
  }
119
368
  ],
120
- "name": "LogInfoUpdated",
369
+ "name": "LogInstanceCustomRoleGranted",
121
370
  "type": "event"
122
371
  },
123
372
  {
@@ -125,533 +374,163 @@
125
374
  "inputs": [
126
375
  {
127
376
  "indexed": false,
128
- "internalType": "ObjectType",
129
- "name": "objectType",
130
- "type": "uint8"
131
- },
132
- {
133
- "indexed": false,
134
- "internalType": "KeyId",
135
- "name": "keyId",
136
- "type": "bytes31"
377
+ "internalType": "RoleId",
378
+ "name": "roleId",
379
+ "type": "uint64"
137
380
  },
138
381
  {
139
382
  "indexed": false,
140
- "internalType": "StateId",
141
- "name": "stateOld",
142
- "type": "uint8"
383
+ "internalType": "address",
384
+ "name": "account",
385
+ "type": "address"
143
386
  },
144
387
  {
145
388
  "indexed": false,
146
- "internalType": "StateId",
147
- "name": "stateNew",
148
- "type": "uint8"
149
- },
389
+ "internalType": "address",
390
+ "name": "caller",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "name": "LogInstanceCustomRoleRevoked",
395
+ "type": "event"
396
+ },
397
+ {
398
+ "anonymous": false,
399
+ "inputs": [
150
400
  {
151
401
  "indexed": false,
152
402
  "internalType": "address",
153
- "name": "updatedBy",
403
+ "name": "target",
154
404
  "type": "address"
155
405
  },
156
406
  {
157
407
  "indexed": false,
158
- "internalType": "address",
159
- "name": "txOrigin",
160
- "type": "address"
408
+ "internalType": "RoleId",
409
+ "name": "targetRoleId",
410
+ "type": "uint64"
161
411
  },
162
412
  {
163
413
  "indexed": false,
164
- "internalType": "Blocknumber",
165
- "name": "lastUpdatedIn",
166
- "type": "uint32"
414
+ "internalType": "string",
415
+ "name": "name",
416
+ "type": "string"
167
417
  }
168
418
  ],
169
- "name": "LogStateUpdated",
419
+ "name": "LogInstanceCustomTargetCreated",
170
420
  "type": "event"
171
421
  },
172
422
  {
423
+ "anonymous": false,
173
424
  "inputs": [
174
425
  {
175
- "internalType": "NftId",
176
- "name": "bundleNftId",
177
- "type": "uint96"
426
+ "indexed": false,
427
+ "internalType": "address",
428
+ "name": "target",
429
+ "type": "address"
178
430
  },
179
431
  {
180
- "components": [
181
- {
182
- "internalType": "NftId",
183
- "name": "poolNftId",
184
- "type": "uint96"
185
- },
186
- {
187
- "components": [
188
- {
189
- "internalType": "UFixed",
190
- "name": "fractionalFee",
191
- "type": "uint256"
192
- },
193
- {
194
- "internalType": "uint256",
195
- "name": "fixedFee",
196
- "type": "uint256"
197
- }
198
- ],
199
- "internalType": "struct Fee",
200
- "name": "fee",
201
- "type": "tuple"
202
- },
203
- {
204
- "internalType": "bytes",
205
- "name": "filter",
206
- "type": "bytes"
207
- },
208
- {
209
- "internalType": "uint256",
210
- "name": "capitalAmount",
211
- "type": "uint256"
212
- },
213
- {
214
- "internalType": "uint256",
215
- "name": "lockedAmount",
216
- "type": "uint256"
217
- },
218
- {
219
- "internalType": "uint256",
220
- "name": "balanceAmount",
221
- "type": "uint256"
222
- },
223
- {
224
- "internalType": "uint256",
225
- "name": "lifetime",
226
- "type": "uint256"
227
- },
228
- {
229
- "internalType": "Timestamp",
230
- "name": "expiredAt",
231
- "type": "uint40"
232
- },
233
- {
234
- "internalType": "Timestamp",
235
- "name": "closedAt",
236
- "type": "uint40"
237
- }
238
- ],
239
- "internalType": "struct IBundle.BundleInfo",
240
- "name": "bundle",
241
- "type": "tuple"
432
+ "indexed": false,
433
+ "internalType": "bytes4[]",
434
+ "name": "selectors",
435
+ "type": "bytes4[]"
436
+ },
437
+ {
438
+ "indexed": false,
439
+ "internalType": "RoleId",
440
+ "name": "roleId",
441
+ "type": "uint64"
242
442
  }
243
443
  ],
244
- "name": "createBundle",
245
- "outputs": [],
246
- "stateMutability": "nonpayable",
247
- "type": "function"
444
+ "name": "LogInstanceCustomTargetFunctionRoleSet",
445
+ "type": "event"
248
446
  },
249
447
  {
448
+ "anonymous": false,
250
449
  "inputs": [
251
450
  {
252
- "internalType": "NftId",
253
- "name": "distributionNftId",
254
- "type": "uint96"
451
+ "indexed": false,
452
+ "internalType": "address",
453
+ "name": "target",
454
+ "type": "address"
255
455
  },
256
456
  {
257
- "components": [
258
- {
259
- "internalType": "NftId",
260
- "name": "productNftId",
261
- "type": "uint96"
262
- },
263
- {
264
- "internalType": "contract TokenHandler",
265
- "name": "tokenHandler",
266
- "type": "address"
267
- },
268
- {
269
- "components": [
270
- {
271
- "internalType": "UFixed",
272
- "name": "fractionalFee",
273
- "type": "uint256"
274
- },
275
- {
276
- "internalType": "uint256",
277
- "name": "fixedFee",
278
- "type": "uint256"
279
- }
280
- ],
281
- "internalType": "struct Fee",
282
- "name": "distributionFee",
283
- "type": "tuple"
284
- },
285
- {
286
- "internalType": "bool",
287
- "name": "isIntercepting",
288
- "type": "bool"
289
- },
290
- {
291
- "internalType": "address",
292
- "name": "wallet",
293
- "type": "address"
294
- }
295
- ],
296
- "internalType": "struct ISetup.DistributionSetupInfo",
297
- "name": "setup",
298
- "type": "tuple"
457
+ "indexed": false,
458
+ "internalType": "bool",
459
+ "name": "locked",
460
+ "type": "bool"
299
461
  }
300
462
  ],
301
- "name": "createDistributionSetup",
302
- "outputs": [],
303
- "stateMutability": "nonpayable",
304
- "type": "function"
463
+ "name": "LogInstanceTargetLocked",
464
+ "type": "event"
305
465
  },
306
466
  {
467
+ "anonymous": false,
307
468
  "inputs": [
308
469
  {
470
+ "indexed": false,
309
471
  "internalType": "NftId",
310
- "name": "policyNftId",
472
+ "name": "nftId",
311
473
  "type": "uint96"
312
474
  },
313
475
  {
314
- "components": [
315
- {
316
- "internalType": "NftId",
317
- "name": "productNftId",
318
- "type": "uint96"
319
- },
320
- {
321
- "internalType": "NftId",
322
- "name": "bundleNftId",
323
- "type": "uint96"
324
- },
325
- {
326
- "internalType": "ReferralId",
327
- "name": "referralId",
328
- "type": "bytes8"
329
- },
330
- {
331
- "internalType": "RiskId",
332
- "name": "riskId",
333
- "type": "bytes8"
334
- },
335
- {
336
- "internalType": "uint256",
337
- "name": "sumInsuredAmount",
338
- "type": "uint256"
339
- },
340
- {
341
- "internalType": "uint256",
342
- "name": "premiumAmount",
343
- "type": "uint256"
344
- },
345
- {
346
- "internalType": "uint256",
347
- "name": "premiumPaidAmount",
348
- "type": "uint256"
349
- },
350
- {
351
- "internalType": "uint256",
352
- "name": "lifetime",
353
- "type": "uint256"
354
- },
355
- {
356
- "internalType": "bytes",
357
- "name": "applicationData",
358
- "type": "bytes"
359
- },
360
- {
361
- "internalType": "bytes",
362
- "name": "policyData",
363
- "type": "bytes"
364
- },
365
- {
366
- "internalType": "uint16",
367
- "name": "claimsCount",
368
- "type": "uint16"
369
- },
370
- {
371
- "internalType": "uint16",
372
- "name": "openClaimsCount",
373
- "type": "uint16"
374
- },
375
- {
376
- "internalType": "uint256",
377
- "name": "payoutAmount",
378
- "type": "uint256"
379
- },
380
- {
381
- "internalType": "Timestamp",
382
- "name": "activatedAt",
383
- "type": "uint40"
384
- },
385
- {
386
- "internalType": "Timestamp",
387
- "name": "expiredAt",
388
- "type": "uint40"
389
- },
390
- {
391
- "internalType": "Timestamp",
392
- "name": "closedAt",
393
- "type": "uint40"
394
- }
395
- ],
396
- "internalType": "struct IPolicy.PolicyInfo",
397
- "name": "policy",
398
- "type": "tuple"
476
+ "indexed": false,
477
+ "internalType": "address",
478
+ "name": "owner",
479
+ "type": "address"
399
480
  }
400
481
  ],
401
- "name": "createPolicy",
402
- "outputs": [],
403
- "stateMutability": "nonpayable",
404
- "type": "function"
482
+ "name": "LogNftOwnableNftLinkedToAddress",
483
+ "type": "event"
405
484
  },
406
485
  {
407
- "inputs": [
408
- {
409
- "internalType": "NftId",
410
- "name": "poolNftId",
411
- "type": "uint96"
412
- },
486
+ "inputs": [],
487
+ "name": "authority",
488
+ "outputs": [
413
489
  {
414
- "components": [
415
- {
416
- "internalType": "NftId",
417
- "name": "productNftId",
418
- "type": "uint96"
419
- },
420
- {
421
- "internalType": "contract TokenHandler",
422
- "name": "tokenHandler",
423
- "type": "address"
424
- },
425
- {
426
- "internalType": "UFixed",
427
- "name": "collateralizationLevel",
428
- "type": "uint256"
429
- },
430
- {
431
- "components": [
432
- {
433
- "internalType": "UFixed",
434
- "name": "fractionalFee",
435
- "type": "uint256"
436
- },
437
- {
438
- "internalType": "uint256",
439
- "name": "fixedFee",
440
- "type": "uint256"
441
- }
442
- ],
443
- "internalType": "struct Fee",
444
- "name": "poolFee",
445
- "type": "tuple"
446
- },
447
- {
448
- "components": [
449
- {
450
- "internalType": "UFixed",
451
- "name": "fractionalFee",
452
- "type": "uint256"
453
- },
454
- {
455
- "internalType": "uint256",
456
- "name": "fixedFee",
457
- "type": "uint256"
458
- }
459
- ],
460
- "internalType": "struct Fee",
461
- "name": "stakingFee",
462
- "type": "tuple"
463
- },
464
- {
465
- "components": [
466
- {
467
- "internalType": "UFixed",
468
- "name": "fractionalFee",
469
- "type": "uint256"
470
- },
471
- {
472
- "internalType": "uint256",
473
- "name": "fixedFee",
474
- "type": "uint256"
475
- }
476
- ],
477
- "internalType": "struct Fee",
478
- "name": "performanceFee",
479
- "type": "tuple"
480
- },
481
- {
482
- "internalType": "bool",
483
- "name": "isIntercepting",
484
- "type": "bool"
485
- },
486
- {
487
- "internalType": "bool",
488
- "name": "isConfirmingApplication",
489
- "type": "bool"
490
- },
491
- {
492
- "internalType": "address",
493
- "name": "wallet",
494
- "type": "address"
495
- }
496
- ],
497
- "internalType": "struct ISetup.PoolSetupInfo",
498
- "name": "setup",
499
- "type": "tuple"
490
+ "internalType": "address",
491
+ "name": "",
492
+ "type": "address"
500
493
  }
501
494
  ],
502
- "name": "createPoolSetup",
503
- "outputs": [],
504
- "stateMutability": "nonpayable",
495
+ "stateMutability": "view",
505
496
  "type": "function"
506
497
  },
507
498
  {
508
499
  "inputs": [
509
500
  {
510
- "internalType": "NftId",
511
- "name": "productNftId",
512
- "type": "uint96"
501
+ "internalType": "address",
502
+ "name": "target",
503
+ "type": "address"
504
+ },
505
+ {
506
+ "internalType": "RoleId",
507
+ "name": "roleId",
508
+ "type": "uint64"
513
509
  },
514
510
  {
515
511
  "components": [
516
512
  {
517
- "internalType": "contract IERC20Metadata",
518
- "name": "token",
519
- "type": "address"
520
- },
521
- {
522
- "internalType": "contract TokenHandler",
523
- "name": "tokenHandler",
524
- "type": "address"
525
- },
526
- {
527
- "internalType": "NftId",
528
- "name": "distributionNftId",
529
- "type": "uint96"
530
- },
531
- {
532
- "internalType": "NftId",
533
- "name": "poolNftId",
534
- "type": "uint96"
535
- },
536
- {
537
- "components": [
538
- {
539
- "internalType": "UFixed",
540
- "name": "fractionalFee",
541
- "type": "uint256"
542
- },
543
- {
544
- "internalType": "uint256",
545
- "name": "fixedFee",
546
- "type": "uint256"
547
- }
548
- ],
549
- "internalType": "struct Fee",
550
- "name": "distributionFee",
551
- "type": "tuple"
552
- },
553
- {
554
- "components": [
555
- {
556
- "internalType": "UFixed",
557
- "name": "fractionalFee",
558
- "type": "uint256"
559
- },
560
- {
561
- "internalType": "uint256",
562
- "name": "fixedFee",
563
- "type": "uint256"
564
- }
565
- ],
566
- "internalType": "struct Fee",
567
- "name": "productFee",
568
- "type": "tuple"
569
- },
570
- {
571
- "components": [
572
- {
573
- "internalType": "UFixed",
574
- "name": "fractionalFee",
575
- "type": "uint256"
576
- },
577
- {
578
- "internalType": "uint256",
579
- "name": "fixedFee",
580
- "type": "uint256"
581
- }
582
- ],
583
- "internalType": "struct Fee",
584
- "name": "processingFee",
585
- "type": "tuple"
513
+ "internalType": "Str",
514
+ "name": "name",
515
+ "type": "bytes32"
586
516
  },
587
517
  {
588
- "components": [
589
- {
590
- "internalType": "UFixed",
591
- "name": "fractionalFee",
592
- "type": "uint256"
593
- },
594
- {
595
- "internalType": "uint256",
596
- "name": "fixedFee",
597
- "type": "uint256"
598
- }
599
- ],
600
- "internalType": "struct Fee",
601
- "name": "poolFee",
602
- "type": "tuple"
603
- },
604
- {
605
- "components": [
606
- {
607
- "internalType": "UFixed",
608
- "name": "fractionalFee",
609
- "type": "uint256"
610
- },
611
- {
612
- "internalType": "uint256",
613
- "name": "fixedFee",
614
- "type": "uint256"
615
- }
616
- ],
617
- "internalType": "struct Fee",
618
- "name": "stakingFee",
619
- "type": "tuple"
620
- },
621
- {
622
- "components": [
623
- {
624
- "internalType": "UFixed",
625
- "name": "fractionalFee",
626
- "type": "uint256"
627
- },
628
- {
629
- "internalType": "uint256",
630
- "name": "fixedFee",
631
- "type": "uint256"
632
- }
633
- ],
634
- "internalType": "struct Fee",
635
- "name": "performanceFee",
636
- "type": "tuple"
637
- },
638
- {
639
- "internalType": "bool",
640
- "name": "isIntercepting",
641
- "type": "bool"
518
+ "internalType": "Selector",
519
+ "name": "selector",
520
+ "type": "bytes4"
642
521
  },
643
522
  {
644
- "internalType": "address",
645
- "name": "wallet",
646
- "type": "address"
523
+ "internalType": "Timestamp",
524
+ "name": "createdAt",
525
+ "type": "uint40"
647
526
  }
648
527
  ],
649
- "internalType": "struct ISetup.ProductSetupInfo",
650
- "name": "setup",
651
- "type": "tuple"
528
+ "internalType": "struct IAccess.FunctionInfo[]",
529
+ "name": "functions",
530
+ "type": "tuple[]"
652
531
  }
653
532
  ],
654
- "name": "createProductSetup",
533
+ "name": "authorizeFunctions",
655
534
  "outputs": [],
656
535
  "stateMutability": "nonpayable",
657
536
  "type": "function"
@@ -659,95 +538,104 @@
659
538
  {
660
539
  "inputs": [
661
540
  {
662
- "internalType": "RiskId",
663
- "name": "riskId",
664
- "type": "bytes8"
541
+ "internalType": "string",
542
+ "name": "roleName",
543
+ "type": "string"
665
544
  },
666
545
  {
667
- "components": [
668
- {
669
- "internalType": "NftId",
670
- "name": "productNftId",
671
- "type": "uint96"
672
- },
673
- {
674
- "internalType": "bytes",
675
- "name": "data",
676
- "type": "bytes"
677
- }
678
- ],
679
- "internalType": "struct IRisk.RiskInfo",
680
- "name": "risk",
681
- "type": "tuple"
546
+ "internalType": "RoleId",
547
+ "name": "adminRoleId",
548
+ "type": "uint64"
549
+ },
550
+ {
551
+ "internalType": "uint32",
552
+ "name": "maxMemberCount",
553
+ "type": "uint32"
554
+ }
555
+ ],
556
+ "name": "createRole",
557
+ "outputs": [
558
+ {
559
+ "internalType": "RoleId",
560
+ "name": "roleId",
561
+ "type": "uint64"
682
562
  }
683
563
  ],
684
- "name": "createRisk",
685
- "outputs": [],
686
564
  "stateMutability": "nonpayable",
687
565
  "type": "function"
688
566
  },
689
567
  {
690
568
  "inputs": [
691
569
  {
692
- "internalType": "Key32",
693
- "name": "key",
694
- "type": "bytes32"
570
+ "internalType": "address",
571
+ "name": "target",
572
+ "type": "address"
573
+ },
574
+ {
575
+ "internalType": "string",
576
+ "name": "name",
577
+ "type": "string"
695
578
  }
696
579
  ],
697
- "name": "exists",
580
+ "name": "createTarget",
698
581
  "outputs": [
699
582
  {
700
- "internalType": "bool",
701
- "name": "",
702
- "type": "bool"
583
+ "internalType": "RoleId",
584
+ "name": "contractRoleId",
585
+ "type": "uint64"
703
586
  }
704
587
  ],
705
- "stateMutability": "view",
588
+ "stateMutability": "nonpayable",
706
589
  "type": "function"
707
590
  },
708
591
  {
709
- "inputs": [
592
+ "inputs": [],
593
+ "name": "getBundleSet",
594
+ "outputs": [
710
595
  {
711
- "internalType": "Key32",
712
- "name": "key",
713
- "type": "bytes32"
596
+ "internalType": "contract BundleSet",
597
+ "name": "",
598
+ "type": "address"
714
599
  }
715
600
  ],
716
- "name": "get",
601
+ "stateMutability": "view",
602
+ "type": "function"
603
+ },
604
+ {
605
+ "inputs": [],
606
+ "name": "getInitialInfo",
717
607
  "outputs": [
718
608
  {
719
609
  "components": [
720
610
  {
721
- "components": [
722
- {
723
- "internalType": "ObjectType",
724
- "name": "objectType",
725
- "type": "uint8"
726
- },
727
- {
728
- "internalType": "StateId",
729
- "name": "state",
730
- "type": "uint8"
731
- },
732
- {
733
- "internalType": "address",
734
- "name": "updatedBy",
735
- "type": "address"
736
- },
737
- {
738
- "internalType": "Blocknumber",
739
- "name": "updatedIn",
740
- "type": "uint32"
741
- },
742
- {
743
- "internalType": "Blocknumber",
744
- "name": "createdIn",
745
- "type": "uint32"
746
- }
747
- ],
748
- "internalType": "struct IKeyValueStore.Metadata",
749
- "name": "metadata",
750
- "type": "tuple"
611
+ "internalType": "NftId",
612
+ "name": "nftId",
613
+ "type": "uint96"
614
+ },
615
+ {
616
+ "internalType": "NftId",
617
+ "name": "parentNftId",
618
+ "type": "uint96"
619
+ },
620
+ {
621
+ "internalType": "ObjectType",
622
+ "name": "objectType",
623
+ "type": "uint8"
624
+ },
625
+ {
626
+ "internalType": "bool",
627
+ "name": "isInterceptor",
628
+ "type": "bool"
629
+ },
630
+ {
631
+ "internalType": "address",
632
+ "name": "objectAddress",
633
+ "type": "address"
634
+ },
635
+ {
636
+ "internalType": "address",
637
+ "name": "initialOwner",
638
+ "type": "address"
751
639
  },
752
640
  {
753
641
  "internalType": "bytes",
@@ -755,8 +643,8 @@
755
643
  "type": "bytes"
756
644
  }
757
645
  ],
758
- "internalType": "struct IKeyValueStore.Value",
759
- "name": "value",
646
+ "internalType": "struct IRegistry.ObjectInfo",
647
+ "name": "",
760
648
  "type": "tuple"
761
649
  }
762
650
  ],
@@ -765,10 +653,10 @@
765
653
  },
766
654
  {
767
655
  "inputs": [],
768
- "name": "getBundleManager",
656
+ "name": "getInstanceAdmin",
769
657
  "outputs": [
770
658
  {
771
- "internalType": "contract BundleManager",
659
+ "internalType": "contract InstanceAdmin",
772
660
  "name": "",
773
661
  "type": "address"
774
662
  }
@@ -778,10 +666,10 @@
778
666
  },
779
667
  {
780
668
  "inputs": [],
781
- "name": "getBundleService",
669
+ "name": "getInstanceReader",
782
670
  "outputs": [
783
671
  {
784
- "internalType": "contract IBundleService",
672
+ "internalType": "contract InstanceReader",
785
673
  "name": "",
786
674
  "type": "address"
787
675
  }
@@ -791,10 +679,10 @@
791
679
  },
792
680
  {
793
681
  "inputs": [],
794
- "name": "getComponentOwnerService",
682
+ "name": "getInstanceStore",
795
683
  "outputs": [
796
684
  {
797
- "internalType": "contract IComponentOwnerService",
685
+ "internalType": "contract InstanceStore",
798
686
  "name": "",
799
687
  "type": "address"
800
688
  }
@@ -803,19 +691,13 @@
803
691
  "type": "function"
804
692
  },
805
693
  {
806
- "inputs": [
807
- {
808
- "internalType": "Key32",
809
- "name": "key",
810
- "type": "bytes32"
811
- }
812
- ],
813
- "name": "getData",
694
+ "inputs": [],
695
+ "name": "getNftId",
814
696
  "outputs": [
815
697
  {
816
- "internalType": "bytes",
817
- "name": "data",
818
- "type": "bytes"
698
+ "internalType": "NftId",
699
+ "name": "",
700
+ "type": "uint96"
819
701
  }
820
702
  ],
821
703
  "stateMutability": "view",
@@ -823,10 +705,10 @@
823
705
  },
824
706
  {
825
707
  "inputs": [],
826
- "name": "getDistributionService",
708
+ "name": "getOwner",
827
709
  "outputs": [
828
710
  {
829
- "internalType": "contract IDistributionService",
711
+ "internalType": "address",
830
712
  "name": "",
831
713
  "type": "address"
832
714
  }
@@ -837,17 +719,17 @@
837
719
  {
838
720
  "inputs": [
839
721
  {
840
- "internalType": "ObjectType",
841
- "name": "objectType",
842
- "type": "uint8"
722
+ "internalType": "uint256",
723
+ "name": "idx",
724
+ "type": "uint256"
843
725
  }
844
726
  ],
845
- "name": "getInitialState",
727
+ "name": "getProductNftId",
846
728
  "outputs": [
847
729
  {
848
- "internalType": "StateId",
849
- "name": "",
850
- "type": "uint8"
730
+ "internalType": "NftId",
731
+ "name": "productNftId",
732
+ "type": "uint96"
851
733
  }
852
734
  ],
853
735
  "stateMutability": "view",
@@ -855,10 +737,10 @@
855
737
  },
856
738
  {
857
739
  "inputs": [],
858
- "name": "getInstanceReader",
740
+ "name": "getRegistry",
859
741
  "outputs": [
860
742
  {
861
- "internalType": "contract InstanceReader",
743
+ "internalType": "contract IRegistry",
862
744
  "name": "",
863
745
  "type": "address"
864
746
  }
@@ -867,46 +749,13 @@
867
749
  "type": "function"
868
750
  },
869
751
  {
870
- "inputs": [
871
- {
872
- "internalType": "Key32",
873
- "name": "key",
874
- "type": "bytes32"
875
- }
876
- ],
877
- "name": "getMetadata",
752
+ "inputs": [],
753
+ "name": "getRelease",
878
754
  "outputs": [
879
755
  {
880
- "components": [
881
- {
882
- "internalType": "ObjectType",
883
- "name": "objectType",
884
- "type": "uint8"
885
- },
886
- {
887
- "internalType": "StateId",
888
- "name": "state",
889
- "type": "uint8"
890
- },
891
- {
892
- "internalType": "address",
893
- "name": "updatedBy",
894
- "type": "address"
895
- },
896
- {
897
- "internalType": "Blocknumber",
898
- "name": "updatedIn",
899
- "type": "uint32"
900
- },
901
- {
902
- "internalType": "Blocknumber",
903
- "name": "createdIn",
904
- "type": "uint32"
905
- }
906
- ],
907
- "internalType": "struct IKeyValueStore.Metadata",
908
- "name": "metadata",
909
- "type": "tuple"
756
+ "internalType": "VersionPart",
757
+ "name": "release",
758
+ "type": "uint8"
910
759
  }
911
760
  ],
912
761
  "stateMutability": "view",
@@ -914,10 +763,10 @@
914
763
  },
915
764
  {
916
765
  "inputs": [],
917
- "name": "getPolicyService",
766
+ "name": "getRiskSet",
918
767
  "outputs": [
919
768
  {
920
- "internalType": "contract IPolicyService",
769
+ "internalType": "contract RiskSet",
921
770
  "name": "",
922
771
  "type": "address"
923
772
  }
@@ -926,63 +775,56 @@
926
775
  "type": "function"
927
776
  },
928
777
  {
929
- "inputs": [],
930
- "name": "getPoolService",
931
- "outputs": [
778
+ "inputs": [
932
779
  {
933
- "internalType": "contract IPoolService",
934
- "name": "",
780
+ "internalType": "RoleId",
781
+ "name": "roleId",
782
+ "type": "uint64"
783
+ },
784
+ {
785
+ "internalType": "address",
786
+ "name": "account",
935
787
  "type": "address"
936
788
  }
937
789
  ],
938
- "stateMutability": "view",
790
+ "name": "grantRole",
791
+ "outputs": [],
792
+ "stateMutability": "nonpayable",
939
793
  "type": "function"
940
794
  },
941
795
  {
942
796
  "inputs": [],
943
- "name": "getProductService",
797
+ "name": "isActive",
944
798
  "outputs": [
945
799
  {
946
- "internalType": "contract IProductService",
947
- "name": "",
948
- "type": "address"
800
+ "internalType": "bool",
801
+ "name": "active",
802
+ "type": "bool"
949
803
  }
950
804
  ],
951
805
  "stateMutability": "view",
952
806
  "type": "function"
953
807
  },
954
808
  {
955
- "inputs": [
956
- {
957
- "internalType": "Key32",
958
- "name": "key",
959
- "type": "bytes32"
960
- }
961
- ],
962
- "name": "getState",
809
+ "inputs": [],
810
+ "name": "isConsumingScheduledOp",
963
811
  "outputs": [
964
812
  {
965
- "internalType": "StateId",
966
- "name": "state",
967
- "type": "uint8"
813
+ "internalType": "bytes4",
814
+ "name": "",
815
+ "type": "bytes4"
968
816
  }
969
817
  ],
970
818
  "stateMutability": "view",
971
819
  "type": "function"
972
820
  },
973
821
  {
974
- "inputs": [
975
- {
976
- "internalType": "ObjectType",
977
- "name": "objectType",
978
- "type": "uint8"
979
- }
980
- ],
981
- "name": "hasLifecycle",
822
+ "inputs": [],
823
+ "name": "isInstanceLocked",
982
824
  "outputs": [
983
825
  {
984
826
  "internalType": "bool",
985
- "name": "",
827
+ "name": "isLocked",
986
828
  "type": "bool"
987
829
  }
988
830
  ],
@@ -992,26 +834,16 @@
992
834
  {
993
835
  "inputs": [
994
836
  {
995
- "internalType": "ObjectType",
996
- "name": "objectType",
997
- "type": "uint8"
998
- },
999
- {
1000
- "internalType": "StateId",
1001
- "name": "fromId",
1002
- "type": "uint8"
1003
- },
1004
- {
1005
- "internalType": "StateId",
1006
- "name": "toId",
1007
- "type": "uint8"
837
+ "internalType": "address",
838
+ "name": "target",
839
+ "type": "address"
1008
840
  }
1009
841
  ],
1010
- "name": "isValidTransition",
842
+ "name": "isTargetLocked",
1011
843
  "outputs": [
1012
844
  {
1013
845
  "internalType": "bool",
1014
- "name": "",
846
+ "name": "isLocked",
1015
847
  "type": "bool"
1016
848
  }
1017
849
  ],
@@ -1019,14 +851,8 @@
1019
851
  "type": "function"
1020
852
  },
1021
853
  {
1022
- "inputs": [
1023
- {
1024
- "internalType": "bytes4",
1025
- "name": "interfaceId",
1026
- "type": "bytes4"
1027
- }
1028
- ],
1029
- "name": "supportsInterface",
854
+ "inputs": [],
855
+ "name": "isTokenRegistryDisabled",
1030
856
  "outputs": [
1031
857
  {
1032
858
  "internalType": "bool",
@@ -1038,125 +864,82 @@
1038
864
  "type": "function"
1039
865
  },
1040
866
  {
1041
- "inputs": [
1042
- {
1043
- "internalType": "ObjectType",
1044
- "name": "objectType",
1045
- "type": "uint8"
1046
- },
867
+ "inputs": [],
868
+ "name": "linkToRegisteredNftId",
869
+ "outputs": [
1047
870
  {
1048
- "internalType": "KeyId",
1049
- "name": "id",
1050
- "type": "bytes31"
871
+ "internalType": "NftId",
872
+ "name": "",
873
+ "type": "uint96"
1051
874
  }
1052
875
  ],
1053
- "name": "toKey32",
876
+ "stateMutability": "nonpayable",
877
+ "type": "function"
878
+ },
879
+ {
880
+ "inputs": [],
881
+ "name": "products",
1054
882
  "outputs": [
1055
883
  {
1056
- "internalType": "Key32",
1057
- "name": "",
1058
- "type": "bytes32"
884
+ "internalType": "uint256",
885
+ "name": "productCount",
886
+ "type": "uint256"
1059
887
  }
1060
888
  ],
1061
- "stateMutability": "pure",
889
+ "stateMutability": "view",
1062
890
  "type": "function"
1063
891
  },
1064
892
  {
1065
893
  "inputs": [
1066
894
  {
1067
- "internalType": "NftId",
1068
- "name": "bundleNftId",
895
+ "internalType": "Amount",
896
+ "name": "dipAmount",
1069
897
  "type": "uint96"
1070
- },
898
+ }
899
+ ],
900
+ "name": "refillStakingRewardReserves",
901
+ "outputs": [],
902
+ "stateMutability": "nonpayable",
903
+ "type": "function"
904
+ },
905
+ {
906
+ "inputs": [
1071
907
  {
1072
- "components": [
1073
- {
1074
- "internalType": "NftId",
1075
- "name": "poolNftId",
1076
- "type": "uint96"
1077
- },
1078
- {
1079
- "components": [
1080
- {
1081
- "internalType": "UFixed",
1082
- "name": "fractionalFee",
1083
- "type": "uint256"
1084
- },
1085
- {
1086
- "internalType": "uint256",
1087
- "name": "fixedFee",
1088
- "type": "uint256"
1089
- }
1090
- ],
1091
- "internalType": "struct Fee",
1092
- "name": "fee",
1093
- "type": "tuple"
1094
- },
1095
- {
1096
- "internalType": "bytes",
1097
- "name": "filter",
1098
- "type": "bytes"
1099
- },
1100
- {
1101
- "internalType": "uint256",
1102
- "name": "capitalAmount",
1103
- "type": "uint256"
1104
- },
1105
- {
1106
- "internalType": "uint256",
1107
- "name": "lockedAmount",
1108
- "type": "uint256"
1109
- },
1110
- {
1111
- "internalType": "uint256",
1112
- "name": "balanceAmount",
1113
- "type": "uint256"
1114
- },
1115
- {
1116
- "internalType": "uint256",
1117
- "name": "lifetime",
1118
- "type": "uint256"
1119
- },
1120
- {
1121
- "internalType": "Timestamp",
1122
- "name": "expiredAt",
1123
- "type": "uint40"
1124
- },
1125
- {
1126
- "internalType": "Timestamp",
1127
- "name": "closedAt",
1128
- "type": "uint40"
1129
- }
1130
- ],
1131
- "internalType": "struct IBundle.BundleInfo",
1132
- "name": "bundle",
1133
- "type": "tuple"
908
+ "internalType": "address",
909
+ "name": "product",
910
+ "type": "address"
1134
911
  },
1135
912
  {
1136
- "internalType": "StateId",
1137
- "name": "newState",
1138
- "type": "uint8"
913
+ "internalType": "address",
914
+ "name": "token",
915
+ "type": "address"
916
+ }
917
+ ],
918
+ "name": "registerProduct",
919
+ "outputs": [
920
+ {
921
+ "internalType": "NftId",
922
+ "name": "productNftId",
923
+ "type": "uint96"
1139
924
  }
1140
925
  ],
1141
- "name": "updateBundle",
1142
- "outputs": [],
1143
926
  "stateMutability": "nonpayable",
1144
927
  "type": "function"
1145
928
  },
1146
929
  {
1147
930
  "inputs": [
1148
931
  {
1149
- "internalType": "NftId",
1150
- "name": "bundleNftId",
1151
- "type": "uint96"
932
+ "internalType": "RoleId",
933
+ "name": "roleId",
934
+ "type": "uint64"
1152
935
  },
1153
936
  {
1154
- "internalType": "StateId",
1155
- "name": "newState",
1156
- "type": "uint8"
937
+ "internalType": "address",
938
+ "name": "account",
939
+ "type": "address"
1157
940
  }
1158
941
  ],
1159
- "name": "updateBundleState",
942
+ "name": "revokeRole",
1160
943
  "outputs": [],
1161
944
  "stateMutability": "nonpayable",
1162
945
  "type": "function"
@@ -1164,61 +947,12 @@
1164
947
  {
1165
948
  "inputs": [
1166
949
  {
1167
- "internalType": "NftId",
1168
- "name": "distributionNftId",
1169
- "type": "uint96"
1170
- },
1171
- {
1172
- "components": [
1173
- {
1174
- "internalType": "NftId",
1175
- "name": "productNftId",
1176
- "type": "uint96"
1177
- },
1178
- {
1179
- "internalType": "contract TokenHandler",
1180
- "name": "tokenHandler",
1181
- "type": "address"
1182
- },
1183
- {
1184
- "components": [
1185
- {
1186
- "internalType": "UFixed",
1187
- "name": "fractionalFee",
1188
- "type": "uint256"
1189
- },
1190
- {
1191
- "internalType": "uint256",
1192
- "name": "fixedFee",
1193
- "type": "uint256"
1194
- }
1195
- ],
1196
- "internalType": "struct Fee",
1197
- "name": "distributionFee",
1198
- "type": "tuple"
1199
- },
1200
- {
1201
- "internalType": "bool",
1202
- "name": "isIntercepting",
1203
- "type": "bool"
1204
- },
1205
- {
1206
- "internalType": "address",
1207
- "name": "wallet",
1208
- "type": "address"
1209
- }
1210
- ],
1211
- "internalType": "struct ISetup.DistributionSetupInfo",
1212
- "name": "setup",
1213
- "type": "tuple"
1214
- },
1215
- {
1216
- "internalType": "StateId",
1217
- "name": "newState",
1218
- "type": "uint8"
950
+ "internalType": "address",
951
+ "name": "",
952
+ "type": "address"
1219
953
  }
1220
954
  ],
1221
- "name": "updateDistributionSetup",
955
+ "name": "setAuthority",
1222
956
  "outputs": [],
1223
957
  "stateMutability": "nonpayable",
1224
958
  "type": "function"
@@ -1226,17 +960,12 @@
1226
960
  {
1227
961
  "inputs": [
1228
962
  {
1229
- "internalType": "NftId",
1230
- "name": "distributionNftId",
1231
- "type": "uint96"
1232
- },
1233
- {
1234
- "internalType": "StateId",
1235
- "name": "newState",
1236
- "type": "uint8"
963
+ "internalType": "bool",
964
+ "name": "locked",
965
+ "type": "bool"
1237
966
  }
1238
967
  ],
1239
- "name": "updateDistributionSetupState",
968
+ "name": "setInstanceLocked",
1240
969
  "outputs": [],
1241
970
  "stateMutability": "nonpayable",
1242
971
  "type": "function"
@@ -1244,104 +973,12 @@
1244
973
  {
1245
974
  "inputs": [
1246
975
  {
1247
- "internalType": "NftId",
1248
- "name": "policyNftId",
1249
- "type": "uint96"
1250
- },
1251
- {
1252
- "components": [
1253
- {
1254
- "internalType": "NftId",
1255
- "name": "productNftId",
1256
- "type": "uint96"
1257
- },
1258
- {
1259
- "internalType": "NftId",
1260
- "name": "bundleNftId",
1261
- "type": "uint96"
1262
- },
1263
- {
1264
- "internalType": "ReferralId",
1265
- "name": "referralId",
1266
- "type": "bytes8"
1267
- },
1268
- {
1269
- "internalType": "RiskId",
1270
- "name": "riskId",
1271
- "type": "bytes8"
1272
- },
1273
- {
1274
- "internalType": "uint256",
1275
- "name": "sumInsuredAmount",
1276
- "type": "uint256"
1277
- },
1278
- {
1279
- "internalType": "uint256",
1280
- "name": "premiumAmount",
1281
- "type": "uint256"
1282
- },
1283
- {
1284
- "internalType": "uint256",
1285
- "name": "premiumPaidAmount",
1286
- "type": "uint256"
1287
- },
1288
- {
1289
- "internalType": "uint256",
1290
- "name": "lifetime",
1291
- "type": "uint256"
1292
- },
1293
- {
1294
- "internalType": "bytes",
1295
- "name": "applicationData",
1296
- "type": "bytes"
1297
- },
1298
- {
1299
- "internalType": "bytes",
1300
- "name": "policyData",
1301
- "type": "bytes"
1302
- },
1303
- {
1304
- "internalType": "uint16",
1305
- "name": "claimsCount",
1306
- "type": "uint16"
1307
- },
1308
- {
1309
- "internalType": "uint16",
1310
- "name": "openClaimsCount",
1311
- "type": "uint16"
1312
- },
1313
- {
1314
- "internalType": "uint256",
1315
- "name": "payoutAmount",
1316
- "type": "uint256"
1317
- },
1318
- {
1319
- "internalType": "Timestamp",
1320
- "name": "activatedAt",
1321
- "type": "uint40"
1322
- },
1323
- {
1324
- "internalType": "Timestamp",
1325
- "name": "expiredAt",
1326
- "type": "uint40"
1327
- },
1328
- {
1329
- "internalType": "Timestamp",
1330
- "name": "closedAt",
1331
- "type": "uint40"
1332
- }
1333
- ],
1334
- "internalType": "struct IPolicy.PolicyInfo",
1335
- "name": "policy",
1336
- "type": "tuple"
1337
- },
1338
- {
1339
- "internalType": "StateId",
1340
- "name": "newState",
1341
- "type": "uint8"
976
+ "internalType": "contract InstanceReader",
977
+ "name": "instanceReader",
978
+ "type": "address"
1342
979
  }
1343
980
  ],
1344
- "name": "updatePolicy",
981
+ "name": "setInstanceReader",
1345
982
  "outputs": [],
1346
983
  "stateMutability": "nonpayable",
1347
984
  "type": "function"
@@ -1349,17 +986,17 @@
1349
986
  {
1350
987
  "inputs": [
1351
988
  {
1352
- "internalType": "NftId",
1353
- "name": "policyNftId",
1354
- "type": "uint96"
989
+ "internalType": "RoleId",
990
+ "name": "roleId",
991
+ "type": "uint64"
1355
992
  },
1356
993
  {
1357
- "internalType": "StateId",
1358
- "name": "newState",
1359
- "type": "uint8"
994
+ "internalType": "bool",
995
+ "name": "active",
996
+ "type": "bool"
1360
997
  }
1361
998
  ],
1362
- "name": "updatePolicyState",
999
+ "name": "setRoleActive",
1363
1000
  "outputs": [],
1364
1001
  "stateMutability": "nonpayable",
1365
1002
  "type": "function"
@@ -1367,105 +1004,12 @@
1367
1004
  {
1368
1005
  "inputs": [
1369
1006
  {
1370
- "internalType": "NftId",
1371
- "name": "poolNftId",
1372
- "type": "uint96"
1373
- },
1374
- {
1375
- "components": [
1376
- {
1377
- "internalType": "NftId",
1378
- "name": "productNftId",
1379
- "type": "uint96"
1380
- },
1381
- {
1382
- "internalType": "contract TokenHandler",
1383
- "name": "tokenHandler",
1384
- "type": "address"
1385
- },
1386
- {
1387
- "internalType": "UFixed",
1388
- "name": "collateralizationLevel",
1389
- "type": "uint256"
1390
- },
1391
- {
1392
- "components": [
1393
- {
1394
- "internalType": "UFixed",
1395
- "name": "fractionalFee",
1396
- "type": "uint256"
1397
- },
1398
- {
1399
- "internalType": "uint256",
1400
- "name": "fixedFee",
1401
- "type": "uint256"
1402
- }
1403
- ],
1404
- "internalType": "struct Fee",
1405
- "name": "poolFee",
1406
- "type": "tuple"
1407
- },
1408
- {
1409
- "components": [
1410
- {
1411
- "internalType": "UFixed",
1412
- "name": "fractionalFee",
1413
- "type": "uint256"
1414
- },
1415
- {
1416
- "internalType": "uint256",
1417
- "name": "fixedFee",
1418
- "type": "uint256"
1419
- }
1420
- ],
1421
- "internalType": "struct Fee",
1422
- "name": "stakingFee",
1423
- "type": "tuple"
1424
- },
1425
- {
1426
- "components": [
1427
- {
1428
- "internalType": "UFixed",
1429
- "name": "fractionalFee",
1430
- "type": "uint256"
1431
- },
1432
- {
1433
- "internalType": "uint256",
1434
- "name": "fixedFee",
1435
- "type": "uint256"
1436
- }
1437
- ],
1438
- "internalType": "struct Fee",
1439
- "name": "performanceFee",
1440
- "type": "tuple"
1441
- },
1442
- {
1443
- "internalType": "bool",
1444
- "name": "isIntercepting",
1445
- "type": "bool"
1446
- },
1447
- {
1448
- "internalType": "bool",
1449
- "name": "isConfirmingApplication",
1450
- "type": "bool"
1451
- },
1452
- {
1453
- "internalType": "address",
1454
- "name": "wallet",
1455
- "type": "address"
1456
- }
1457
- ],
1458
- "internalType": "struct ISetup.PoolSetupInfo",
1459
- "name": "setup",
1460
- "type": "tuple"
1461
- },
1462
- {
1463
- "internalType": "StateId",
1464
- "name": "newState",
1465
- "type": "uint8"
1007
+ "internalType": "Seconds",
1008
+ "name": "stakeLockingPeriod",
1009
+ "type": "uint40"
1466
1010
  }
1467
1011
  ],
1468
- "name": "updatePoolSetup",
1012
+ "name": "setStakingLockingPeriod",
1469
1013
  "outputs": [],
1470
1014
  "stateMutability": "nonpayable",
1471
1015
  "type": "function"
@@ -1473,17 +1017,12 @@
1473
1017
  {
1474
1018
  "inputs": [
1475
1019
  {
1476
- "internalType": "NftId",
1477
- "name": "poolNftId",
1020
+ "internalType": "Amount",
1021
+ "name": "maxStakedAmount",
1478
1022
  "type": "uint96"
1479
- },
1480
- {
1481
- "internalType": "StateId",
1482
- "name": "newState",
1483
- "type": "uint8"
1484
1023
  }
1485
1024
  ],
1486
- "name": "updatePoolSetupState",
1025
+ "name": "setStakingMaxAmount",
1487
1026
  "outputs": [],
1488
1027
  "stateMutability": "nonpayable",
1489
1028
  "type": "function"
@@ -1491,156 +1030,12 @@
1491
1030
  {
1492
1031
  "inputs": [
1493
1032
  {
1494
- "internalType": "NftId",
1495
- "name": "productNftId",
1496
- "type": "uint96"
1497
- },
1498
- {
1499
- "components": [
1500
- {
1501
- "internalType": "contract IERC20Metadata",
1502
- "name": "token",
1503
- "type": "address"
1504
- },
1505
- {
1506
- "internalType": "contract TokenHandler",
1507
- "name": "tokenHandler",
1508
- "type": "address"
1509
- },
1510
- {
1511
- "internalType": "NftId",
1512
- "name": "distributionNftId",
1513
- "type": "uint96"
1514
- },
1515
- {
1516
- "internalType": "NftId",
1517
- "name": "poolNftId",
1518
- "type": "uint96"
1519
- },
1520
- {
1521
- "components": [
1522
- {
1523
- "internalType": "UFixed",
1524
- "name": "fractionalFee",
1525
- "type": "uint256"
1526
- },
1527
- {
1528
- "internalType": "uint256",
1529
- "name": "fixedFee",
1530
- "type": "uint256"
1531
- }
1532
- ],
1533
- "internalType": "struct Fee",
1534
- "name": "distributionFee",
1535
- "type": "tuple"
1536
- },
1537
- {
1538
- "components": [
1539
- {
1540
- "internalType": "UFixed",
1541
- "name": "fractionalFee",
1542
- "type": "uint256"
1543
- },
1544
- {
1545
- "internalType": "uint256",
1546
- "name": "fixedFee",
1547
- "type": "uint256"
1548
- }
1549
- ],
1550
- "internalType": "struct Fee",
1551
- "name": "productFee",
1552
- "type": "tuple"
1553
- },
1554
- {
1555
- "components": [
1556
- {
1557
- "internalType": "UFixed",
1558
- "name": "fractionalFee",
1559
- "type": "uint256"
1560
- },
1561
- {
1562
- "internalType": "uint256",
1563
- "name": "fixedFee",
1564
- "type": "uint256"
1565
- }
1566
- ],
1567
- "internalType": "struct Fee",
1568
- "name": "processingFee",
1569
- "type": "tuple"
1570
- },
1571
- {
1572
- "components": [
1573
- {
1574
- "internalType": "UFixed",
1575
- "name": "fractionalFee",
1576
- "type": "uint256"
1577
- },
1578
- {
1579
- "internalType": "uint256",
1580
- "name": "fixedFee",
1581
- "type": "uint256"
1582
- }
1583
- ],
1584
- "internalType": "struct Fee",
1585
- "name": "poolFee",
1586
- "type": "tuple"
1587
- },
1588
- {
1589
- "components": [
1590
- {
1591
- "internalType": "UFixed",
1592
- "name": "fractionalFee",
1593
- "type": "uint256"
1594
- },
1595
- {
1596
- "internalType": "uint256",
1597
- "name": "fixedFee",
1598
- "type": "uint256"
1599
- }
1600
- ],
1601
- "internalType": "struct Fee",
1602
- "name": "stakingFee",
1603
- "type": "tuple"
1604
- },
1605
- {
1606
- "components": [
1607
- {
1608
- "internalType": "UFixed",
1609
- "name": "fractionalFee",
1610
- "type": "uint256"
1611
- },
1612
- {
1613
- "internalType": "uint256",
1614
- "name": "fixedFee",
1615
- "type": "uint256"
1616
- }
1617
- ],
1618
- "internalType": "struct Fee",
1619
- "name": "performanceFee",
1620
- "type": "tuple"
1621
- },
1622
- {
1623
- "internalType": "bool",
1624
- "name": "isIntercepting",
1625
- "type": "bool"
1626
- },
1627
- {
1628
- "internalType": "address",
1629
- "name": "wallet",
1630
- "type": "address"
1631
- }
1632
- ],
1633
- "internalType": "struct ISetup.ProductSetupInfo",
1634
- "name": "setup",
1635
- "type": "tuple"
1636
- },
1637
- {
1638
- "internalType": "StateId",
1639
- "name": "newState",
1640
- "type": "uint8"
1033
+ "internalType": "UFixed",
1034
+ "name": "rewardRate",
1035
+ "type": "uint160"
1641
1036
  }
1642
1037
  ],
1643
- "name": "updateProductSetup",
1038
+ "name": "setStakingRewardRate",
1644
1039
  "outputs": [],
1645
1040
  "stateMutability": "nonpayable",
1646
1041
  "type": "function"
@@ -1648,17 +1043,17 @@
1648
1043
  {
1649
1044
  "inputs": [
1650
1045
  {
1651
- "internalType": "NftId",
1652
- "name": "productNftId",
1653
- "type": "uint96"
1046
+ "internalType": "address",
1047
+ "name": "target",
1048
+ "type": "address"
1654
1049
  },
1655
1050
  {
1656
- "internalType": "StateId",
1657
- "name": "newState",
1658
- "type": "uint8"
1051
+ "internalType": "bool",
1052
+ "name": "locked",
1053
+ "type": "bool"
1659
1054
  }
1660
1055
  ],
1661
- "name": "updateProductSetupState",
1056
+ "name": "setTargetLocked",
1662
1057
  "outputs": [],
1663
1058
  "stateMutability": "nonpayable",
1664
1059
  "type": "function"
@@ -1666,34 +1061,60 @@
1666
1061
  {
1667
1062
  "inputs": [
1668
1063
  {
1669
- "internalType": "RiskId",
1670
- "name": "riskId",
1671
- "type": "bytes8"
1064
+ "internalType": "bytes4",
1065
+ "name": "interfaceId",
1066
+ "type": "bytes4"
1067
+ }
1068
+ ],
1069
+ "name": "supportsInterface",
1070
+ "outputs": [
1071
+ {
1072
+ "internalType": "bool",
1073
+ "name": "",
1074
+ "type": "bool"
1075
+ }
1076
+ ],
1077
+ "stateMutability": "view",
1078
+ "type": "function"
1079
+ },
1080
+ {
1081
+ "inputs": [
1082
+ {
1083
+ "internalType": "address",
1084
+ "name": "target",
1085
+ "type": "address"
1672
1086
  },
1673
1087
  {
1674
1088
  "components": [
1675
1089
  {
1676
- "internalType": "NftId",
1677
- "name": "productNftId",
1678
- "type": "uint96"
1090
+ "internalType": "Str",
1091
+ "name": "name",
1092
+ "type": "bytes32"
1679
1093
  },
1680
1094
  {
1681
- "internalType": "bytes",
1682
- "name": "data",
1683
- "type": "bytes"
1095
+ "internalType": "Selector",
1096
+ "name": "selector",
1097
+ "type": "bytes4"
1098
+ },
1099
+ {
1100
+ "internalType": "Timestamp",
1101
+ "name": "createdAt",
1102
+ "type": "uint40"
1684
1103
  }
1685
1104
  ],
1686
- "internalType": "struct IRisk.RiskInfo",
1687
- "name": "risk",
1688
- "type": "tuple"
1689
- },
1690
- {
1691
- "internalType": "StateId",
1692
- "name": "newState",
1693
- "type": "uint8"
1105
+ "internalType": "struct IAccess.FunctionInfo[]",
1106
+ "name": "functions",
1107
+ "type": "tuple[]"
1694
1108
  }
1695
1109
  ],
1696
- "name": "updateRisk",
1110
+ "name": "unauthorizeFunctions",
1111
+ "outputs": [],
1112
+ "stateMutability": "nonpayable",
1113
+ "type": "function"
1114
+ },
1115
+ {
1116
+ "inputs": [],
1117
+ "name": "upgradeInstanceReader",
1697
1118
  "outputs": [],
1698
1119
  "stateMutability": "nonpayable",
1699
1120
  "type": "function"
@@ -1701,18 +1122,19 @@
1701
1122
  {
1702
1123
  "inputs": [
1703
1124
  {
1704
- "internalType": "RiskId",
1705
- "name": "riskId",
1706
- "type": "bytes8"
1707
- },
1125
+ "internalType": "Amount",
1126
+ "name": "dipAmount",
1127
+ "type": "uint96"
1128
+ }
1129
+ ],
1130
+ "name": "withdrawStakingRewardReserves",
1131
+ "outputs": [
1708
1132
  {
1709
- "internalType": "StateId",
1710
- "name": "newState",
1711
- "type": "uint8"
1133
+ "internalType": "Amount",
1134
+ "name": "newBalance",
1135
+ "type": "uint96"
1712
1136
  }
1713
1137
  ],
1714
- "name": "updateRiskState",
1715
- "outputs": [],
1716
1138
  "stateMutability": "nonpayable",
1717
1139
  "type": "function"
1718
1140
  }