@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-ec436bf-674

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. package/README.md +390 -2
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +327 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +280 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +249 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +782 -0
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
  17. package/artifacts/contracts/components/Product.sol/Product.json +775 -0
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
  34. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
  36. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +128 -0
  38. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
  40. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
  42. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
  44. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  46. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  48. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  49. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  50. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  51. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  52. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  53. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  54. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  55. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  56. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  57. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  58. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  59. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  60. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  61. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  62. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  63. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  64. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  65. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +753 -0
  66. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
  68. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  69. package/artifacts/contracts/instance/Instance.sol/Instance.json +3539 -0
  70. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  71. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  72. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
  74. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +891 -0
  76. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +492 -0
  78. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +540 -0
  80. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  82. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  84. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  85. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  86. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  87. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  88. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  90. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  92. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.json +10 -0
  94. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  96. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.json +10 -0
  98. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  99. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  100. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  102. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  104. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  106. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
  108. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +448 -0
  110. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  112. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  114. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  116. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  118. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +855 -0
  120. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +460 -0
  122. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +771 -0
  124. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  125. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +753 -0
  126. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  127. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +853 -0
  128. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  129. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  130. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  131. package/artifacts/contracts/registry/Registry.sol/Registry.json +947 -0
  132. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  133. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1237 -0
  134. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +525 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  138. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  139. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  140. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  141. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  142. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  144. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
  146. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  147. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  148. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  150. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  152. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  154. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  156. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  158. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  160. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  161. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  162. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  163. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  164. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  166. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  168. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  170. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  172. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  174. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  176. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  178. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  180. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  181. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  182. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  183. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  184. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  186. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  187. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  188. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  189. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  190. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  192. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  194. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +153 -0
  196. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  197. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  198. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  200. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  202. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  204. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  206. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  208. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  210. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +249 -0
  212. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  214. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  216. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  218. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  219. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  220. package/contracts/components/BaseComponent.sol +91 -0
  221. package/contracts/components/Distribution.sol +160 -0
  222. package/contracts/components/IBaseComponent.sol +25 -0
  223. package/contracts/components/IDistributionComponent.sol +44 -0
  224. package/contracts/components/IPoolComponent.sol +62 -0
  225. package/contracts/components/IProductComponent.sol +35 -0
  226. package/contracts/components/Pool.sol +243 -0
  227. package/contracts/components/Product.sol +297 -0
  228. package/contracts/experiment/cloning/Cloner.sol +47 -0
  229. package/contracts/experiment/errors/Require.sol +38 -0
  230. package/contracts/experiment/errors/Revert.sol +44 -0
  231. package/contracts/experiment/inheritance/A.sol +53 -0
  232. package/contracts/experiment/inheritance/B.sol +28 -0
  233. package/contracts/experiment/inheritance/C.sol +34 -0
  234. package/contracts/experiment/inheritance/IA.sol +13 -0
  235. package/contracts/experiment/inheritance/IB.sol +10 -0
  236. package/contracts/experiment/inheritance/IC.sol +12 -0
  237. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  238. package/contracts/experiment/statemachine/ISM.sol +25 -0
  239. package/contracts/experiment/statemachine/SM.sol +57 -0
  240. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  241. package/contracts/experiment/types/TypeA.sol +47 -0
  242. package/contracts/experiment/types/TypeB.sol +29 -0
  243. package/contracts/instance/AccessManagedSimple.sol +115 -0
  244. package/contracts/instance/AccessManagerSimple.sol +692 -0
  245. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  246. package/contracts/instance/IInstance.sol +39 -0
  247. package/contracts/instance/IInstanceService.sol +30 -0
  248. package/contracts/instance/Instance.sol +443 -0
  249. package/contracts/instance/InstanceAccessManager.sol +288 -0
  250. package/contracts/instance/InstanceReader.sol +306 -0
  251. package/contracts/instance/InstanceService.sol +182 -0
  252. package/contracts/instance/InstanceServiceManager.sol +56 -0
  253. package/contracts/instance/base/ComponentServiceBase.sol +118 -0
  254. package/contracts/instance/base/IInstanceBase.sol +23 -0
  255. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  256. package/contracts/instance/base/ILifecycle.sol +30 -0
  257. package/contracts/instance/base/KeyValueStore.sol +172 -0
  258. package/contracts/instance/base/Lifecycle.sol +100 -0
  259. package/contracts/instance/module/IAccess.sol +38 -0
  260. package/contracts/instance/module/IBundle.sol +20 -0
  261. package/contracts/instance/module/IDistribution.sol +39 -0
  262. package/contracts/instance/module/IPolicy.sol +45 -0
  263. package/contracts/instance/module/IRisk.sol +11 -0
  264. package/contracts/instance/module/ISetup.sol +44 -0
  265. package/contracts/instance/module/ITreasury.sol +23 -0
  266. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  267. package/contracts/instance/service/DistributionService.sol +87 -0
  268. package/contracts/instance/service/DistributionServiceManager.sol +53 -0
  269. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  270. package/contracts/instance/service/IDistributionService.sol +12 -0
  271. package/contracts/instance/service/IPoolService.sol +37 -0
  272. package/contracts/instance/service/IProductService.sol +107 -0
  273. package/contracts/instance/service/PoolService.sol +193 -0
  274. package/contracts/instance/service/PoolServiceManager.sol +53 -0
  275. package/contracts/registry/ChainNft.sol +202 -0
  276. package/contracts/registry/IRegistry.sol +94 -0
  277. package/contracts/registry/IRegistryService.sol +33 -0
  278. package/contracts/registry/ITransferInterceptor.sol +6 -0
  279. package/contracts/registry/Registry.sol +489 -0
  280. package/contracts/registry/RegistryService.sol +399 -0
  281. package/contracts/registry/RegistryServiceManager.sol +80 -0
  282. package/contracts/registry/TokenRegistry.sol +111 -0
  283. package/contracts/shared/ContractDeployerLib.sol +72 -0
  284. package/contracts/shared/ERC165.sol +25 -0
  285. package/contracts/shared/INftOwnable.sol +22 -0
  286. package/contracts/shared/IRegisterable.sol +17 -0
  287. package/contracts/shared/IService.sol +15 -0
  288. package/contracts/shared/IVersionable.sol +96 -0
  289. package/contracts/shared/NftOwnable.sol +136 -0
  290. package/contracts/shared/ProxyManager.sol +94 -0
  291. package/contracts/shared/Registerable.sol +90 -0
  292. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  293. package/contracts/shared/Service.sol +55 -0
  294. package/contracts/shared/TokenHandler.sol +27 -0
  295. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  296. package/contracts/shared/Versionable.sol +147 -0
  297. package/contracts/test/TestFee.sol +25 -0
  298. package/contracts/test/TestRegisterable.sol +18 -0
  299. package/contracts/test/TestRoleId.sol +14 -0
  300. package/contracts/test/TestService.sol +24 -0
  301. package/contracts/{Dip.sol → test/TestToken.sol} +5 -5
  302. package/contracts/test/TestVersion.sol +44 -0
  303. package/contracts/test/TestVersionable.sol +17 -0
  304. package/contracts/test/Usdc.sol +26 -0
  305. package/contracts/types/AddressSet.sol +58 -0
  306. package/contracts/types/Blocknumber.sol +118 -0
  307. package/contracts/types/ChainId.sol +38 -0
  308. package/contracts/types/DistributorType.sol +55 -0
  309. package/contracts/types/Fee.sol +56 -0
  310. package/contracts/types/Key32.sol +50 -0
  311. package/contracts/types/NftId.sol +72 -0
  312. package/contracts/types/NftIdSet.sol +60 -0
  313. package/contracts/types/NumberId.sol +52 -0
  314. package/contracts/types/ObjectType.sol +152 -0
  315. package/contracts/types/Referral.sol +85 -0
  316. package/contracts/types/RiskId.sol +43 -0
  317. package/contracts/types/RoleId.sol +89 -0
  318. package/contracts/types/StateId.sol +105 -0
  319. package/contracts/types/Timestamp.sol +127 -0
  320. package/contracts/types/UFixed.sol +325 -0
  321. package/contracts/types/Version.sol +107 -0
  322. package/package.json +26 -10
  323. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  324. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  325. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  326. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  327. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,753 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IInstance",
4
+ "sourceName": "contracts/instance/IInstance.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "NftId",
10
+ "name": "bundleNftId",
11
+ "type": "uint96"
12
+ },
13
+ {
14
+ "components": [
15
+ {
16
+ "internalType": "NftId",
17
+ "name": "poolNftId",
18
+ "type": "uint96"
19
+ },
20
+ {
21
+ "components": [
22
+ {
23
+ "internalType": "UFixed",
24
+ "name": "fractionalFee",
25
+ "type": "uint256"
26
+ },
27
+ {
28
+ "internalType": "uint256",
29
+ "name": "fixedFee",
30
+ "type": "uint256"
31
+ }
32
+ ],
33
+ "internalType": "struct Fee",
34
+ "name": "fee",
35
+ "type": "tuple"
36
+ },
37
+ {
38
+ "internalType": "bytes",
39
+ "name": "filter",
40
+ "type": "bytes"
41
+ },
42
+ {
43
+ "internalType": "uint256",
44
+ "name": "capitalAmount",
45
+ "type": "uint256"
46
+ },
47
+ {
48
+ "internalType": "uint256",
49
+ "name": "lockedAmount",
50
+ "type": "uint256"
51
+ },
52
+ {
53
+ "internalType": "uint256",
54
+ "name": "balanceAmount",
55
+ "type": "uint256"
56
+ },
57
+ {
58
+ "internalType": "uint256",
59
+ "name": "lifetime",
60
+ "type": "uint256"
61
+ },
62
+ {
63
+ "internalType": "Timestamp",
64
+ "name": "expiredAt",
65
+ "type": "uint40"
66
+ },
67
+ {
68
+ "internalType": "Timestamp",
69
+ "name": "closedAt",
70
+ "type": "uint40"
71
+ }
72
+ ],
73
+ "internalType": "struct IBundle.BundleInfo",
74
+ "name": "bundle",
75
+ "type": "tuple"
76
+ }
77
+ ],
78
+ "name": "createBundle",
79
+ "outputs": [],
80
+ "stateMutability": "nonpayable",
81
+ "type": "function"
82
+ },
83
+ {
84
+ "inputs": [
85
+ {
86
+ "internalType": "NftId",
87
+ "name": "distributionNftId",
88
+ "type": "uint96"
89
+ },
90
+ {
91
+ "components": [
92
+ {
93
+ "internalType": "NftId",
94
+ "name": "productNftId",
95
+ "type": "uint96"
96
+ },
97
+ {
98
+ "internalType": "contract TokenHandler",
99
+ "name": "tokenHandler",
100
+ "type": "address"
101
+ },
102
+ {
103
+ "components": [
104
+ {
105
+ "internalType": "UFixed",
106
+ "name": "fractionalFee",
107
+ "type": "uint256"
108
+ },
109
+ {
110
+ "internalType": "uint256",
111
+ "name": "fixedFee",
112
+ "type": "uint256"
113
+ }
114
+ ],
115
+ "internalType": "struct Fee",
116
+ "name": "distributionFee",
117
+ "type": "tuple"
118
+ },
119
+ {
120
+ "internalType": "bool",
121
+ "name": "isIntercepting",
122
+ "type": "bool"
123
+ },
124
+ {
125
+ "internalType": "address",
126
+ "name": "wallet",
127
+ "type": "address"
128
+ }
129
+ ],
130
+ "internalType": "struct ISetup.DistributionSetupInfo",
131
+ "name": "setup",
132
+ "type": "tuple"
133
+ }
134
+ ],
135
+ "name": "createDistributionSetup",
136
+ "outputs": [],
137
+ "stateMutability": "nonpayable",
138
+ "type": "function"
139
+ },
140
+ {
141
+ "inputs": [
142
+ {
143
+ "internalType": "NftId",
144
+ "name": "poolNftId",
145
+ "type": "uint96"
146
+ },
147
+ {
148
+ "components": [
149
+ {
150
+ "internalType": "NftId",
151
+ "name": "productNftId",
152
+ "type": "uint96"
153
+ },
154
+ {
155
+ "internalType": "contract TokenHandler",
156
+ "name": "tokenHandler",
157
+ "type": "address"
158
+ },
159
+ {
160
+ "internalType": "UFixed",
161
+ "name": "collateralizationLevel",
162
+ "type": "uint256"
163
+ },
164
+ {
165
+ "components": [
166
+ {
167
+ "internalType": "UFixed",
168
+ "name": "fractionalFee",
169
+ "type": "uint256"
170
+ },
171
+ {
172
+ "internalType": "uint256",
173
+ "name": "fixedFee",
174
+ "type": "uint256"
175
+ }
176
+ ],
177
+ "internalType": "struct Fee",
178
+ "name": "poolFee",
179
+ "type": "tuple"
180
+ },
181
+ {
182
+ "components": [
183
+ {
184
+ "internalType": "UFixed",
185
+ "name": "fractionalFee",
186
+ "type": "uint256"
187
+ },
188
+ {
189
+ "internalType": "uint256",
190
+ "name": "fixedFee",
191
+ "type": "uint256"
192
+ }
193
+ ],
194
+ "internalType": "struct Fee",
195
+ "name": "stakingFee",
196
+ "type": "tuple"
197
+ },
198
+ {
199
+ "components": [
200
+ {
201
+ "internalType": "UFixed",
202
+ "name": "fractionalFee",
203
+ "type": "uint256"
204
+ },
205
+ {
206
+ "internalType": "uint256",
207
+ "name": "fixedFee",
208
+ "type": "uint256"
209
+ }
210
+ ],
211
+ "internalType": "struct Fee",
212
+ "name": "performanceFee",
213
+ "type": "tuple"
214
+ },
215
+ {
216
+ "internalType": "bool",
217
+ "name": "isIntercepting",
218
+ "type": "bool"
219
+ },
220
+ {
221
+ "internalType": "address",
222
+ "name": "wallet",
223
+ "type": "address"
224
+ }
225
+ ],
226
+ "internalType": "struct ISetup.PoolSetupInfo",
227
+ "name": "setup",
228
+ "type": "tuple"
229
+ }
230
+ ],
231
+ "name": "createPoolSetup",
232
+ "outputs": [],
233
+ "stateMutability": "nonpayable",
234
+ "type": "function"
235
+ },
236
+ {
237
+ "inputs": [
238
+ {
239
+ "internalType": "NftId",
240
+ "name": "productNftId",
241
+ "type": "uint96"
242
+ },
243
+ {
244
+ "components": [
245
+ {
246
+ "internalType": "contract IERC20Metadata",
247
+ "name": "token",
248
+ "type": "address"
249
+ },
250
+ {
251
+ "internalType": "contract TokenHandler",
252
+ "name": "tokenHandler",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "internalType": "NftId",
257
+ "name": "distributionNftId",
258
+ "type": "uint96"
259
+ },
260
+ {
261
+ "internalType": "NftId",
262
+ "name": "poolNftId",
263
+ "type": "uint96"
264
+ },
265
+ {
266
+ "components": [
267
+ {
268
+ "internalType": "UFixed",
269
+ "name": "fractionalFee",
270
+ "type": "uint256"
271
+ },
272
+ {
273
+ "internalType": "uint256",
274
+ "name": "fixedFee",
275
+ "type": "uint256"
276
+ }
277
+ ],
278
+ "internalType": "struct Fee",
279
+ "name": "distributionFee",
280
+ "type": "tuple"
281
+ },
282
+ {
283
+ "components": [
284
+ {
285
+ "internalType": "UFixed",
286
+ "name": "fractionalFee",
287
+ "type": "uint256"
288
+ },
289
+ {
290
+ "internalType": "uint256",
291
+ "name": "fixedFee",
292
+ "type": "uint256"
293
+ }
294
+ ],
295
+ "internalType": "struct Fee",
296
+ "name": "productFee",
297
+ "type": "tuple"
298
+ },
299
+ {
300
+ "components": [
301
+ {
302
+ "internalType": "UFixed",
303
+ "name": "fractionalFee",
304
+ "type": "uint256"
305
+ },
306
+ {
307
+ "internalType": "uint256",
308
+ "name": "fixedFee",
309
+ "type": "uint256"
310
+ }
311
+ ],
312
+ "internalType": "struct Fee",
313
+ "name": "processingFee",
314
+ "type": "tuple"
315
+ },
316
+ {
317
+ "components": [
318
+ {
319
+ "internalType": "UFixed",
320
+ "name": "fractionalFee",
321
+ "type": "uint256"
322
+ },
323
+ {
324
+ "internalType": "uint256",
325
+ "name": "fixedFee",
326
+ "type": "uint256"
327
+ }
328
+ ],
329
+ "internalType": "struct Fee",
330
+ "name": "poolFee",
331
+ "type": "tuple"
332
+ },
333
+ {
334
+ "components": [
335
+ {
336
+ "internalType": "UFixed",
337
+ "name": "fractionalFee",
338
+ "type": "uint256"
339
+ },
340
+ {
341
+ "internalType": "uint256",
342
+ "name": "fixedFee",
343
+ "type": "uint256"
344
+ }
345
+ ],
346
+ "internalType": "struct Fee",
347
+ "name": "stakingFee",
348
+ "type": "tuple"
349
+ },
350
+ {
351
+ "components": [
352
+ {
353
+ "internalType": "UFixed",
354
+ "name": "fractionalFee",
355
+ "type": "uint256"
356
+ },
357
+ {
358
+ "internalType": "uint256",
359
+ "name": "fixedFee",
360
+ "type": "uint256"
361
+ }
362
+ ],
363
+ "internalType": "struct Fee",
364
+ "name": "performanceFee",
365
+ "type": "tuple"
366
+ }
367
+ ],
368
+ "internalType": "struct ISetup.ProductSetupInfo",
369
+ "name": "setup",
370
+ "type": "tuple"
371
+ }
372
+ ],
373
+ "name": "createProductSetup",
374
+ "outputs": [],
375
+ "stateMutability": "nonpayable",
376
+ "type": "function"
377
+ },
378
+ {
379
+ "inputs": [],
380
+ "name": "getComponentOwnerService",
381
+ "outputs": [
382
+ {
383
+ "internalType": "contract IComponentOwnerService",
384
+ "name": "",
385
+ "type": "address"
386
+ }
387
+ ],
388
+ "stateMutability": "view",
389
+ "type": "function"
390
+ },
391
+ {
392
+ "inputs": [],
393
+ "name": "getDistributionService",
394
+ "outputs": [
395
+ {
396
+ "internalType": "contract IDistributionService",
397
+ "name": "",
398
+ "type": "address"
399
+ }
400
+ ],
401
+ "stateMutability": "view",
402
+ "type": "function"
403
+ },
404
+ {
405
+ "inputs": [],
406
+ "name": "getInstanceReader",
407
+ "outputs": [
408
+ {
409
+ "internalType": "contract InstanceReader",
410
+ "name": "",
411
+ "type": "address"
412
+ }
413
+ ],
414
+ "stateMutability": "view",
415
+ "type": "function"
416
+ },
417
+ {
418
+ "inputs": [],
419
+ "name": "getPoolService",
420
+ "outputs": [
421
+ {
422
+ "internalType": "contract IPoolService",
423
+ "name": "",
424
+ "type": "address"
425
+ }
426
+ ],
427
+ "stateMutability": "view",
428
+ "type": "function"
429
+ },
430
+ {
431
+ "inputs": [
432
+ {
433
+ "internalType": "bytes4",
434
+ "name": "interfaceId",
435
+ "type": "bytes4"
436
+ }
437
+ ],
438
+ "name": "supportsInterface",
439
+ "outputs": [
440
+ {
441
+ "internalType": "bool",
442
+ "name": "",
443
+ "type": "bool"
444
+ }
445
+ ],
446
+ "stateMutability": "view",
447
+ "type": "function"
448
+ },
449
+ {
450
+ "inputs": [
451
+ {
452
+ "internalType": "NftId",
453
+ "name": "bundleNftId",
454
+ "type": "uint96"
455
+ },
456
+ {
457
+ "components": [
458
+ {
459
+ "internalType": "NftId",
460
+ "name": "poolNftId",
461
+ "type": "uint96"
462
+ },
463
+ {
464
+ "components": [
465
+ {
466
+ "internalType": "UFixed",
467
+ "name": "fractionalFee",
468
+ "type": "uint256"
469
+ },
470
+ {
471
+ "internalType": "uint256",
472
+ "name": "fixedFee",
473
+ "type": "uint256"
474
+ }
475
+ ],
476
+ "internalType": "struct Fee",
477
+ "name": "fee",
478
+ "type": "tuple"
479
+ },
480
+ {
481
+ "internalType": "bytes",
482
+ "name": "filter",
483
+ "type": "bytes"
484
+ },
485
+ {
486
+ "internalType": "uint256",
487
+ "name": "capitalAmount",
488
+ "type": "uint256"
489
+ },
490
+ {
491
+ "internalType": "uint256",
492
+ "name": "lockedAmount",
493
+ "type": "uint256"
494
+ },
495
+ {
496
+ "internalType": "uint256",
497
+ "name": "balanceAmount",
498
+ "type": "uint256"
499
+ },
500
+ {
501
+ "internalType": "uint256",
502
+ "name": "lifetime",
503
+ "type": "uint256"
504
+ },
505
+ {
506
+ "internalType": "Timestamp",
507
+ "name": "expiredAt",
508
+ "type": "uint40"
509
+ },
510
+ {
511
+ "internalType": "Timestamp",
512
+ "name": "closedAt",
513
+ "type": "uint40"
514
+ }
515
+ ],
516
+ "internalType": "struct IBundle.BundleInfo",
517
+ "name": "bundle",
518
+ "type": "tuple"
519
+ },
520
+ {
521
+ "internalType": "StateId",
522
+ "name": "newState",
523
+ "type": "uint8"
524
+ }
525
+ ],
526
+ "name": "updateBundle",
527
+ "outputs": [],
528
+ "stateMutability": "nonpayable",
529
+ "type": "function"
530
+ },
531
+ {
532
+ "inputs": [
533
+ {
534
+ "internalType": "NftId",
535
+ "name": "bundleNftId",
536
+ "type": "uint96"
537
+ },
538
+ {
539
+ "internalType": "StateId",
540
+ "name": "newState",
541
+ "type": "uint8"
542
+ }
543
+ ],
544
+ "name": "updateBundleState",
545
+ "outputs": [],
546
+ "stateMutability": "nonpayable",
547
+ "type": "function"
548
+ },
549
+ {
550
+ "inputs": [
551
+ {
552
+ "internalType": "NftId",
553
+ "name": "distributionNftId",
554
+ "type": "uint96"
555
+ },
556
+ {
557
+ "components": [
558
+ {
559
+ "internalType": "NftId",
560
+ "name": "productNftId",
561
+ "type": "uint96"
562
+ },
563
+ {
564
+ "internalType": "contract TokenHandler",
565
+ "name": "tokenHandler",
566
+ "type": "address"
567
+ },
568
+ {
569
+ "components": [
570
+ {
571
+ "internalType": "UFixed",
572
+ "name": "fractionalFee",
573
+ "type": "uint256"
574
+ },
575
+ {
576
+ "internalType": "uint256",
577
+ "name": "fixedFee",
578
+ "type": "uint256"
579
+ }
580
+ ],
581
+ "internalType": "struct Fee",
582
+ "name": "distributionFee",
583
+ "type": "tuple"
584
+ },
585
+ {
586
+ "internalType": "bool",
587
+ "name": "isIntercepting",
588
+ "type": "bool"
589
+ },
590
+ {
591
+ "internalType": "address",
592
+ "name": "wallet",
593
+ "type": "address"
594
+ }
595
+ ],
596
+ "internalType": "struct ISetup.DistributionSetupInfo",
597
+ "name": "setup",
598
+ "type": "tuple"
599
+ },
600
+ {
601
+ "internalType": "StateId",
602
+ "name": "newState",
603
+ "type": "uint8"
604
+ }
605
+ ],
606
+ "name": "updateDistributionSetup",
607
+ "outputs": [],
608
+ "stateMutability": "nonpayable",
609
+ "type": "function"
610
+ },
611
+ {
612
+ "inputs": [
613
+ {
614
+ "internalType": "NftId",
615
+ "name": "distributionNftId",
616
+ "type": "uint96"
617
+ },
618
+ {
619
+ "internalType": "StateId",
620
+ "name": "newState",
621
+ "type": "uint8"
622
+ }
623
+ ],
624
+ "name": "updateDistributionSetupState",
625
+ "outputs": [],
626
+ "stateMutability": "nonpayable",
627
+ "type": "function"
628
+ },
629
+ {
630
+ "inputs": [
631
+ {
632
+ "internalType": "NftId",
633
+ "name": "poolNftId",
634
+ "type": "uint96"
635
+ },
636
+ {
637
+ "components": [
638
+ {
639
+ "internalType": "NftId",
640
+ "name": "productNftId",
641
+ "type": "uint96"
642
+ },
643
+ {
644
+ "internalType": "contract TokenHandler",
645
+ "name": "tokenHandler",
646
+ "type": "address"
647
+ },
648
+ {
649
+ "internalType": "UFixed",
650
+ "name": "collateralizationLevel",
651
+ "type": "uint256"
652
+ },
653
+ {
654
+ "components": [
655
+ {
656
+ "internalType": "UFixed",
657
+ "name": "fractionalFee",
658
+ "type": "uint256"
659
+ },
660
+ {
661
+ "internalType": "uint256",
662
+ "name": "fixedFee",
663
+ "type": "uint256"
664
+ }
665
+ ],
666
+ "internalType": "struct Fee",
667
+ "name": "poolFee",
668
+ "type": "tuple"
669
+ },
670
+ {
671
+ "components": [
672
+ {
673
+ "internalType": "UFixed",
674
+ "name": "fractionalFee",
675
+ "type": "uint256"
676
+ },
677
+ {
678
+ "internalType": "uint256",
679
+ "name": "fixedFee",
680
+ "type": "uint256"
681
+ }
682
+ ],
683
+ "internalType": "struct Fee",
684
+ "name": "stakingFee",
685
+ "type": "tuple"
686
+ },
687
+ {
688
+ "components": [
689
+ {
690
+ "internalType": "UFixed",
691
+ "name": "fractionalFee",
692
+ "type": "uint256"
693
+ },
694
+ {
695
+ "internalType": "uint256",
696
+ "name": "fixedFee",
697
+ "type": "uint256"
698
+ }
699
+ ],
700
+ "internalType": "struct Fee",
701
+ "name": "performanceFee",
702
+ "type": "tuple"
703
+ },
704
+ {
705
+ "internalType": "bool",
706
+ "name": "isIntercepting",
707
+ "type": "bool"
708
+ },
709
+ {
710
+ "internalType": "address",
711
+ "name": "wallet",
712
+ "type": "address"
713
+ }
714
+ ],
715
+ "internalType": "struct ISetup.PoolSetupInfo",
716
+ "name": "setup",
717
+ "type": "tuple"
718
+ },
719
+ {
720
+ "internalType": "StateId",
721
+ "name": "newState",
722
+ "type": "uint8"
723
+ }
724
+ ],
725
+ "name": "updatePoolSetup",
726
+ "outputs": [],
727
+ "stateMutability": "nonpayable",
728
+ "type": "function"
729
+ },
730
+ {
731
+ "inputs": [
732
+ {
733
+ "internalType": "NftId",
734
+ "name": "poolNftId",
735
+ "type": "uint96"
736
+ },
737
+ {
738
+ "internalType": "StateId",
739
+ "name": "newState",
740
+ "type": "uint8"
741
+ }
742
+ ],
743
+ "name": "updatePoolSetupState",
744
+ "outputs": [],
745
+ "stateMutability": "nonpayable",
746
+ "type": "function"
747
+ }
748
+ ],
749
+ "bytecode": "0x",
750
+ "deployedBytecode": "0x",
751
+ "linkReferences": {},
752
+ "deployedLinkReferences": {}
753
+ }