@etherisc/gif-next 0.0.2-b7cfc95-746 → 0.0.2-b7e6198-021

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