@etherisc/gif-next 0.0.2-dc7e4cb-141 → 0.0.2-dd40550-413

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 +249 -23
  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 +320 -1684
  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 +416 -1752
  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 +4 -0
  45. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  46. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{module/lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  48. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
  50. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  51. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
  52. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  53. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
  54. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  55. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  56. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  57. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  58. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  59. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  60. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  61. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  62. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  64. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  65. package/artifacts/contracts/instance/module/{pool/IPoolModule.sol/IPool.json → ISetup.sol/ISetup.json} +2 -2
  66. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
  68. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  69. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +918 -0
  70. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  71. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +648 -0
  72. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  73. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1288 -0
  74. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  75. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +696 -0
  76. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
  77. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1376 -0
  78. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  79. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +748 -0
  80. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1556 -0
  82. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +780 -0
  84. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  85. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +493 -0
  86. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  87. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +735 -0
  88. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
  89. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +743 -0
  90. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  91. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +840 -0
  92. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  93. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +651 -0
  94. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +908 -207
  96. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
  98. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +186 -221
  100. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1281 -0
  102. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
  104. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  105. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1334 -183
  106. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +708 -0
  108. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
  110. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
  112. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  113. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +484 -293
  114. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +640 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +485 -34
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +858 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +487 -101
  126. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1150 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +657 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
  134. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  135. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +485 -0
  136. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  137. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  138. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  139. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  140. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  141. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  142. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +125 -0
  144. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  145. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +189 -0
  146. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  147. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -37
  148. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  149. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  150. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  151. package/artifacts/contracts/{instance/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +160 -146
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  153. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  154. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +238 -0
  156. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  157. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
  158. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  159. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +569 -0
  160. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  161. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +245 -27
  162. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  163. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  164. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  165. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +256 -220
  166. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  167. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +114 -0
  168. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  169. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  170. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  171. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  172. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  173. package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
  174. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  175. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +261 -28
  176. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  177. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +44 -10
  178. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  179. package/artifacts/contracts/test/TestService.sol/TestService.json +344 -135
  180. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  181. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
  182. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  183. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  184. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  185. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +38 -140
  186. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  187. package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
  188. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  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/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
  196. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  198. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  199. package/artifacts/contracts/types/Fee.sol/FeeLib.json +112 -18
  200. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  201. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  202. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  203. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
  204. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  205. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  206. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  208. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  209. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  210. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
  212. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
  214. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  216. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  218. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  219. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  220. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  221. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  222. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  223. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +51 -7
  224. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  225. package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
  226. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  227. package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
  228. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  229. package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
  230. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  231. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
  232. package/contracts/components/Component.sol +272 -0
  233. package/contracts/components/Distribution.sol +285 -0
  234. package/contracts/components/IComponent.sol +90 -0
  235. package/contracts/components/IDistributionComponent.sol +71 -0
  236. package/contracts/components/IPoolComponent.sol +100 -43
  237. package/contracts/components/IProductComponent.sol +31 -9
  238. package/contracts/components/Pool.sol +238 -110
  239. package/contracts/components/Product.sol +307 -49
  240. package/contracts/instance/BundleManager.sol +126 -0
  241. package/contracts/instance/Cloneable.sol +51 -0
  242. package/contracts/instance/IInstance.sol +63 -39
  243. package/contracts/instance/IInstanceService.sol +73 -0
  244. package/contracts/instance/Instance.sol +214 -51
  245. package/contracts/instance/InstanceAccessManager.sol +541 -0
  246. package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
  247. package/contracts/instance/InstanceReader.sol +368 -0
  248. package/contracts/instance/InstanceService.sol +308 -0
  249. package/contracts/instance/InstanceServiceManager.sol +54 -0
  250. package/contracts/instance/InstanceStore.sol +212 -0
  251. package/contracts/instance/ObjectManager.sol +82 -0
  252. package/contracts/instance/base/ComponentService.sol +148 -0
  253. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  254. package/contracts/instance/base/ILifecycle.sol +30 -0
  255. package/contracts/instance/base/KeyValueStore.sol +149 -0
  256. package/contracts/instance/base/Lifecycle.sol +120 -0
  257. package/contracts/instance/module/IAccess.sol +54 -0
  258. package/contracts/instance/module/IBundle.sol +23 -0
  259. package/contracts/instance/module/IComponents.sol +41 -0
  260. package/contracts/instance/module/IDistribution.sol +42 -0
  261. package/contracts/instance/module/IPolicy.sol +77 -0
  262. package/contracts/instance/module/IRisk.sol +11 -0
  263. package/contracts/instance/module/ISetup.sol +33 -0
  264. package/contracts/instance/module/ITreasury.sol +23 -0
  265. package/contracts/instance/service/ApplicationService.sol +186 -0
  266. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  267. package/contracts/instance/service/BundleService.sol +382 -0
  268. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  269. package/contracts/instance/service/ClaimService.sol +437 -0
  270. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  271. package/contracts/instance/service/DistributionService.sol +348 -0
  272. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  273. package/contracts/instance/service/IApplicationService.sol +62 -0
  274. package/contracts/instance/service/IBundleService.sol +118 -0
  275. package/contracts/instance/service/IClaimService.sol +90 -0
  276. package/contracts/instance/service/IDistributionService.sol +87 -0
  277. package/contracts/instance/service/IPolicyService.sol +80 -0
  278. package/contracts/instance/service/IPoolService.sol +96 -12
  279. package/contracts/instance/service/IPricingService.sol +37 -0
  280. package/contracts/instance/service/IProductService.sol +21 -39
  281. package/contracts/instance/service/PolicyService.sol +376 -0
  282. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  283. package/contracts/instance/service/PoolService.sol +342 -62
  284. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  285. package/contracts/instance/service/PricingService.sol +275 -0
  286. package/contracts/instance/service/PricingServiceManager.sol +51 -0
  287. package/contracts/instance/service/ProductService.sol +148 -293
  288. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  289. package/contracts/registry/ChainNft.sol +87 -36
  290. package/contracts/registry/IRegistry.sol +68 -24
  291. package/contracts/registry/IRegistryService.sol +66 -0
  292. package/contracts/registry/ITransferInterceptor.sol +7 -0
  293. package/contracts/registry/Registry.sol +372 -286
  294. package/contracts/registry/RegistryAccessManager.sol +216 -0
  295. package/contracts/registry/RegistryService.sol +286 -0
  296. package/contracts/registry/RegistryServiceManager.sol +62 -0
  297. package/contracts/registry/ReleaseManager.sol +324 -0
  298. package/contracts/registry/TokenRegistry.sol +116 -0
  299. package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
  300. package/contracts/shared/ContractDeployerLib.sol +72 -0
  301. package/contracts/shared/ERC165.sol +14 -8
  302. package/contracts/shared/INftOwnable.sol +23 -0
  303. package/contracts/shared/IPolicyHolder.sol +40 -0
  304. package/contracts/shared/IRegisterable.sol +10 -19
  305. package/contracts/shared/IRegistryLinked.sol +11 -0
  306. package/contracts/shared/IService.sol +18 -0
  307. package/contracts/shared/IVersionable.sol +38 -37
  308. package/contracts/shared/NftOwnable.sol +118 -0
  309. package/contracts/shared/PolicyHolder.sol +94 -0
  310. package/contracts/shared/ProxyManager.sol +169 -0
  311. package/contracts/shared/Registerable.sol +52 -63
  312. package/contracts/shared/RegistryLinked.sol +43 -0
  313. package/contracts/shared/Service.sol +72 -0
  314. package/contracts/shared/TokenHandler.sol +35 -0
  315. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  316. package/contracts/shared/Versionable.sol +38 -68
  317. package/contracts/test/TestFee.sol +2 -2
  318. package/contracts/test/TestRegisterable.sol +5 -6
  319. package/contracts/test/TestRoleId.sol +2 -2
  320. package/contracts/test/TestService.sol +7 -14
  321. package/contracts/types/Amount.sol +109 -0
  322. package/contracts/types/Blocknumber.sol +1 -0
  323. package/contracts/types/ClaimId.sol +75 -0
  324. package/contracts/types/DistributorType.sol +55 -0
  325. package/contracts/types/Fee.sol +25 -11
  326. package/contracts/types/Key32.sol +50 -0
  327. package/contracts/types/NftId.sol +24 -1
  328. package/contracts/types/NftIdSet.sol +26 -24
  329. package/contracts/types/NumberId.sol +52 -0
  330. package/contracts/types/ObjectType.sol +61 -15
  331. package/contracts/types/PayoutId.sol +82 -0
  332. package/contracts/types/Referral.sol +89 -0
  333. package/contracts/types/RiskId.sol +43 -0
  334. package/contracts/types/RoleId.sol +72 -11
  335. package/contracts/types/Seconds.sol +54 -0
  336. package/contracts/types/StateId.sol +19 -4
  337. package/contracts/types/Timestamp.sol +22 -13
  338. package/contracts/types/UFixed.sol +129 -12
  339. package/contracts/types/Version.sol +14 -1
  340. package/package.json +6 -5
  341. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  342. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  343. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  344. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
  345. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  346. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  347. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  348. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  349. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  350. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  351. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  352. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  353. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  354. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  355. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  356. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  357. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  358. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  359. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  360. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  361. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  362. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  363. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  364. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  365. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  366. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  367. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  368. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  369. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  370. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  371. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  372. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  373. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  374. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  375. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  376. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  377. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  378. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  379. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  380. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +0 -4
  381. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.json +0 -50
  382. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  383. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  384. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  385. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  386. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  387. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  388. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  389. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -276
  390. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  391. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  392. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -276
  393. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  394. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  395. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  396. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  397. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  398. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  399. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  400. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  401. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  402. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  403. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  404. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  405. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  406. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  407. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  408. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  409. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  410. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  411. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  412. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  413. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  414. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  415. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  416. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  417. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  418. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  419. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  420. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  421. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  422. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  423. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  424. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  425. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  426. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  427. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  428. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  429. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  430. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  431. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  432. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  433. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -491
  434. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  435. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  436. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  437. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -364
  438. package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +0 -4
  439. package/artifacts/contracts/instance/service/IService.sol/IService.json +0 -300
  440. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  441. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.json +0 -300
  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/contracts/components/BaseComponent.sol +0 -89
  452. package/contracts/components/IBaseComponent.sol +0 -19
  453. package/contracts/experiment/errors/Require.sol +0 -38
  454. package/contracts/experiment/errors/Revert.sol +0 -44
  455. package/contracts/experiment/inheritance/A.sol +0 -53
  456. package/contracts/experiment/inheritance/B.sol +0 -28
  457. package/contracts/experiment/inheritance/C.sol +0 -34
  458. package/contracts/experiment/inheritance/IA.sol +0 -13
  459. package/contracts/experiment/inheritance/IB.sol +0 -10
  460. package/contracts/experiment/inheritance/IC.sol +0 -12
  461. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  462. package/contracts/experiment/statemachine/ISM.sol +0 -25
  463. package/contracts/experiment/statemachine/README.md +0 -112
  464. package/contracts/experiment/statemachine/SM.sol +0 -57
  465. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  466. package/contracts/experiment/types/TypeA.sol +0 -47
  467. package/contracts/experiment/types/TypeB.sol +0 -29
  468. package/contracts/instance/IInstanceLinked.sol +0 -8
  469. package/contracts/instance/IServiceLinked.sol +0 -12
  470. package/contracts/instance/InstanceBase.sol +0 -71
  471. package/contracts/instance/module/access/Access.sol +0 -149
  472. package/contracts/instance/module/access/IAccess.sol +0 -53
  473. package/contracts/instance/module/bundle/BundleModule.sol +0 -228
  474. package/contracts/instance/module/bundle/IBundle.sol +0 -53
  475. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  476. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  477. package/contracts/instance/module/component/ComponentModule.sol +0 -103
  478. package/contracts/instance/module/component/IComponent.sol +0 -53
  479. package/contracts/instance/module/lifecycle/ILifecycle.sol +0 -47
  480. package/contracts/instance/module/lifecycle/LifecycleModule.sol +0 -89
  481. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  482. package/contracts/instance/module/policy/PolicyModule.sol +0 -84
  483. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  484. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  485. package/contracts/instance/module/risk/IRisk.sol +0 -10
  486. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  487. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  488. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  489. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  490. package/contracts/instance/service/ComponentOwnerService.sol +0 -171
  491. package/contracts/instance/service/ComponentServiceBase.sol +0 -41
  492. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  493. package/contracts/instance/service/IService.sol +0 -15
  494. package/contracts/instance/service/ServiceBase.sol +0 -39
  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
@@ -3,6 +3,781 @@
3
3
  "contractName": "Product",
4
4
  "sourceName": "contracts/components/Product.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "target",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "AddressEmptyCode",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "account",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "AddressInsufficientBalance",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "caller",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorComponentNotChainNft",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "NftId",
81
+ "name": "instanceNftId",
82
+ "type": "uint96"
83
+ }
84
+ ],
85
+ "name": "ErrorComponentNotInstance",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "address",
92
+ "name": "caller",
93
+ "type": "address"
94
+ }
95
+ ],
96
+ "name": "ErrorComponentNotProductService",
97
+ "type": "error"
98
+ },
99
+ {
100
+ "inputs": [],
101
+ "name": "ErrorComponentProductNftAlreadySet",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [],
106
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "ErrorComponentWalletAddressZero",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "oldWallet",
119
+ "type": "address"
120
+ },
121
+ {
122
+ "internalType": "address",
123
+ "name": "newWallet",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "internalType": "uint256",
128
+ "name": "allowance",
129
+ "type": "uint256"
130
+ },
131
+ {
132
+ "internalType": "uint256",
133
+ "name": "balance",
134
+ "type": "uint256"
135
+ }
136
+ ],
137
+ "name": "ErrorComponentWalletAllowanceTooSmall",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "ErrorComponentWalletNotComponent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "NftId",
149
+ "name": "nftId",
150
+ "type": "uint96"
151
+ }
152
+ ],
153
+ "name": "ErrorNftOwnableAlreadyLinked",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "address",
160
+ "name": "contractAddress",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "ErrorNftOwnableContractNotRegistered",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [],
169
+ "name": "ErrorNftOwnableInitialOwnerZero",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [
174
+ {
175
+ "internalType": "address",
176
+ "name": "account",
177
+ "type": "address"
178
+ }
179
+ ],
180
+ "name": "ErrorNftOwnableNotOwner",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [
185
+ {
186
+ "internalType": "address",
187
+ "name": "registryAddress",
188
+ "type": "address"
189
+ }
190
+ ],
191
+ "name": "ErrorNotRegistry",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "FailedInnerCall",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "InvalidInitialization",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "inputs": [],
206
+ "name": "NotInitializing",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "inputs": [
211
+ {
212
+ "internalType": "address",
213
+ "name": "token",
214
+ "type": "address"
215
+ }
216
+ ],
217
+ "name": "SafeERC20FailedOperation",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "anonymous": false,
222
+ "inputs": [
223
+ {
224
+ "indexed": false,
225
+ "internalType": "address",
226
+ "name": "authority",
227
+ "type": "address"
228
+ }
229
+ ],
230
+ "name": "AuthorityUpdated",
231
+ "type": "event"
232
+ },
233
+ {
234
+ "anonymous": false,
235
+ "inputs": [
236
+ {
237
+ "indexed": false,
238
+ "internalType": "uint64",
239
+ "name": "version",
240
+ "type": "uint64"
241
+ }
242
+ ],
243
+ "name": "Initialized",
244
+ "type": "event"
245
+ },
246
+ {
247
+ "anonymous": false,
248
+ "inputs": [
249
+ {
250
+ "indexed": false,
251
+ "internalType": "uint256",
252
+ "name": "limit",
253
+ "type": "uint256"
254
+ }
255
+ ],
256
+ "name": "LogComponentTokenHandlerApproved",
257
+ "type": "event"
258
+ },
259
+ {
260
+ "anonymous": false,
261
+ "inputs": [
262
+ {
263
+ "indexed": false,
264
+ "internalType": "address",
265
+ "name": "oldWallet",
266
+ "type": "address"
267
+ },
268
+ {
269
+ "indexed": false,
270
+ "internalType": "address",
271
+ "name": "newWallet",
272
+ "type": "address"
273
+ }
274
+ ],
275
+ "name": "LogComponentWalletAddressChanged",
276
+ "type": "event"
277
+ },
278
+ {
279
+ "anonymous": false,
280
+ "inputs": [
281
+ {
282
+ "indexed": false,
283
+ "internalType": "address",
284
+ "name": "from",
285
+ "type": "address"
286
+ },
287
+ {
288
+ "indexed": false,
289
+ "internalType": "address",
290
+ "name": "to",
291
+ "type": "address"
292
+ },
293
+ {
294
+ "indexed": false,
295
+ "internalType": "uint256",
296
+ "name": "amount",
297
+ "type": "uint256"
298
+ }
299
+ ],
300
+ "name": "LogComponentWalletTokensTransferred",
301
+ "type": "event"
302
+ },
303
+ {
304
+ "inputs": [],
305
+ "name": "COMPONENT_LOCATION_V1",
306
+ "outputs": [
307
+ {
308
+ "internalType": "bytes32",
309
+ "name": "",
310
+ "type": "bytes32"
311
+ }
312
+ ],
313
+ "stateMutability": "view",
314
+ "type": "function"
315
+ },
316
+ {
317
+ "inputs": [],
318
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
319
+ "outputs": [
320
+ {
321
+ "internalType": "bytes32",
322
+ "name": "",
323
+ "type": "bytes32"
324
+ }
325
+ ],
326
+ "stateMutability": "view",
327
+ "type": "function"
328
+ },
329
+ {
330
+ "inputs": [],
331
+ "name": "PRODUCT_STORAGE_LOCATION_V1",
332
+ "outputs": [
333
+ {
334
+ "internalType": "bytes32",
335
+ "name": "",
336
+ "type": "bytes32"
337
+ }
338
+ ],
339
+ "stateMutability": "view",
340
+ "type": "function"
341
+ },
342
+ {
343
+ "inputs": [],
344
+ "name": "REGISTERABLE_LOCATION_V1",
345
+ "outputs": [
346
+ {
347
+ "internalType": "bytes32",
348
+ "name": "",
349
+ "type": "bytes32"
350
+ }
351
+ ],
352
+ "stateMutability": "view",
353
+ "type": "function"
354
+ },
355
+ {
356
+ "inputs": [
357
+ {
358
+ "internalType": "uint256",
359
+ "name": "spendingLimitAmount",
360
+ "type": "uint256"
361
+ }
362
+ ],
363
+ "name": "approveTokenHandler",
364
+ "outputs": [],
365
+ "stateMutability": "nonpayable",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [],
370
+ "name": "authority",
371
+ "outputs": [
372
+ {
373
+ "internalType": "address",
374
+ "name": "",
375
+ "type": "address"
376
+ }
377
+ ],
378
+ "stateMutability": "view",
379
+ "type": "function"
380
+ },
381
+ {
382
+ "inputs": [
383
+ {
384
+ "internalType": "Amount",
385
+ "name": "sumInsuredAmount",
386
+ "type": "uint96"
387
+ },
388
+ {
389
+ "internalType": "RiskId",
390
+ "name": "riskId",
391
+ "type": "bytes8"
392
+ },
393
+ {
394
+ "internalType": "Seconds",
395
+ "name": "lifetime",
396
+ "type": "uint40"
397
+ },
398
+ {
399
+ "internalType": "bytes",
400
+ "name": "applicationData",
401
+ "type": "bytes"
402
+ }
403
+ ],
404
+ "name": "calculateNetPremium",
405
+ "outputs": [
406
+ {
407
+ "internalType": "Amount",
408
+ "name": "netPremiumAmount",
409
+ "type": "uint96"
410
+ }
411
+ ],
412
+ "stateMutability": "view",
413
+ "type": "function"
414
+ },
415
+ {
416
+ "inputs": [
417
+ {
418
+ "internalType": "Amount",
419
+ "name": "sumInsuredAmount",
420
+ "type": "uint96"
421
+ },
422
+ {
423
+ "internalType": "RiskId",
424
+ "name": "riskId",
425
+ "type": "bytes8"
426
+ },
427
+ {
428
+ "internalType": "Seconds",
429
+ "name": "lifetime",
430
+ "type": "uint40"
431
+ },
432
+ {
433
+ "internalType": "bytes",
434
+ "name": "applicationData",
435
+ "type": "bytes"
436
+ },
437
+ {
438
+ "internalType": "NftId",
439
+ "name": "bundleNftId",
440
+ "type": "uint96"
441
+ },
442
+ {
443
+ "internalType": "ReferralId",
444
+ "name": "referralId",
445
+ "type": "bytes8"
446
+ }
447
+ ],
448
+ "name": "calculatePremium",
449
+ "outputs": [
450
+ {
451
+ "internalType": "Amount",
452
+ "name": "premiumAmount",
453
+ "type": "uint96"
454
+ }
455
+ ],
456
+ "stateMutability": "view",
457
+ "type": "function"
458
+ },
459
+ {
460
+ "inputs": [],
461
+ "name": "getComponentInfo",
462
+ "outputs": [
463
+ {
464
+ "components": [
465
+ {
466
+ "internalType": "string",
467
+ "name": "name",
468
+ "type": "string"
469
+ },
470
+ {
471
+ "internalType": "contract IERC20Metadata",
472
+ "name": "token",
473
+ "type": "address"
474
+ },
475
+ {
476
+ "internalType": "contract TokenHandler",
477
+ "name": "tokenHandler",
478
+ "type": "address"
479
+ },
480
+ {
481
+ "internalType": "address",
482
+ "name": "wallet",
483
+ "type": "address"
484
+ },
485
+ {
486
+ "internalType": "Amount",
487
+ "name": "balanceAmount",
488
+ "type": "uint96"
489
+ },
490
+ {
491
+ "internalType": "Amount",
492
+ "name": "feeAmount",
493
+ "type": "uint96"
494
+ },
495
+ {
496
+ "internalType": "bytes",
497
+ "name": "data",
498
+ "type": "bytes"
499
+ }
500
+ ],
501
+ "internalType": "struct IComponents.ComponentInfo",
502
+ "name": "info",
503
+ "type": "tuple"
504
+ }
505
+ ],
506
+ "stateMutability": "view",
507
+ "type": "function"
508
+ },
509
+ {
510
+ "inputs": [],
511
+ "name": "getDistributionNftId",
512
+ "outputs": [
513
+ {
514
+ "internalType": "NftId",
515
+ "name": "distributionNftId",
516
+ "type": "uint96"
517
+ }
518
+ ],
519
+ "stateMutability": "view",
520
+ "type": "function"
521
+ },
522
+ {
523
+ "inputs": [],
524
+ "name": "getInitialInfo",
525
+ "outputs": [
526
+ {
527
+ "components": [
528
+ {
529
+ "internalType": "NftId",
530
+ "name": "nftId",
531
+ "type": "uint96"
532
+ },
533
+ {
534
+ "internalType": "NftId",
535
+ "name": "parentNftId",
536
+ "type": "uint96"
537
+ },
538
+ {
539
+ "internalType": "ObjectType",
540
+ "name": "objectType",
541
+ "type": "uint8"
542
+ },
543
+ {
544
+ "internalType": "bool",
545
+ "name": "isInterceptor",
546
+ "type": "bool"
547
+ },
548
+ {
549
+ "internalType": "address",
550
+ "name": "objectAddress",
551
+ "type": "address"
552
+ },
553
+ {
554
+ "internalType": "address",
555
+ "name": "initialOwner",
556
+ "type": "address"
557
+ },
558
+ {
559
+ "internalType": "bytes",
560
+ "name": "data",
561
+ "type": "bytes"
562
+ }
563
+ ],
564
+ "internalType": "struct IRegistry.ObjectInfo",
565
+ "name": "info",
566
+ "type": "tuple"
567
+ }
568
+ ],
569
+ "stateMutability": "view",
570
+ "type": "function"
571
+ },
572
+ {
573
+ "inputs": [],
574
+ "name": "getInstance",
575
+ "outputs": [
576
+ {
577
+ "internalType": "contract IInstance",
578
+ "name": "instance",
579
+ "type": "address"
580
+ }
581
+ ],
582
+ "stateMutability": "view",
583
+ "type": "function"
584
+ },
585
+ {
586
+ "inputs": [],
587
+ "name": "getName",
588
+ "outputs": [
589
+ {
590
+ "internalType": "string",
591
+ "name": "name",
592
+ "type": "string"
593
+ }
594
+ ],
595
+ "stateMutability": "view",
596
+ "type": "function"
597
+ },
598
+ {
599
+ "inputs": [],
600
+ "name": "getNftId",
601
+ "outputs": [
602
+ {
603
+ "internalType": "NftId",
604
+ "name": "",
605
+ "type": "uint96"
606
+ }
607
+ ],
608
+ "stateMutability": "view",
609
+ "type": "function"
610
+ },
611
+ {
612
+ "inputs": [],
613
+ "name": "getOwner",
614
+ "outputs": [
615
+ {
616
+ "internalType": "address",
617
+ "name": "",
618
+ "type": "address"
619
+ }
620
+ ],
621
+ "stateMutability": "view",
622
+ "type": "function"
623
+ },
624
+ {
625
+ "inputs": [],
626
+ "name": "getPoolNftId",
627
+ "outputs": [
628
+ {
629
+ "internalType": "NftId",
630
+ "name": "poolNftId",
631
+ "type": "uint96"
632
+ }
633
+ ],
634
+ "stateMutability": "view",
635
+ "type": "function"
636
+ },
637
+ {
638
+ "inputs": [],
639
+ "name": "getProductNftId",
640
+ "outputs": [
641
+ {
642
+ "internalType": "NftId",
643
+ "name": "productNftId",
644
+ "type": "uint96"
645
+ }
646
+ ],
647
+ "stateMutability": "view",
648
+ "type": "function"
649
+ },
650
+ {
651
+ "inputs": [],
652
+ "name": "getRegistry",
653
+ "outputs": [
654
+ {
655
+ "internalType": "contract IRegistry",
656
+ "name": "",
657
+ "type": "address"
658
+ }
659
+ ],
660
+ "stateMutability": "view",
661
+ "type": "function"
662
+ },
663
+ {
664
+ "inputs": [],
665
+ "name": "getSetupInfo",
666
+ "outputs": [
667
+ {
668
+ "components": [
669
+ {
670
+ "internalType": "contract IERC20Metadata",
671
+ "name": "token",
672
+ "type": "address"
673
+ },
674
+ {
675
+ "internalType": "contract TokenHandler",
676
+ "name": "tokenHandler",
677
+ "type": "address"
678
+ },
679
+ {
680
+ "internalType": "NftId",
681
+ "name": "distributionNftId",
682
+ "type": "uint96"
683
+ },
684
+ {
685
+ "internalType": "NftId",
686
+ "name": "poolNftId",
687
+ "type": "uint96"
688
+ },
689
+ {
690
+ "components": [
691
+ {
692
+ "internalType": "UFixed",
693
+ "name": "fractionalFee",
694
+ "type": "uint256"
695
+ },
696
+ {
697
+ "internalType": "uint256",
698
+ "name": "fixedFee",
699
+ "type": "uint256"
700
+ }
701
+ ],
702
+ "internalType": "struct Fee",
703
+ "name": "productFee",
704
+ "type": "tuple"
705
+ },
706
+ {
707
+ "components": [
708
+ {
709
+ "internalType": "UFixed",
710
+ "name": "fractionalFee",
711
+ "type": "uint256"
712
+ },
713
+ {
714
+ "internalType": "uint256",
715
+ "name": "fixedFee",
716
+ "type": "uint256"
717
+ }
718
+ ],
719
+ "internalType": "struct Fee",
720
+ "name": "processingFee",
721
+ "type": "tuple"
722
+ },
723
+ {
724
+ "internalType": "bool",
725
+ "name": "isIntercepting",
726
+ "type": "bool"
727
+ },
728
+ {
729
+ "internalType": "address",
730
+ "name": "wallet",
731
+ "type": "address"
732
+ }
733
+ ],
734
+ "internalType": "struct ISetup.ProductSetupInfo",
735
+ "name": "setupInfo",
736
+ "type": "tuple"
737
+ }
738
+ ],
739
+ "stateMutability": "view",
740
+ "type": "function"
741
+ },
742
+ {
743
+ "inputs": [],
744
+ "name": "getToken",
745
+ "outputs": [
746
+ {
747
+ "internalType": "contract IERC20Metadata",
748
+ "name": "token",
749
+ "type": "address"
750
+ }
751
+ ],
752
+ "stateMutability": "view",
753
+ "type": "function"
754
+ },
755
+ {
756
+ "inputs": [],
757
+ "name": "getTokenHandler",
758
+ "outputs": [
759
+ {
760
+ "internalType": "contract TokenHandler",
761
+ "name": "tokenHandler",
762
+ "type": "address"
763
+ }
764
+ ],
765
+ "stateMutability": "view",
766
+ "type": "function"
767
+ },
768
+ {
769
+ "inputs": [],
770
+ "name": "getWallet",
771
+ "outputs": [
772
+ {
773
+ "internalType": "address",
774
+ "name": "walletAddress",
775
+ "type": "address"
776
+ }
777
+ ],
778
+ "stateMutability": "view",
779
+ "type": "function"
780
+ },
6
781
  {
7
782
  "inputs": [
8
783
  {
@@ -12,92 +787,107 @@
12
787
  },
13
788
  {
14
789
  "internalType": "NftId",
15
- "name": "instanceNftid",
790
+ "name": "instanceNftId",
16
791
  "type": "uint96"
17
792
  },
793
+ {
794
+ "internalType": "string",
795
+ "name": "name",
796
+ "type": "string"
797
+ },
18
798
  {
19
799
  "internalType": "address",
20
800
  "name": "token",
21
801
  "type": "address"
22
802
  },
803
+ {
804
+ "internalType": "ObjectType",
805
+ "name": "componentType",
806
+ "type": "uint8"
807
+ },
808
+ {
809
+ "internalType": "bool",
810
+ "name": "isInterceptor",
811
+ "type": "bool"
812
+ },
23
813
  {
24
814
  "internalType": "address",
25
- "name": "pool",
815
+ "name": "initialOwner",
26
816
  "type": "address"
27
- }
28
- ],
29
- "stateMutability": "nonpayable",
30
- "type": "constructor"
31
- },
32
- {
33
- "inputs": [],
34
- "name": "getData",
35
- "outputs": [
817
+ },
36
818
  {
37
819
  "internalType": "bytes",
38
- "name": "data",
820
+ "name": "registryData",
39
821
  "type": "bytes"
40
822
  }
41
823
  ],
42
- "stateMutability": "view",
824
+ "name": "initializeComponent",
825
+ "outputs": [],
826
+ "stateMutability": "nonpayable",
43
827
  "type": "function"
44
828
  },
45
829
  {
46
830
  "inputs": [],
47
- "name": "getInstance",
48
- "outputs": [
49
- {
50
- "internalType": "contract IInstance",
51
- "name": "instance",
52
- "type": "address"
53
- }
54
- ],
55
- "stateMutability": "view",
831
+ "name": "initializeERC165",
832
+ "outputs": [],
833
+ "stateMutability": "nonpayable",
56
834
  "type": "function"
57
835
  },
58
836
  {
59
- "inputs": [],
60
- "name": "getNftId",
61
- "outputs": [
837
+ "inputs": [
62
838
  {
63
- "internalType": "NftId",
64
- "name": "nftId",
65
- "type": "uint96"
66
- }
67
- ],
68
- "stateMutability": "view",
69
- "type": "function"
70
- },
71
- {
72
- "inputs": [],
73
- "name": "getOwner",
74
- "outputs": [
839
+ "internalType": "address",
840
+ "name": "initialOwner",
841
+ "type": "address"
842
+ },
75
843
  {
76
844
  "internalType": "address",
77
- "name": "owner",
845
+ "name": "registryAddress",
78
846
  "type": "address"
79
847
  }
80
848
  ],
81
- "stateMutability": "view",
849
+ "name": "initializeNftOwnable",
850
+ "outputs": [],
851
+ "stateMutability": "nonpayable",
82
852
  "type": "function"
83
853
  },
84
854
  {
85
- "inputs": [],
86
- "name": "getParentNftId",
87
- "outputs": [
855
+ "inputs": [
856
+ {
857
+ "internalType": "address",
858
+ "name": "registry",
859
+ "type": "address"
860
+ },
88
861
  {
89
862
  "internalType": "NftId",
90
- "name": "nftId",
863
+ "name": "instanceNftId",
91
864
  "type": "uint96"
92
- }
93
- ],
94
- "stateMutability": "view",
95
- "type": "function"
96
- },
97
- {
98
- "inputs": [],
99
- "name": "getPolicyFee",
100
- "outputs": [
865
+ },
866
+ {
867
+ "internalType": "string",
868
+ "name": "name",
869
+ "type": "string"
870
+ },
871
+ {
872
+ "internalType": "address",
873
+ "name": "token",
874
+ "type": "address"
875
+ },
876
+ {
877
+ "internalType": "bool",
878
+ "name": "isInterceptor",
879
+ "type": "bool"
880
+ },
881
+ {
882
+ "internalType": "address",
883
+ "name": "pool",
884
+ "type": "address"
885
+ },
886
+ {
887
+ "internalType": "address",
888
+ "name": "distribution",
889
+ "type": "address"
890
+ },
101
891
  {
102
892
  "components": [
103
893
  {
@@ -112,30 +902,9 @@
112
902
  }
113
903
  ],
114
904
  "internalType": "struct Fee",
115
- "name": "policyFee",
905
+ "name": "productFee",
116
906
  "type": "tuple"
117
- }
118
- ],
119
- "stateMutability": "view",
120
- "type": "function"
121
- },
122
- {
123
- "inputs": [],
124
- "name": "getPoolNftId",
125
- "outputs": [
126
- {
127
- "internalType": "NftId",
128
- "name": "poolNftId",
129
- "type": "uint96"
130
- }
131
- ],
132
- "stateMutability": "view",
133
- "type": "function"
134
- },
135
- {
136
- "inputs": [],
137
- "name": "getProcessingFee",
138
- "outputs": [
907
+ },
139
908
  {
140
909
  "components": [
141
910
  {
@@ -152,58 +921,95 @@
152
921
  "internalType": "struct Fee",
153
922
  "name": "processingFee",
154
923
  "type": "tuple"
924
+ },
925
+ {
926
+ "internalType": "address",
927
+ "name": "initialOwner",
928
+ "type": "address"
929
+ },
930
+ {
931
+ "internalType": "bytes",
932
+ "name": "registryData",
933
+ "type": "bytes"
155
934
  }
156
935
  ],
157
- "stateMutability": "view",
936
+ "name": "initializeProduct",
937
+ "outputs": [],
938
+ "stateMutability": "nonpayable",
158
939
  "type": "function"
159
940
  },
160
941
  {
161
- "inputs": [],
162
- "name": "getRegistry",
163
- "outputs": [
942
+ "inputs": [
164
943
  {
165
- "internalType": "contract IRegistry",
166
- "name": "registry",
944
+ "internalType": "address",
945
+ "name": "registryAddress",
946
+ "type": "address"
947
+ },
948
+ {
949
+ "internalType": "NftId",
950
+ "name": "parentNftId",
951
+ "type": "uint96"
952
+ },
953
+ {
954
+ "internalType": "ObjectType",
955
+ "name": "objectType",
956
+ "type": "uint8"
957
+ },
958
+ {
959
+ "internalType": "bool",
960
+ "name": "isInterceptor",
961
+ "type": "bool"
962
+ },
963
+ {
964
+ "internalType": "address",
965
+ "name": "initialOwner",
167
966
  "type": "address"
967
+ },
968
+ {
969
+ "internalType": "bytes",
970
+ "name": "registryData",
971
+ "type": "bytes"
168
972
  }
169
973
  ],
170
- "stateMutability": "view",
974
+ "name": "initializeRegisterable",
975
+ "outputs": [],
976
+ "stateMutability": "nonpayable",
171
977
  "type": "function"
172
978
  },
173
979
  {
174
- "inputs": [],
175
- "name": "getToken",
176
- "outputs": [
980
+ "inputs": [
177
981
  {
178
- "internalType": "contract IERC20Metadata",
179
- "name": "token",
982
+ "internalType": "address",
983
+ "name": "registryAddress",
180
984
  "type": "address"
181
985
  }
182
986
  ],
183
- "stateMutability": "view",
987
+ "name": "initializeRegistryLinked",
988
+ "outputs": [],
989
+ "stateMutability": "nonpayable",
184
990
  "type": "function"
185
991
  },
186
992
  {
187
993
  "inputs": [],
188
- "name": "getType",
994
+ "name": "isConsumingScheduledOp",
189
995
  "outputs": [
190
996
  {
191
- "internalType": "ObjectType",
997
+ "internalType": "bytes4",
192
998
  "name": "",
193
- "type": "uint8"
999
+ "type": "bytes4"
194
1000
  }
195
1001
  ],
196
- "stateMutability": "pure",
1002
+ "stateMutability": "view",
197
1003
  "type": "function"
198
1004
  },
199
1005
  {
200
1006
  "inputs": [],
201
- "name": "getWallet",
1007
+ "name": "isNftInterceptor",
202
1008
  "outputs": [
203
1009
  {
204
- "internalType": "address",
205
- "name": "walletAddress",
206
- "type": "address"
1010
+ "internalType": "bool",
1011
+ "name": "isInterceptor",
1012
+ "type": "bool"
207
1013
  }
208
1014
  ],
209
1015
  "stateMutability": "view",
@@ -211,21 +1017,82 @@
211
1017
  },
212
1018
  {
213
1019
  "inputs": [],
214
- "name": "lock",
1020
+ "name": "linkToRegisteredNftId",
215
1021
  "outputs": [],
216
1022
  "stateMutability": "nonpayable",
217
1023
  "type": "function"
218
1024
  },
219
1025
  {
220
1026
  "inputs": [],
221
- "name": "register",
222
- "outputs": [
1027
+ "name": "lock",
1028
+ "outputs": [],
1029
+ "stateMutability": "nonpayable",
1030
+ "type": "function"
1031
+ },
1032
+ {
1033
+ "inputs": [
223
1034
  {
224
- "internalType": "NftId",
225
- "name": "componentId",
226
- "type": "uint96"
1035
+ "internalType": "address",
1036
+ "name": "to",
1037
+ "type": "address"
1038
+ },
1039
+ {
1040
+ "internalType": "uint256",
1041
+ "name": "tokenId",
1042
+ "type": "uint256"
1043
+ }
1044
+ ],
1045
+ "name": "nftMint",
1046
+ "outputs": [],
1047
+ "stateMutability": "nonpayable",
1048
+ "type": "function"
1049
+ },
1050
+ {
1051
+ "inputs": [
1052
+ {
1053
+ "internalType": "address",
1054
+ "name": "from",
1055
+ "type": "address"
1056
+ },
1057
+ {
1058
+ "internalType": "address",
1059
+ "name": "to",
1060
+ "type": "address"
1061
+ },
1062
+ {
1063
+ "internalType": "uint256",
1064
+ "name": "tokenId",
1065
+ "type": "uint256"
1066
+ }
1067
+ ],
1068
+ "name": "nftTransferFrom",
1069
+ "outputs": [],
1070
+ "stateMutability": "nonpayable",
1071
+ "type": "function"
1072
+ },
1073
+ {
1074
+ "inputs": [
1075
+ {
1076
+ "internalType": "bytes4",
1077
+ "name": "interfaceId",
1078
+ "type": "bytes4"
1079
+ }
1080
+ ],
1081
+ "name": "registerInterface",
1082
+ "outputs": [],
1083
+ "stateMutability": "nonpayable",
1084
+ "type": "function"
1085
+ },
1086
+ {
1087
+ "inputs": [
1088
+ {
1089
+ "internalType": "address",
1090
+ "name": "newAuthority",
1091
+ "type": "address"
227
1092
  }
228
1093
  ],
1094
+ "name": "setAuthority",
1095
+ "outputs": [],
229
1096
  "stateMutability": "nonpayable",
230
1097
  "type": "function"
231
1098
  },
@@ -245,7 +1112,7 @@
245
1112
  }
246
1113
  ],
247
1114
  "internalType": "struct Fee",
248
- "name": "policyFee",
1115
+ "name": "productFee",
249
1116
  "type": "tuple"
250
1117
  },
251
1118
  {
@@ -271,6 +1138,32 @@
271
1138
  "stateMutability": "nonpayable",
272
1139
  "type": "function"
273
1140
  },
1141
+ {
1142
+ "inputs": [
1143
+ {
1144
+ "internalType": "NftId",
1145
+ "name": "productNftId",
1146
+ "type": "uint96"
1147
+ }
1148
+ ],
1149
+ "name": "setProductNftId",
1150
+ "outputs": [],
1151
+ "stateMutability": "nonpayable",
1152
+ "type": "function"
1153
+ },
1154
+ {
1155
+ "inputs": [
1156
+ {
1157
+ "internalType": "address",
1158
+ "name": "newWallet",
1159
+ "type": "address"
1160
+ }
1161
+ ],
1162
+ "name": "setWallet",
1163
+ "outputs": [],
1164
+ "stateMutability": "nonpayable",
1165
+ "type": "function"
1166
+ },
274
1167
  {
275
1168
  "inputs": [
276
1169
  {
@@ -298,8 +1191,8 @@
298
1191
  "type": "function"
299
1192
  }
300
1193
  ],
301
- "bytecode": "0x60e06040523480156200001157600080fd5b50604051620015543803806200155483398101604081905262000034916200057c565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1916600117905583838382826001600160a01b038216620000d15760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa15801562000121573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001479190620005e0565b620001955760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000c8565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002139190620005e0565b6200026d5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000c8565b3360c052631dfba64760e11b60009081526020527f95e5a2564f7af40498dc043c6da135e06324c5edb1f60c2bf4dcdf2da207fa45805460ff1916600117905550506080516040516305247a1760e51b81526001600160601b03841660048201526000916001600160a01b03169063a48f42e090602401600060405180830381865afa15801562000302573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200032c91908101906200070c565b6060810151600580546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b8152630cc0a10960e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000394573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ba9190620005e0565b620003e25760405162461bcd60e51b81526020600482015260006024820152604401620000c8565b600560009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000436573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045c9190620007e6565b600180546001600160a01b039283166001600160a01b03199182161790915560038054821630179055600480549483169490911693909317835560055460408051634288121d60e01b81529051919092169550634288121d9450818401936020935090918290030181865afa158015620004da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005009190620007e6565b600680546001600160a01b039283166001600160a01b031991821617909155600780549390921692169190911790555062000806915050565b6001600160a01b03811681146200054f57600080fd5b50565b80516200055f8162000539565b919050565b80516001600160601b03811681146200055f57600080fd5b600080600080608085870312156200059357600080fd5b8451620005a08162000539565b9350620005b06020860162000564565b92506040850151620005c28162000539565b6060860151909250620005d58162000539565b939692955090935050565b600060208284031215620005f357600080fd5b815180151581146200060457600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b03811182821017156200064657620006466200060b565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200067757620006776200060b565b604052919050565b600082601f8301126200069157600080fd5b81516001600160401b03811115620006ad57620006ad6200060b565b6020620006c3601f8301601f191682016200064c565b8281528582848701011115620006d857600080fd5b60005b83811015620006f8578581018301518282018401528201620006db565b506000928101909101919091529392505050565b6000602082840312156200071f57600080fd5b81516001600160401b03808211156200073757600080fd5b9083019060c082860312156200074c57600080fd5b6200075662000621565b620007618362000564565b8152620007716020840162000564565b6020820152604083015160ff811681146200078b57600080fd5b60408201526200079e6060840162000552565b6060820152620007b16080840162000552565b608082015260a083015182811115620007c957600080fd5b620007d7878286016200067f565b60a08301525095945050505050565b600060208284031215620007f957600080fd5b8151620006048162000539565b60805160a05160c051610cf46200086060003960006105fc015260006101c1015260008181610201015281816102d80152818161036e015281816104c4015281816105240152818161057d015261063f0152610cf46000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80635ab1bd53116100a2578063b6b412ba11610071578063b6b412ba1461023f578063bc74aab014610252578063daafed4014610267578063de7b5d141461026f578063f83d08ba1461028057600080fd5b80635ab1bd53146101ff578063644c45e014610225578063893d20e81461022d578063a69df4b51461023557600080fd5b80631bdd6b76116100de5780631bdd6b76146101a657806321df0da7146101ae57806331b62a3b146101bf5780633bc5de30146101e557600080fd5b806301ffc9a714610110578063132996041461015257806315dae03e146101775780631aa3a00814610186575b600080fd5b61013d61011e3660046109ac565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610149565b60405160648152602001610149565b61018e61028d565b6040516001600160601b039091168152602001610149565b61018e61049f565b6004546001600160a01b031661015f565b7f000000000000000000000000000000000000000000000000000000000000000061018e565b6040805160208101825260008152905161014991906109dd565b7f000000000000000000000000000000000000000000000000000000000000000061015f565b61018e61050c565b61015f61055b565b61023d6106b8565b005b61023d61024d366004610a92565b610750565b61025a6107f0565b6040516101499190610ac7565b61025a61088f565b6005546001600160a01b031661015f565b61023d61092e565b905090565b600061029761055b565b6001600160a01b0316336001600160a01b0316146102d65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661034c5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a434f422d3030313a52454749535452595f5a45524f000000000060448201526064016102cd565b60055460405163c3c5a54760e01b81526001600160a01b0391821660048201527f00000000000000000000000000000000000000000000000000000000000000009091169063c3c5a54790602401602060405180830381865afa1580156103b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103db9190610ade565b6104315760405162461bcd60e51b815260206004820152602160248201527f4552524f523a434f423a494e5354414e43455f4e4f545f5245474953544552456044820152601160fa1b60648201526084016102cd565b600154604051632210724360e11b81523060048201526001600160a01b0390911690634420e486906024016020604051808303816000875af115801561047b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102889190610b1c565b600754604051636939560f60e11b81526001600160a01b0391821660048201526000917f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e906024015b602060405180830381865afa15801561047b573d6000803e3d6000fd5b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e906024016104ef565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e89190610b1c565b90506105f5816000610996565b15610621577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801561068e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b29190610b4f565b91505090565b6106c061055b565b6001600160a01b0316336001600160a01b0316146106f05760405162461bcd60e51b81526004016102cd90610b6c565b600154604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b15801561073657600080fd5b505af115801561074a573d6000803e3d6000fd5b50505050565b61075861055b565b6001600160a01b0316336001600160a01b0316146107885760405162461bcd60e51b81526004016102cd90610b6c565b600654604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba906107ba9085908590600401610ba3565b600060405180830381600087803b1580156107d457600080fd5b505af11580156107e8573d6000803e3d6000fd5b505050505050565b60408051808201909152600080825260208201526005546001600160a01b0316634fd077f561081d61050c565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161012060405180830381865afa158015610862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108869190610bf9565b60a00151905090565b60408051808201909152600080825260208201526005546001600160a01b0316634fd077f56108bc61050c565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161012060405180830381865afa158015610901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109259190610bf9565b60c00151905090565b61093661055b565b6001600160a01b0316336001600160a01b0316146109665760405162461bcd60e51b81526004016102cd90610b6c565b60015460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a79060240161071c565b6001600160601b03828116908216145b92915050565b6000602082840312156109be57600080fd5b81356001600160e01b0319811681146109d657600080fd5b9392505050565b600060208083528351808285015260005b81811015610a0a578581018301518582016040015282016109ee565b506000604082860101526040601f19601f8301168501019250505092915050565b6040805190810167ffffffffffffffff81118282101715610a5c57634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610a7457600080fd5b610a7c610a2b565b9050813581526020820135602082015292915050565b60008060808385031215610aa557600080fd5b610aaf8484610a62565b9150610abe8460408501610a62565b90509250929050565b8151815260208083015190820152604081016109a6565b600060208284031215610af057600080fd5b815180151581146109d657600080fd5b80516001600160601b0381168114610b1757600080fd5b919050565b600060208284031215610b2e57600080fd5b6109d682610b00565b6001600160a01b0381168114610b4c57600080fd5b50565b600060208284031215610b6157600080fd5b81516109d681610b37565b60208082526017908201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b8251815260208084015181830152825160408301528201516060820152608081016109d6565b600060408284031215610bdb57600080fd5b610be3610a2b565b9050815181526020820151602082015292915050565b60006101208284031215610c0c57600080fd5b60405160e0810181811067ffffffffffffffff82111715610c3d57634e487b7160e01b600052604160045260246000fd5b604052610c4983610b00565b8152610c5760208401610b00565b6020820152610c6860408401610b00565b60408201526060830151610c7b81610b37565b60608201526080830151610c8e81610b37565b6080820152610ca08460a08501610bc9565b60a0820152610cb28460e08501610bc9565b60c0820152939250505056fea2646970667358221220060ad179fcbe30d71f4742747c7ca7384d555d49ea874f64c6cf8f611032eb7664736f6c63430008140033",
302
- "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635ab1bd53116100a2578063b6b412ba11610071578063b6b412ba1461023f578063bc74aab014610252578063daafed4014610267578063de7b5d141461026f578063f83d08ba1461028057600080fd5b80635ab1bd53146101ff578063644c45e014610225578063893d20e81461022d578063a69df4b51461023557600080fd5b80631bdd6b76116100de5780631bdd6b76146101a657806321df0da7146101ae57806331b62a3b146101bf5780633bc5de30146101e557600080fd5b806301ffc9a714610110578063132996041461015257806315dae03e146101775780631aa3a00814610186575b600080fd5b61013d61011e3660046109ac565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610149565b60405160648152602001610149565b61018e61028d565b6040516001600160601b039091168152602001610149565b61018e61049f565b6004546001600160a01b031661015f565b7f000000000000000000000000000000000000000000000000000000000000000061018e565b6040805160208101825260008152905161014991906109dd565b7f000000000000000000000000000000000000000000000000000000000000000061015f565b61018e61050c565b61015f61055b565b61023d6106b8565b005b61023d61024d366004610a92565b610750565b61025a6107f0565b6040516101499190610ac7565b61025a61088f565b6005546001600160a01b031661015f565b61023d61092e565b905090565b600061029761055b565b6001600160a01b0316336001600160a01b0316146102d65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661034c5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a434f422d3030313a52454749535452595f5a45524f000000000060448201526064016102cd565b60055460405163c3c5a54760e01b81526001600160a01b0391821660048201527f00000000000000000000000000000000000000000000000000000000000000009091169063c3c5a54790602401602060405180830381865afa1580156103b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103db9190610ade565b6104315760405162461bcd60e51b815260206004820152602160248201527f4552524f523a434f423a494e5354414e43455f4e4f545f5245474953544552456044820152601160fa1b60648201526084016102cd565b600154604051632210724360e11b81523060048201526001600160a01b0390911690634420e486906024016020604051808303816000875af115801561047b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102889190610b1c565b600754604051636939560f60e11b81526001600160a01b0391821660048201526000917f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e906024015b602060405180830381865afa15801561047b573d6000803e3d6000fd5b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e906024016104ef565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e89190610b1c565b90506105f5816000610996565b15610621577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801561068e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b29190610b4f565b91505090565b6106c061055b565b6001600160a01b0316336001600160a01b0316146106f05760405162461bcd60e51b81526004016102cd90610b6c565b600154604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b15801561073657600080fd5b505af115801561074a573d6000803e3d6000fd5b50505050565b61075861055b565b6001600160a01b0316336001600160a01b0316146107885760405162461bcd60e51b81526004016102cd90610b6c565b600654604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba906107ba9085908590600401610ba3565b600060405180830381600087803b1580156107d457600080fd5b505af11580156107e8573d6000803e3d6000fd5b505050505050565b60408051808201909152600080825260208201526005546001600160a01b0316634fd077f561081d61050c565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161012060405180830381865afa158015610862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108869190610bf9565b60a00151905090565b60408051808201909152600080825260208201526005546001600160a01b0316634fd077f56108bc61050c565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161012060405180830381865afa158015610901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109259190610bf9565b60c00151905090565b61093661055b565b6001600160a01b0316336001600160a01b0316146109665760405162461bcd60e51b81526004016102cd90610b6c565b60015460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a79060240161071c565b6001600160601b03828116908216145b92915050565b6000602082840312156109be57600080fd5b81356001600160e01b0319811681146109d657600080fd5b9392505050565b600060208083528351808285015260005b81811015610a0a578581018301518582016040015282016109ee565b506000604082860101526040601f19601f8301168501019250505092915050565b6040805190810167ffffffffffffffff81118282101715610a5c57634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610a7457600080fd5b610a7c610a2b565b9050813581526020820135602082015292915050565b60008060808385031215610aa557600080fd5b610aaf8484610a62565b9150610abe8460408501610a62565b90509250929050565b8151815260208083015190820152604081016109a6565b600060208284031215610af057600080fd5b815180151581146109d657600080fd5b80516001600160601b0381168114610b1757600080fd5b919050565b600060208284031215610b2e57600080fd5b6109d682610b00565b6001600160a01b0381168114610b4c57600080fd5b50565b600060208284031215610b6157600080fd5b81516109d681610b37565b60208082526017908201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b8251815260208084015181830152825160408301528201516060820152608081016109d6565b600060408284031215610bdb57600080fd5b610be3610a2b565b9050815181526020820151602082015292915050565b60006101208284031215610c0c57600080fd5b60405160e0810181811067ffffffffffffffff82111715610c3d57634e487b7160e01b600052604160045260246000fd5b604052610c4983610b00565b8152610c5760208401610b00565b6020820152610c6860408401610b00565b60408201526060830151610c7b81610b37565b60608201526080830151610c8e81610b37565b6080820152610ca08460a08501610bc9565b60a0820152610cb28460e08501610bc9565b60c0820152939250505056fea2646970667358221220060ad179fcbe30d71f4742747c7ca7384d555d49ea874f64c6cf8f611032eb7664736f6c63430008140033",
1194
+ "bytecode": "0x",
1195
+ "deployedBytecode": "0x",
303
1196
  "linkReferences": {},
304
1197
  "deployedLinkReferences": {}
305
1198
  }