@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e818783-565

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