@etherisc/gif-next 0.0.2-bb7b80e-316 → 0.0.2-bb9ecaf-723

Sign up to get free protection for your applications and to get access to all the features.
Files changed (789) hide show
  1. package/README.md +138 -325
  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 +810 -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 +1735 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2008 -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 +817 -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 +1400 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +465 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +407 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +652 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1234 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +844 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +939 -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 +950 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +838 -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 +1474 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +844 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2043 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +844 -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 +1429 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1161 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1637 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2575 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
  66. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
  67. package/artifacts/contracts/instance/{base/IKeyValueStore.sol/IKeyValueStore.json → BaseStore.sol/BaseStore.json} +87 -184
  68. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  69. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  70. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
  71. package/artifacts/contracts/instance/{IInstanceBase.sol/IInstanceBase.json → IBaseStore.sol/IBaseStore.json} +66 -210
  72. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +619 -1245
  74. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  75. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +696 -164
  76. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  77. package/artifacts/contracts/instance/Instance.sol/Instance.json +700 -2362
  78. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2400 -0
  80. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  81. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +872 -0
  82. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1829 -725
  84. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +710 -325
  86. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  87. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +419 -87
  88. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3039 -0
  90. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
  92. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  93. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  94. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  96. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  97. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  98. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  100. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  101. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  102. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  103. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  104. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  105. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  106. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  107. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  108. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  109. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  110. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  111. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  112. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  113. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  114. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +947 -0
  116. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +849 -0
  118. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  120. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +762 -0
  122. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
  124. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +863 -0
  126. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  127. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
  128. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  129. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +830 -0
  130. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1232 -0
  132. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +844 -0
  134. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  135. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1438 -0
  136. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  137. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +886 -0
  138. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
  140. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  141. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/IPoolComponent.sol/IPoolComponent.json} +392 -350
  142. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1449 -0
  144. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  145. package/artifacts/contracts/pool/Pool.sol/Pool.json +1015 -0
  146. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  147. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  148. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  149. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1833 -0
  150. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  151. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +886 -0
  152. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  153. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  154. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +810 -0
  156. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  157. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1149 -0
  158. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  159. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +844 -0
  160. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1536 -0
  162. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  163. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +906 -0
  164. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  165. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +328 -295
  166. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  167. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
  168. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  169. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
  170. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  171. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IPricingService.sol/IPricingService.json} +321 -389
  172. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  173. package/artifacts/contracts/{components/Product.sol/Product.json → product/IProductComponent.sol/IProductComponent.json} +531 -311
  174. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +328 -199
  176. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1404 -0
  178. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  179. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  180. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  181. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +874 -0
  182. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  183. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  184. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +834 -0
  186. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  187. package/artifacts/contracts/product/Product.sol/Product.json +1107 -0
  188. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  189. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  190. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  191. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +794 -0
  192. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  193. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  194. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  195. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +607 -30
  196. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  197. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +306 -210
  198. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  199. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  200. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  201. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  202. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  203. package/artifacts/contracts/registry/Registry.sol/Registry.json +1033 -73
  204. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  205. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2255 -0
  206. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  207. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1137 -0
  208. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  209. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +363 -260
  210. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  211. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +415 -73
  212. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -0
  214. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  215. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  216. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  217. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1401 -0
  218. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  219. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +705 -0
  220. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  221. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +400 -76
  222. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  223. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → shared/Component.sol/Component.json} +269 -260
  224. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1551 -0
  226. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +882 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  230. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  233. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  234. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  235. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  236. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  237. package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → shared/IComponent.sol/IComponent.json} +269 -142
  238. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  239. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1175 -0
  240. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  241. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +697 -0
  242. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  244. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +61 -22
  246. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  247. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  248. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +162 -15
  250. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  251. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  252. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  253. package/artifacts/contracts/shared/IService.sol/IService.json +148 -141
  254. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  255. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  256. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  257. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +785 -0
  258. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  259. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  260. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  261. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  262. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  263. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +98 -28
  264. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  265. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  266. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  267. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +178 -55
  268. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  269. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  270. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  271. package/artifacts/contracts/shared/Service.sol/Service.json +165 -151
  272. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  274. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  276. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  277. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  278. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  279. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2747 -0
  280. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  281. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1147 -0
  282. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  283. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
  284. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  285. package/artifacts/contracts/staking/Staking.sol/Staking.json +3175 -0
  286. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  288. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +867 -0
  290. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +704 -0
  292. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1344 -0
  294. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +786 -0
  296. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  297. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3097 -0
  298. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  299. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
  300. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  301. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +679 -0
  302. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  303. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  304. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  306. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +270 -0
  308. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  310. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  312. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  314. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  316. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  317. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  318. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  319. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  320. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  322. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  323. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  324. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  326. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  328. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  330. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  332. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  334. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  336. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +289 -0
  338. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  340. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  342. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  344. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  346. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  348. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  349. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  350. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  352. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  353. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  354. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  356. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  357. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +672 -0
  358. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  359. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  360. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  361. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  362. package/contracts/accounting/AccountingService.sol +274 -0
  363. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  364. package/contracts/accounting/IAccountingService.sol +47 -0
  365. package/contracts/authorization/AccessAdmin.sol +679 -0
  366. package/contracts/authorization/AccessAdminLib.sol +678 -0
  367. package/contracts/authorization/AccessManagerCloneable.sol +140 -0
  368. package/contracts/authorization/Authorization.sol +190 -0
  369. package/contracts/authorization/IAccess.sol +66 -0
  370. package/contracts/authorization/IAccessAdmin.sol +142 -0
  371. package/contracts/authorization/IAuthorization.sol +26 -0
  372. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  373. package/contracts/authorization/ServiceAuthorization.sol +300 -0
  374. package/contracts/distribution/BasicDistribution.sol +140 -0
  375. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  376. package/contracts/distribution/Distribution.sol +245 -0
  377. package/contracts/distribution/DistributionService.sol +448 -0
  378. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  379. package/contracts/distribution/IDistributionComponent.sol +45 -0
  380. package/contracts/distribution/IDistributionService.sol +115 -0
  381. package/contracts/examples/fire/DamageLevel.sol +59 -0
  382. package/contracts/examples/fire/FirePool.sol +86 -0
  383. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  384. package/contracts/examples/fire/FireProduct.sol +433 -0
  385. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  386. package/contracts/examples/fire/FireUSD.sol +26 -0
  387. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  388. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  389. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  390. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  391. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  392. package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
  393. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  394. package/contracts/instance/BaseStore.sol +93 -0
  395. package/contracts/instance/BundleSet.sol +130 -0
  396. package/contracts/instance/IBaseStore.sol +37 -0
  397. package/contracts/instance/IInstance.sol +147 -51
  398. package/contracts/instance/IInstanceService.sol +101 -22
  399. package/contracts/instance/Instance.sol +263 -174
  400. package/contracts/instance/InstanceAdmin.sol +307 -0
  401. package/contracts/instance/InstanceAuthorizationV3.sol +275 -0
  402. package/contracts/instance/InstanceReader.sol +500 -209
  403. package/contracts/instance/InstanceService.sol +432 -263
  404. package/contracts/instance/InstanceServiceManager.sol +14 -29
  405. package/contracts/instance/InstanceStore.sol +323 -0
  406. package/contracts/instance/ProductStore.sol +290 -0
  407. package/contracts/instance/RiskSet.sol +126 -0
  408. package/contracts/instance/TargetNames.sol +10 -0
  409. package/contracts/instance/base/BalanceStore.sol +121 -0
  410. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  411. package/contracts/instance/base/ObjectCounter.sol +20 -0
  412. package/contracts/instance/base/ObjectLifecycle.sol +109 -0
  413. package/contracts/instance/base/ObjectSet.sol +77 -0
  414. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  415. package/contracts/instance/module/IBundle.sol +10 -9
  416. package/contracts/instance/module/IComponents.sol +60 -0
  417. package/contracts/instance/module/IDistribution.sol +25 -10
  418. package/contracts/instance/module/IPolicy.sol +81 -21
  419. package/contracts/instance/module/IRisk.sol +6 -1
  420. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  421. package/contracts/oracle/BasicOracle.sol +44 -0
  422. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  423. package/contracts/oracle/IOracle.sol +41 -0
  424. package/contracts/oracle/IOracleComponent.sol +33 -0
  425. package/contracts/oracle/IOracleService.sol +66 -0
  426. package/contracts/oracle/Oracle.sol +152 -0
  427. package/contracts/oracle/OracleService.sol +310 -0
  428. package/contracts/oracle/OracleServiceManager.sol +39 -0
  429. package/contracts/pool/BasicPool.sol +161 -0
  430. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  431. package/contracts/pool/BundleService.sol +386 -0
  432. package/contracts/pool/BundleServiceManager.sol +39 -0
  433. package/contracts/pool/IBundleService.sol +116 -0
  434. package/contracts/pool/IPoolComponent.sol +62 -0
  435. package/contracts/pool/IPoolService.sol +170 -0
  436. package/contracts/pool/Pool.sol +331 -0
  437. package/contracts/pool/PoolLib.sol +341 -0
  438. package/contracts/pool/PoolService.sol +614 -0
  439. package/contracts/pool/PoolServiceManager.sol +39 -0
  440. package/contracts/product/ApplicationService.sol +327 -0
  441. package/contracts/product/ApplicationServiceManager.sol +38 -0
  442. package/contracts/product/BasicProduct.sol +48 -0
  443. package/contracts/product/BasicProductAuthorization.sol +63 -0
  444. package/contracts/product/ClaimService.sol +626 -0
  445. package/contracts/product/ClaimServiceManager.sol +38 -0
  446. package/contracts/product/IApplicationService.sol +88 -0
  447. package/contracts/product/IClaimService.sol +136 -0
  448. package/contracts/product/IPolicyService.sol +102 -0
  449. package/contracts/product/IPricingService.sol +40 -0
  450. package/contracts/product/IProductComponent.sol +62 -0
  451. package/contracts/product/IRiskService.sol +48 -0
  452. package/contracts/product/PolicyService.sol +645 -0
  453. package/contracts/product/PolicyServiceLib.sol +139 -0
  454. package/contracts/product/PolicyServiceManager.sol +39 -0
  455. package/contracts/product/PricingService.sol +306 -0
  456. package/contracts/product/PricingServiceManager.sol +39 -0
  457. package/contracts/product/Product.sol +491 -0
  458. package/contracts/product/RiskService.sol +189 -0
  459. package/contracts/product/RiskServiceManager.sol +39 -0
  460. package/contracts/registry/ChainNft.sol +83 -36
  461. package/contracts/registry/IRegistry.sol +111 -30
  462. package/contracts/registry/IRegistryService.sol +38 -34
  463. package/contracts/registry/IRelease.sol +29 -0
  464. package/contracts/registry/ITransferInterceptor.sol +1 -1
  465. package/contracts/registry/Registry.sol +551 -211
  466. package/contracts/registry/RegistryAdmin.sol +173 -0
  467. package/contracts/registry/RegistryAuthorization.sol +337 -0
  468. package/contracts/registry/RegistryService.sol +119 -198
  469. package/contracts/registry/RegistryServiceManager.sol +24 -33
  470. package/contracts/registry/ReleaseAdmin.sol +199 -0
  471. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  472. package/contracts/registry/ReleaseRegistry.sol +525 -0
  473. package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
  474. package/contracts/registry/TokenRegistry.sol +267 -60
  475. package/contracts/shared/Component.sol +210 -0
  476. package/contracts/shared/ComponentService.sol +691 -0
  477. package/contracts/shared/ComponentServiceManager.sol +38 -0
  478. package/contracts/shared/ContractLib.sol +312 -0
  479. package/contracts/shared/IComponent.sol +58 -0
  480. package/contracts/shared/IComponentService.sol +111 -0
  481. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  482. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  483. package/contracts/shared/INftOwnable.sol +17 -12
  484. package/contracts/shared/IPolicyHolder.sol +35 -0
  485. package/contracts/shared/IRegisterable.sol +24 -5
  486. package/contracts/shared/IRegistryLinked.sol +11 -0
  487. package/contracts/shared/IService.sol +12 -5
  488. package/contracts/shared/InitializableERC165.sol +35 -0
  489. package/contracts/shared/InstanceLinkedComponent.sol +192 -0
  490. package/contracts/shared/Lifecycle.sol +88 -0
  491. package/contracts/shared/NftIdSet.sol +65 -0
  492. package/contracts/shared/NftOwnable.sol +77 -82
  493. package/contracts/shared/PolicyHolder.sol +63 -0
  494. package/contracts/shared/Registerable.sol +54 -38
  495. package/contracts/shared/RegistryLinked.sol +38 -0
  496. package/contracts/shared/Service.sol +44 -35
  497. package/contracts/shared/TokenHandler.sol +327 -12
  498. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  499. package/contracts/staking/IStaking.sol +366 -0
  500. package/contracts/staking/IStakingService.sol +127 -0
  501. package/contracts/staking/ITargetLimitHandler.sol +17 -0
  502. package/contracts/staking/Staking.sol +797 -0
  503. package/contracts/staking/StakingLib.sol +195 -0
  504. package/contracts/staking/StakingManager.sol +53 -0
  505. package/contracts/staking/StakingReader.sol +171 -0
  506. package/contracts/staking/StakingService.sol +321 -0
  507. package/contracts/staking/StakingServiceManager.sol +46 -0
  508. package/contracts/staking/StakingStore.sol +1368 -0
  509. package/contracts/staking/TargetHandler.sol +132 -0
  510. package/contracts/staking/TargetManagerLib.sol +234 -0
  511. package/contracts/{types → type}/AddressSet.sol +1 -1
  512. package/contracts/type/Amount.sol +154 -0
  513. package/contracts/{types → type}/Blocknumber.sol +38 -19
  514. package/contracts/type/ChainId.sol +101 -0
  515. package/contracts/type/ClaimId.sol +80 -0
  516. package/contracts/{types → type}/DistributorType.sol +2 -2
  517. package/contracts/type/Fee.sol +66 -0
  518. package/contracts/{types → type}/Key32.sol +2 -2
  519. package/contracts/type/Key32Set.sol +62 -0
  520. package/contracts/{types → type}/NftId.sol +28 -15
  521. package/contracts/{types → type}/NftIdSet.sol +2 -2
  522. package/contracts/type/ObjectType.sol +307 -0
  523. package/contracts/type/PayoutId.sol +82 -0
  524. package/contracts/{types → type}/Referral.sol +6 -1
  525. package/contracts/type/RequestId.sol +75 -0
  526. package/contracts/type/RiskId.sol +75 -0
  527. package/contracts/type/RoleId.sol +180 -0
  528. package/contracts/type/Seconds.sol +120 -0
  529. package/contracts/type/Selector.sol +107 -0
  530. package/contracts/{types → type}/StateId.sol +48 -4
  531. package/contracts/type/String.sol +65 -0
  532. package/contracts/{types → type}/Timestamp.sol +36 -20
  533. package/contracts/type/UFixed.sol +263 -0
  534. package/contracts/{types → type}/Version.sol +59 -7
  535. package/contracts/{shared → upgradeability}/IVersionable.sol +7 -47
  536. package/contracts/upgradeability/ProxyManager.sol +246 -0
  537. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
  538. package/contracts/upgradeability/Versionable.sol +62 -0
  539. package/package.json +12 -8
  540. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  541. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  542. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  543. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -408
  544. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  545. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  546. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  547. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
  548. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  549. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  550. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  551. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  552. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  553. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  554. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  556. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  557. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  558. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  560. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  562. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  564. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  566. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  568. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  570. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  572. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  574. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  575. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  576. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  577. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  578. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  579. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  580. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  581. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  582. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  583. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  584. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  585. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  586. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  587. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  588. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  589. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  590. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  591. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  592. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  593. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  594. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -788
  595. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  596. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  597. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  598. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1047
  599. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  600. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
  601. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  602. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -285
  603. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  604. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -532
  605. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  606. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -100
  607. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  608. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  609. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  610. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  611. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  612. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  613. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  614. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -254
  615. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  616. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  617. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  618. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1031
  619. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  620. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -436
  621. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  622. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -693
  623. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  624. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -420
  625. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  626. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  627. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
  628. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  629. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  630. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -499
  631. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  632. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  633. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1156
  634. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  635. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -492
  636. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  637. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -727
  638. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  639. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -420
  640. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  641. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  642. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  643. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -420
  644. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  645. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  646. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  647. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -530
  648. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  649. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  650. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  651. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  652. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  653. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  654. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  655. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  656. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  657. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  658. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  659. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  660. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  661. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  662. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  663. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  664. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  665. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  666. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  667. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  668. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  669. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  670. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  671. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  672. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  673. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  674. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  675. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  676. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  677. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  678. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  679. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  680. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  681. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  682. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  683. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  684. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  685. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  686. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  687. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  688. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  689. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  690. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  691. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  692. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  693. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  694. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  695. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  696. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  697. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  698. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  699. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  700. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  701. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  702. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  703. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  704. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  705. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  706. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  707. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  708. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  709. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  710. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  711. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  712. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  713. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  714. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  715. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  716. package/contracts/components/BaseComponent.sol +0 -168
  717. package/contracts/components/Distribution.sol +0 -154
  718. package/contracts/components/IBaseComponent.sol +0 -35
  719. package/contracts/components/IDistributionComponent.sol +0 -44
  720. package/contracts/components/IPoolComponent.sol +0 -66
  721. package/contracts/components/IProductComponent.sol +0 -35
  722. package/contracts/components/Pool.sol +0 -258
  723. package/contracts/components/Product.sol +0 -295
  724. package/contracts/experiment/cloning/Cloner.sol +0 -47
  725. package/contracts/experiment/errors/Require.sol +0 -38
  726. package/contracts/experiment/errors/Revert.sol +0 -44
  727. package/contracts/experiment/inheritance/A.sol +0 -53
  728. package/contracts/experiment/inheritance/B.sol +0 -28
  729. package/contracts/experiment/inheritance/C.sol +0 -34
  730. package/contracts/experiment/inheritance/IA.sol +0 -13
  731. package/contracts/experiment/inheritance/IB.sol +0 -10
  732. package/contracts/experiment/inheritance/IC.sol +0 -12
  733. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  734. package/contracts/experiment/statemachine/ISM.sol +0 -25
  735. package/contracts/experiment/statemachine/SM.sol +0 -57
  736. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  737. package/contracts/experiment/types/TypeA.sol +0 -47
  738. package/contracts/experiment/types/TypeB.sol +0 -29
  739. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -23
  740. package/contracts/instance/BundleManager.sol +0 -129
  741. package/contracts/instance/IInstanceBase.sol +0 -25
  742. package/contracts/instance/InstanceAccessManager.sol +0 -303
  743. package/contracts/instance/InstanceBase.sol +0 -39
  744. package/contracts/instance/ObjectManager.sol +0 -101
  745. package/contracts/instance/base/ComponentServiceBase.sol +0 -76
  746. package/contracts/instance/base/IInstanceBase.sol +0 -21
  747. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  748. package/contracts/instance/base/KeyValueStore.sol +0 -172
  749. package/contracts/instance/base/Lifecycle.sol +0 -100
  750. package/contracts/instance/module/IAccess.sol +0 -48
  751. package/contracts/instance/module/ISetup.sol +0 -46
  752. package/contracts/instance/module/ITreasury.sol +0 -23
  753. package/contracts/instance/service/BundleService.sol +0 -294
  754. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  755. package/contracts/instance/service/DistributionService.sol +0 -120
  756. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  757. package/contracts/instance/service/IBundleService.sol +0 -44
  758. package/contracts/instance/service/IDistributionService.sol +0 -12
  759. package/contracts/instance/service/IPolicyService.sol +0 -94
  760. package/contracts/instance/service/IPoolService.sol +0 -20
  761. package/contracts/instance/service/IProductService.sol +0 -40
  762. package/contracts/instance/service/PolicyService.sol +0 -539
  763. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  764. package/contracts/instance/service/PoolService.sol +0 -145
  765. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  766. package/contracts/instance/service/ProductService.sol +0 -213
  767. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  768. package/contracts/registry/RegistryAccessManager.sol +0 -210
  769. package/contracts/registry/ReleaseManager.sol +0 -342
  770. package/contracts/shared/ContractDeployerLib.sol +0 -72
  771. package/contracts/shared/ERC165.sol +0 -25
  772. package/contracts/shared/ProxyManager.sol +0 -94
  773. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  774. package/contracts/shared/UpgradableProxyWithAdmin.sol +0 -16
  775. package/contracts/shared/Versionable.sol +0 -147
  776. package/contracts/test/TestFee.sol +0 -25
  777. package/contracts/test/TestRegisterable.sol +0 -18
  778. package/contracts/test/TestRoleId.sol +0 -14
  779. package/contracts/test/TestService.sol +0 -25
  780. package/contracts/test/TestToken.sol +0 -26
  781. package/contracts/test/TestVersion.sol +0 -44
  782. package/contracts/test/TestVersionable.sol +0 -17
  783. package/contracts/types/ChainId.sol +0 -38
  784. package/contracts/types/Fee.sol +0 -56
  785. package/contracts/types/NumberId.sol +0 -52
  786. package/contracts/types/ObjectType.sol +0 -152
  787. package/contracts/types/RiskId.sol +0 -43
  788. package/contracts/types/RoleId.sol +0 -90
  789. 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,168 @@
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"
383
- },
384
- {
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"
513
+ "internalType": "Str",
514
+ "name": "name",
515
+ "type": "bytes32"
443
516
  },
444
517
  {
445
- "internalType": "Timestamp",
446
- "name": "activatedAt",
447
- "type": "uint40"
518
+ "internalType": "Selector",
519
+ "name": "selector",
520
+ "type": "bytes4"
448
521
  },
449
522
  {
450
523
  "internalType": "Timestamp",
451
- "name": "expiredAt",
524
+ "name": "createdAt",
452
525
  "type": "uint40"
453
526
  },
454
527
  {
455
- "internalType": "Timestamp",
456
- "name": "closedAt",
528
+ "internalType": "Blocknumber",
529
+ "name": "lastUpdateIn",
457
530
  "type": "uint40"
458
531
  }
459
532
  ],
460
- "internalType": "struct IPolicy.PolicyInfo",
461
- "name": "policy",
462
- "type": "tuple"
533
+ "internalType": "struct IAccess.FunctionInfo[]",
534
+ "name": "functions",
535
+ "type": "tuple[]"
463
536
  }
464
537
  ],
465
- "name": "createPolicy",
538
+ "name": "authorizeFunctions",
466
539
  "outputs": [],
467
540
  "stateMutability": "nonpayable",
468
541
  "type": "function"
@@ -470,269 +543,104 @@
470
543
  {
471
544
  "inputs": [
472
545
  {
473
- "internalType": "NftId",
474
- "name": "poolNftId",
475
- "type": "uint96"
546
+ "internalType": "string",
547
+ "name": "roleName",
548
+ "type": "string"
476
549
  },
477
550
  {
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"
551
+ "internalType": "RoleId",
552
+ "name": "adminRoleId",
553
+ "type": "uint64"
554
+ },
555
+ {
556
+ "internalType": "uint32",
557
+ "name": "maxMemberCount",
558
+ "type": "uint32"
559
+ }
560
+ ],
561
+ "name": "createRole",
562
+ "outputs": [
563
+ {
564
+ "internalType": "RoleId",
565
+ "name": "roleId",
566
+ "type": "uint64"
564
567
  }
565
568
  ],
566
- "name": "createPoolSetup",
567
- "outputs": [],
568
569
  "stateMutability": "nonpayable",
569
570
  "type": "function"
570
571
  },
571
572
  {
572
573
  "inputs": [
573
574
  {
574
- "internalType": "NftId",
575
- "name": "productNftId",
576
- "type": "uint96"
575
+ "internalType": "address",
576
+ "name": "target",
577
+ "type": "address"
577
578
  },
579
+ {
580
+ "internalType": "string",
581
+ "name": "name",
582
+ "type": "string"
583
+ }
584
+ ],
585
+ "name": "createTarget",
586
+ "outputs": [
587
+ {
588
+ "internalType": "RoleId",
589
+ "name": "contractRoleId",
590
+ "type": "uint64"
591
+ }
592
+ ],
593
+ "stateMutability": "nonpayable",
594
+ "type": "function"
595
+ },
596
+ {
597
+ "inputs": [],
598
+ "name": "getBundleSet",
599
+ "outputs": [
600
+ {
601
+ "internalType": "contract BundleSet",
602
+ "name": "",
603
+ "type": "address"
604
+ }
605
+ ],
606
+ "stateMutability": "view",
607
+ "type": "function"
608
+ },
609
+ {
610
+ "inputs": [],
611
+ "name": "getInitialInfo",
612
+ "outputs": [
578
613
  {
579
614
  "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
615
  {
591
616
  "internalType": "NftId",
592
- "name": "distributionNftId",
617
+ "name": "nftId",
593
618
  "type": "uint96"
594
619
  },
595
620
  {
596
621
  "internalType": "NftId",
597
- "name": "poolNftId",
622
+ "name": "parentNftId",
598
623
  "type": "uint96"
599
624
  },
600
625
  {
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"
626
+ "internalType": "ObjectType",
627
+ "name": "objectType",
628
+ "type": "uint8"
701
629
  },
702
630
  {
703
631
  "internalType": "bool",
704
- "name": "isIntercepting",
632
+ "name": "isInterceptor",
705
633
  "type": "bool"
706
634
  },
707
635
  {
708
636
  "internalType": "address",
709
- "name": "wallet",
637
+ "name": "objectAddress",
710
638
  "type": "address"
711
- }
712
- ],
713
- "internalType": "struct ISetup.ProductSetupInfo",
714
- "name": "setup",
715
- "type": "tuple"
716
- }
717
- ],
718
- "name": "createProductSetup",
719
- "outputs": [],
720
- "stateMutability": "nonpayable",
721
- "type": "function"
722
- },
723
- {
724
- "inputs": [
725
- {
726
- "internalType": "RiskId",
727
- "name": "riskId",
728
- "type": "bytes8"
729
- },
730
- {
731
- "components": [
639
+ },
732
640
  {
733
- "internalType": "NftId",
734
- "name": "productNftId",
735
- "type": "uint96"
641
+ "internalType": "address",
642
+ "name": "initialOwner",
643
+ "type": "address"
736
644
  },
737
645
  {
738
646
  "internalType": "bytes",
@@ -740,88 +648,35 @@
740
648
  "type": "bytes"
741
649
  }
742
650
  ],
743
- "internalType": "struct IRisk.RiskInfo",
744
- "name": "risk",
651
+ "internalType": "struct IRegistry.ObjectInfo",
652
+ "name": "",
745
653
  "type": "tuple"
746
654
  }
747
655
  ],
748
- "name": "createRisk",
749
- "outputs": [],
750
- "stateMutability": "nonpayable",
656
+ "stateMutability": "view",
751
657
  "type": "function"
752
658
  },
753
659
  {
754
- "inputs": [
755
- {
756
- "internalType": "Key32",
757
- "name": "key",
758
- "type": "bytes32"
759
- }
760
- ],
761
- "name": "exists",
660
+ "inputs": [],
661
+ "name": "getInstanceAdmin",
762
662
  "outputs": [
763
663
  {
764
- "internalType": "bool",
664
+ "internalType": "contract InstanceAdmin",
765
665
  "name": "",
766
- "type": "bool"
666
+ "type": "address"
767
667
  }
768
668
  ],
769
669
  "stateMutability": "view",
770
670
  "type": "function"
771
671
  },
772
672
  {
773
- "inputs": [
774
- {
775
- "internalType": "Key32",
776
- "name": "key",
777
- "type": "bytes32"
778
- }
779
- ],
780
- "name": "get",
673
+ "inputs": [],
674
+ "name": "getInstanceReader",
781
675
  "outputs": [
782
676
  {
783
- "components": [
784
- {
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"
815
- },
816
- {
817
- "internalType": "bytes",
818
- "name": "data",
819
- "type": "bytes"
820
- }
821
- ],
822
- "internalType": "struct IKeyValueStore.Value",
823
- "name": "value",
824
- "type": "tuple"
677
+ "internalType": "contract InstanceReader",
678
+ "name": "",
679
+ "type": "address"
825
680
  }
826
681
  ],
827
682
  "stateMutability": "view",
@@ -829,10 +684,10 @@
829
684
  },
830
685
  {
831
686
  "inputs": [],
832
- "name": "getBundleManager",
687
+ "name": "getInstanceStore",
833
688
  "outputs": [
834
689
  {
835
- "internalType": "contract BundleManager",
690
+ "internalType": "contract InstanceStore",
836
691
  "name": "",
837
692
  "type": "address"
838
693
  }
@@ -842,31 +697,12 @@
842
697
  },
843
698
  {
844
699
  "inputs": [],
845
- "name": "getBundleService",
700
+ "name": "getNftId",
846
701
  "outputs": [
847
702
  {
848
- "internalType": "contract IBundleService",
703
+ "internalType": "NftId",
849
704
  "name": "",
850
- "type": "address"
851
- }
852
- ],
853
- "stateMutability": "view",
854
- "type": "function"
855
- },
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"
705
+ "type": "uint96"
870
706
  }
871
707
  ],
872
708
  "stateMutability": "view",
@@ -874,10 +710,10 @@
874
710
  },
875
711
  {
876
712
  "inputs": [],
877
- "name": "getDistributionService",
713
+ "name": "getOwner",
878
714
  "outputs": [
879
715
  {
880
- "internalType": "contract IDistributionService",
716
+ "internalType": "address",
881
717
  "name": "",
882
718
  "type": "address"
883
719
  }
@@ -888,17 +724,17 @@
888
724
  {
889
725
  "inputs": [
890
726
  {
891
- "internalType": "ObjectType",
892
- "name": "objectType",
893
- "type": "uint8"
727
+ "internalType": "uint256",
728
+ "name": "idx",
729
+ "type": "uint256"
894
730
  }
895
731
  ],
896
- "name": "getInitialState",
732
+ "name": "getProductNftId",
897
733
  "outputs": [
898
734
  {
899
- "internalType": "StateId",
900
- "name": "",
901
- "type": "uint8"
735
+ "internalType": "NftId",
736
+ "name": "productNftId",
737
+ "type": "uint96"
902
738
  }
903
739
  ],
904
740
  "stateMutability": "view",
@@ -906,10 +742,10 @@
906
742
  },
907
743
  {
908
744
  "inputs": [],
909
- "name": "getInstanceReader",
745
+ "name": "getProductStore",
910
746
  "outputs": [
911
747
  {
912
- "internalType": "contract InstanceReader",
748
+ "internalType": "contract ProductStore",
913
749
  "name": "",
914
750
  "type": "address"
915
751
  }
@@ -918,46 +754,26 @@
918
754
  "type": "function"
919
755
  },
920
756
  {
921
- "inputs": [
757
+ "inputs": [],
758
+ "name": "getRegistry",
759
+ "outputs": [
922
760
  {
923
- "internalType": "Key32",
924
- "name": "key",
925
- "type": "bytes32"
761
+ "internalType": "contract IRegistry",
762
+ "name": "",
763
+ "type": "address"
926
764
  }
927
765
  ],
928
- "name": "getMetadata",
766
+ "stateMutability": "view",
767
+ "type": "function"
768
+ },
769
+ {
770
+ "inputs": [],
771
+ "name": "getRelease",
929
772
  "outputs": [
930
773
  {
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"
774
+ "internalType": "VersionPart",
775
+ "name": "release",
776
+ "type": "uint8"
961
777
  }
962
778
  ],
963
779
  "stateMutability": "view",
@@ -965,10 +781,10 @@
965
781
  },
966
782
  {
967
783
  "inputs": [],
968
- "name": "getPolicyService",
784
+ "name": "getRiskSet",
969
785
  "outputs": [
970
786
  {
971
- "internalType": "contract IPolicyService",
787
+ "internalType": "contract RiskSet",
972
788
  "name": "",
973
789
  "type": "address"
974
790
  }
@@ -977,45 +793,57 @@
977
793
  "type": "function"
978
794
  },
979
795
  {
980
- "inputs": [],
981
- "name": "getPoolService",
982
- "outputs": [
796
+ "inputs": [
983
797
  {
984
- "internalType": "contract IPoolService",
985
- "name": "",
798
+ "internalType": "RoleId",
799
+ "name": "roleId",
800
+ "type": "uint64"
801
+ },
802
+ {
803
+ "internalType": "address",
804
+ "name": "account",
986
805
  "type": "address"
987
806
  }
988
807
  ],
989
- "stateMutability": "view",
808
+ "name": "grantRole",
809
+ "outputs": [],
810
+ "stateMutability": "nonpayable",
990
811
  "type": "function"
991
812
  },
992
813
  {
993
814
  "inputs": [],
994
- "name": "getProductService",
815
+ "name": "isActive",
995
816
  "outputs": [
996
817
  {
997
- "internalType": "contract IProductService",
998
- "name": "",
999
- "type": "address"
818
+ "internalType": "bool",
819
+ "name": "active",
820
+ "type": "bool"
1000
821
  }
1001
822
  ],
1002
823
  "stateMutability": "view",
1003
824
  "type": "function"
1004
825
  },
1005
826
  {
1006
- "inputs": [
827
+ "inputs": [],
828
+ "name": "isConsumingScheduledOp",
829
+ "outputs": [
1007
830
  {
1008
- "internalType": "Key32",
1009
- "name": "key",
1010
- "type": "bytes32"
831
+ "internalType": "bytes4",
832
+ "name": "",
833
+ "type": "bytes4"
1011
834
  }
1012
835
  ],
1013
- "name": "getState",
836
+ "stateMutability": "view",
837
+ "type": "function"
838
+ },
839
+ {
840
+ "inputs": [],
841
+ "name": "isInstanceLocked",
1014
842
  "outputs": [
1015
843
  {
1016
- "internalType": "StateId",
1017
- "name": "state",
1018
- "type": "uint8"
844
+ "internalType": "bool",
845
+ "name": "isLocked",
846
+ "type": "bool"
1019
847
  }
1020
848
  ],
1021
849
  "stateMutability": "view",
@@ -1024,16 +852,16 @@
1024
852
  {
1025
853
  "inputs": [
1026
854
  {
1027
- "internalType": "ObjectType",
1028
- "name": "objectType",
1029
- "type": "uint8"
855
+ "internalType": "address",
856
+ "name": "target",
857
+ "type": "address"
1030
858
  }
1031
859
  ],
1032
- "name": "hasLifecycle",
860
+ "name": "isTargetLocked",
1033
861
  "outputs": [
1034
862
  {
1035
863
  "internalType": "bool",
1036
- "name": "",
864
+ "name": "isLocked",
1037
865
  "type": "bool"
1038
866
  }
1039
867
  ],
@@ -1042,180 +870,100 @@
1042
870
  },
1043
871
  {
1044
872
  "inputs": [],
1045
- "name": "isConsumingScheduledOp",
873
+ "name": "isTokenRegistryDisabled",
1046
874
  "outputs": [
1047
875
  {
1048
- "internalType": "bytes4",
876
+ "internalType": "bool",
1049
877
  "name": "",
1050
- "type": "bytes4"
878
+ "type": "bool"
1051
879
  }
1052
880
  ],
1053
881
  "stateMutability": "view",
1054
882
  "type": "function"
1055
883
  },
1056
884
  {
1057
- "inputs": [
1058
- {
1059
- "internalType": "ObjectType",
1060
- "name": "objectType",
1061
- "type": "uint8"
1062
- },
1063
- {
1064
- "internalType": "StateId",
1065
- "name": "fromId",
1066
- "type": "uint8"
1067
- },
1068
- {
1069
- "internalType": "StateId",
1070
- "name": "toId",
1071
- "type": "uint8"
1072
- }
1073
- ],
1074
- "name": "isValidTransition",
885
+ "inputs": [],
886
+ "name": "linkToRegisteredNftId",
1075
887
  "outputs": [
1076
888
  {
1077
- "internalType": "bool",
889
+ "internalType": "NftId",
1078
890
  "name": "",
1079
- "type": "bool"
891
+ "type": "uint96"
1080
892
  }
1081
893
  ],
1082
- "stateMutability": "view",
894
+ "stateMutability": "nonpayable",
1083
895
  "type": "function"
1084
896
  },
1085
897
  {
1086
- "inputs": [
898
+ "inputs": [],
899
+ "name": "products",
900
+ "outputs": [
1087
901
  {
1088
- "internalType": "address",
1089
- "name": "",
1090
- "type": "address"
902
+ "internalType": "uint256",
903
+ "name": "productCount",
904
+ "type": "uint256"
1091
905
  }
1092
906
  ],
1093
- "name": "setAuthority",
1094
- "outputs": [],
1095
- "stateMutability": "nonpayable",
907
+ "stateMutability": "view",
1096
908
  "type": "function"
1097
909
  },
1098
910
  {
1099
911
  "inputs": [
1100
912
  {
1101
- "internalType": "bytes4",
1102
- "name": "interfaceId",
1103
- "type": "bytes4"
913
+ "internalType": "Amount",
914
+ "name": "dipAmount",
915
+ "type": "uint96"
1104
916
  }
1105
917
  ],
1106
- "name": "supportsInterface",
918
+ "name": "refillStakingRewardReserves",
1107
919
  "outputs": [
1108
920
  {
1109
- "internalType": "bool",
1110
- "name": "",
1111
- "type": "bool"
921
+ "internalType": "Amount",
922
+ "name": "newBalance",
923
+ "type": "uint96"
1112
924
  }
1113
925
  ],
1114
- "stateMutability": "view",
926
+ "stateMutability": "nonpayable",
1115
927
  "type": "function"
1116
928
  },
1117
929
  {
1118
930
  "inputs": [
1119
931
  {
1120
- "internalType": "ObjectType",
1121
- "name": "objectType",
1122
- "type": "uint8"
932
+ "internalType": "address",
933
+ "name": "product",
934
+ "type": "address"
1123
935
  },
1124
936
  {
1125
- "internalType": "KeyId",
1126
- "name": "id",
1127
- "type": "bytes31"
937
+ "internalType": "address",
938
+ "name": "token",
939
+ "type": "address"
1128
940
  }
1129
941
  ],
1130
- "name": "toKey32",
942
+ "name": "registerProduct",
1131
943
  "outputs": [
1132
944
  {
1133
- "internalType": "Key32",
1134
- "name": "",
1135
- "type": "bytes32"
945
+ "internalType": "NftId",
946
+ "name": "productNftId",
947
+ "type": "uint96"
1136
948
  }
1137
949
  ],
1138
- "stateMutability": "pure",
950
+ "stateMutability": "nonpayable",
1139
951
  "type": "function"
1140
952
  },
1141
953
  {
1142
954
  "inputs": [
1143
955
  {
1144
- "internalType": "NftId",
1145
- "name": "bundleNftId",
1146
- "type": "uint96"
1147
- },
1148
- {
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"
956
+ "internalType": "RoleId",
957
+ "name": "roleId",
958
+ "type": "uint64"
1211
959
  },
1212
960
  {
1213
- "internalType": "StateId",
1214
- "name": "newState",
1215
- "type": "uint8"
961
+ "internalType": "address",
962
+ "name": "account",
963
+ "type": "address"
1216
964
  }
1217
965
  ],
1218
- "name": "updateBundle",
966
+ "name": "revokeRole",
1219
967
  "outputs": [],
1220
968
  "stateMutability": "nonpayable",
1221
969
  "type": "function"
@@ -1223,17 +971,12 @@
1223
971
  {
1224
972
  "inputs": [
1225
973
  {
1226
- "internalType": "NftId",
1227
- "name": "bundleNftId",
1228
- "type": "uint96"
1229
- },
1230
- {
1231
- "internalType": "StateId",
1232
- "name": "newState",
1233
- "type": "uint8"
974
+ "internalType": "address",
975
+ "name": "",
976
+ "type": "address"
1234
977
  }
1235
978
  ],
1236
- "name": "updateBundleState",
979
+ "name": "setAuthority",
1237
980
  "outputs": [],
1238
981
  "stateMutability": "nonpayable",
1239
982
  "type": "function"
@@ -1241,61 +984,12 @@
1241
984
  {
1242
985
  "inputs": [
1243
986
  {
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"
987
+ "internalType": "bool",
988
+ "name": "locked",
989
+ "type": "bool"
1296
990
  }
1297
991
  ],
1298
- "name": "updateDistributionSetup",
992
+ "name": "setInstanceLocked",
1299
993
  "outputs": [],
1300
994
  "stateMutability": "nonpayable",
1301
995
  "type": "function"
@@ -1303,17 +997,12 @@
1303
997
  {
1304
998
  "inputs": [
1305
999
  {
1306
- "internalType": "NftId",
1307
- "name": "distributionNftId",
1308
- "type": "uint96"
1309
- },
1310
- {
1311
- "internalType": "StateId",
1312
- "name": "newState",
1313
- "type": "uint8"
1000
+ "internalType": "contract InstanceReader",
1001
+ "name": "instanceReader",
1002
+ "type": "address"
1314
1003
  }
1315
1004
  ],
1316
- "name": "updateDistributionSetupState",
1005
+ "name": "setInstanceReader",
1317
1006
  "outputs": [],
1318
1007
  "stateMutability": "nonpayable",
1319
1008
  "type": "function"
@@ -1321,104 +1010,17 @@
1321
1010
  {
1322
1011
  "inputs": [
1323
1012
  {
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"
1013
+ "internalType": "RoleId",
1014
+ "name": "roleId",
1015
+ "type": "uint64"
1414
1016
  },
1415
1017
  {
1416
- "internalType": "StateId",
1417
- "name": "newState",
1418
- "type": "uint8"
1018
+ "internalType": "bool",
1019
+ "name": "active",
1020
+ "type": "bool"
1419
1021
  }
1420
1022
  ],
1421
- "name": "updatePolicy",
1023
+ "name": "setRoleActive",
1422
1024
  "outputs": [],
1423
1025
  "stateMutability": "nonpayable",
1424
1026
  "type": "function"
@@ -1426,17 +1028,12 @@
1426
1028
  {
1427
1029
  "inputs": [
1428
1030
  {
1429
- "internalType": "NftId",
1430
- "name": "policyNftId",
1431
- "type": "uint96"
1432
- },
1433
- {
1434
- "internalType": "StateId",
1435
- "name": "newState",
1436
- "type": "uint8"
1031
+ "internalType": "Seconds",
1032
+ "name": "stakeLockingPeriod",
1033
+ "type": "uint40"
1437
1034
  }
1438
1035
  ],
1439
- "name": "updatePolicyState",
1036
+ "name": "setStakingLockingPeriod",
1440
1037
  "outputs": [],
1441
1038
  "stateMutability": "nonpayable",
1442
1039
  "type": "function"
@@ -1444,105 +1041,12 @@
1444
1041
  {
1445
1042
  "inputs": [
1446
1043
  {
1447
- "internalType": "NftId",
1448
- "name": "poolNftId",
1044
+ "internalType": "Amount",
1045
+ "name": "maxStakedAmount",
1449
1046
  "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"
1543
1047
  }
1544
1048
  ],
1545
- "name": "updatePoolSetup",
1049
+ "name": "setStakingMaxAmount",
1546
1050
  "outputs": [],
1547
1051
  "stateMutability": "nonpayable",
1548
1052
  "type": "function"
@@ -1550,17 +1054,12 @@
1550
1054
  {
1551
1055
  "inputs": [
1552
1056
  {
1553
- "internalType": "NftId",
1554
- "name": "poolNftId",
1555
- "type": "uint96"
1556
- },
1557
- {
1558
- "internalType": "StateId",
1559
- "name": "newState",
1560
- "type": "uint8"
1057
+ "internalType": "UFixed",
1058
+ "name": "rewardRate",
1059
+ "type": "uint160"
1561
1060
  }
1562
1061
  ],
1563
- "name": "updatePoolSetupState",
1062
+ "name": "setStakingRewardRate",
1564
1063
  "outputs": [],
1565
1064
  "stateMutability": "nonpayable",
1566
1065
  "type": "function"
@@ -1568,156 +1067,17 @@
1568
1067
  {
1569
1068
  "inputs": [
1570
1069
  {
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"
1070
+ "internalType": "address",
1071
+ "name": "target",
1072
+ "type": "address"
1713
1073
  },
1714
1074
  {
1715
- "internalType": "StateId",
1716
- "name": "newState",
1717
- "type": "uint8"
1075
+ "internalType": "bool",
1076
+ "name": "locked",
1077
+ "type": "bool"
1718
1078
  }
1719
1079
  ],
1720
- "name": "updateProductSetup",
1080
+ "name": "setTargetLocked",
1721
1081
  "outputs": [],
1722
1082
  "stateMutability": "nonpayable",
1723
1083
  "type": "function"
@@ -1725,52 +1085,65 @@
1725
1085
  {
1726
1086
  "inputs": [
1727
1087
  {
1728
- "internalType": "NftId",
1729
- "name": "productNftId",
1730
- "type": "uint96"
1731
- },
1088
+ "internalType": "bytes4",
1089
+ "name": "interfaceId",
1090
+ "type": "bytes4"
1091
+ }
1092
+ ],
1093
+ "name": "supportsInterface",
1094
+ "outputs": [
1732
1095
  {
1733
- "internalType": "StateId",
1734
- "name": "newState",
1735
- "type": "uint8"
1096
+ "internalType": "bool",
1097
+ "name": "",
1098
+ "type": "bool"
1736
1099
  }
1737
1100
  ],
1738
- "name": "updateProductSetupState",
1739
- "outputs": [],
1740
- "stateMutability": "nonpayable",
1101
+ "stateMutability": "view",
1741
1102
  "type": "function"
1742
1103
  },
1743
1104
  {
1744
1105
  "inputs": [
1745
1106
  {
1746
- "internalType": "RiskId",
1747
- "name": "riskId",
1748
- "type": "bytes8"
1107
+ "internalType": "address",
1108
+ "name": "target",
1109
+ "type": "address"
1749
1110
  },
1750
1111
  {
1751
1112
  "components": [
1752
1113
  {
1753
- "internalType": "NftId",
1754
- "name": "productNftId",
1755
- "type": "uint96"
1114
+ "internalType": "Str",
1115
+ "name": "name",
1116
+ "type": "bytes32"
1756
1117
  },
1757
1118
  {
1758
- "internalType": "bytes",
1759
- "name": "data",
1760
- "type": "bytes"
1119
+ "internalType": "Selector",
1120
+ "name": "selector",
1121
+ "type": "bytes4"
1122
+ },
1123
+ {
1124
+ "internalType": "Timestamp",
1125
+ "name": "createdAt",
1126
+ "type": "uint40"
1127
+ },
1128
+ {
1129
+ "internalType": "Blocknumber",
1130
+ "name": "lastUpdateIn",
1131
+ "type": "uint40"
1761
1132
  }
1762
1133
  ],
1763
- "internalType": "struct IRisk.RiskInfo",
1764
- "name": "risk",
1765
- "type": "tuple"
1766
- },
1767
- {
1768
- "internalType": "StateId",
1769
- "name": "newState",
1770
- "type": "uint8"
1134
+ "internalType": "struct IAccess.FunctionInfo[]",
1135
+ "name": "functions",
1136
+ "type": "tuple[]"
1771
1137
  }
1772
1138
  ],
1773
- "name": "updateRisk",
1139
+ "name": "unauthorizeFunctions",
1140
+ "outputs": [],
1141
+ "stateMutability": "nonpayable",
1142
+ "type": "function"
1143
+ },
1144
+ {
1145
+ "inputs": [],
1146
+ "name": "upgradeInstanceReader",
1774
1147
  "outputs": [],
1775
1148
  "stateMutability": "nonpayable",
1776
1149
  "type": "function"
@@ -1778,18 +1151,19 @@
1778
1151
  {
1779
1152
  "inputs": [
1780
1153
  {
1781
- "internalType": "RiskId",
1782
- "name": "riskId",
1783
- "type": "bytes8"
1784
- },
1154
+ "internalType": "Amount",
1155
+ "name": "dipAmount",
1156
+ "type": "uint96"
1157
+ }
1158
+ ],
1159
+ "name": "withdrawStakingRewardReserves",
1160
+ "outputs": [
1785
1161
  {
1786
- "internalType": "StateId",
1787
- "name": "newState",
1788
- "type": "uint8"
1162
+ "internalType": "Amount",
1163
+ "name": "newBalance",
1164
+ "type": "uint96"
1789
1165
  }
1790
1166
  ],
1791
- "name": "updateRiskState",
1792
- "outputs": [],
1793
1167
  "stateMutability": "nonpayable",
1794
1168
  "type": "function"
1795
1169
  }