@etherisc/gif-next 0.0.2-e37834a-021 → 0.0.2-e46206a-486

Sign up to get free protection for your applications and to get access to all the features.
Files changed (257) hide show
  1. package/README.md +104 -1
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +90 -2
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +118 -6
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +80 -3
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  10. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  12. package/artifacts/contracts/components/Pool.sol/Pool.json +120 -6
  13. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  14. package/artifacts/contracts/components/Product.sol/Product.json +118 -6
  15. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  16. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  17. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  21. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  33. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  37. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  39. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  40. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  41. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  42. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +54 -286
  43. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
  44. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  45. package/artifacts/contracts/instance/Instance.sol/Instance.json +171 -396
  46. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  47. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +90 -2
  48. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  49. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  50. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  51. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
  52. package/artifacts/contracts/instance/base/IService.sol/IService.json +80 -3
  53. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
  54. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +90 -2
  55. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  56. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +22 -14
  57. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  58. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
  59. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
  60. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
  61. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +90 -2
  62. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
  63. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
  64. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
  65. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
  66. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
  68. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +2 -2
  70. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
  74. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -13
  75. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -13
  77. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
  78. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
  79. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
  80. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
  81. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
  82. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
  83. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +2 -2
  84. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
  86. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
  88. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
  89. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  90. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +194 -41
  91. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  92. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +136 -16
  93. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  94. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +81 -4
  95. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  96. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +80 -3
  97. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +80 -3
  99. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  100. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +80 -3
  101. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  102. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +138 -18
  103. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  104. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +154 -42
  105. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  106. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +47 -2
  107. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  108. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +42 -156
  109. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  110. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +214 -10
  111. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  112. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  113. package/artifacts/contracts/registry/Registry.sol/Registry.json +62 -184
  114. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  115. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +410 -34
  116. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  117. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +86 -42
  118. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  119. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  120. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
  121. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  122. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  123. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  124. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +80 -3
  125. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  126. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  127. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +32 -6
  128. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  129. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +21 -16
  130. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  131. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +120 -6
  132. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  133. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  134. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  135. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +1 -1
  136. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +118 -6
  137. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  138. package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
  139. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
  140. package/artifacts/contracts/test/TestPool.sol/TestPool.json +120 -6
  141. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
  142. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +120 -8
  143. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  144. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +120 -6
  145. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  146. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
  147. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  148. package/artifacts/contracts/test/TestService.sol/TestService.json +142 -14
  149. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  150. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
  151. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  152. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  153. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +18 -2
  154. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  155. package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
  156. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  157. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  158. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  159. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  160. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  161. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/Fee.sol/FeeLib.json +4 -4
  163. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  164. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
  165. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  166. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
  167. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  168. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  169. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  170. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  171. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  173. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  174. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  175. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
  177. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  178. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
  179. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  180. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  181. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  182. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +15 -2
  183. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  184. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  185. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  186. package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
  187. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  188. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  189. package/contracts/components/BaseComponent.sol +1 -1
  190. package/contracts/components/Distribution.sol +1 -1
  191. package/contracts/components/IBaseComponent.sol +1 -1
  192. package/contracts/components/IDistributionComponent.sol +1 -1
  193. package/contracts/components/IProductComponent.sol +1 -1
  194. package/contracts/components/Product.sol +2 -2
  195. package/contracts/experiment/cloning/Cloner.sol +47 -0
  196. package/contracts/instance/IInstance.sol +4 -6
  197. package/contracts/instance/Instance.sol +4 -6
  198. package/contracts/instance/base/KeyValueStore.sol +3 -2
  199. package/contracts/instance/base/ModuleBase.sol +1 -1
  200. package/contracts/instance/base/ServiceBase.sol +1 -0
  201. package/contracts/instance/module/bundle/BundleModule.sol +2 -2
  202. package/contracts/instance/module/component/ComponentModule.sol +1 -1
  203. package/contracts/instance/module/component/IComponent.sol +1 -1
  204. package/contracts/instance/module/policy/IPolicy.sol +2 -2
  205. package/contracts/instance/module/policy/PolicyModule.sol +2 -2
  206. package/contracts/instance/module/treasury/ITreasury.sol +1 -1
  207. package/contracts/instance/module/treasury/TokenHandler.sol +1 -1
  208. package/contracts/instance/module/treasury/TreasuryModule.sol +4 -4
  209. package/contracts/instance/service/ComponentOwnerService.sol +73 -30
  210. package/contracts/instance/service/IProductService.sol +1 -1
  211. package/contracts/instance/service/ProductService.sol +3 -3
  212. package/contracts/registry/ChainNft.sol +40 -25
  213. package/contracts/registry/IRegistry.sol +9 -25
  214. package/contracts/registry/IRegistryService.sol +9 -3
  215. package/contracts/registry/Registry.sol +90 -157
  216. package/contracts/registry/RegistryService.sol +167 -101
  217. package/contracts/registry/RegistryServiceManager.sol +22 -10
  218. package/contracts/shared/ERC165.sol +1 -1
  219. package/contracts/shared/INftOwnable.sol +22 -0
  220. package/contracts/shared/IRegisterable.sol +3 -8
  221. package/contracts/shared/NftOwnable.sol +83 -34
  222. package/contracts/shared/ProxyManager.sol +3 -12
  223. package/contracts/shared/Registerable.sol +14 -42
  224. package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
  225. package/contracts/shared/Versionable.sol +3 -3
  226. package/contracts/test/TestFee.sol +2 -2
  227. package/contracts/test/TestProduct.sol +2 -2
  228. package/contracts/test/TestRoleId.sol +1 -1
  229. package/contracts/types/DistributorType.sol +55 -0
  230. package/contracts/types/Fee.sol +3 -3
  231. package/contracts/types/Key32.sol +8 -3
  232. package/contracts/types/NumberId.sol +52 -0
  233. package/contracts/types/ObjectType.sol +35 -14
  234. package/contracts/types/Referral.sol +85 -0
  235. package/contracts/types/RoleId.sol +53 -9
  236. package/contracts/types/StateId.sol +1 -1
  237. package/contracts/types/Timestamp.sol +7 -3
  238. package/contracts/types/UFixed.sol +128 -12
  239. package/package.json +4 -3
  240. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  241. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  242. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  243. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.json +0 -10
  244. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  245. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  246. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  247. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -457
  248. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  249. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  250. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
  251. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
  252. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  253. package/contracts/instance/module/access/Access.sol +0 -149
  254. package/contracts/instance/module/access/IAccess.sol +0 -53
  255. package/contracts/registry/IChainNft.sol +0 -22
  256. package/contracts/shared/IOwnable.sol +0 -6
  257. package/contracts/types/ReferralId.sol +0 -48
@@ -136,8 +136,8 @@
136
136
  "type": "function"
137
137
  }
138
138
  ],
139
- "bytecode": "0x608060405234801561001057600080fd5b50610019610036565b6100216101db565b61002961030c565b61003161055d565b6106c7565b60dc600090815260208190527f5bd290414b404036f9d63146803dd83b59a8e1905062a5bfed8b0154d20a390d805460ff19166064179055600190819061007b60dc90565b60ff1660ff168152602001908152602001600020600061009f61069660201b60201c565b60ff1660ff16815260200190815260200160002060006100c36106a060201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906100f560dc90565b60ff1660ff16815260200190815260200160002060006101196106a060201b60201c565b60ff1660ff168152602001908152602001600020600061013d61069660201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061016f60dc90565b60ff1660ff16815260200190815260200160002060006101936106a060201b60201c565b60ff1660ff16815260200190815260200160002060006101b76106a560201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f9db7038e59677010ca8f72fa448bad1b4f3c53346b666689163ccac31db467728054606460ff1991821681179092557f1a3062e9a24818c8281fcfb58ec4f3083a2f9a1314ac63f80d8d646661fdc5098054909116600190811790915560009182526020819052907f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c129061026e606e90565b60ff1660ff168152602001908152602001600020600061029261069660201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906102c4606490565b60ff1660ff16815260200190815260200160002060006102e86106a060201b60201c565b60ff1660ff16815260200190815260200160002060006101b76106aa60201b60201c565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff1916600a179055600190819061035160d290565b60ff1660ff16815260200190815260200160002060006103756106af60201b60201c565b60ff1660ff16815260200190815260200160002060006103996106b460201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906103cb60d290565b60ff1660ff16815260200190815260200160002060006103ef6106af60201b60201c565b60ff1660ff16815260200190815260200160002060006104136106b960201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061044560d290565b60ff1660ff16815260200190815260200160002060006104696106af60201b60201c565b60ff1660ff168152602001908152602001600020600061048d6106be60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906104bf60d290565b60ff1660ff16815260200190815260200160002060006104e36106be60201b60201c565b60ff1660ff168152602001908152602001600020600061050761069660201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061053960d290565b60ff1660ff168152602001908152602001600020600061019361069660201b60201c565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff1916606417905560019081906105a260c890565b60ff1660ff16815260200190815260200160002060006105c661069660201b60201c565b60ff1660ff16815260200190815260200160002060006105ea6106a060201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061061c60c890565b60ff1660ff16815260200190815260200160002060006106406106a060201b60201c565b60ff1660ff168152602001908152602001600020600061066461069660201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906102c460c890565b606490565b905090565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b6000602861069b565b610366806106d66000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630d35818114610051578063a89896751461008e578063bf1db3f9146100a3578063e9e96c70146100c6575b600080fd5b61007761005f36600461029f565b60ff9081166000908152602081905260409020541690565b60405160ff90911681526020015b60405180910390f35b6100a161009c3660046102c3565b610104565b005b6100b66100b136600461029f565b6101fe565b6040519015158152602001610085565b6100b66100d43660046102c3565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061018d919061030e565b1561019757505050565b60ff8084166000908152600160209081526040808320868516845282528083208585168452909152902054166101f957604051636bb20ea760e01b815260ff808516600483015280841660248301528216604482015260640160405180910390fd5b505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610287919061030e565b92915050565b60ff8116811461029c57600080fd5b50565b6000602082840312156102b157600080fd5b81356102bc8161028d565b9392505050565b6000806000606084860312156102d857600080fd5b83356102e38161028d565b925060208401356102f38161028d565b915060408401356103038161028d565b809150509250925092565b60006020828403121561032057600080fd5b815180151581146102bc57600080fdfea26469706673582212207325c3077a81608a91830ddc11738d775e30ab7eea476d02cfef80b232d1ac4064736f6c63430008140033",
140
- "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80630d35818114610051578063a89896751461008e578063bf1db3f9146100a3578063e9e96c70146100c6575b600080fd5b61007761005f36600461029f565b60ff9081166000908152602081905260409020541690565b60405160ff90911681526020015b60405180910390f35b6100a161009c3660046102c3565b610104565b005b6100b66100b136600461029f565b6101fe565b6040519015158152602001610085565b6100b66100d43660046102c3565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061018d919061030e565b1561019757505050565b60ff8084166000908152600160209081526040808320868516845282528083208585168452909152902054166101f957604051636bb20ea760e01b815260ff808516600483015280841660248301528216604482015260640160405180910390fd5b505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610287919061030e565b92915050565b60ff8116811461029c57600080fd5b50565b6000602082840312156102b157600080fd5b81356102bc8161028d565b9392505050565b6000806000606084860312156102d857600080fd5b83356102e38161028d565b925060208401356102f38161028d565b915060408401356103038161028d565b809150509250925092565b60006020828403121561032057600080fd5b815180151581146102bc57600080fdfea26469706673582212207325c3077a81608a91830ddc11738d775e30ab7eea476d02cfef80b232d1ac4064736f6c63430008140033",
139
+ "bytecode": "0x608060405234801561001057600080fd5b50610019610036565b6100216101db565b61002961030c565b61003161055d565b6106c7565b60dc600090815260208190527f5bd290414b404036f9d63146803dd83b59a8e1905062a5bfed8b0154d20a390d805460ff19166064179055600190819061007b60dc90565b60ff1660ff168152602001908152602001600020600061009f61069660201b60201c565b60ff1660ff16815260200190815260200160002060006100c36106a060201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906100f560dc90565b60ff1660ff16815260200190815260200160002060006101196106a060201b60201c565b60ff1660ff168152602001908152602001600020600061013d61069660201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061016f60dc90565b60ff1660ff16815260200190815260200160002060006101936106a060201b60201c565b60ff1660ff16815260200190815260200160002060006101b76106a560201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f9db7038e59677010ca8f72fa448bad1b4f3c53346b666689163ccac31db467728054606460ff1991821681179092557f1a3062e9a24818c8281fcfb58ec4f3083a2f9a1314ac63f80d8d646661fdc5098054909116600190811790915560009182526020819052907f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c129061026e606e90565b60ff1660ff168152602001908152602001600020600061029261069660201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906102c4606490565b60ff1660ff16815260200190815260200160002060006102e86106a060201b60201c565b60ff1660ff16815260200190815260200160002060006101b76106aa60201b60201c565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff1916600a179055600190819061035160d290565b60ff1660ff16815260200190815260200160002060006103756106af60201b60201c565b60ff1660ff16815260200190815260200160002060006103996106b460201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906103cb60d290565b60ff1660ff16815260200190815260200160002060006103ef6106af60201b60201c565b60ff1660ff16815260200190815260200160002060006104136106b960201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061044560d290565b60ff1660ff16815260200190815260200160002060006104696106af60201b60201c565b60ff1660ff168152602001908152602001600020600061048d6106be60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906104bf60d290565b60ff1660ff16815260200190815260200160002060006104e36106be60201b60201c565b60ff1660ff168152602001908152602001600020600061050761069660201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061053960d290565b60ff1660ff168152602001908152602001600020600061019361069660201b60201c565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff1916606417905560019081906105a260c890565b60ff1660ff16815260200190815260200160002060006105c661069660201b60201c565b60ff1660ff16815260200190815260200160002060006105ea6106a060201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190819061061c60c890565b60ff1660ff16815260200190815260200160002060006106406106a060201b60201c565b60ff1660ff168152602001908152602001600020600061066461069660201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906102c460c890565b606490565b905090565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b6000602861069b565b610366806106d66000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630d35818114610051578063a89896751461008e578063bf1db3f9146100a3578063e9e96c70146100c6575b600080fd5b61007761005f36600461029f565b60ff9081166000908152602081905260409020541690565b60405160ff90911681526020015b60405180910390f35b6100a161009c3660046102c3565b610104565b005b6100b66100b136600461029f565b6101fe565b6040519015158152602001610085565b6100b66100d43660046102c3565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061018d919061030e565b1561019757505050565b60ff8084166000908152600160209081526040808320868516845282528083208585168452909152902054166101f957604051636bb20ea760e01b815260ff808516600483015280841660248301528216604482015260640160405180910390fd5b505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610287919061030e565b92915050565b60ff8116811461029c57600080fd5b50565b6000602082840312156102b157600080fd5b81356102bc8161028d565b9392505050565b6000806000606084860312156102d857600080fd5b83356102e38161028d565b925060208401356102f38161028d565b915060408401356103038161028d565b809150509250925092565b60006020828403121561032057600080fd5b815180151581146102bc57600080fdfea2646970667358221220c64eabeb8748a70cea63808695533ed92e84be2ced0fa70b5bb9324926c3010964736f6c63430008140033",
140
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80630d35818114610051578063a89896751461008e578063bf1db3f9146100a3578063e9e96c70146100c6575b600080fd5b61007761005f36600461029f565b60ff9081166000908152602081905260409020541690565b60405160ff90911681526020015b60405180910390f35b6100a161009c3660046102c3565b610104565b005b6100b66100b136600461029f565b6101fe565b6040519015158152602001610085565b6100b66100d43660046102c3565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061018d919061030e565b1561019757505050565b60ff8084166000908152600160209081526040808320868516845282528083208585168452909152902054166101f957604051636bb20ea760e01b815260ff808516600483015280841660248301528216604482015260640160405180910390fd5b505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610287919061030e565b92915050565b60ff8116811461029c57600080fd5b50565b6000602082840312156102b157600080fd5b81356102bc8161028d565b9392505050565b6000806000606084860312156102d857600080fd5b83356102e38161028d565b925060208401356102f38161028d565b915060408401356103038161028d565b809150509250925092565b60006020828403121561032057600080fd5b815180151581146102bc57600080fdfea2646970667358221220c64eabeb8748a70cea63808695533ed92e84be2ced0fa70b5bb9324926c3010964736f6c63430008140033",
141
141
  "linkReferences": {
142
142
  "contracts/types/StateId.sol": {
143
143
  "StateIdLib": [
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -3,6 +3,87 @@
3
3
  "contractName": "ServiceBase",
4
4
  "sourceName": "contracts/instance/base/ServiceBase.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "nftId",
16
+ "type": "uint96"
17
+ }
18
+ ],
19
+ "name": "ErrorAlreadyLinked",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [
24
+ {
25
+ "internalType": "address",
26
+ "name": "contractAddress",
27
+ "type": "address"
28
+ }
29
+ ],
30
+ "name": "ErrorContractNotRegistered",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "account",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "ErrorNotOwner",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "registryAddress",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorNotRegistry",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "registryAddress",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorRegisterableNotRegistry",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [],
68
+ "name": "ErrorRegistryAddressZero",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [
73
+ {
74
+ "internalType": "address",
75
+ "name": "registry",
76
+ "type": "address"
77
+ }
78
+ ],
79
+ "name": "ErrorRegistryAlreadyInitialized",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "ErrorRegistryNotInitialized",
85
+ "type": "error"
86
+ },
6
87
  {
7
88
  "inputs": [],
8
89
  "name": "InvalidInitialization",
@@ -164,7 +245,7 @@
164
245
  "outputs": [
165
246
  {
166
247
  "internalType": "NftId",
167
- "name": "nftId",
248
+ "name": "",
168
249
  "type": "uint96"
169
250
  }
170
251
  ],
@@ -190,7 +271,7 @@
190
271
  "outputs": [
191
272
  {
192
273
  "internalType": "contract IRegistry",
193
- "name": "registry",
274
+ "name": "",
194
275
  "type": "address"
195
276
  }
196
277
  ],
@@ -330,6 +411,13 @@
330
411
  "stateMutability": "view",
331
412
  "type": "function"
332
413
  },
414
+ {
415
+ "inputs": [],
416
+ "name": "linkToRegisteredNftId",
417
+ "outputs": [],
418
+ "stateMutability": "nonpayable",
419
+ "type": "function"
420
+ },
333
421
  {
334
422
  "inputs": [
335
423
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -3,8 +3,8 @@
3
3
  "contractName": "DistributionModule",
4
4
  "sourceName": "contracts/instance/module/distribution/DistributionModule.sol",
5
5
  "abi": [],
6
- "bytecode": "0x6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea264697066735822122007c1f3962c0b3a0fbdf314074ccf62935dc3bfef7bb940d41f467154cd4f114364736f6c63430008140033",
7
- "deployedBytecode": "0x6080604052600080fdfea264697066735822122007c1f3962c0b3a0fbdf314074ccf62935dc3bfef7bb940d41f467154cd4f114364736f6c63430008140033",
6
+ "bytecode": "0x6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea26469706673582212204832b9a7395e7745fa8df035f865605297cef89a002ed491a082677f4d1955ce64736f6c63430008140033",
7
+ "deployedBytecode": "0x6080604052600080fdfea26469706673582212204832b9a7395e7745fa8df035f865605297cef89a002ed491a082677f4d1955ce64736f6c63430008140033",
8
8
  "linkReferences": {},
9
9
  "deployedLinkReferences": {}
10
10
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -155,19 +155,6 @@
155
155
  "stateMutability": "nonpayable",
156
156
  "type": "function"
157
157
  },
158
- {
159
- "inputs": [],
160
- "name": "getRegistry",
161
- "outputs": [
162
- {
163
- "internalType": "contract IRegistry",
164
- "name": "registry",
165
- "type": "address"
166
- }
167
- ],
168
- "stateMutability": "view",
169
- "type": "function"
170
- },
171
158
  {
172
159
  "inputs": [
173
160
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -155,19 +155,6 @@
155
155
  "stateMutability": "nonpayable",
156
156
  "type": "function"
157
157
  },
158
- {
159
- "inputs": [],
160
- "name": "getRegistry",
161
- "outputs": [
162
- {
163
- "internalType": "contract IRegistry",
164
- "name": "registry",
165
- "type": "address"
166
- }
167
- ],
168
- "stateMutability": "view",
169
- "type": "function"
170
- },
171
158
  {
172
159
  "inputs": [
173
160
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -106,8 +106,8 @@
106
106
  "type": "function"
107
107
  }
108
108
  ],
109
- "bytecode": "0x608060405234801561001057600080fd5b50610529806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063423eb9fa146100515780637cef484214610065578063887b1fa914610073578063b8901082146100b0575b600080fd5b61006361005f3660046102cf565b5050565b005b61006361005f366004610376565b61009a6100813660046103b3565b5060408051808201909152600081526060602082015290565b6040516100a7919061041b565b60405180910390f35b6100636100be366004610451565b6100c8565b919050565b604080518082019091526001600160601b03831681526020810182905261018c60c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015610143573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061016791906104af565b83604051602001610178919061041b565b604051602081830303815290604052610192565b50505050565b600054604051630bbdc8f160e31b81526001600160a01b0390911690635dee4788906101c6908590879086906004016104c8565b600060405180830381600087803b1580156101e057600080fd5b505af11580156101f4573d6000803e3d6000fd5b50505050505050565b80356001600160c01b0319811681146100c357600080fd5b634e487b7160e01b600052604160045260246000fd5b80356001600160601b03811681146100c357600080fd5b600082601f83011261025357600080fd5b813567ffffffffffffffff8082111561026e5761026e610215565b604051601f8301601f19908116603f0116810190828211818310171561029657610296610215565b816040528381528660208588010111156102af57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156102e257600080fd5b6102eb836101fd565b9150602083013567ffffffffffffffff8082111561030857600080fd5b908401906040828703121561031c57600080fd5b60405160408101818110838211171561033757610337610215565b6040526103438361022b565b815260208301358281111561035757600080fd5b61036388828601610242565b6020830152508093505050509250929050565b6000806040838503121561038957600080fd5b610392836101fd565b9150602083013560ff811681146103a857600080fd5b809150509250929050565b6000602082840312156103c557600080fd5b6103ce826101fd565b9392505050565b6000815180845260005b818110156103fb576020818501810151868301820152016103df565b506000602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526000602083015160408084015261044960608401826103d5565b949350505050565b60008060006060848603121561046657600080fd5b61046f846101fd565b925061047d6020850161022b565b9150604084013567ffffffffffffffff81111561049957600080fd5b6104a586828701610242565b9150509250925092565b6000602082840312156104c157600080fd5b5051919050565b83815260ff831660208201526060604082015260006104ea60608301846103d5565b9594505050505056fea2646970667358221220b07ce6efe6289850273849abbb3629191a1a7bff9c158a5d3c4b8090939700a364736f6c63430008140033",
110
- "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c8063423eb9fa146100515780637cef484214610065578063887b1fa914610073578063b8901082146100b0575b600080fd5b61006361005f3660046102cf565b5050565b005b61006361005f366004610376565b61009a6100813660046103b3565b5060408051808201909152600081526060602082015290565b6040516100a7919061041b565b60405180910390f35b6100636100be366004610451565b6100c8565b919050565b604080518082019091526001600160601b03831681526020810182905261018c60c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015610143573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061016791906104af565b83604051602001610178919061041b565b604051602081830303815290604052610192565b50505050565b600054604051630bbdc8f160e31b81526001600160a01b0390911690635dee4788906101c6908590879086906004016104c8565b600060405180830381600087803b1580156101e057600080fd5b505af11580156101f4573d6000803e3d6000fd5b50505050505050565b80356001600160c01b0319811681146100c357600080fd5b634e487b7160e01b600052604160045260246000fd5b80356001600160601b03811681146100c357600080fd5b600082601f83011261025357600080fd5b813567ffffffffffffffff8082111561026e5761026e610215565b604051601f8301601f19908116603f0116810190828211818310171561029657610296610215565b816040528381528660208588010111156102af57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156102e257600080fd5b6102eb836101fd565b9150602083013567ffffffffffffffff8082111561030857600080fd5b908401906040828703121561031c57600080fd5b60405160408101818110838211171561033757610337610215565b6040526103438361022b565b815260208301358281111561035757600080fd5b61036388828601610242565b6020830152508093505050509250929050565b6000806040838503121561038957600080fd5b610392836101fd565b9150602083013560ff811681146103a857600080fd5b809150509250929050565b6000602082840312156103c557600080fd5b6103ce826101fd565b9392505050565b6000815180845260005b818110156103fb576020818501810151868301820152016103df565b506000602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526000602083015160408084015261044960608401826103d5565b949350505050565b60008060006060848603121561046657600080fd5b61046f846101fd565b925061047d6020850161022b565b9150604084013567ffffffffffffffff81111561049957600080fd5b6104a586828701610242565b9150509250925092565b6000602082840312156104c157600080fd5b5051919050565b83815260ff831660208201526060604082015260006104ea60608301846103d5565b9594505050505056fea2646970667358221220b07ce6efe6289850273849abbb3629191a1a7bff9c158a5d3c4b8090939700a364736f6c63430008140033",
109
+ "bytecode": "0x608060405234801561001057600080fd5b50610529806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063423eb9fa146100515780637cef484214610065578063887b1fa914610073578063b8901082146100b0575b600080fd5b61006361005f3660046102cf565b5050565b005b61006361005f366004610376565b61009a6100813660046103b3565b5060408051808201909152600081526060602082015290565b6040516100a7919061041b565b60405180910390f35b6100636100be366004610451565b6100c8565b919050565b604080518082019091526001600160601b03831681526020810182905261018c60c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015610143573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061016791906104af565b83604051602001610178919061041b565b604051602081830303815290604052610192565b50505050565b600054604051630bbdc8f160e31b81526001600160a01b0390911690635dee4788906101c6908590879086906004016104c8565b600060405180830381600087803b1580156101e057600080fd5b505af11580156101f4573d6000803e3d6000fd5b50505050505050565b80356001600160c01b0319811681146100c357600080fd5b634e487b7160e01b600052604160045260246000fd5b80356001600160601b03811681146100c357600080fd5b600082601f83011261025357600080fd5b813567ffffffffffffffff8082111561026e5761026e610215565b604051601f8301601f19908116603f0116810190828211818310171561029657610296610215565b816040528381528660208588010111156102af57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156102e257600080fd5b6102eb836101fd565b9150602083013567ffffffffffffffff8082111561030857600080fd5b908401906040828703121561031c57600080fd5b60405160408101818110838211171561033757610337610215565b6040526103438361022b565b815260208301358281111561035757600080fd5b61036388828601610242565b6020830152508093505050509250929050565b6000806040838503121561038957600080fd5b610392836101fd565b9150602083013560ff811681146103a857600080fd5b809150509250929050565b6000602082840312156103c557600080fd5b6103ce826101fd565b9392505050565b6000815180845260005b818110156103fb576020818501810151868301820152016103df565b506000602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526000602083015160408084015261044960608401826103d5565b949350505050565b60008060006060848603121561046657600080fd5b61046f846101fd565b925061047d6020850161022b565b9150604084013567ffffffffffffffff81111561049957600080fd5b6104a586828701610242565b9150509250925092565b6000602082840312156104c157600080fd5b5051919050565b83815260ff831660208201526060604082015260006104ea60608301846103d5565b9594505050505056fea264697066735822122034a5f0ef3714bf8b6a32ecc531e57618498101ede52d96b11cfdc45f6ffb3d7064736f6c63430008140033",
110
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c8063423eb9fa146100515780637cef484214610065578063887b1fa914610073578063b8901082146100b0575b600080fd5b61006361005f3660046102cf565b5050565b005b61006361005f366004610376565b61009a6100813660046103b3565b5060408051808201909152600081526060602082015290565b6040516100a7919061041b565b60405180910390f35b6100636100be366004610451565b6100c8565b919050565b604080518082019091526001600160601b03831681526020810182905261018c60c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015610143573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061016791906104af565b83604051602001610178919061041b565b604051602081830303815290604052610192565b50505050565b600054604051630bbdc8f160e31b81526001600160a01b0390911690635dee4788906101c6908590879086906004016104c8565b600060405180830381600087803b1580156101e057600080fd5b505af11580156101f4573d6000803e3d6000fd5b50505050505050565b80356001600160c01b0319811681146100c357600080fd5b634e487b7160e01b600052604160045260246000fd5b80356001600160601b03811681146100c357600080fd5b600082601f83011261025357600080fd5b813567ffffffffffffffff8082111561026e5761026e610215565b604051601f8301601f19908116603f0116810190828211818310171561029657610296610215565b816040528381528660208588010111156102af57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156102e257600080fd5b6102eb836101fd565b9150602083013567ffffffffffffffff8082111561030857600080fd5b908401906040828703121561031c57600080fd5b60405160408101818110838211171561033757610337610215565b6040526103438361022b565b815260208301358281111561035757600080fd5b61036388828601610242565b6020830152508093505050509250929050565b6000806040838503121561038957600080fd5b610392836101fd565b9150602083013560ff811681146103a857600080fd5b809150509250929050565b6000602082840312156103c557600080fd5b6103ce826101fd565b9392505050565b6000815180845260005b818110156103fb576020818501810151868301820152016103df565b506000602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526000602083015160408084015261044960608401826103d5565b949350505050565b60008060006060848603121561046657600080fd5b61046f846101fd565b925061047d6020850161022b565b9150604084013567ffffffffffffffff81111561049957600080fd5b6104a586828701610242565b9150509250925092565b6000602082840312156104c157600080fd5b5051919050565b83815260ff831660208201526060604082015260006104ea60608301846103d5565b9594505050505056fea264697066735822122034a5f0ef3714bf8b6a32ecc531e57618498101ede52d96b11cfdc45f6ffb3d7064736f6c63430008140033",
111
111
  "linkReferences": {
112
112
  "contracts/types/RiskId.sol": {
113
113
  "RiskIdLib": [
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -69,8 +69,8 @@
69
69
  "type": "function"
70
70
  }
71
71
  ],
72
- "bytecode": "0x608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220455e331420069b52ddb557c4094a8236a9cb76b6fb2388562bb6d2f594dbd6b064736f6c63430008140033",
73
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220455e331420069b52ddb557c4094a8236a9cb76b6fb2388562bb6d2f594dbd6b064736f6c63430008140033",
72
+ "bytecode": "0x608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220d8a4f0a2cc2873da909fc97b7911bb0266cfb539af6e0bf877c81a0be8dca9e864736f6c63430008140033",
73
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220d8a4f0a2cc2873da909fc97b7911bb0266cfb539af6e0bf877c81a0be8dca9e864736f6c63430008140033",
74
74
  "linkReferences": {},
75
75
  "deployedLinkReferences": {}
76
76
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/23d9cb949ebaded2db536c461b622e36.json"
3
+ "buildInfo": "../../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
4
4
  }