@etherisc/gif-next 0.0.2-8eb96a8-113 → 0.0.2-9105e58-225

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