@etherisc/gif-next 0.0.2-96853ac-143 → 0.0.2-96b5b72-170

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (496) hide show
  1. package/README.md +337 -19
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1387 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1556 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +780 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +1011 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +840 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +312 -1138
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +616 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +443 -1231
  20. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1348 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1574 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +979 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +656 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2847 -0
  32. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +190 -0
  34. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +478 -0
  36. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  37. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  38. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +581 -0
  40. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  41. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
  42. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  43. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
  44. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
  46. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  48. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
  50. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
  52. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  54. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  55. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  56. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  57. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  58. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
  60. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  61. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1288 -0
  62. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  63. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +696 -0
  64. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  65. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +735 -0
  66. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  67. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1106 -0
  68. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  69. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1077 -0
  70. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  71. package/artifacts/contracts/pool/Pool.sol/Pool.json +1418 -0
  72. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  73. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1630 -0
  74. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  75. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +712 -0
  76. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  77. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +918 -0
  78. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  79. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +648 -0
  80. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  81. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1386 -0
  82. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +748 -0
  84. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  85. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +493 -0
  86. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +753 -0
  88. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  89. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +651 -0
  90. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  91. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +510 -0
  92. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  93. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +872 -0
  94. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IProductService.sol/IProductService.json +442 -0
  96. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  97. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1281 -0
  98. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
  100. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  101. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1004 -0
  102. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +688 -0
  104. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  105. package/artifacts/contracts/product/Product.sol/Product.json +1209 -0
  106. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  107. package/artifacts/contracts/product/ProductService.sol/ProductService.json +864 -0
  108. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +640 -0
  110. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  111. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
  112. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  113. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +680 -64
  114. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  115. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +919 -0
  116. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  117. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  118. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/Registry.sol/Registry.json +750 -87
  120. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  121. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  122. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  123. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1211 -0
  124. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  125. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +657 -0
  126. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  127. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +620 -0
  128. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  129. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +485 -0
  130. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  131. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  132. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  133. package/artifacts/contracts/shared/Component.sol/Component.json +723 -0
  134. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  135. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +631 -0
  136. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  137. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
  138. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  139. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/IComponent.sol/IComponent.json} +240 -229
  140. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  141. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +647 -0
  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 +4 -0
  147. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +175 -0
  148. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  149. package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
  150. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  151. package/artifacts/contracts/shared/IService.sol/IService.json +327 -0
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  153. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
  154. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  155. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +884 -0
  156. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +238 -0
  158. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  159. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
  160. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  161. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +569 -0
  162. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  163. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +339 -0
  164. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  165. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  166. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  167. package/artifacts/contracts/shared/Service.sol/Service.json +488 -0
  168. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  169. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  170. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  171. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  172. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  173. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
  174. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  175. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +507 -0
  176. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  177. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +545 -0
  178. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  179. package/artifacts/contracts/staking/Staking.sol/Staking.json +854 -0
  180. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  181. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +640 -0
  182. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  183. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +797 -0
  184. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +632 -0
  186. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  187. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  188. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  189. package/artifacts/contracts/type/Amount.sol/AmountLib.json +281 -0
  190. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  191. package/artifacts/contracts/{types → type}/Blocknumber.sol/BlocknumberLib.json +3 -3
  192. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  193. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  194. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  195. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  196. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  197. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  198. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  199. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  200. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  201. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +166 -0
  202. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  203. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  204. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  205. package/artifacts/contracts/{types → type}/ObjectType.sol/ObjectTypeLib.json +3 -3
  206. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  207. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  208. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  209. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  210. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  211. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  212. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  213. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +156 -0
  214. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  215. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +124 -0
  216. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  217. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  218. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  219. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +280 -0
  220. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  221. package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
  222. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  223. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
  224. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  225. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  226. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  227. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  228. package/contracts/distribution/Distribution.sol +285 -0
  229. package/contracts/distribution/DistributionService.sol +349 -0
  230. package/contracts/distribution/DistributionServiceManager.sol +51 -0
  231. package/contracts/distribution/IDistributionComponent.sol +71 -0
  232. package/contracts/distribution/IDistributionService.sol +87 -0
  233. package/contracts/instance/BundleManager.sol +126 -0
  234. package/contracts/instance/IInstance.sol +74 -22
  235. package/contracts/instance/IInstanceService.sol +73 -0
  236. package/contracts/instance/Instance.sol +210 -53
  237. package/contracts/instance/InstanceAccessManager.sol +543 -0
  238. package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
  239. package/contracts/instance/InstanceReader.sol +368 -0
  240. package/contracts/instance/InstanceService.sol +308 -0
  241. package/contracts/instance/InstanceServiceManager.sol +54 -0
  242. package/contracts/instance/InstanceStore.sol +211 -0
  243. package/contracts/instance/base/Cloneable.sol +51 -0
  244. package/contracts/instance/base/IKeyValueStore.sol +53 -0
  245. package/contracts/instance/base/ILifecycle.sol +30 -0
  246. package/contracts/instance/base/KeyValueStore.sol +169 -0
  247. package/contracts/instance/base/Lifecycle.sol +121 -0
  248. package/contracts/instance/base/ObjectManager.sol +82 -0
  249. package/contracts/instance/module/IAccess.sol +54 -0
  250. package/contracts/instance/module/IBundle.sol +23 -0
  251. package/contracts/instance/module/IComponents.sol +41 -0
  252. package/contracts/instance/module/IDistribution.sol +42 -0
  253. package/contracts/instance/module/IPolicy.sol +78 -0
  254. package/contracts/instance/module/IRisk.sol +11 -0
  255. package/contracts/instance/module/ISetup.sol +33 -0
  256. package/contracts/instance/module/ITreasury.sol +23 -0
  257. package/contracts/pool/BundleService.sol +382 -0
  258. package/contracts/pool/BundleServiceManager.sol +51 -0
  259. package/contracts/pool/IBundleService.sol +118 -0
  260. package/contracts/pool/IPoolComponent.sol +114 -0
  261. package/contracts/pool/IPoolService.sol +114 -0
  262. package/contracts/pool/Pool.sol +302 -0
  263. package/contracts/pool/PoolService.sol +403 -0
  264. package/contracts/pool/PoolServiceManager.sol +51 -0
  265. package/contracts/product/ApplicationService.sol +186 -0
  266. package/contracts/product/ApplicationServiceManager.sol +35 -0
  267. package/contracts/product/ClaimService.sol +442 -0
  268. package/contracts/product/ClaimServiceManager.sol +35 -0
  269. package/contracts/product/IApplicationService.sol +62 -0
  270. package/contracts/product/IClaimService.sol +93 -0
  271. package/contracts/product/IPolicyService.sol +80 -0
  272. package/contracts/product/IPricingService.sol +37 -0
  273. package/contracts/product/IProductComponent.sol +41 -0
  274. package/contracts/product/IProductService.sol +40 -0
  275. package/contracts/product/PolicyService.sol +376 -0
  276. package/contracts/product/PolicyServiceManager.sol +54 -0
  277. package/contracts/product/PricingService.sol +275 -0
  278. package/contracts/product/PricingServiceManager.sol +51 -0
  279. package/contracts/product/Product.sol +379 -0
  280. package/contracts/product/ProductService.sol +210 -0
  281. package/contracts/product/ProductServiceManager.sol +54 -0
  282. package/contracts/registry/ChainNft.sol +143 -62
  283. package/contracts/registry/IRegistry.sol +84 -41
  284. package/contracts/registry/IRegistryService.sol +69 -0
  285. package/contracts/registry/ITransferInterceptor.sol +7 -0
  286. package/contracts/registry/Registry.sol +451 -128
  287. package/contracts/registry/RegistryAccessManager.sol +207 -0
  288. package/contracts/registry/RegistryService.sol +304 -0
  289. package/contracts/registry/RegistryServiceManager.sol +60 -0
  290. package/contracts/registry/ReleaseManager.sol +360 -0
  291. package/contracts/registry/TokenRegistry.sol +116 -0
  292. package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
  293. package/contracts/shared/Component.sol +177 -0
  294. package/contracts/shared/ComponentService.sol +150 -0
  295. package/contracts/shared/ERC165.sol +27 -0
  296. package/contracts/shared/IComponent.sol +58 -0
  297. package/contracts/shared/IInstanceLinkedComponent.sol +52 -0
  298. package/contracts/shared/INftOwnable.sol +23 -0
  299. package/contracts/shared/IPolicyHolder.sol +40 -0
  300. package/contracts/shared/IRegisterable.sol +15 -0
  301. package/contracts/shared/IRegistryLinked.sol +11 -0
  302. package/contracts/shared/IService.sol +18 -0
  303. package/contracts/shared/IVersionable.sol +53 -0
  304. package/contracts/shared/InstanceLinkedComponent.sol +271 -0
  305. package/contracts/shared/NftOwnable.sol +118 -0
  306. package/contracts/shared/PolicyHolder.sol +94 -0
  307. package/contracts/shared/ProxyManager.sol +169 -0
  308. package/contracts/shared/Registerable.sol +75 -0
  309. package/contracts/shared/RegistryLinked.sol +43 -0
  310. package/contracts/shared/Service.sol +72 -0
  311. package/contracts/shared/TokenHandler.sol +58 -0
  312. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  313. package/contracts/shared/Versionable.sol +59 -0
  314. package/contracts/staking/IStaking.sol +30 -0
  315. package/contracts/staking/IStakingService.sol +105 -0
  316. package/contracts/staking/Staking.sol +65 -0
  317. package/contracts/staking/StakingManager.sol +46 -0
  318. package/contracts/staking/StakingService.sol +204 -0
  319. package/contracts/staking/StakingServiceManager.sol +41 -0
  320. package/contracts/type/AddressSet.sol +58 -0
  321. package/contracts/type/Amount.sol +109 -0
  322. package/contracts/{types → type}/Blocknumber.sol +1 -0
  323. package/contracts/type/ClaimId.sol +75 -0
  324. package/contracts/type/DistributorType.sol +55 -0
  325. package/contracts/type/Fee.sol +65 -0
  326. package/contracts/type/Key32.sol +50 -0
  327. package/contracts/{types → type}/NftId.sol +30 -1
  328. package/contracts/type/NftIdSet.sol +62 -0
  329. package/contracts/{types → type}/ObjectType.sol +74 -15
  330. package/contracts/type/PayoutId.sol +82 -0
  331. package/contracts/type/Referral.sol +89 -0
  332. package/contracts/type/RiskId.sol +43 -0
  333. package/contracts/type/RoleId.sol +132 -0
  334. package/contracts/type/Seconds.sol +54 -0
  335. package/contracts/{types → type}/StateId.sol +23 -4
  336. package/contracts/{types → type}/Timestamp.sol +36 -6
  337. package/contracts/type/UFixed.sol +326 -0
  338. package/contracts/type/Version.sol +108 -0
  339. package/package.json +12 -5
  340. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  341. package/artifacts/contracts/components/Component.sol/Component.json +0 -205
  342. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  343. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  344. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  345. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
  346. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  347. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  348. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  349. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
  350. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  351. package/artifacts/contracts/components/Product.sol/Product.json +0 -346
  352. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  353. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  354. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  355. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  356. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  357. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  358. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  359. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  360. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  361. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  362. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  363. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  364. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  365. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  366. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  367. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  368. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  369. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  370. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  371. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  372. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  373. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  374. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  375. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  376. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  377. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  378. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  379. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  380. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  381. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  382. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  383. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  384. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  385. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  386. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  387. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  388. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  389. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  390. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  391. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  392. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  393. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  394. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  395. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
  396. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  397. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  398. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  399. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  400. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  401. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  402. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  403. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  404. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  405. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  406. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  407. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  408. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  409. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  410. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  411. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  412. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  413. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  414. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
  415. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  416. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
  417. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  418. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  419. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
  420. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  421. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
  422. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  423. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  424. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  425. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
  426. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  427. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  428. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  429. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  430. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  431. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  432. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  433. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  434. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  435. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  436. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  437. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  438. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  439. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  440. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  441. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  442. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  443. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  444. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  445. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  446. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  447. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  448. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  449. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  450. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  451. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
  452. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  453. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  454. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  455. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
  456. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  457. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  458. package/contracts/components/Component.sol +0 -77
  459. package/contracts/components/IPool.sol +0 -15
  460. package/contracts/components/IProduct.sol +0 -16
  461. package/contracts/components/Pool.sol +0 -52
  462. package/contracts/components/Product.sol +0 -89
  463. package/contracts/experiment/errors/Require.sol +0 -38
  464. package/contracts/experiment/errors/Revert.sol +0 -44
  465. package/contracts/experiment/inheritance/A.sol +0 -53
  466. package/contracts/experiment/inheritance/B.sol +0 -28
  467. package/contracts/experiment/inheritance/C.sol +0 -34
  468. package/contracts/experiment/inheritance/IA.sol +0 -13
  469. package/contracts/experiment/inheritance/IB.sol +0 -10
  470. package/contracts/experiment/inheritance/IC.sol +0 -12
  471. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  472. package/contracts/experiment/statemachine/ISM.sol +0 -25
  473. package/contracts/experiment/statemachine/README.md +0 -112
  474. package/contracts/experiment/statemachine/SM.sol +0 -57
  475. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  476. package/contracts/experiment/types/TypeA.sol +0 -47
  477. package/contracts/experiment/types/TypeB.sol +0 -29
  478. package/contracts/instance/access/Access.sol +0 -165
  479. package/contracts/instance/access/IAccess.sol +0 -63
  480. package/contracts/instance/component/ComponentModule.sol +0 -274
  481. package/contracts/instance/component/IComponent.sol +0 -74
  482. package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
  483. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  484. package/contracts/instance/policy/IPolicy.sol +0 -50
  485. package/contracts/instance/policy/PolicyModule.sol +0 -114
  486. package/contracts/instance/pool/IPoolModule.sol +0 -23
  487. package/contracts/instance/pool/PoolModule.sol +0 -81
  488. package/contracts/instance/product/IProductService.sol +0 -36
  489. package/contracts/instance/product/ProductService.sol +0 -136
  490. package/contracts/instance/treasury/ITreasury.sol +0 -91
  491. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  492. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  493. package/contracts/registry/IChainNft.sol +0 -21
  494. package/contracts/types/ChainId.sol +0 -38
  495. package/contracts/types/Fee.sol +0 -32
  496. package/contracts/types/UFixed.sol +0 -210
@@ -0,0 +1,1387 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "Distribution",
4
+ "sourceName": "contracts/distribution/Distribution.sol",
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": "ErrorComponentTokenAddressZero",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [],
116
+ "name": "ErrorComponentWalletAddressZero",
117
+ "type": "error"
118
+ },
119
+ {
120
+ "inputs": [
121
+ {
122
+ "internalType": "address",
123
+ "name": "oldWallet",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "internalType": "address",
128
+ "name": "newWallet",
129
+ "type": "address"
130
+ },
131
+ {
132
+ "internalType": "uint256",
133
+ "name": "allowance",
134
+ "type": "uint256"
135
+ },
136
+ {
137
+ "internalType": "uint256",
138
+ "name": "balance",
139
+ "type": "uint256"
140
+ }
141
+ ],
142
+ "name": "ErrorComponentWalletAllowanceTooSmall",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [],
147
+ "name": "ErrorComponentWalletNotComponent",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "address",
154
+ "name": "distributor",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "NftId",
159
+ "name": "distributorNftId",
160
+ "type": "uint96"
161
+ }
162
+ ],
163
+ "name": "ErrorDistributionAlreadyDistributor",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "NftId",
170
+ "name": "nftId",
171
+ "type": "uint96"
172
+ }
173
+ ],
174
+ "name": "ErrorNftOwnableAlreadyLinked",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [
179
+ {
180
+ "internalType": "address",
181
+ "name": "contractAddress",
182
+ "type": "address"
183
+ }
184
+ ],
185
+ "name": "ErrorNftOwnableContractNotRegistered",
186
+ "type": "error"
187
+ },
188
+ {
189
+ "inputs": [],
190
+ "name": "ErrorNftOwnableInitialOwnerZero",
191
+ "type": "error"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "address",
197
+ "name": "account",
198
+ "type": "address"
199
+ }
200
+ ],
201
+ "name": "ErrorNftOwnableNotOwner",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "inputs": [
206
+ {
207
+ "internalType": "address",
208
+ "name": "registryAddress",
209
+ "type": "address"
210
+ }
211
+ ],
212
+ "name": "ErrorNotRegistry",
213
+ "type": "error"
214
+ },
215
+ {
216
+ "inputs": [],
217
+ "name": "FailedInnerCall",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "inputs": [],
222
+ "name": "InvalidInitialization",
223
+ "type": "error"
224
+ },
225
+ {
226
+ "inputs": [],
227
+ "name": "NotInitializing",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "address",
234
+ "name": "token",
235
+ "type": "address"
236
+ }
237
+ ],
238
+ "name": "SafeERC20FailedOperation",
239
+ "type": "error"
240
+ },
241
+ {
242
+ "anonymous": false,
243
+ "inputs": [
244
+ {
245
+ "indexed": false,
246
+ "internalType": "address",
247
+ "name": "authority",
248
+ "type": "address"
249
+ }
250
+ ],
251
+ "name": "AuthorityUpdated",
252
+ "type": "event"
253
+ },
254
+ {
255
+ "anonymous": false,
256
+ "inputs": [
257
+ {
258
+ "indexed": false,
259
+ "internalType": "uint64",
260
+ "name": "version",
261
+ "type": "uint64"
262
+ }
263
+ ],
264
+ "name": "Initialized",
265
+ "type": "event"
266
+ },
267
+ {
268
+ "anonymous": false,
269
+ "inputs": [
270
+ {
271
+ "indexed": false,
272
+ "internalType": "address",
273
+ "name": "token",
274
+ "type": "address"
275
+ },
276
+ {
277
+ "indexed": false,
278
+ "internalType": "uint256",
279
+ "name": "limit",
280
+ "type": "uint256"
281
+ }
282
+ ],
283
+ "name": "LogComponentTokenHandlerApproved",
284
+ "type": "event"
285
+ },
286
+ {
287
+ "anonymous": false,
288
+ "inputs": [
289
+ {
290
+ "indexed": false,
291
+ "internalType": "address",
292
+ "name": "oldWallet",
293
+ "type": "address"
294
+ },
295
+ {
296
+ "indexed": false,
297
+ "internalType": "address",
298
+ "name": "newWallet",
299
+ "type": "address"
300
+ }
301
+ ],
302
+ "name": "LogComponentWalletAddressChanged",
303
+ "type": "event"
304
+ },
305
+ {
306
+ "anonymous": false,
307
+ "inputs": [
308
+ {
309
+ "indexed": false,
310
+ "internalType": "address",
311
+ "name": "from",
312
+ "type": "address"
313
+ },
314
+ {
315
+ "indexed": false,
316
+ "internalType": "address",
317
+ "name": "to",
318
+ "type": "address"
319
+ },
320
+ {
321
+ "indexed": false,
322
+ "internalType": "uint256",
323
+ "name": "amount",
324
+ "type": "uint256"
325
+ }
326
+ ],
327
+ "name": "LogComponentWalletTokensTransferred",
328
+ "type": "event"
329
+ },
330
+ {
331
+ "anonymous": false,
332
+ "inputs": [
333
+ {
334
+ "indexed": false,
335
+ "internalType": "address",
336
+ "name": "to",
337
+ "type": "address"
338
+ },
339
+ {
340
+ "indexed": false,
341
+ "internalType": "address",
342
+ "name": "caller",
343
+ "type": "address"
344
+ }
345
+ ],
346
+ "name": "LogDistributorUpdated",
347
+ "type": "event"
348
+ },
349
+ {
350
+ "inputs": [],
351
+ "name": "COMPONENT_LOCATION_V1",
352
+ "outputs": [
353
+ {
354
+ "internalType": "bytes32",
355
+ "name": "",
356
+ "type": "bytes32"
357
+ }
358
+ ],
359
+ "stateMutability": "view",
360
+ "type": "function"
361
+ },
362
+ {
363
+ "inputs": [],
364
+ "name": "DISTRIBUTION_STORAGE_LOCATION_V1",
365
+ "outputs": [
366
+ {
367
+ "internalType": "bytes32",
368
+ "name": "",
369
+ "type": "bytes32"
370
+ }
371
+ ],
372
+ "stateMutability": "view",
373
+ "type": "function"
374
+ },
375
+ {
376
+ "inputs": [],
377
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
378
+ "outputs": [
379
+ {
380
+ "internalType": "bytes32",
381
+ "name": "",
382
+ "type": "bytes32"
383
+ }
384
+ ],
385
+ "stateMutability": "view",
386
+ "type": "function"
387
+ },
388
+ {
389
+ "inputs": [],
390
+ "name": "REGISTERABLE_LOCATION_V1",
391
+ "outputs": [
392
+ {
393
+ "internalType": "bytes32",
394
+ "name": "",
395
+ "type": "bytes32"
396
+ }
397
+ ],
398
+ "stateMutability": "view",
399
+ "type": "function"
400
+ },
401
+ {
402
+ "inputs": [
403
+ {
404
+ "internalType": "uint256",
405
+ "name": "spendingLimitAmount",
406
+ "type": "uint256"
407
+ }
408
+ ],
409
+ "name": "approveTokenHandler",
410
+ "outputs": [],
411
+ "stateMutability": "nonpayable",
412
+ "type": "function"
413
+ },
414
+ {
415
+ "inputs": [],
416
+ "name": "authority",
417
+ "outputs": [
418
+ {
419
+ "internalType": "address",
420
+ "name": "",
421
+ "type": "address"
422
+ }
423
+ ],
424
+ "stateMutability": "view",
425
+ "type": "function"
426
+ },
427
+ {
428
+ "inputs": [
429
+ {
430
+ "internalType": "ReferralId",
431
+ "name": "referralId",
432
+ "type": "bytes8"
433
+ },
434
+ {
435
+ "internalType": "uint256",
436
+ "name": "netPremiumAmount",
437
+ "type": "uint256"
438
+ }
439
+ ],
440
+ "name": "calculateRenewalFeeAmount",
441
+ "outputs": [
442
+ {
443
+ "internalType": "uint256",
444
+ "name": "feeAmount",
445
+ "type": "uint256"
446
+ }
447
+ ],
448
+ "stateMutability": "view",
449
+ "type": "function"
450
+ },
451
+ {
452
+ "inputs": [
453
+ {
454
+ "internalType": "address",
455
+ "name": "distributor",
456
+ "type": "address"
457
+ },
458
+ {
459
+ "internalType": "DistributorType",
460
+ "name": "distributorType",
461
+ "type": "bytes8"
462
+ },
463
+ {
464
+ "internalType": "bytes",
465
+ "name": "data",
466
+ "type": "bytes"
467
+ }
468
+ ],
469
+ "name": "createDistributor",
470
+ "outputs": [
471
+ {
472
+ "internalType": "NftId",
473
+ "name": "distributorNftId",
474
+ "type": "uint96"
475
+ }
476
+ ],
477
+ "stateMutability": "nonpayable",
478
+ "type": "function"
479
+ },
480
+ {
481
+ "inputs": [
482
+ {
483
+ "internalType": "string",
484
+ "name": "name",
485
+ "type": "string"
486
+ },
487
+ {
488
+ "internalType": "UFixed",
489
+ "name": "minDiscountPercentage",
490
+ "type": "uint256"
491
+ },
492
+ {
493
+ "internalType": "UFixed",
494
+ "name": "maxDiscountPercentage",
495
+ "type": "uint256"
496
+ },
497
+ {
498
+ "internalType": "UFixed",
499
+ "name": "commissionPercentage",
500
+ "type": "uint256"
501
+ },
502
+ {
503
+ "internalType": "uint32",
504
+ "name": "maxReferralCount",
505
+ "type": "uint32"
506
+ },
507
+ {
508
+ "internalType": "uint32",
509
+ "name": "maxReferralLifetime",
510
+ "type": "uint32"
511
+ },
512
+ {
513
+ "internalType": "bool",
514
+ "name": "allowSelfReferrals",
515
+ "type": "bool"
516
+ },
517
+ {
518
+ "internalType": "bool",
519
+ "name": "allowRenewals",
520
+ "type": "bool"
521
+ },
522
+ {
523
+ "internalType": "bytes",
524
+ "name": "data",
525
+ "type": "bytes"
526
+ }
527
+ ],
528
+ "name": "createDistributorType",
529
+ "outputs": [
530
+ {
531
+ "internalType": "DistributorType",
532
+ "name": "distributorType",
533
+ "type": "bytes8"
534
+ }
535
+ ],
536
+ "stateMutability": "nonpayable",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [],
541
+ "name": "getComponentInfo",
542
+ "outputs": [
543
+ {
544
+ "components": [
545
+ {
546
+ "internalType": "string",
547
+ "name": "name",
548
+ "type": "string"
549
+ },
550
+ {
551
+ "internalType": "contract IERC20Metadata",
552
+ "name": "token",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "internalType": "contract TokenHandler",
557
+ "name": "tokenHandler",
558
+ "type": "address"
559
+ },
560
+ {
561
+ "internalType": "address",
562
+ "name": "wallet",
563
+ "type": "address"
564
+ },
565
+ {
566
+ "internalType": "Amount",
567
+ "name": "balanceAmount",
568
+ "type": "uint96"
569
+ },
570
+ {
571
+ "internalType": "Amount",
572
+ "name": "feeAmount",
573
+ "type": "uint96"
574
+ },
575
+ {
576
+ "internalType": "bytes",
577
+ "name": "data",
578
+ "type": "bytes"
579
+ }
580
+ ],
581
+ "internalType": "struct IComponents.ComponentInfo",
582
+ "name": "info",
583
+ "type": "tuple"
584
+ }
585
+ ],
586
+ "stateMutability": "view",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [
591
+ {
592
+ "internalType": "string",
593
+ "name": "referralCode",
594
+ "type": "string"
595
+ }
596
+ ],
597
+ "name": "getDiscountPercentage",
598
+ "outputs": [
599
+ {
600
+ "internalType": "UFixed",
601
+ "name": "discountPercentage",
602
+ "type": "uint256"
603
+ },
604
+ {
605
+ "internalType": "ReferralStatus",
606
+ "name": "status",
607
+ "type": "uint8"
608
+ }
609
+ ],
610
+ "stateMutability": "view",
611
+ "type": "function"
612
+ },
613
+ {
614
+ "inputs": [],
615
+ "name": "getDistributionFee",
616
+ "outputs": [
617
+ {
618
+ "components": [
619
+ {
620
+ "internalType": "UFixed",
621
+ "name": "fractionalFee",
622
+ "type": "uint256"
623
+ },
624
+ {
625
+ "internalType": "uint256",
626
+ "name": "fixedFee",
627
+ "type": "uint256"
628
+ }
629
+ ],
630
+ "internalType": "struct Fee",
631
+ "name": "distributionFee",
632
+ "type": "tuple"
633
+ }
634
+ ],
635
+ "stateMutability": "view",
636
+ "type": "function"
637
+ },
638
+ {
639
+ "inputs": [
640
+ {
641
+ "internalType": "address",
642
+ "name": "distributor",
643
+ "type": "address"
644
+ }
645
+ ],
646
+ "name": "getDistributorNftId",
647
+ "outputs": [
648
+ {
649
+ "internalType": "NftId",
650
+ "name": "distributorNftId",
651
+ "type": "uint96"
652
+ }
653
+ ],
654
+ "stateMutability": "view",
655
+ "type": "function"
656
+ },
657
+ {
658
+ "inputs": [],
659
+ "name": "getInitialInfo",
660
+ "outputs": [
661
+ {
662
+ "components": [
663
+ {
664
+ "internalType": "NftId",
665
+ "name": "nftId",
666
+ "type": "uint96"
667
+ },
668
+ {
669
+ "internalType": "NftId",
670
+ "name": "parentNftId",
671
+ "type": "uint96"
672
+ },
673
+ {
674
+ "internalType": "ObjectType",
675
+ "name": "objectType",
676
+ "type": "uint8"
677
+ },
678
+ {
679
+ "internalType": "bool",
680
+ "name": "isInterceptor",
681
+ "type": "bool"
682
+ },
683
+ {
684
+ "internalType": "address",
685
+ "name": "objectAddress",
686
+ "type": "address"
687
+ },
688
+ {
689
+ "internalType": "address",
690
+ "name": "initialOwner",
691
+ "type": "address"
692
+ },
693
+ {
694
+ "internalType": "bytes",
695
+ "name": "data",
696
+ "type": "bytes"
697
+ }
698
+ ],
699
+ "internalType": "struct IRegistry.ObjectInfo",
700
+ "name": "info",
701
+ "type": "tuple"
702
+ }
703
+ ],
704
+ "stateMutability": "view",
705
+ "type": "function"
706
+ },
707
+ {
708
+ "inputs": [],
709
+ "name": "getInstance",
710
+ "outputs": [
711
+ {
712
+ "internalType": "contract IInstance",
713
+ "name": "instance",
714
+ "type": "address"
715
+ }
716
+ ],
717
+ "stateMutability": "view",
718
+ "type": "function"
719
+ },
720
+ {
721
+ "inputs": [],
722
+ "name": "getName",
723
+ "outputs": [
724
+ {
725
+ "internalType": "string",
726
+ "name": "name",
727
+ "type": "string"
728
+ }
729
+ ],
730
+ "stateMutability": "view",
731
+ "type": "function"
732
+ },
733
+ {
734
+ "inputs": [],
735
+ "name": "getNftId",
736
+ "outputs": [
737
+ {
738
+ "internalType": "NftId",
739
+ "name": "",
740
+ "type": "uint96"
741
+ }
742
+ ],
743
+ "stateMutability": "view",
744
+ "type": "function"
745
+ },
746
+ {
747
+ "inputs": [],
748
+ "name": "getOwner",
749
+ "outputs": [
750
+ {
751
+ "internalType": "address",
752
+ "name": "",
753
+ "type": "address"
754
+ }
755
+ ],
756
+ "stateMutability": "view",
757
+ "type": "function"
758
+ },
759
+ {
760
+ "inputs": [],
761
+ "name": "getProductNftId",
762
+ "outputs": [
763
+ {
764
+ "internalType": "NftId",
765
+ "name": "productNftId",
766
+ "type": "uint96"
767
+ }
768
+ ],
769
+ "stateMutability": "view",
770
+ "type": "function"
771
+ },
772
+ {
773
+ "inputs": [
774
+ {
775
+ "internalType": "string",
776
+ "name": "referralCode",
777
+ "type": "string"
778
+ }
779
+ ],
780
+ "name": "getReferralId",
781
+ "outputs": [
782
+ {
783
+ "internalType": "ReferralId",
784
+ "name": "referralId",
785
+ "type": "bytes8"
786
+ }
787
+ ],
788
+ "stateMutability": "view",
789
+ "type": "function"
790
+ },
791
+ {
792
+ "inputs": [],
793
+ "name": "getRegistry",
794
+ "outputs": [
795
+ {
796
+ "internalType": "contract IRegistry",
797
+ "name": "",
798
+ "type": "address"
799
+ }
800
+ ],
801
+ "stateMutability": "view",
802
+ "type": "function"
803
+ },
804
+ {
805
+ "inputs": [],
806
+ "name": "getSetupInfo",
807
+ "outputs": [
808
+ {
809
+ "components": [
810
+ {
811
+ "internalType": "NftId",
812
+ "name": "productNftId",
813
+ "type": "uint96"
814
+ },
815
+ {
816
+ "internalType": "contract TokenHandler",
817
+ "name": "tokenHandler",
818
+ "type": "address"
819
+ },
820
+ {
821
+ "components": [
822
+ {
823
+ "internalType": "UFixed",
824
+ "name": "fractionalFee",
825
+ "type": "uint256"
826
+ },
827
+ {
828
+ "internalType": "uint256",
829
+ "name": "fixedFee",
830
+ "type": "uint256"
831
+ }
832
+ ],
833
+ "internalType": "struct Fee",
834
+ "name": "minDistributionOwnerFee",
835
+ "type": "tuple"
836
+ },
837
+ {
838
+ "components": [
839
+ {
840
+ "internalType": "UFixed",
841
+ "name": "fractionalFee",
842
+ "type": "uint256"
843
+ },
844
+ {
845
+ "internalType": "uint256",
846
+ "name": "fixedFee",
847
+ "type": "uint256"
848
+ }
849
+ ],
850
+ "internalType": "struct Fee",
851
+ "name": "distributionFee",
852
+ "type": "tuple"
853
+ },
854
+ {
855
+ "internalType": "address",
856
+ "name": "wallet",
857
+ "type": "address"
858
+ },
859
+ {
860
+ "internalType": "uint256",
861
+ "name": "sumDistributionOwnerFees",
862
+ "type": "uint256"
863
+ }
864
+ ],
865
+ "internalType": "struct ISetup.DistributionSetupInfo",
866
+ "name": "setupInfo",
867
+ "type": "tuple"
868
+ }
869
+ ],
870
+ "stateMutability": "view",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [],
875
+ "name": "getToken",
876
+ "outputs": [
877
+ {
878
+ "internalType": "contract IERC20Metadata",
879
+ "name": "token",
880
+ "type": "address"
881
+ }
882
+ ],
883
+ "stateMutability": "view",
884
+ "type": "function"
885
+ },
886
+ {
887
+ "inputs": [],
888
+ "name": "getTokenHandler",
889
+ "outputs": [
890
+ {
891
+ "internalType": "contract TokenHandler",
892
+ "name": "tokenHandler",
893
+ "type": "address"
894
+ }
895
+ ],
896
+ "stateMutability": "view",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [],
901
+ "name": "getWallet",
902
+ "outputs": [
903
+ {
904
+ "internalType": "address",
905
+ "name": "walletAddress",
906
+ "type": "address"
907
+ }
908
+ ],
909
+ "stateMutability": "view",
910
+ "type": "function"
911
+ },
912
+ {
913
+ "inputs": [
914
+ {
915
+ "internalType": "address",
916
+ "name": "registry",
917
+ "type": "address"
918
+ },
919
+ {
920
+ "internalType": "NftId",
921
+ "name": "instanceNftId",
922
+ "type": "uint96"
923
+ },
924
+ {
925
+ "internalType": "string",
926
+ "name": "name",
927
+ "type": "string"
928
+ },
929
+ {
930
+ "internalType": "address",
931
+ "name": "token",
932
+ "type": "address"
933
+ },
934
+ {
935
+ "internalType": "ObjectType",
936
+ "name": "componentType",
937
+ "type": "uint8"
938
+ },
939
+ {
940
+ "internalType": "bool",
941
+ "name": "isInterceptor",
942
+ "type": "bool"
943
+ },
944
+ {
945
+ "internalType": "address",
946
+ "name": "initialOwner",
947
+ "type": "address"
948
+ },
949
+ {
950
+ "internalType": "bytes",
951
+ "name": "registryData",
952
+ "type": "bytes"
953
+ }
954
+ ],
955
+ "name": "initializeComponent",
956
+ "outputs": [],
957
+ "stateMutability": "nonpayable",
958
+ "type": "function"
959
+ },
960
+ {
961
+ "inputs": [
962
+ {
963
+ "internalType": "address",
964
+ "name": "registry",
965
+ "type": "address"
966
+ },
967
+ {
968
+ "internalType": "NftId",
969
+ "name": "instanceNftId",
970
+ "type": "uint96"
971
+ },
972
+ {
973
+ "internalType": "string",
974
+ "name": "name",
975
+ "type": "string"
976
+ },
977
+ {
978
+ "internalType": "address",
979
+ "name": "token",
980
+ "type": "address"
981
+ },
982
+ {
983
+ "components": [
984
+ {
985
+ "internalType": "UFixed",
986
+ "name": "fractionalFee",
987
+ "type": "uint256"
988
+ },
989
+ {
990
+ "internalType": "uint256",
991
+ "name": "fixedFee",
992
+ "type": "uint256"
993
+ }
994
+ ],
995
+ "internalType": "struct Fee",
996
+ "name": "minDistributionOwnerFee",
997
+ "type": "tuple"
998
+ },
999
+ {
1000
+ "components": [
1001
+ {
1002
+ "internalType": "UFixed",
1003
+ "name": "fractionalFee",
1004
+ "type": "uint256"
1005
+ },
1006
+ {
1007
+ "internalType": "uint256",
1008
+ "name": "fixedFee",
1009
+ "type": "uint256"
1010
+ }
1011
+ ],
1012
+ "internalType": "struct Fee",
1013
+ "name": "distributionFee",
1014
+ "type": "tuple"
1015
+ },
1016
+ {
1017
+ "internalType": "address",
1018
+ "name": "initialOwner",
1019
+ "type": "address"
1020
+ },
1021
+ {
1022
+ "internalType": "bytes",
1023
+ "name": "registryData",
1024
+ "type": "bytes"
1025
+ }
1026
+ ],
1027
+ "name": "initializeDistribution",
1028
+ "outputs": [],
1029
+ "stateMutability": "nonpayable",
1030
+ "type": "function"
1031
+ },
1032
+ {
1033
+ "inputs": [],
1034
+ "name": "initializeERC165",
1035
+ "outputs": [],
1036
+ "stateMutability": "nonpayable",
1037
+ "type": "function"
1038
+ },
1039
+ {
1040
+ "inputs": [
1041
+ {
1042
+ "internalType": "address",
1043
+ "name": "initialOwner",
1044
+ "type": "address"
1045
+ },
1046
+ {
1047
+ "internalType": "address",
1048
+ "name": "registryAddress",
1049
+ "type": "address"
1050
+ }
1051
+ ],
1052
+ "name": "initializeNftOwnable",
1053
+ "outputs": [],
1054
+ "stateMutability": "nonpayable",
1055
+ "type": "function"
1056
+ },
1057
+ {
1058
+ "inputs": [
1059
+ {
1060
+ "internalType": "address",
1061
+ "name": "registryAddress",
1062
+ "type": "address"
1063
+ },
1064
+ {
1065
+ "internalType": "NftId",
1066
+ "name": "parentNftId",
1067
+ "type": "uint96"
1068
+ },
1069
+ {
1070
+ "internalType": "ObjectType",
1071
+ "name": "objectType",
1072
+ "type": "uint8"
1073
+ },
1074
+ {
1075
+ "internalType": "bool",
1076
+ "name": "isInterceptor",
1077
+ "type": "bool"
1078
+ },
1079
+ {
1080
+ "internalType": "address",
1081
+ "name": "initialOwner",
1082
+ "type": "address"
1083
+ },
1084
+ {
1085
+ "internalType": "bytes",
1086
+ "name": "registryData",
1087
+ "type": "bytes"
1088
+ }
1089
+ ],
1090
+ "name": "initializeRegisterable",
1091
+ "outputs": [],
1092
+ "stateMutability": "nonpayable",
1093
+ "type": "function"
1094
+ },
1095
+ {
1096
+ "inputs": [
1097
+ {
1098
+ "internalType": "address",
1099
+ "name": "registryAddress",
1100
+ "type": "address"
1101
+ }
1102
+ ],
1103
+ "name": "initializeRegistryLinked",
1104
+ "outputs": [],
1105
+ "stateMutability": "nonpayable",
1106
+ "type": "function"
1107
+ },
1108
+ {
1109
+ "inputs": [],
1110
+ "name": "isConsumingScheduledOp",
1111
+ "outputs": [
1112
+ {
1113
+ "internalType": "bytes4",
1114
+ "name": "",
1115
+ "type": "bytes4"
1116
+ }
1117
+ ],
1118
+ "stateMutability": "view",
1119
+ "type": "function"
1120
+ },
1121
+ {
1122
+ "inputs": [
1123
+ {
1124
+ "internalType": "address",
1125
+ "name": "candidate",
1126
+ "type": "address"
1127
+ }
1128
+ ],
1129
+ "name": "isDistributor",
1130
+ "outputs": [
1131
+ {
1132
+ "internalType": "bool",
1133
+ "name": "",
1134
+ "type": "bool"
1135
+ }
1136
+ ],
1137
+ "stateMutability": "view",
1138
+ "type": "function"
1139
+ },
1140
+ {
1141
+ "inputs": [],
1142
+ "name": "isNftInterceptor",
1143
+ "outputs": [
1144
+ {
1145
+ "internalType": "bool",
1146
+ "name": "isInterceptor",
1147
+ "type": "bool"
1148
+ }
1149
+ ],
1150
+ "stateMutability": "view",
1151
+ "type": "function"
1152
+ },
1153
+ {
1154
+ "inputs": [],
1155
+ "name": "isVerifying",
1156
+ "outputs": [
1157
+ {
1158
+ "internalType": "bool",
1159
+ "name": "verifying",
1160
+ "type": "bool"
1161
+ }
1162
+ ],
1163
+ "stateMutability": "view",
1164
+ "type": "function"
1165
+ },
1166
+ {
1167
+ "inputs": [],
1168
+ "name": "linkToRegisteredNftId",
1169
+ "outputs": [],
1170
+ "stateMutability": "nonpayable",
1171
+ "type": "function"
1172
+ },
1173
+ {
1174
+ "inputs": [],
1175
+ "name": "lock",
1176
+ "outputs": [],
1177
+ "stateMutability": "nonpayable",
1178
+ "type": "function"
1179
+ },
1180
+ {
1181
+ "inputs": [
1182
+ {
1183
+ "internalType": "address",
1184
+ "name": "to",
1185
+ "type": "address"
1186
+ },
1187
+ {
1188
+ "internalType": "uint256",
1189
+ "name": "tokenId",
1190
+ "type": "uint256"
1191
+ }
1192
+ ],
1193
+ "name": "nftMint",
1194
+ "outputs": [],
1195
+ "stateMutability": "nonpayable",
1196
+ "type": "function"
1197
+ },
1198
+ {
1199
+ "inputs": [
1200
+ {
1201
+ "internalType": "address",
1202
+ "name": "from",
1203
+ "type": "address"
1204
+ },
1205
+ {
1206
+ "internalType": "address",
1207
+ "name": "to",
1208
+ "type": "address"
1209
+ },
1210
+ {
1211
+ "internalType": "uint256",
1212
+ "name": "tokenId",
1213
+ "type": "uint256"
1214
+ }
1215
+ ],
1216
+ "name": "nftTransferFrom",
1217
+ "outputs": [],
1218
+ "stateMutability": "nonpayable",
1219
+ "type": "function"
1220
+ },
1221
+ {
1222
+ "inputs": [
1223
+ {
1224
+ "internalType": "ReferralId",
1225
+ "name": "referralId",
1226
+ "type": "bytes8"
1227
+ },
1228
+ {
1229
+ "internalType": "uint256",
1230
+ "name": "feeAmount",
1231
+ "type": "uint256"
1232
+ }
1233
+ ],
1234
+ "name": "processRenewal",
1235
+ "outputs": [],
1236
+ "stateMutability": "nonpayable",
1237
+ "type": "function"
1238
+ },
1239
+ {
1240
+ "inputs": [
1241
+ {
1242
+ "internalType": "bytes4",
1243
+ "name": "interfaceId",
1244
+ "type": "bytes4"
1245
+ }
1246
+ ],
1247
+ "name": "registerInterface",
1248
+ "outputs": [],
1249
+ "stateMutability": "nonpayable",
1250
+ "type": "function"
1251
+ },
1252
+ {
1253
+ "inputs": [
1254
+ {
1255
+ "internalType": "address",
1256
+ "name": "newAuthority",
1257
+ "type": "address"
1258
+ }
1259
+ ],
1260
+ "name": "setAuthority",
1261
+ "outputs": [],
1262
+ "stateMutability": "nonpayable",
1263
+ "type": "function"
1264
+ },
1265
+ {
1266
+ "inputs": [
1267
+ {
1268
+ "components": [
1269
+ {
1270
+ "internalType": "UFixed",
1271
+ "name": "fractionalFee",
1272
+ "type": "uint256"
1273
+ },
1274
+ {
1275
+ "internalType": "uint256",
1276
+ "name": "fixedFee",
1277
+ "type": "uint256"
1278
+ }
1279
+ ],
1280
+ "internalType": "struct Fee",
1281
+ "name": "minDistributionOwnerFee",
1282
+ "type": "tuple"
1283
+ },
1284
+ {
1285
+ "components": [
1286
+ {
1287
+ "internalType": "UFixed",
1288
+ "name": "fractionalFee",
1289
+ "type": "uint256"
1290
+ },
1291
+ {
1292
+ "internalType": "uint256",
1293
+ "name": "fixedFee",
1294
+ "type": "uint256"
1295
+ }
1296
+ ],
1297
+ "internalType": "struct Fee",
1298
+ "name": "distributionFee",
1299
+ "type": "tuple"
1300
+ }
1301
+ ],
1302
+ "name": "setFees",
1303
+ "outputs": [],
1304
+ "stateMutability": "nonpayable",
1305
+ "type": "function"
1306
+ },
1307
+ {
1308
+ "inputs": [
1309
+ {
1310
+ "internalType": "NftId",
1311
+ "name": "productNftId",
1312
+ "type": "uint96"
1313
+ }
1314
+ ],
1315
+ "name": "setProductNftId",
1316
+ "outputs": [],
1317
+ "stateMutability": "nonpayable",
1318
+ "type": "function"
1319
+ },
1320
+ {
1321
+ "inputs": [
1322
+ {
1323
+ "internalType": "address",
1324
+ "name": "newWallet",
1325
+ "type": "address"
1326
+ }
1327
+ ],
1328
+ "name": "setWallet",
1329
+ "outputs": [],
1330
+ "stateMutability": "nonpayable",
1331
+ "type": "function"
1332
+ },
1333
+ {
1334
+ "inputs": [
1335
+ {
1336
+ "internalType": "bytes4",
1337
+ "name": "interfaceId",
1338
+ "type": "bytes4"
1339
+ }
1340
+ ],
1341
+ "name": "supportsInterface",
1342
+ "outputs": [
1343
+ {
1344
+ "internalType": "bool",
1345
+ "name": "",
1346
+ "type": "bool"
1347
+ }
1348
+ ],
1349
+ "stateMutability": "view",
1350
+ "type": "function"
1351
+ },
1352
+ {
1353
+ "inputs": [],
1354
+ "name": "unlock",
1355
+ "outputs": [],
1356
+ "stateMutability": "nonpayable",
1357
+ "type": "function"
1358
+ },
1359
+ {
1360
+ "inputs": [
1361
+ {
1362
+ "internalType": "NftId",
1363
+ "name": "distributorNftId",
1364
+ "type": "uint96"
1365
+ },
1366
+ {
1367
+ "internalType": "DistributorType",
1368
+ "name": "distributorType",
1369
+ "type": "bytes8"
1370
+ },
1371
+ {
1372
+ "internalType": "bytes",
1373
+ "name": "data",
1374
+ "type": "bytes"
1375
+ }
1376
+ ],
1377
+ "name": "updateDistributorType",
1378
+ "outputs": [],
1379
+ "stateMutability": "nonpayable",
1380
+ "type": "function"
1381
+ }
1382
+ ],
1383
+ "bytecode": "0x",
1384
+ "deployedBytecode": "0x",
1385
+ "linkReferences": {},
1386
+ "deployedLinkReferences": {}
1387
+ }