@etherisc/gif-next 0.0.2-d96b9e1-825 → 0.0.2-da09ec0-359

Sign up to get free protection for your applications and to get access to all the features.
Files changed (499) hide show
  1. package/README.md +262 -20
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
  3. package/artifacts/contracts/components/Component.sol/Component.json +873 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +1376 -0
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +636 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +1000 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +856 -117
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +637 -55
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +1164 -144
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +998 -105
  18. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  19. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
  20. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  21. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
  22. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  23. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +315 -1528
  24. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  25. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +616 -0
  26. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  27. package/artifacts/contracts/instance/Instance.sol/Instance.json +406 -1625
  28. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1348 -0
  30. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
  32. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  33. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1569 -0
  34. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  35. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +979 -0
  36. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +656 -0
  38. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  39. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
  40. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  41. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
  42. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
  43. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +631 -0
  44. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +45 -127
  46. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  47. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  48. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +85 -245
  49. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  50. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
  51. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  52. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
  53. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  54. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  55. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  56. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  57. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  58. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  59. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  60. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  61. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  62. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  63. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  64. package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
  65. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  66. package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
  67. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  68. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +918 -0
  69. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  70. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +648 -0
  71. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  72. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1288 -0
  73. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  74. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +696 -0
  75. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
  76. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1376 -0
  77. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  78. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +748 -0
  79. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  80. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1556 -0
  81. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  82. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +780 -0
  83. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  84. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +493 -0
  85. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  86. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +735 -0
  87. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
  88. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +743 -0
  89. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  90. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +840 -0
  91. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  92. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +651 -0
  93. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  94. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +908 -207
  95. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
  96. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
  97. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +186 -221
  99. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  100. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1281 -0
  101. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  102. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
  103. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  104. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1334 -183
  105. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  106. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +708 -0
  107. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
  108. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
  109. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  110. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
  111. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  112. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +484 -293
  113. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  114. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +640 -0
  115. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  117. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +485 -34
  119. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +858 -0
  121. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  123. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  124. package/artifacts/contracts/registry/Registry.sol/Registry.json +487 -101
  125. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  126. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  127. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1150 -0
  129. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +657 -0
  131. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
  133. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  134. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +485 -0
  135. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  136. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  137. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  138. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  139. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  140. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  141. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  142. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +125 -0
  143. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  144. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +189 -0
  145. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  146. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -37
  147. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  148. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  149. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  150. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +157 -156
  151. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  153. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  154. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +238 -0
  155. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  156. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
  157. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  158. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +569 -0
  159. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  160. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +245 -27
  161. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  162. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  163. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  164. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +256 -220
  165. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  166. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +114 -0
  167. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  168. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  169. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  170. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  171. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  172. package/artifacts/contracts/test/TestFee.sol/TestFee.json +10 -10
  173. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  174. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +261 -28
  175. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  176. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +44 -10
  177. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  178. package/artifacts/contracts/test/TestService.sol/TestService.json +344 -135
  179. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  180. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
  181. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  182. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +12 -12
  183. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  184. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +38 -140
  185. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  186. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  187. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  188. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +2 -2
  189. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
  190. package/artifacts/contracts/types/Amount.sol/AmountLib.json +281 -0
  191. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  192. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  193. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  194. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  195. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  196. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
  197. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  198. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  199. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  200. package/artifacts/contracts/types/Fee.sol/FeeLib.json +112 -18
  201. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  202. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
  203. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  204. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
  205. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  206. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  207. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  208. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  209. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  210. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  211. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  212. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
  213. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  214. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
  215. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  216. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  217. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  218. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  219. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  220. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  221. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  222. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  223. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  224. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +51 -7
  225. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  226. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  227. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  228. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  229. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  230. package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
  231. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  232. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
  233. package/contracts/components/Component.sol +272 -0
  234. package/contracts/components/Distribution.sol +285 -0
  235. package/contracts/components/IComponent.sol +90 -0
  236. package/contracts/components/IDistributionComponent.sol +71 -0
  237. package/contracts/components/IPoolComponent.sol +100 -43
  238. package/contracts/components/IProductComponent.sol +31 -9
  239. package/contracts/components/Pool.sol +238 -110
  240. package/contracts/components/Product.sol +307 -49
  241. package/contracts/instance/BundleManager.sol +126 -0
  242. package/contracts/instance/Cloneable.sol +51 -0
  243. package/contracts/instance/IInstance.sol +64 -39
  244. package/contracts/instance/IInstanceService.sol +73 -0
  245. package/contracts/instance/Instance.sol +214 -53
  246. package/contracts/instance/InstanceAccessManager.sol +541 -0
  247. package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
  248. package/contracts/instance/InstanceReader.sol +368 -0
  249. package/contracts/instance/InstanceService.sol +308 -0
  250. package/contracts/instance/InstanceServiceManager.sol +54 -0
  251. package/contracts/instance/InstanceStore.sol +212 -0
  252. package/contracts/instance/ObjectManager.sol +82 -0
  253. package/contracts/instance/base/ComponentService.sol +148 -0
  254. package/contracts/instance/base/IKeyValueStore.sol +13 -13
  255. package/contracts/instance/base/ILifecycle.sol +3 -3
  256. package/contracts/instance/base/KeyValueStore.sol +42 -40
  257. package/contracts/instance/base/Lifecycle.sol +41 -16
  258. package/contracts/instance/module/IAccess.sol +54 -0
  259. package/contracts/instance/module/IBundle.sol +23 -0
  260. package/contracts/instance/module/IComponents.sol +41 -0
  261. package/contracts/instance/module/IDistribution.sol +42 -0
  262. package/contracts/instance/module/IPolicy.sol +77 -0
  263. package/contracts/instance/module/IRisk.sol +11 -0
  264. package/contracts/instance/module/ISetup.sol +33 -0
  265. package/contracts/instance/module/ITreasury.sol +23 -0
  266. package/contracts/instance/service/ApplicationService.sol +186 -0
  267. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  268. package/contracts/instance/service/BundleService.sol +382 -0
  269. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  270. package/contracts/instance/service/ClaimService.sol +437 -0
  271. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  272. package/contracts/instance/service/DistributionService.sol +348 -0
  273. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  274. package/contracts/instance/service/IApplicationService.sol +62 -0
  275. package/contracts/instance/service/IBundleService.sol +118 -0
  276. package/contracts/instance/service/IClaimService.sol +90 -0
  277. package/contracts/instance/service/IDistributionService.sol +87 -0
  278. package/contracts/instance/service/IPolicyService.sol +80 -0
  279. package/contracts/instance/service/IPoolService.sol +96 -12
  280. package/contracts/instance/service/IPricingService.sol +37 -0
  281. package/contracts/instance/service/IProductService.sol +21 -39
  282. package/contracts/instance/service/PolicyService.sol +376 -0
  283. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  284. package/contracts/instance/service/PoolService.sol +342 -62
  285. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  286. package/contracts/instance/service/PricingService.sol +275 -0
  287. package/contracts/instance/service/PricingServiceManager.sol +51 -0
  288. package/contracts/instance/service/ProductService.sol +148 -292
  289. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  290. package/contracts/registry/ChainNft.sol +87 -36
  291. package/contracts/registry/IRegistry.sol +68 -24
  292. package/contracts/registry/IRegistryService.sol +66 -0
  293. package/contracts/registry/ITransferInterceptor.sol +7 -0
  294. package/contracts/registry/Registry.sol +372 -286
  295. package/contracts/registry/RegistryAccessManager.sol +216 -0
  296. package/contracts/registry/RegistryService.sol +286 -0
  297. package/contracts/registry/RegistryServiceManager.sol +62 -0
  298. package/contracts/registry/ReleaseManager.sol +324 -0
  299. package/contracts/registry/TokenRegistry.sol +116 -0
  300. package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
  301. package/contracts/shared/ContractDeployerLib.sol +72 -0
  302. package/contracts/shared/ERC165.sol +14 -8
  303. package/contracts/shared/INftOwnable.sol +23 -0
  304. package/contracts/shared/IPolicyHolder.sol +40 -0
  305. package/contracts/shared/IRegisterable.sol +10 -19
  306. package/contracts/shared/IRegistryLinked.sol +11 -0
  307. package/contracts/shared/IService.sol +18 -0
  308. package/contracts/shared/IVersionable.sol +38 -37
  309. package/contracts/shared/NftOwnable.sol +118 -0
  310. package/contracts/shared/PolicyHolder.sol +94 -0
  311. package/contracts/shared/ProxyManager.sol +169 -0
  312. package/contracts/shared/Registerable.sol +52 -63
  313. package/contracts/shared/RegistryLinked.sol +43 -0
  314. package/contracts/shared/Service.sol +72 -0
  315. package/contracts/shared/TokenHandler.sol +35 -0
  316. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  317. package/contracts/shared/Versionable.sol +38 -68
  318. package/contracts/test/TestFee.sol +2 -2
  319. package/contracts/test/TestRegisterable.sol +5 -6
  320. package/contracts/test/TestRoleId.sol +2 -2
  321. package/contracts/test/TestService.sol +7 -14
  322. package/contracts/test/Usdc.sol +26 -0
  323. package/contracts/types/Amount.sol +109 -0
  324. package/contracts/types/Blocknumber.sol +1 -0
  325. package/contracts/types/ClaimId.sol +75 -0
  326. package/contracts/types/DistributorType.sol +55 -0
  327. package/contracts/types/Fee.sol +25 -11
  328. package/contracts/types/Key32.sol +8 -3
  329. package/contracts/types/NftId.sol +8 -0
  330. package/contracts/types/NftIdSet.sol +26 -24
  331. package/contracts/types/NumberId.sol +52 -0
  332. package/contracts/types/ObjectType.sol +61 -15
  333. package/contracts/types/PayoutId.sol +82 -0
  334. package/contracts/types/Referral.sol +89 -0
  335. package/contracts/types/RiskId.sol +43 -0
  336. package/contracts/types/RoleId.sol +72 -11
  337. package/contracts/types/Seconds.sol +54 -0
  338. package/contracts/types/StateId.sol +12 -3
  339. package/contracts/types/Timestamp.sol +22 -13
  340. package/contracts/types/UFixed.sol +145 -25
  341. package/contracts/types/Version.sol +14 -1
  342. package/package.json +9 -5
  343. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  344. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  345. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  346. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
  347. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  348. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  349. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  350. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  351. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  352. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  353. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  354. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  355. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  356. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  357. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  358. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  359. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  360. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  361. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  362. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  363. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  364. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  365. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  366. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  367. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  368. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  369. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  370. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  371. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  372. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  373. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  374. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  375. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  376. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  377. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  378. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  379. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  380. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  381. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  382. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  383. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  384. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  385. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  386. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  387. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  388. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  389. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  390. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  391. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  392. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  393. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  394. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  395. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  396. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  397. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  398. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  399. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  400. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  401. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  402. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  403. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  404. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  405. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  406. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  407. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  408. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  409. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  410. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  411. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  412. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  413. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  414. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  415. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  416. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  417. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  418. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  419. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  420. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  421. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  422. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  423. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  424. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  425. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  426. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  427. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  428. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  429. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  430. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  431. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  432. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  433. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  434. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  435. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  436. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  437. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  438. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  439. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -491
  440. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  441. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -364
  442. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  443. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  444. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  445. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  446. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  447. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  448. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  449. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  450. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  451. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  452. package/contracts/components/BaseComponent.sol +0 -88
  453. package/contracts/components/IBaseComponent.sol +0 -19
  454. package/contracts/experiment/errors/Require.sol +0 -38
  455. package/contracts/experiment/errors/Revert.sol +0 -44
  456. package/contracts/experiment/inheritance/A.sol +0 -53
  457. package/contracts/experiment/inheritance/B.sol +0 -28
  458. package/contracts/experiment/inheritance/C.sol +0 -34
  459. package/contracts/experiment/inheritance/IA.sol +0 -13
  460. package/contracts/experiment/inheritance/IB.sol +0 -10
  461. package/contracts/experiment/inheritance/IC.sol +0 -12
  462. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  463. package/contracts/experiment/statemachine/ISM.sol +0 -25
  464. package/contracts/experiment/statemachine/README.md +0 -112
  465. package/contracts/experiment/statemachine/SM.sol +0 -57
  466. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  467. package/contracts/experiment/types/TypeA.sol +0 -47
  468. package/contracts/experiment/types/TypeB.sol +0 -29
  469. package/contracts/instance/IInstanceLinked.sol +0 -8
  470. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  471. package/contracts/instance/base/IInstanceBase.sol +0 -14
  472. package/contracts/instance/base/IService.sol +0 -15
  473. package/contracts/instance/base/InstanceBase.sol +0 -80
  474. package/contracts/instance/base/ModuleBase.sol +0 -52
  475. package/contracts/instance/base/ServiceBase.sol +0 -37
  476. package/contracts/instance/module/access/Access.sol +0 -149
  477. package/contracts/instance/module/access/IAccess.sol +0 -53
  478. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  479. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  480. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  481. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  482. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  483. package/contracts/instance/module/component/IComponent.sol +0 -53
  484. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  485. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  486. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  487. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  488. package/contracts/instance/module/risk/IRisk.sol +0 -10
  489. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  490. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  491. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  492. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  493. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  494. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  495. package/contracts/registry/IChainNft.sol +0 -21
  496. package/contracts/registry/IRegistryLinked.sol +0 -8
  497. package/contracts/shared/IOwnable.sol +0 -6
  498. package/contracts/test/TestPool.sol +0 -22
  499. package/contracts/test/TestProduct.sol +0 -44
@@ -4,267 +4,209 @@
4
4
  "sourceName": "contracts/instance/IInstance.sol",
5
5
  "abi": [
6
6
  {
7
- "anonymous": false,
8
7
  "inputs": [
9
8
  {
10
- "indexed": false,
11
- "internalType": "RoleId",
12
- "name": "role",
13
- "type": "bytes8"
14
- },
15
- {
16
- "indexed": false,
17
- "internalType": "string",
18
- "name": "roleName",
19
- "type": "string"
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
20
12
  }
21
13
  ],
22
- "name": "LogAccessRoleCreated",
23
- "type": "event"
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
24
16
  },
25
17
  {
26
- "anonymous": false,
27
18
  "inputs": [
28
19
  {
29
- "indexed": false,
30
- "internalType": "RoleId",
31
- "name": "role",
32
- "type": "bytes8"
33
- },
34
- {
35
- "indexed": false,
36
20
  "internalType": "address",
37
- "name": "member",
21
+ "name": "caller",
38
22
  "type": "address"
39
23
  },
40
24
  {
41
- "indexed": false,
42
- "internalType": "bool",
43
- "name": "isMember",
44
- "type": "bool"
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
45
28
  }
46
29
  ],
47
- "name": "LogAccessRoleGranted",
48
- "type": "event"
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
49
32
  },
50
33
  {
51
- "anonymous": false,
52
34
  "inputs": [
53
35
  {
54
- "indexed": false,
55
- "internalType": "RoleId",
56
- "name": "role",
57
- "type": "bytes8"
58
- },
59
- {
60
- "indexed": false,
61
- "internalType": "bool",
62
- "name": "active",
63
- "type": "bool"
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
64
39
  }
65
40
  ],
66
- "name": "LogAccessRoleStateSet",
67
- "type": "event"
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
68
43
  },
69
44
  {
70
- "anonymous": false,
71
45
  "inputs": [
72
46
  {
73
- "indexed": false,
74
- "internalType": "Version",
75
- "name": "version",
76
- "type": "uint24"
77
- },
78
- {
79
- "indexed": false,
80
47
  "internalType": "address",
81
- "name": "implementation",
48
+ "name": "instanceBundleManager",
82
49
  "type": "address"
83
- },
50
+ }
51
+ ],
52
+ "name": "ErrorInstanceBundleManagerAlreadySet",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
84
57
  {
85
- "indexed": false,
86
58
  "internalType": "address",
87
- "name": "activatedBy",
59
+ "name": "instanceAuthority",
88
60
  "type": "address"
89
61
  }
90
62
  ],
91
- "name": "LogVersionableActivated",
92
- "type": "event"
63
+ "name": "ErrorInstanceBundleManagerAuthorityMismatch",
64
+ "type": "error"
93
65
  },
94
66
  {
95
67
  "inputs": [
96
68
  {
97
69
  "internalType": "address",
98
- "name": "implementation",
70
+ "name": "instance",
99
71
  "type": "address"
100
- },
72
+ }
73
+ ],
74
+ "name": "ErrorInstanceBundleManagerInstanceMismatch",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
101
79
  {
102
80
  "internalType": "address",
103
- "name": "activatedBy",
81
+ "name": "instanceAccessManager",
104
82
  "type": "address"
105
83
  }
106
84
  ],
107
- "name": "activate",
108
- "outputs": [],
109
- "stateMutability": "nonpayable",
110
- "type": "function"
85
+ "name": "ErrorInstanceInstanceAccessManagerAlreadySet",
86
+ "type": "error"
111
87
  },
112
88
  {
113
89
  "inputs": [
114
90
  {
115
- "internalType": "NftId",
116
- "name": "bundleNftId",
117
- "type": "uint96"
118
- },
119
- {
120
- "internalType": "NftId",
121
- "name": "poolNftId",
122
- "type": "uint96"
123
- },
124
- {
125
- "internalType": "uint256",
126
- "name": "amount",
127
- "type": "uint256"
91
+ "internalType": "address",
92
+ "name": "instanceAuthority",
93
+ "type": "address"
128
94
  }
129
95
  ],
130
- "name": "addBundleToPool",
131
- "outputs": [],
132
- "stateMutability": "nonpayable",
133
- "type": "function"
96
+ "name": "ErrorInstanceInstanceAccessManagerAuthorityMismatch",
97
+ "type": "error"
98
+ },
99
+ {
100
+ "inputs": [],
101
+ "name": "ErrorInstanceInstanceAccessManagerZero",
102
+ "type": "error"
134
103
  },
135
104
  {
136
105
  "inputs": [
137
106
  {
138
- "internalType": "uint256",
139
- "name": "amount",
140
- "type": "uint256"
141
- },
142
- {
143
- "components": [
144
- {
145
- "internalType": "UFixed",
146
- "name": "fractionalFee",
147
- "type": "uint256"
148
- },
149
- {
150
- "internalType": "uint256",
151
- "name": "fixedFee",
152
- "type": "uint256"
153
- }
154
- ],
155
- "internalType": "struct Fee",
156
- "name": "fee",
157
- "type": "tuple"
107
+ "internalType": "address",
108
+ "name": "instanceAuthority",
109
+ "type": "address"
158
110
  }
159
111
  ],
160
- "name": "calculateFeeAmount",
161
- "outputs": [
162
- {
163
- "internalType": "uint256",
164
- "name": "feeAmount",
165
- "type": "uint256"
166
- },
112
+ "name": "ErrorInstanceInstanceReaderInstanceMismatch",
113
+ "type": "error"
114
+ },
115
+ {
116
+ "inputs": [
167
117
  {
168
- "internalType": "uint256",
169
- "name": "netAmount",
170
- "type": "uint256"
118
+ "internalType": "address",
119
+ "name": "instanceStore",
120
+ "type": "address"
171
121
  }
172
122
  ],
173
- "stateMutability": "pure",
174
- "type": "function"
123
+ "name": "ErrorInstanceInstanceStoreAlreadySet",
124
+ "type": "error"
175
125
  },
176
126
  {
177
127
  "inputs": [
178
128
  {
179
- "internalType": "NftId",
180
- "name": "bundleNftId",
181
- "type": "uint96"
182
- },
183
- {
184
- "internalType": "NftId",
185
- "name": "policyNftId",
186
- "type": "uint96"
187
- },
188
- {
189
- "internalType": "uint256",
190
- "name": "amount",
191
- "type": "uint256"
129
+ "internalType": "address",
130
+ "name": "instanceAuthority",
131
+ "type": "address"
192
132
  }
193
133
  ],
194
- "name": "collateralizePolicy",
195
- "outputs": [],
196
- "stateMutability": "nonpayable",
197
- "type": "function"
134
+ "name": "ErrorInstanceInstanceStoreAuthorityMismatch",
135
+ "type": "error"
198
136
  },
199
137
  {
200
138
  "inputs": [
201
139
  {
202
140
  "internalType": "NftId",
203
- "name": "productNftId",
204
- "type": "uint96"
205
- },
206
- {
207
- "internalType": "NftId",
208
- "name": "policyNftId",
209
- "type": "uint96"
210
- },
211
- {
212
- "internalType": "uint256",
213
- "name": "sumInsuredAmount",
214
- "type": "uint256"
215
- },
216
- {
217
- "internalType": "uint256",
218
- "name": "premiumAmount",
219
- "type": "uint256"
220
- },
221
- {
222
- "internalType": "uint256",
223
- "name": "lifetime",
224
- "type": "uint256"
225
- },
226
- {
227
- "internalType": "NftId",
228
- "name": "bundleNftId",
141
+ "name": "nftId",
229
142
  "type": "uint96"
230
143
  }
231
144
  ],
232
- "name": "createApplication",
233
- "outputs": [],
234
- "stateMutability": "nonpayable",
235
- "type": "function"
145
+ "name": "ErrorNftOwnableAlreadyLinked",
146
+ "type": "error"
236
147
  },
237
148
  {
238
149
  "inputs": [
239
150
  {
240
- "internalType": "NftId",
241
- "name": "bundleNftId",
242
- "type": "uint96"
243
- },
151
+ "internalType": "address",
152
+ "name": "contractAddress",
153
+ "type": "address"
154
+ }
155
+ ],
156
+ "name": "ErrorNftOwnableContractNotRegistered",
157
+ "type": "error"
158
+ },
159
+ {
160
+ "inputs": [],
161
+ "name": "ErrorNftOwnableInitialOwnerZero",
162
+ "type": "error"
163
+ },
164
+ {
165
+ "inputs": [
244
166
  {
245
- "internalType": "NftId",
246
- "name": "poolNftId",
247
- "type": "uint96"
248
- },
167
+ "internalType": "address",
168
+ "name": "account",
169
+ "type": "address"
170
+ }
171
+ ],
172
+ "name": "ErrorNftOwnableNotOwner",
173
+ "type": "error"
174
+ },
175
+ {
176
+ "inputs": [
249
177
  {
250
- "internalType": "uint256",
251
- "name": "amount",
252
- "type": "uint256"
253
- },
178
+ "internalType": "address",
179
+ "name": "registryAddress",
180
+ "type": "address"
181
+ }
182
+ ],
183
+ "name": "ErrorNotRegistry",
184
+ "type": "error"
185
+ },
186
+ {
187
+ "anonymous": false,
188
+ "inputs": [
254
189
  {
255
- "internalType": "uint256",
256
- "name": "lifetime",
257
- "type": "uint256"
258
- },
190
+ "indexed": false,
191
+ "internalType": "address",
192
+ "name": "authority",
193
+ "type": "address"
194
+ }
195
+ ],
196
+ "name": "AuthorityUpdated",
197
+ "type": "event"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "authority",
202
+ "outputs": [
259
203
  {
260
- "internalType": "bytes",
261
- "name": "filter",
262
- "type": "bytes"
204
+ "internalType": "address",
205
+ "name": "",
206
+ "type": "address"
263
207
  }
264
208
  ],
265
- "name": "createBundleInfo",
266
- "outputs": [],
267
- "stateMutability": "nonpayable",
209
+ "stateMutability": "view",
268
210
  "type": "function"
269
211
  },
270
212
  {
@@ -273,14 +215,24 @@
273
215
  "internalType": "string",
274
216
  "name": "roleName",
275
217
  "type": "string"
218
+ },
219
+ {
220
+ "internalType": "string",
221
+ "name": "adminName",
222
+ "type": "string"
276
223
  }
277
224
  ],
278
225
  "name": "createRole",
279
226
  "outputs": [
280
227
  {
281
228
  "internalType": "RoleId",
282
- "name": "role",
283
- "type": "bytes8"
229
+ "name": "roleId",
230
+ "type": "uint64"
231
+ },
232
+ {
233
+ "internalType": "RoleId",
234
+ "name": "admin",
235
+ "type": "uint64"
284
236
  }
285
237
  ],
286
238
  "stateMutability": "nonpayable",
@@ -289,31 +241,63 @@
289
241
  {
290
242
  "inputs": [
291
243
  {
292
- "internalType": "NftId",
293
- "name": "poolNftId",
294
- "type": "uint96"
244
+ "internalType": "address",
245
+ "name": "target",
246
+ "type": "address"
247
+ },
248
+ {
249
+ "internalType": "string",
250
+ "name": "name",
251
+ "type": "string"
295
252
  }
296
253
  ],
297
- "name": "getBundleCount",
254
+ "name": "createTarget",
255
+ "outputs": [],
256
+ "stateMutability": "nonpayable",
257
+ "type": "function"
258
+ },
259
+ {
260
+ "inputs": [],
261
+ "name": "getBundleManager",
298
262
  "outputs": [
299
263
  {
300
- "internalType": "uint256",
301
- "name": "bundleCount",
302
- "type": "uint256"
264
+ "internalType": "contract BundleManager",
265
+ "name": "",
266
+ "type": "address"
303
267
  }
304
268
  ],
305
269
  "stateMutability": "view",
306
270
  "type": "function"
307
271
  },
308
272
  {
309
- "inputs": [
273
+ "inputs": [],
274
+ "name": "getBundleService",
275
+ "outputs": [
310
276
  {
311
- "internalType": "NftId",
312
- "name": "bundleNftId",
313
- "type": "uint96"
277
+ "internalType": "contract IBundleService",
278
+ "name": "",
279
+ "type": "address"
314
280
  }
315
281
  ],
316
- "name": "getBundleInfo",
282
+ "stateMutability": "view",
283
+ "type": "function"
284
+ },
285
+ {
286
+ "inputs": [],
287
+ "name": "getDistributionService",
288
+ "outputs": [
289
+ {
290
+ "internalType": "contract IDistributionService",
291
+ "name": "",
292
+ "type": "address"
293
+ }
294
+ ],
295
+ "stateMutability": "view",
296
+ "type": "function"
297
+ },
298
+ {
299
+ "inputs": [],
300
+ "name": "getInitialInfo",
317
301
  "outputs": [
318
302
  {
319
303
  "components": [
@@ -324,42 +308,37 @@
324
308
  },
325
309
  {
326
310
  "internalType": "NftId",
327
- "name": "poolNftId",
311
+ "name": "parentNftId",
328
312
  "type": "uint96"
329
313
  },
330
314
  {
331
- "internalType": "bytes",
332
- "name": "filter",
333
- "type": "bytes"
334
- },
335
- {
336
- "internalType": "uint256",
337
- "name": "capitalAmount",
338
- "type": "uint256"
315
+ "internalType": "ObjectType",
316
+ "name": "objectType",
317
+ "type": "uint8"
339
318
  },
340
319
  {
341
- "internalType": "uint256",
342
- "name": "lockedAmount",
343
- "type": "uint256"
320
+ "internalType": "bool",
321
+ "name": "isInterceptor",
322
+ "type": "bool"
344
323
  },
345
324
  {
346
- "internalType": "uint256",
347
- "name": "balanceAmount",
348
- "type": "uint256"
325
+ "internalType": "address",
326
+ "name": "objectAddress",
327
+ "type": "address"
349
328
  },
350
329
  {
351
- "internalType": "Timestamp",
352
- "name": "expiredAt",
353
- "type": "uint40"
330
+ "internalType": "address",
331
+ "name": "initialOwner",
332
+ "type": "address"
354
333
  },
355
334
  {
356
- "internalType": "Timestamp",
357
- "name": "closedAt",
358
- "type": "uint40"
335
+ "internalType": "bytes",
336
+ "name": "data",
337
+ "type": "bytes"
359
338
  }
360
339
  ],
361
- "internalType": "struct IBundle.BundleInfo",
362
- "name": "bundleInfo",
340
+ "internalType": "struct IRegistry.ObjectInfo",
341
+ "name": "",
363
342
  "type": "tuple"
364
343
  }
365
344
  ],
@@ -367,24 +346,13 @@
367
346
  "type": "function"
368
347
  },
369
348
  {
370
- "inputs": [
371
- {
372
- "internalType": "NftId",
373
- "name": "poolNftId",
374
- "type": "uint96"
375
- },
376
- {
377
- "internalType": "uint256",
378
- "name": "index",
379
- "type": "uint256"
380
- }
381
- ],
382
- "name": "getBundleNftId",
349
+ "inputs": [],
350
+ "name": "getInstanceAccessManager",
383
351
  "outputs": [
384
352
  {
385
- "internalType": "NftId",
386
- "name": "bundleNftId",
387
- "type": "uint96"
353
+ "internalType": "contract InstanceAccessManager",
354
+ "name": "",
355
+ "type": "address"
388
356
  }
389
357
  ],
390
358
  "stateMutability": "view",
@@ -392,67 +360,51 @@
392
360
  },
393
361
  {
394
362
  "inputs": [],
395
- "name": "getComponentCount",
363
+ "name": "getInstanceReader",
396
364
  "outputs": [
397
365
  {
398
- "internalType": "uint256",
399
- "name": "numberOfCompnents",
400
- "type": "uint256"
366
+ "internalType": "contract InstanceReader",
367
+ "name": "",
368
+ "type": "address"
401
369
  }
402
370
  ],
403
371
  "stateMutability": "view",
404
372
  "type": "function"
405
373
  },
406
374
  {
407
- "inputs": [
408
- {
409
- "internalType": "uint256",
410
- "name": "idx",
411
- "type": "uint256"
412
- }
413
- ],
414
- "name": "getComponentId",
375
+ "inputs": [],
376
+ "name": "getInstanceStore",
415
377
  "outputs": [
416
378
  {
417
- "internalType": "NftId",
418
- "name": "nftId",
419
- "type": "uint96"
379
+ "internalType": "contract InstanceStore",
380
+ "name": "",
381
+ "type": "address"
420
382
  }
421
383
  ],
422
384
  "stateMutability": "view",
423
385
  "type": "function"
424
386
  },
425
387
  {
426
- "inputs": [
388
+ "inputs": [],
389
+ "name": "getMajorVersion",
390
+ "outputs": [
427
391
  {
428
- "internalType": "NftId",
429
- "name": "nftId",
430
- "type": "uint96"
392
+ "internalType": "VersionPart",
393
+ "name": "majorVersion",
394
+ "type": "uint8"
431
395
  }
432
396
  ],
433
- "name": "getComponentInfo",
397
+ "stateMutability": "pure",
398
+ "type": "function"
399
+ },
400
+ {
401
+ "inputs": [],
402
+ "name": "getNftId",
434
403
  "outputs": [
435
404
  {
436
- "components": [
437
- {
438
- "internalType": "NftId",
439
- "name": "nftId",
440
- "type": "uint96"
441
- },
442
- {
443
- "internalType": "StateId",
444
- "name": "state",
445
- "type": "uint8"
446
- },
447
- {
448
- "internalType": "contract IERC20Metadata",
449
- "name": "token",
450
- "type": "address"
451
- }
452
- ],
453
- "internalType": "struct IComponent.ComponentInfo",
454
- "name": "info",
455
- "type": "tuple"
405
+ "internalType": "NftId",
406
+ "name": "",
407
+ "type": "uint96"
456
408
  }
457
409
  ],
458
410
  "stateMutability": "view",
@@ -460,10 +412,10 @@
460
412
  },
461
413
  {
462
414
  "inputs": [],
463
- "name": "getComponentOwnerService",
415
+ "name": "getOwner",
464
416
  "outputs": [
465
417
  {
466
- "internalType": "contract IComponentOwnerService",
418
+ "internalType": "address",
467
419
  "name": "",
468
420
  "type": "address"
469
421
  }
@@ -473,60 +425,37 @@
473
425
  },
474
426
  {
475
427
  "inputs": [],
476
- "name": "getData",
428
+ "name": "getPolicyService",
477
429
  "outputs": [
478
430
  {
479
- "internalType": "bytes",
480
- "name": "data",
481
- "type": "bytes"
431
+ "internalType": "contract IPolicyService",
432
+ "name": "",
433
+ "type": "address"
482
434
  }
483
435
  ],
484
436
  "stateMutability": "view",
485
437
  "type": "function"
486
438
  },
487
439
  {
488
- "inputs": [
489
- {
490
- "internalType": "UFixed",
491
- "name": "fractionalFee",
492
- "type": "uint256"
493
- },
494
- {
495
- "internalType": "uint256",
496
- "name": "fixedFee",
497
- "type": "uint256"
498
- }
499
- ],
500
- "name": "getFee",
440
+ "inputs": [],
441
+ "name": "getPoolService",
501
442
  "outputs": [
502
443
  {
503
- "components": [
504
- {
505
- "internalType": "UFixed",
506
- "name": "fractionalFee",
507
- "type": "uint256"
508
- },
509
- {
510
- "internalType": "uint256",
511
- "name": "fixedFee",
512
- "type": "uint256"
513
- }
514
- ],
515
- "internalType": "struct Fee",
516
- "name": "fee",
517
- "type": "tuple"
444
+ "internalType": "contract IPoolService",
445
+ "name": "",
446
+ "type": "address"
518
447
  }
519
448
  ],
520
- "stateMutability": "pure",
449
+ "stateMutability": "view",
521
450
  "type": "function"
522
451
  },
523
452
  {
524
453
  "inputs": [],
525
- "name": "getKeyValueStore",
454
+ "name": "getProductService",
526
455
  "outputs": [
527
456
  {
528
- "internalType": "contract IKeyValueStore",
529
- "name": "keyValueStore",
457
+ "internalType": "contract IProductService",
458
+ "name": "",
530
459
  "type": "address"
531
460
  }
532
461
  ],
@@ -535,915 +464,123 @@
535
464
  },
536
465
  {
537
466
  "inputs": [],
538
- "name": "getNftId",
467
+ "name": "getRegistry",
539
468
  "outputs": [
540
469
  {
541
- "internalType": "NftId",
542
- "name": "nftId",
543
- "type": "uint96"
470
+ "internalType": "contract IRegistry",
471
+ "name": "",
472
+ "type": "address"
544
473
  }
545
474
  ],
546
475
  "stateMutability": "view",
547
476
  "type": "function"
548
477
  },
549
478
  {
550
- "inputs": [],
551
- "name": "getOwner",
552
- "outputs": [
479
+ "inputs": [
480
+ {
481
+ "internalType": "RoleId",
482
+ "name": "roleId",
483
+ "type": "uint64"
484
+ },
553
485
  {
554
486
  "internalType": "address",
555
- "name": "owner",
487
+ "name": "account",
556
488
  "type": "address"
557
489
  }
558
490
  ],
559
- "stateMutability": "view",
491
+ "name": "grantRole",
492
+ "outputs": [],
493
+ "stateMutability": "nonpayable",
560
494
  "type": "function"
561
495
  },
562
496
  {
563
497
  "inputs": [],
564
- "name": "getParentNftId",
498
+ "name": "isConsumingScheduledOp",
565
499
  "outputs": [
566
500
  {
567
- "internalType": "NftId",
568
- "name": "nftId",
569
- "type": "uint96"
501
+ "internalType": "bytes4",
502
+ "name": "",
503
+ "type": "bytes4"
570
504
  }
571
505
  ],
572
506
  "stateMutability": "view",
573
507
  "type": "function"
574
508
  },
575
509
  {
576
- "inputs": [
577
- {
578
- "internalType": "NftId",
579
- "name": "nftId",
580
- "type": "uint96"
581
- }
582
- ],
583
- "name": "getPolicyInfo",
584
- "outputs": [
585
- {
586
- "components": [
587
- {
588
- "internalType": "NftId",
589
- "name": "nftId",
590
- "type": "uint96"
591
- },
592
- {
593
- "internalType": "NftId",
594
- "name": "productNftId",
595
- "type": "uint96"
596
- },
597
- {
598
- "internalType": "NftId",
599
- "name": "bundleNftId",
600
- "type": "uint96"
601
- },
602
- {
603
- "internalType": "address",
604
- "name": "beneficiary",
605
- "type": "address"
606
- },
607
- {
608
- "internalType": "StateId",
609
- "name": "state",
610
- "type": "uint8"
611
- },
612
- {
613
- "internalType": "uint256",
614
- "name": "sumInsuredAmount",
615
- "type": "uint256"
616
- },
617
- {
618
- "internalType": "uint256",
619
- "name": "premiumAmount",
620
- "type": "uint256"
621
- },
622
- {
623
- "internalType": "uint256",
624
- "name": "premiumPaidAmount",
625
- "type": "uint256"
626
- },
627
- {
628
- "internalType": "uint256",
629
- "name": "lifetime",
630
- "type": "uint256"
631
- },
632
- {
633
- "internalType": "bytes",
634
- "name": "data",
635
- "type": "bytes"
636
- },
637
- {
638
- "internalType": "Timestamp",
639
- "name": "createdAt",
640
- "type": "uint40"
641
- },
642
- {
643
- "internalType": "Timestamp",
644
- "name": "activatedAt",
645
- "type": "uint40"
646
- },
647
- {
648
- "internalType": "Timestamp",
649
- "name": "expiredAt",
650
- "type": "uint40"
651
- },
652
- {
653
- "internalType": "Timestamp",
654
- "name": "closedAt",
655
- "type": "uint40"
656
- },
657
- {
658
- "internalType": "Blocknumber",
659
- "name": "updatedIn",
660
- "type": "uint32"
661
- }
662
- ],
663
- "internalType": "struct IPolicy.PolicyInfo",
664
- "name": "info",
665
- "type": "tuple"
666
- }
667
- ],
668
- "stateMutability": "view",
510
+ "inputs": [],
511
+ "name": "linkToRegisteredNftId",
512
+ "outputs": [],
513
+ "stateMutability": "nonpayable",
669
514
  "type": "function"
670
515
  },
671
516
  {
672
517
  "inputs": [
673
518
  {
674
- "internalType": "NftId",
675
- "name": "nftId",
676
- "type": "uint96"
677
- }
678
- ],
679
- "name": "getPoolInfo",
680
- "outputs": [
519
+ "internalType": "address",
520
+ "name": "to",
521
+ "type": "address"
522
+ },
681
523
  {
682
- "components": [
683
- {
684
- "internalType": "NftId",
685
- "name": "nftId",
686
- "type": "uint96"
687
- },
688
- {
689
- "internalType": "bool",
690
- "name": "isVerifying",
691
- "type": "bool"
692
- },
693
- {
694
- "internalType": "UFixed",
695
- "name": "collateralizationLevel",
696
- "type": "uint256"
697
- }
698
- ],
699
- "internalType": "struct IPool.PoolInfo",
700
- "name": "info",
701
- "type": "tuple"
524
+ "internalType": "uint256",
525
+ "name": "tokenId",
526
+ "type": "uint256"
702
527
  }
703
528
  ],
704
- "stateMutability": "view",
529
+ "name": "nftMint",
530
+ "outputs": [],
531
+ "stateMutability": "nonpayable",
705
532
  "type": "function"
706
533
  },
707
534
  {
708
- "inputs": [],
709
- "name": "getPoolService",
710
- "outputs": [
535
+ "inputs": [
711
536
  {
712
- "internalType": "contract IPoolService",
713
- "name": "",
537
+ "internalType": "address",
538
+ "name": "from",
539
+ "type": "address"
540
+ },
541
+ {
542
+ "internalType": "address",
543
+ "name": "to",
714
544
  "type": "address"
545
+ },
546
+ {
547
+ "internalType": "uint256",
548
+ "name": "tokenId",
549
+ "type": "uint256"
715
550
  }
716
551
  ],
717
- "stateMutability": "view",
552
+ "name": "nftTransferFrom",
553
+ "outputs": [],
554
+ "stateMutability": "nonpayable",
718
555
  "type": "function"
719
556
  },
720
557
  {
721
558
  "inputs": [
722
559
  {
723
- "internalType": "NftId",
724
- "name": "poolNftId",
725
- "type": "uint96"
726
- }
727
- ],
728
- "name": "getPoolSetup",
729
- "outputs": [
560
+ "internalType": "RoleId",
561
+ "name": "roleId",
562
+ "type": "uint64"
563
+ },
730
564
  {
731
- "components": [
732
- {
733
- "internalType": "NftId",
734
- "name": "poolNftId",
735
- "type": "uint96"
736
- },
737
- {
738
- "internalType": "address",
739
- "name": "wallet",
740
- "type": "address"
741
- },
742
- {
743
- "components": [
744
- {
745
- "internalType": "UFixed",
746
- "name": "fractionalFee",
747
- "type": "uint256"
748
- },
749
- {
750
- "internalType": "uint256",
751
- "name": "fixedFee",
752
- "type": "uint256"
753
- }
754
- ],
755
- "internalType": "struct Fee",
756
- "name": "stakingFee",
757
- "type": "tuple"
758
- },
759
- {
760
- "components": [
761
- {
762
- "internalType": "UFixed",
763
- "name": "fractionalFee",
764
- "type": "uint256"
765
- },
766
- {
767
- "internalType": "uint256",
768
- "name": "fixedFee",
769
- "type": "uint256"
770
- }
771
- ],
772
- "internalType": "struct Fee",
773
- "name": "performanceFee",
774
- "type": "tuple"
775
- }
776
- ],
777
- "internalType": "struct ITreasury.PoolSetup",
778
- "name": "setup",
779
- "type": "tuple"
565
+ "internalType": "address",
566
+ "name": "account",
567
+ "type": "address"
780
568
  }
781
569
  ],
782
- "stateMutability": "view",
570
+ "name": "revokeRole",
571
+ "outputs": [],
572
+ "stateMutability": "nonpayable",
783
573
  "type": "function"
784
574
  },
785
575
  {
786
- "inputs": [],
787
- "name": "getProductService",
788
- "outputs": [
576
+ "inputs": [
789
577
  {
790
- "internalType": "contract IProductService",
578
+ "internalType": "address",
791
579
  "name": "",
792
580
  "type": "address"
793
581
  }
794
582
  ],
795
- "stateMutability": "view",
796
- "type": "function"
797
- },
798
- {
799
- "inputs": [
800
- {
801
- "internalType": "NftId",
802
- "name": "productNftId",
803
- "type": "uint96"
804
- }
805
- ],
806
- "name": "getProductSetup",
807
- "outputs": [
808
- {
809
- "components": [
810
- {
811
- "internalType": "NftId",
812
- "name": "productNftId",
813
- "type": "uint96"
814
- },
815
- {
816
- "internalType": "NftId",
817
- "name": "distributorNftId",
818
- "type": "uint96"
819
- },
820
- {
821
- "internalType": "NftId",
822
- "name": "poolNftId",
823
- "type": "uint96"
824
- },
825
- {
826
- "internalType": "contract IERC20Metadata",
827
- "name": "token",
828
- "type": "address"
829
- },
830
- {
831
- "internalType": "address",
832
- "name": "wallet",
833
- "type": "address"
834
- },
835
- {
836
- "components": [
837
- {
838
- "internalType": "UFixed",
839
- "name": "fractionalFee",
840
- "type": "uint256"
841
- },
842
- {
843
- "internalType": "uint256",
844
- "name": "fixedFee",
845
- "type": "uint256"
846
- }
847
- ],
848
- "internalType": "struct Fee",
849
- "name": "policyFee",
850
- "type": "tuple"
851
- },
852
- {
853
- "components": [
854
- {
855
- "internalType": "UFixed",
856
- "name": "fractionalFee",
857
- "type": "uint256"
858
- },
859
- {
860
- "internalType": "uint256",
861
- "name": "fixedFee",
862
- "type": "uint256"
863
- }
864
- ],
865
- "internalType": "struct Fee",
866
- "name": "processingFee",
867
- "type": "tuple"
868
- }
869
- ],
870
- "internalType": "struct ITreasury.ProductSetup",
871
- "name": "setup",
872
- "type": "tuple"
873
- }
874
- ],
875
- "stateMutability": "view",
876
- "type": "function"
877
- },
878
- {
879
- "inputs": [],
880
- "name": "getRegistry",
881
- "outputs": [
882
- {
883
- "internalType": "contract IRegistry",
884
- "name": "registry",
885
- "type": "address"
886
- }
887
- ],
888
- "stateMutability": "view",
889
- "type": "function"
890
- },
891
- {
892
- "inputs": [
893
- {
894
- "internalType": "uint256",
895
- "name": "idx",
896
- "type": "uint256"
897
- }
898
- ],
899
- "name": "getRole",
900
- "outputs": [
901
- {
902
- "internalType": "RoleId",
903
- "name": "role",
904
- "type": "bytes8"
905
- }
906
- ],
907
- "stateMutability": "view",
908
- "type": "function"
909
- },
910
- {
911
- "inputs": [],
912
- "name": "getRoleCount",
913
- "outputs": [
914
- {
915
- "internalType": "uint256",
916
- "name": "roles",
917
- "type": "uint256"
918
- }
919
- ],
920
- "stateMutability": "view",
921
- "type": "function"
922
- },
923
- {
924
- "inputs": [
925
- {
926
- "internalType": "string",
927
- "name": "roleName",
928
- "type": "string"
929
- }
930
- ],
931
- "name": "getRoleId",
932
- "outputs": [
933
- {
934
- "internalType": "RoleId",
935
- "name": "role",
936
- "type": "bytes8"
937
- }
938
- ],
939
- "stateMutability": "pure",
940
- "type": "function"
941
- },
942
- {
943
- "inputs": [
944
- {
945
- "internalType": "RoleId",
946
- "name": "role",
947
- "type": "bytes8"
948
- }
949
- ],
950
- "name": "getRoleInfo",
951
- "outputs": [
952
- {
953
- "components": [
954
- {
955
- "internalType": "RoleId",
956
- "name": "id",
957
- "type": "bytes8"
958
- },
959
- {
960
- "internalType": "string",
961
- "name": "name",
962
- "type": "string"
963
- },
964
- {
965
- "internalType": "bool",
966
- "name": "isActive",
967
- "type": "bool"
968
- }
969
- ],
970
- "internalType": "struct IAccess.RoleInfo",
971
- "name": "info",
972
- "type": "tuple"
973
- }
974
- ],
975
- "stateMutability": "view",
976
- "type": "function"
977
- },
978
- {
979
- "inputs": [
980
- {
981
- "internalType": "RoleId",
982
- "name": "role",
983
- "type": "bytes8"
984
- },
985
- {
986
- "internalType": "uint256",
987
- "name": "idx",
988
- "type": "uint256"
989
- }
990
- ],
991
- "name": "getRoleMember",
992
- "outputs": [
993
- {
994
- "internalType": "address",
995
- "name": "roleMember",
996
- "type": "address"
997
- }
998
- ],
999
- "stateMutability": "view",
1000
- "type": "function"
1001
- },
1002
- {
1003
- "inputs": [
1004
- {
1005
- "internalType": "RoleId",
1006
- "name": "role",
1007
- "type": "bytes8"
1008
- }
1009
- ],
1010
- "name": "getRoleMemberCount",
1011
- "outputs": [
1012
- {
1013
- "internalType": "uint256",
1014
- "name": "roleMembers",
1015
- "type": "uint256"
1016
- }
1017
- ],
1018
- "stateMutability": "view",
1019
- "type": "function"
1020
- },
1021
- {
1022
- "inputs": [
1023
- {
1024
- "internalType": "NftId",
1025
- "name": "componentNftId",
1026
- "type": "uint96"
1027
- }
1028
- ],
1029
- "name": "getTokenHandler",
1030
- "outputs": [
1031
- {
1032
- "internalType": "contract TokenHandler",
1033
- "name": "tokenHandler",
1034
- "type": "address"
1035
- }
1036
- ],
1037
- "stateMutability": "view",
1038
- "type": "function"
1039
- },
1040
- {
1041
- "inputs": [],
1042
- "name": "getType",
1043
- "outputs": [
1044
- {
1045
- "internalType": "ObjectType",
1046
- "name": "objectType",
1047
- "type": "uint8"
1048
- }
1049
- ],
1050
- "stateMutability": "pure",
1051
- "type": "function"
1052
- },
1053
- {
1054
- "inputs": [
1055
- {
1056
- "internalType": "uint256",
1057
- "name": "a",
1058
- "type": "uint256"
1059
- },
1060
- {
1061
- "internalType": "int8",
1062
- "name": "exp",
1063
- "type": "int8"
1064
- }
1065
- ],
1066
- "name": "getUFixed",
1067
- "outputs": [
1068
- {
1069
- "internalType": "UFixed",
1070
- "name": "",
1071
- "type": "uint256"
1072
- }
1073
- ],
1074
- "stateMutability": "pure",
1075
- "type": "function"
1076
- },
1077
- {
1078
- "inputs": [
1079
- {
1080
- "internalType": "uint256",
1081
- "name": "a",
1082
- "type": "uint256"
1083
- }
1084
- ],
1085
- "name": "getUFixed",
1086
- "outputs": [
1087
- {
1088
- "internalType": "UFixed",
1089
- "name": "",
1090
- "type": "uint256"
1091
- }
1092
- ],
1093
- "stateMutability": "pure",
1094
- "type": "function"
1095
- },
1096
- {
1097
- "inputs": [],
1098
- "name": "getVersion",
1099
- "outputs": [
1100
- {
1101
- "internalType": "Version",
1102
- "name": "",
1103
- "type": "uint24"
1104
- }
1105
- ],
1106
- "stateMutability": "pure",
1107
- "type": "function"
1108
- },
1109
- {
1110
- "inputs": [
1111
- {
1112
- "internalType": "uint256",
1113
- "name": "index",
1114
- "type": "uint256"
1115
- }
1116
- ],
1117
- "name": "getVersion",
1118
- "outputs": [
1119
- {
1120
- "internalType": "Version",
1121
- "name": "version",
1122
- "type": "uint24"
1123
- }
1124
- ],
1125
- "stateMutability": "view",
1126
- "type": "function"
1127
- },
1128
- {
1129
- "inputs": [],
1130
- "name": "getVersionCount",
1131
- "outputs": [
1132
- {
1133
- "internalType": "uint256",
1134
- "name": "numberOfVersions",
1135
- "type": "uint256"
1136
- }
1137
- ],
1138
- "stateMutability": "view",
1139
- "type": "function"
1140
- },
1141
- {
1142
- "inputs": [
1143
- {
1144
- "internalType": "Version",
1145
- "name": "version",
1146
- "type": "uint24"
1147
- }
1148
- ],
1149
- "name": "getVersionInfo",
1150
- "outputs": [
1151
- {
1152
- "components": [
1153
- {
1154
- "internalType": "Version",
1155
- "name": "version",
1156
- "type": "uint24"
1157
- },
1158
- {
1159
- "internalType": "address",
1160
- "name": "implementation",
1161
- "type": "address"
1162
- },
1163
- {
1164
- "internalType": "address",
1165
- "name": "activatedBy",
1166
- "type": "address"
1167
- },
1168
- {
1169
- "internalType": "Timestamp",
1170
- "name": "activatedAt",
1171
- "type": "uint40"
1172
- },
1173
- {
1174
- "internalType": "Blocknumber",
1175
- "name": "activatedIn",
1176
- "type": "uint32"
1177
- }
1178
- ],
1179
- "internalType": "struct IVersionable.VersionInfo",
1180
- "name": "versionInfo",
1181
- "type": "tuple"
1182
- }
1183
- ],
1184
- "stateMutability": "view",
1185
- "type": "function"
1186
- },
1187
- {
1188
- "inputs": [],
1189
- "name": "getZeroFee",
1190
- "outputs": [
1191
- {
1192
- "components": [
1193
- {
1194
- "internalType": "UFixed",
1195
- "name": "fractionalFee",
1196
- "type": "uint256"
1197
- },
1198
- {
1199
- "internalType": "uint256",
1200
- "name": "fixedFee",
1201
- "type": "uint256"
1202
- }
1203
- ],
1204
- "internalType": "struct Fee",
1205
- "name": "fee",
1206
- "type": "tuple"
1207
- }
1208
- ],
1209
- "stateMutability": "pure",
1210
- "type": "function"
1211
- },
1212
- {
1213
- "inputs": [
1214
- {
1215
- "internalType": "RoleId",
1216
- "name": "role",
1217
- "type": "bytes8"
1218
- },
1219
- {
1220
- "internalType": "address",
1221
- "name": "member",
1222
- "type": "address"
1223
- }
1224
- ],
1225
- "name": "grantRole",
1226
- "outputs": [],
1227
- "stateMutability": "nonpayable",
1228
- "type": "function"
1229
- },
1230
- {
1231
- "inputs": [
1232
- {
1233
- "internalType": "RoleId",
1234
- "name": "role",
1235
- "type": "bytes8"
1236
- },
1237
- {
1238
- "internalType": "address",
1239
- "name": "member",
1240
- "type": "address"
1241
- }
1242
- ],
1243
- "name": "hasRole",
1244
- "outputs": [
1245
- {
1246
- "internalType": "bool",
1247
- "name": "hasRole",
1248
- "type": "bool"
1249
- }
1250
- ],
1251
- "stateMutability": "view",
1252
- "type": "function"
1253
- },
1254
- {
1255
- "inputs": [
1256
- {
1257
- "internalType": "Version",
1258
- "name": "version",
1259
- "type": "uint24"
1260
- }
1261
- ],
1262
- "name": "isActivated",
1263
- "outputs": [
1264
- {
1265
- "internalType": "bool",
1266
- "name": "",
1267
- "type": "bool"
1268
- }
1269
- ],
1270
- "stateMutability": "view",
1271
- "type": "function"
1272
- },
1273
- {
1274
- "inputs": [],
1275
- "name": "register",
1276
- "outputs": [
1277
- {
1278
- "internalType": "NftId",
1279
- "name": "nftId",
1280
- "type": "uint96"
1281
- }
1282
- ],
1283
- "stateMutability": "nonpayable",
1284
- "type": "function"
1285
- },
1286
- {
1287
- "inputs": [
1288
- {
1289
- "internalType": "NftId",
1290
- "name": "nftId",
1291
- "type": "uint96"
1292
- },
1293
- {
1294
- "internalType": "ObjectType",
1295
- "name": "objectType",
1296
- "type": "uint8"
1297
- },
1298
- {
1299
- "internalType": "contract IERC20Metadata",
1300
- "name": "token",
1301
- "type": "address"
1302
- }
1303
- ],
1304
- "name": "registerComponent",
1305
- "outputs": [],
1306
- "stateMutability": "nonpayable",
1307
- "type": "function"
1308
- },
1309
- {
1310
- "inputs": [
1311
- {
1312
- "internalType": "NftId",
1313
- "name": "poolNftId",
1314
- "type": "uint96"
1315
- },
1316
- {
1317
- "internalType": "address",
1318
- "name": "wallet",
1319
- "type": "address"
1320
- },
1321
- {
1322
- "components": [
1323
- {
1324
- "internalType": "UFixed",
1325
- "name": "fractionalFee",
1326
- "type": "uint256"
1327
- },
1328
- {
1329
- "internalType": "uint256",
1330
- "name": "fixedFee",
1331
- "type": "uint256"
1332
- }
1333
- ],
1334
- "internalType": "struct Fee",
1335
- "name": "stakingFee",
1336
- "type": "tuple"
1337
- },
1338
- {
1339
- "components": [
1340
- {
1341
- "internalType": "UFixed",
1342
- "name": "fractionalFee",
1343
- "type": "uint256"
1344
- },
1345
- {
1346
- "internalType": "uint256",
1347
- "name": "fixedFee",
1348
- "type": "uint256"
1349
- }
1350
- ],
1351
- "internalType": "struct Fee",
1352
- "name": "performanceFee",
1353
- "type": "tuple"
1354
- }
1355
- ],
1356
- "name": "registerPool",
1357
- "outputs": [],
1358
- "stateMutability": "nonpayable",
1359
- "type": "function"
1360
- },
1361
- {
1362
- "inputs": [
1363
- {
1364
- "internalType": "NftId",
1365
- "name": "poolNftId",
1366
- "type": "uint96"
1367
- },
1368
- {
1369
- "internalType": "bool",
1370
- "name": "isVerifying",
1371
- "type": "bool"
1372
- },
1373
- {
1374
- "internalType": "UFixed",
1375
- "name": "collateralizationLevel",
1376
- "type": "uint256"
1377
- }
1378
- ],
1379
- "name": "registerPool",
1380
- "outputs": [],
1381
- "stateMutability": "nonpayable",
1382
- "type": "function"
1383
- },
1384
- {
1385
- "inputs": [
1386
- {
1387
- "internalType": "NftId",
1388
- "name": "productNftId",
1389
- "type": "uint96"
1390
- },
1391
- {
1392
- "internalType": "NftId",
1393
- "name": "distributorNftId",
1394
- "type": "uint96"
1395
- },
1396
- {
1397
- "internalType": "NftId",
1398
- "name": "poolNftId",
1399
- "type": "uint96"
1400
- },
1401
- {
1402
- "internalType": "contract IERC20Metadata",
1403
- "name": "token",
1404
- "type": "address"
1405
- },
1406
- {
1407
- "internalType": "address",
1408
- "name": "wallet",
1409
- "type": "address"
1410
- },
1411
- {
1412
- "components": [
1413
- {
1414
- "internalType": "UFixed",
1415
- "name": "fractionalFee",
1416
- "type": "uint256"
1417
- },
1418
- {
1419
- "internalType": "uint256",
1420
- "name": "fixedFee",
1421
- "type": "uint256"
1422
- }
1423
- ],
1424
- "internalType": "struct Fee",
1425
- "name": "policyFee",
1426
- "type": "tuple"
1427
- },
1428
- {
1429
- "components": [
1430
- {
1431
- "internalType": "UFixed",
1432
- "name": "fractionalFee",
1433
- "type": "uint256"
1434
- },
1435
- {
1436
- "internalType": "uint256",
1437
- "name": "fixedFee",
1438
- "type": "uint256"
1439
- }
1440
- ],
1441
- "internalType": "struct Fee",
1442
- "name": "processingFee",
1443
- "type": "tuple"
1444
- }
1445
- ],
1446
- "name": "registerProduct",
583
+ "name": "setAuthority",
1447
584
  "outputs": [],
1448
585
  "stateMutability": "nonpayable",
1449
586
  "type": "function"
@@ -1451,335 +588,22 @@
1451
588
  {
1452
589
  "inputs": [
1453
590
  {
1454
- "internalType": "NftId",
1455
- "name": "bundleNftId",
1456
- "type": "uint96"
591
+ "internalType": "string",
592
+ "name": "targetName",
593
+ "type": "string"
1457
594
  },
1458
595
  {
1459
- "internalType": "NftId",
1460
- "name": "policyNftId",
1461
- "type": "uint96"
1462
- }
1463
- ],
1464
- "name": "releasePolicy",
1465
- "outputs": [
1466
- {
1467
- "internalType": "uint256",
1468
- "name": "collateralAmount",
1469
- "type": "uint256"
1470
- }
1471
- ],
1472
- "stateMutability": "nonpayable",
1473
- "type": "function"
1474
- },
1475
- {
1476
- "inputs": [
1477
- {
1478
- "internalType": "RoleId",
1479
- "name": "role",
1480
- "type": "bytes8"
596
+ "internalType": "bytes4[]",
597
+ "name": "selectors",
598
+ "type": "bytes4[]"
1481
599
  },
1482
- {
1483
- "internalType": "address",
1484
- "name": "member",
1485
- "type": "address"
1486
- }
1487
- ],
1488
- "name": "revokeRole",
1489
- "outputs": [],
1490
- "stateMutability": "nonpayable",
1491
- "type": "function"
1492
- },
1493
- {
1494
- "inputs": [
1495
600
  {
1496
601
  "internalType": "RoleId",
1497
- "name": "role",
1498
- "type": "bytes8"
1499
- }
1500
- ],
1501
- "name": "roleExists",
1502
- "outputs": [
1503
- {
1504
- "internalType": "bool",
1505
- "name": "",
1506
- "type": "bool"
1507
- }
1508
- ],
1509
- "stateMutability": "view",
1510
- "type": "function"
1511
- },
1512
- {
1513
- "inputs": [
1514
- {
1515
- "components": [
1516
- {
1517
- "internalType": "NftId",
1518
- "name": "nftId",
1519
- "type": "uint96"
1520
- },
1521
- {
1522
- "internalType": "NftId",
1523
- "name": "poolNftId",
1524
- "type": "uint96"
1525
- },
1526
- {
1527
- "internalType": "bytes",
1528
- "name": "filter",
1529
- "type": "bytes"
1530
- },
1531
- {
1532
- "internalType": "uint256",
1533
- "name": "capitalAmount",
1534
- "type": "uint256"
1535
- },
1536
- {
1537
- "internalType": "uint256",
1538
- "name": "lockedAmount",
1539
- "type": "uint256"
1540
- },
1541
- {
1542
- "internalType": "uint256",
1543
- "name": "balanceAmount",
1544
- "type": "uint256"
1545
- },
1546
- {
1547
- "internalType": "Timestamp",
1548
- "name": "expiredAt",
1549
- "type": "uint40"
1550
- },
1551
- {
1552
- "internalType": "Timestamp",
1553
- "name": "closedAt",
1554
- "type": "uint40"
1555
- }
1556
- ],
1557
- "internalType": "struct IBundle.BundleInfo",
1558
- "name": "bundleInfo",
1559
- "type": "tuple"
1560
- }
1561
- ],
1562
- "name": "setBundleInfo",
1563
- "outputs": [],
1564
- "stateMutability": "nonpayable",
1565
- "type": "function"
1566
- },
1567
- {
1568
- "inputs": [
1569
- {
1570
- "components": [
1571
- {
1572
- "internalType": "NftId",
1573
- "name": "nftId",
1574
- "type": "uint96"
1575
- },
1576
- {
1577
- "internalType": "StateId",
1578
- "name": "state",
1579
- "type": "uint8"
1580
- },
1581
- {
1582
- "internalType": "contract IERC20Metadata",
1583
- "name": "token",
1584
- "type": "address"
1585
- }
1586
- ],
1587
- "internalType": "struct IComponent.ComponentInfo",
1588
- "name": "info",
1589
- "type": "tuple"
1590
- }
1591
- ],
1592
- "name": "setComponentInfo",
1593
- "outputs": [
1594
- {
1595
- "internalType": "NftId",
1596
- "name": "componentNftId",
1597
- "type": "uint96"
1598
- }
1599
- ],
1600
- "stateMutability": "nonpayable",
1601
- "type": "function"
1602
- },
1603
- {
1604
- "inputs": [
1605
- {
1606
- "components": [
1607
- {
1608
- "internalType": "NftId",
1609
- "name": "nftId",
1610
- "type": "uint96"
1611
- },
1612
- {
1613
- "internalType": "NftId",
1614
- "name": "productNftId",
1615
- "type": "uint96"
1616
- },
1617
- {
1618
- "internalType": "NftId",
1619
- "name": "bundleNftId",
1620
- "type": "uint96"
1621
- },
1622
- {
1623
- "internalType": "address",
1624
- "name": "beneficiary",
1625
- "type": "address"
1626
- },
1627
- {
1628
- "internalType": "StateId",
1629
- "name": "state",
1630
- "type": "uint8"
1631
- },
1632
- {
1633
- "internalType": "uint256",
1634
- "name": "sumInsuredAmount",
1635
- "type": "uint256"
1636
- },
1637
- {
1638
- "internalType": "uint256",
1639
- "name": "premiumAmount",
1640
- "type": "uint256"
1641
- },
1642
- {
1643
- "internalType": "uint256",
1644
- "name": "premiumPaidAmount",
1645
- "type": "uint256"
1646
- },
1647
- {
1648
- "internalType": "uint256",
1649
- "name": "lifetime",
1650
- "type": "uint256"
1651
- },
1652
- {
1653
- "internalType": "bytes",
1654
- "name": "data",
1655
- "type": "bytes"
1656
- },
1657
- {
1658
- "internalType": "Timestamp",
1659
- "name": "createdAt",
1660
- "type": "uint40"
1661
- },
1662
- {
1663
- "internalType": "Timestamp",
1664
- "name": "activatedAt",
1665
- "type": "uint40"
1666
- },
1667
- {
1668
- "internalType": "Timestamp",
1669
- "name": "expiredAt",
1670
- "type": "uint40"
1671
- },
1672
- {
1673
- "internalType": "Timestamp",
1674
- "name": "closedAt",
1675
- "type": "uint40"
1676
- },
1677
- {
1678
- "internalType": "Blocknumber",
1679
- "name": "updatedIn",
1680
- "type": "uint32"
1681
- }
1682
- ],
1683
- "internalType": "struct IPolicy.PolicyInfo",
1684
- "name": "policyInfo",
1685
- "type": "tuple"
1686
- }
1687
- ],
1688
- "name": "setPolicyInfo",
1689
- "outputs": [],
1690
- "stateMutability": "nonpayable",
1691
- "type": "function"
1692
- },
1693
- {
1694
- "inputs": [
1695
- {
1696
- "internalType": "NftId",
1697
- "name": "poolNftId",
1698
- "type": "uint96"
1699
- },
1700
- {
1701
- "components": [
1702
- {
1703
- "internalType": "UFixed",
1704
- "name": "fractionalFee",
1705
- "type": "uint256"
1706
- },
1707
- {
1708
- "internalType": "uint256",
1709
- "name": "fixedFee",
1710
- "type": "uint256"
1711
- }
1712
- ],
1713
- "internalType": "struct Fee",
1714
- "name": "stakingFee",
1715
- "type": "tuple"
1716
- },
1717
- {
1718
- "components": [
1719
- {
1720
- "internalType": "UFixed",
1721
- "name": "fractionalFee",
1722
- "type": "uint256"
1723
- },
1724
- {
1725
- "internalType": "uint256",
1726
- "name": "fixedFee",
1727
- "type": "uint256"
1728
- }
1729
- ],
1730
- "internalType": "struct Fee",
1731
- "name": "performanceFee",
1732
- "type": "tuple"
1733
- }
1734
- ],
1735
- "name": "setPoolFees",
1736
- "outputs": [],
1737
- "stateMutability": "nonpayable",
1738
- "type": "function"
1739
- },
1740
- {
1741
- "inputs": [
1742
- {
1743
- "internalType": "NftId",
1744
- "name": "productNftId",
1745
- "type": "uint96"
1746
- },
1747
- {
1748
- "components": [
1749
- {
1750
- "internalType": "UFixed",
1751
- "name": "fractionalFee",
1752
- "type": "uint256"
1753
- },
1754
- {
1755
- "internalType": "uint256",
1756
- "name": "fixedFee",
1757
- "type": "uint256"
1758
- }
1759
- ],
1760
- "internalType": "struct Fee",
1761
- "name": "policyFee",
1762
- "type": "tuple"
1763
- },
1764
- {
1765
- "components": [
1766
- {
1767
- "internalType": "UFixed",
1768
- "name": "fractionalFee",
1769
- "type": "uint256"
1770
- },
1771
- {
1772
- "internalType": "uint256",
1773
- "name": "fixedFee",
1774
- "type": "uint256"
1775
- }
1776
- ],
1777
- "internalType": "struct Fee",
1778
- "name": "processingFee",
1779
- "type": "tuple"
602
+ "name": "roleId",
603
+ "type": "uint64"
1780
604
  }
1781
605
  ],
1782
- "name": "setProductFees",
606
+ "name": "setTargetFunctionRole",
1783
607
  "outputs": [],
1784
608
  "stateMutability": "nonpayable",
1785
609
  "type": "function"
@@ -1787,17 +611,17 @@
1787
611
  {
1788
612
  "inputs": [
1789
613
  {
1790
- "internalType": "RoleId",
1791
- "name": "role",
1792
- "type": "bytes8"
614
+ "internalType": "address",
615
+ "name": "target",
616
+ "type": "address"
1793
617
  },
1794
618
  {
1795
619
  "internalType": "bool",
1796
- "name": "active",
620
+ "name": "locked",
1797
621
  "type": "bool"
1798
622
  }
1799
623
  ],
1800
- "name": "setRoleState",
624
+ "name": "setTargetLocked",
1801
625
  "outputs": [],
1802
626
  "stateMutability": "nonpayable",
1803
627
  "type": "function"
@@ -1820,43 +644,6 @@
1820
644
  ],
1821
645
  "stateMutability": "view",
1822
646
  "type": "function"
1823
- },
1824
- {
1825
- "inputs": [
1826
- {
1827
- "internalType": "NftId",
1828
- "name": "bundleNftId",
1829
- "type": "uint96"
1830
- }
1831
- ],
1832
- "name": "toBundleKey32",
1833
- "outputs": [
1834
- {
1835
- "internalType": "Key32",
1836
- "name": "key32",
1837
- "type": "bytes32"
1838
- }
1839
- ],
1840
- "stateMutability": "view",
1841
- "type": "function"
1842
- },
1843
- {
1844
- "inputs": [
1845
- {
1846
- "internalType": "NftId",
1847
- "name": "bundleNftId",
1848
- "type": "uint96"
1849
- },
1850
- {
1851
- "internalType": "StateId",
1852
- "name": "state",
1853
- "type": "uint8"
1854
- }
1855
- ],
1856
- "name": "updateBundleState",
1857
- "outputs": [],
1858
- "stateMutability": "nonpayable",
1859
- "type": "function"
1860
647
  }
1861
648
  ],
1862
649
  "bytecode": "0x",