@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-efdb520-159

Sign up to get free protection for your applications and to get access to all the features.
Files changed (275) hide show
  1. package/README.md +220 -1
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +174 -0
  4. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  5. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +174 -0
  6. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +356 -0
  8. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +279 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +387 -0
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
  13. package/artifacts/contracts/components/Product.sol/Product.json +305 -0
  14. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  15. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  16. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  17. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  18. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
  20. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
  24. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
  26. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +128 -0
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
  30. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
  32. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
  34. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  36. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  38. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  40. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  42. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  44. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  46. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  48. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  49. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2022 -0
  50. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  51. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +24 -0
  52. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +4 -0
  53. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.json +50 -0
  54. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  55. package/artifacts/contracts/instance/Instance.sol/Instance.json +2288 -0
  56. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  57. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +313 -0
  58. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  59. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +333 -0
  60. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  61. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.json +10 -0
  62. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +333 -0
  64. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  65. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +276 -0
  66. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  68. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +276 -0
  70. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +188 -0
  72. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +10 -0
  74. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +188 -0
  76. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +134 -0
  78. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.json +182 -0
  80. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +221 -0
  82. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.json +10 -0
  84. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +261 -0
  86. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +261 -0
  88. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +10 -0
  90. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +149 -0
  92. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +149 -0
  94. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.json +10 -0
  96. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.json +10 -0
  98. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  99. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
  100. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +538 -0
  102. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  104. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +538 -0
  106. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +519 -0
  108. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.json +300 -0
  110. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
  112. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +376 -0
  114. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +477 -0
  116. package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/IService.sol/IService.json +300 -0
  118. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +499 -0
  120. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +685 -0
  122. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.json +300 -0
  124. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  125. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +597 -0
  126. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +4 -0
  127. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +452 -0
  128. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  129. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +305 -0
  130. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  131. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  132. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  133. package/artifacts/contracts/registry/Registry.sol/Registry.json +472 -0
  134. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  135. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  136. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  137. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +24 -0
  138. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  139. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +121 -0
  140. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  141. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
  142. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +121 -0
  144. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +164 -0
  146. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  147. package/artifacts/contracts/test/TestFee.sol/TestFee.json +95 -0
  148. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  149. package/artifacts/contracts/test/TestPool.sol/TestPool.json +387 -0
  150. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  151. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +393 -0
  152. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  153. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  154. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  155. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +82 -0
  156. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  157. package/artifacts/contracts/test/TestService.sol/TestService.json +407 -0
  158. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  159. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  160. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  161. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +222 -0
  162. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +230 -0
  164. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  165. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  166. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  167. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  168. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  169. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  170. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  171. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +92 -0
  172. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  173. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  174. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  175. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  176. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  177. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  178. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  179. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +236 -0
  180. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  181. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +453 -0
  182. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/Version.sol/VersionLib.json +78 -0
  184. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  186. package/contracts/components/BaseComponent.sol +89 -0
  187. package/contracts/components/IBaseComponent.sol +19 -0
  188. package/contracts/components/IPoolComponent.sol +57 -0
  189. package/contracts/components/IProductComponent.sol +19 -0
  190. package/contracts/components/Pool.sol +174 -0
  191. package/contracts/components/Product.sol +117 -0
  192. package/contracts/experiment/errors/Require.sol +38 -0
  193. package/contracts/experiment/errors/Revert.sol +44 -0
  194. package/contracts/experiment/inheritance/A.sol +53 -0
  195. package/contracts/experiment/inheritance/B.sol +28 -0
  196. package/contracts/experiment/inheritance/C.sol +34 -0
  197. package/contracts/experiment/inheritance/IA.sol +13 -0
  198. package/contracts/experiment/inheritance/IB.sol +10 -0
  199. package/contracts/experiment/inheritance/IC.sol +12 -0
  200. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  201. package/contracts/experiment/statemachine/ISM.sol +25 -0
  202. package/contracts/experiment/statemachine/README.md +112 -0
  203. package/contracts/experiment/statemachine/SM.sol +57 -0
  204. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  205. package/contracts/experiment/types/TypeA.sol +47 -0
  206. package/contracts/experiment/types/TypeB.sol +29 -0
  207. package/contracts/instance/IInstance.sol +50 -0
  208. package/contracts/instance/IInstanceLinked.sol +8 -0
  209. package/contracts/instance/IServiceLinked.sol +12 -0
  210. package/contracts/instance/Instance.sol +62 -0
  211. package/contracts/instance/InstanceBase.sol +74 -0
  212. package/contracts/instance/module/access/Access.sol +149 -0
  213. package/contracts/instance/module/access/IAccess.sol +53 -0
  214. package/contracts/instance/module/bundle/BundleModule.sol +228 -0
  215. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  216. package/contracts/instance/module/component/ComponentModule.sol +104 -0
  217. package/contracts/instance/module/component/IComponent.sol +53 -0
  218. package/contracts/instance/module/lifecycle/ILifecycle.sol +47 -0
  219. package/contracts/instance/module/lifecycle/LifecycleModule.sol +89 -0
  220. package/contracts/instance/module/policy/IPolicy.sol +60 -0
  221. package/contracts/instance/module/policy/PolicyModule.sol +84 -0
  222. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  223. package/contracts/instance/module/pool/PoolModule.sol +87 -0
  224. package/contracts/instance/module/product/IProductModule.sol +6 -0
  225. package/contracts/instance/module/product/ProductModule.sol +8 -0
  226. package/contracts/instance/module/treasury/ITreasury.sol +104 -0
  227. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  228. package/contracts/instance/module/treasury/TreasuryModule.sol +148 -0
  229. package/contracts/instance/service/ComponentOwnerService.sol +174 -0
  230. package/contracts/instance/service/ComponentServiceBase.sol +41 -0
  231. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  232. package/contracts/instance/service/IPoolService.sol +30 -0
  233. package/contracts/instance/service/IProductService.sol +58 -0
  234. package/contracts/instance/service/IService.sol +15 -0
  235. package/contracts/instance/service/PoolService.sol +98 -0
  236. package/contracts/instance/service/ProductService.sol +358 -0
  237. package/contracts/instance/service/ServiceBase.sol +39 -0
  238. package/contracts/registry/ChainNft.sol +159 -0
  239. package/contracts/registry/IChainNft.sol +21 -0
  240. package/contracts/registry/IRegistry.sol +57 -0
  241. package/contracts/registry/IRegistryLinked.sol +8 -0
  242. package/contracts/registry/Registry.sol +381 -0
  243. package/contracts/shared/ERC165.sol +21 -0
  244. package/contracts/shared/IOwnable.sol +6 -0
  245. package/contracts/shared/IRegisterable.sol +24 -0
  246. package/contracts/shared/IVersionable.sol +52 -0
  247. package/contracts/shared/Registerable.sol +86 -0
  248. package/contracts/shared/Versionable.sol +92 -0
  249. package/contracts/test/TestFee.sol +25 -0
  250. package/contracts/test/TestPool.sol +22 -0
  251. package/contracts/test/TestProduct.sol +44 -0
  252. package/contracts/test/TestRegisterable.sol +19 -0
  253. package/contracts/test/TestRoleId.sol +14 -0
  254. package/contracts/test/TestService.sol +35 -0
  255. package/contracts/{Dip.sol → test/TestToken.sol} +5 -5
  256. package/contracts/test/TestVersion.sol +47 -0
  257. package/contracts/test/TestVersionable.sol +20 -0
  258. package/contracts/types/AddressSet.sol +58 -0
  259. package/contracts/types/Blocknumber.sol +118 -0
  260. package/contracts/types/ChainId.sol +38 -0
  261. package/contracts/types/Fee.sol +32 -0
  262. package/contracts/types/NftId.sol +57 -0
  263. package/contracts/types/NftIdSet.sol +60 -0
  264. package/contracts/types/ObjectType.sol +115 -0
  265. package/contracts/types/RoleId.sol +36 -0
  266. package/contracts/types/StateId.sol +95 -0
  267. package/contracts/types/Timestamp.sol +123 -0
  268. package/contracts/types/UFixed.sol +206 -0
  269. package/contracts/types/Version.sol +91 -0
  270. package/package.json +24 -9
  271. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  272. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  273. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  274. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  275. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,2022 @@
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": "nftId",
11
+ "type": "uint96"
12
+ },
13
+ {
14
+ "internalType": "ObjectType",
15
+ "name": "objectType",
16
+ "type": "uint8"
17
+ },
18
+ {
19
+ "internalType": "StateId",
20
+ "name": "fromStateId",
21
+ "type": "uint8"
22
+ },
23
+ {
24
+ "internalType": "StateId",
25
+ "name": "toStateId",
26
+ "type": "uint8"
27
+ }
28
+ ],
29
+ "name": "ErrorInvalidStateTransition",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "NftId",
36
+ "name": "nftId",
37
+ "type": "uint96"
38
+ },
39
+ {
40
+ "internalType": "ObjectType",
41
+ "name": "objectType",
42
+ "type": "uint8"
43
+ }
44
+ ],
45
+ "name": "ErrorNoLifecycle",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "anonymous": false,
50
+ "inputs": [
51
+ {
52
+ "indexed": false,
53
+ "internalType": "RoleId",
54
+ "name": "role",
55
+ "type": "bytes8"
56
+ },
57
+ {
58
+ "indexed": false,
59
+ "internalType": "string",
60
+ "name": "roleName",
61
+ "type": "string"
62
+ }
63
+ ],
64
+ "name": "LogAccessRoleCreated",
65
+ "type": "event"
66
+ },
67
+ {
68
+ "anonymous": false,
69
+ "inputs": [
70
+ {
71
+ "indexed": false,
72
+ "internalType": "RoleId",
73
+ "name": "role",
74
+ "type": "bytes8"
75
+ },
76
+ {
77
+ "indexed": false,
78
+ "internalType": "address",
79
+ "name": "member",
80
+ "type": "address"
81
+ },
82
+ {
83
+ "indexed": false,
84
+ "internalType": "bool",
85
+ "name": "isMember",
86
+ "type": "bool"
87
+ }
88
+ ],
89
+ "name": "LogAccessRoleGranted",
90
+ "type": "event"
91
+ },
92
+ {
93
+ "anonymous": false,
94
+ "inputs": [
95
+ {
96
+ "indexed": false,
97
+ "internalType": "RoleId",
98
+ "name": "role",
99
+ "type": "bytes8"
100
+ },
101
+ {
102
+ "indexed": false,
103
+ "internalType": "bool",
104
+ "name": "active",
105
+ "type": "bool"
106
+ }
107
+ ],
108
+ "name": "LogAccessRoleStateSet",
109
+ "type": "event"
110
+ },
111
+ {
112
+ "anonymous": false,
113
+ "inputs": [
114
+ {
115
+ "indexed": false,
116
+ "internalType": "NftId",
117
+ "name": "nftId",
118
+ "type": "uint96"
119
+ },
120
+ {
121
+ "indexed": false,
122
+ "internalType": "StateId",
123
+ "name": "fromStateId",
124
+ "type": "uint8"
125
+ },
126
+ {
127
+ "indexed": false,
128
+ "internalType": "StateId",
129
+ "name": "toStateId",
130
+ "type": "uint8"
131
+ }
132
+ ],
133
+ "name": "LogBundleStateChanged",
134
+ "type": "event"
135
+ },
136
+ {
137
+ "anonymous": false,
138
+ "inputs": [
139
+ {
140
+ "indexed": false,
141
+ "internalType": "NftId",
142
+ "name": "nftId",
143
+ "type": "uint96"
144
+ },
145
+ {
146
+ "indexed": false,
147
+ "internalType": "ObjectType",
148
+ "name": "objectType",
149
+ "type": "uint8"
150
+ },
151
+ {
152
+ "indexed": false,
153
+ "internalType": "StateId",
154
+ "name": "fromStateId",
155
+ "type": "uint8"
156
+ },
157
+ {
158
+ "indexed": false,
159
+ "internalType": "StateId",
160
+ "name": "toStateId",
161
+ "type": "uint8"
162
+ }
163
+ ],
164
+ "name": "LogComponentStateChanged",
165
+ "type": "event"
166
+ },
167
+ {
168
+ "anonymous": false,
169
+ "inputs": [
170
+ {
171
+ "indexed": false,
172
+ "internalType": "NftId",
173
+ "name": "nftId",
174
+ "type": "uint96"
175
+ },
176
+ {
177
+ "indexed": false,
178
+ "internalType": "StateId",
179
+ "name": "fromStateId",
180
+ "type": "uint8"
181
+ },
182
+ {
183
+ "indexed": false,
184
+ "internalType": "StateId",
185
+ "name": "toStateId",
186
+ "type": "uint8"
187
+ }
188
+ ],
189
+ "name": "LogPolicyStateChanged",
190
+ "type": "event"
191
+ },
192
+ {
193
+ "anonymous": false,
194
+ "inputs": [
195
+ {
196
+ "indexed": false,
197
+ "internalType": "Version",
198
+ "name": "version",
199
+ "type": "uint24"
200
+ },
201
+ {
202
+ "indexed": false,
203
+ "internalType": "address",
204
+ "name": "implementation",
205
+ "type": "address"
206
+ },
207
+ {
208
+ "indexed": false,
209
+ "internalType": "address",
210
+ "name": "activatedBy",
211
+ "type": "address"
212
+ }
213
+ ],
214
+ "name": "LogVersionableActivated",
215
+ "type": "event"
216
+ },
217
+ {
218
+ "inputs": [
219
+ {
220
+ "internalType": "address",
221
+ "name": "implementation",
222
+ "type": "address"
223
+ },
224
+ {
225
+ "internalType": "address",
226
+ "name": "activatedBy",
227
+ "type": "address"
228
+ }
229
+ ],
230
+ "name": "activate",
231
+ "outputs": [],
232
+ "stateMutability": "nonpayable",
233
+ "type": "function"
234
+ },
235
+ {
236
+ "inputs": [
237
+ {
238
+ "internalType": "NftId",
239
+ "name": "bundleNftId",
240
+ "type": "uint96"
241
+ },
242
+ {
243
+ "internalType": "NftId",
244
+ "name": "poolNftId",
245
+ "type": "uint96"
246
+ },
247
+ {
248
+ "internalType": "uint256",
249
+ "name": "amount",
250
+ "type": "uint256"
251
+ }
252
+ ],
253
+ "name": "addBundleToPool",
254
+ "outputs": [],
255
+ "stateMutability": "nonpayable",
256
+ "type": "function"
257
+ },
258
+ {
259
+ "inputs": [
260
+ {
261
+ "internalType": "uint256",
262
+ "name": "amount",
263
+ "type": "uint256"
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": "fee",
280
+ "type": "tuple"
281
+ }
282
+ ],
283
+ "name": "calculateFeeAmount",
284
+ "outputs": [
285
+ {
286
+ "internalType": "uint256",
287
+ "name": "feeAmount",
288
+ "type": "uint256"
289
+ },
290
+ {
291
+ "internalType": "uint256",
292
+ "name": "netAmount",
293
+ "type": "uint256"
294
+ }
295
+ ],
296
+ "stateMutability": "pure",
297
+ "type": "function"
298
+ },
299
+ {
300
+ "inputs": [
301
+ {
302
+ "internalType": "NftId",
303
+ "name": "bundleNftId",
304
+ "type": "uint96"
305
+ },
306
+ {
307
+ "internalType": "NftId",
308
+ "name": "policyNftId",
309
+ "type": "uint96"
310
+ },
311
+ {
312
+ "internalType": "uint256",
313
+ "name": "amount",
314
+ "type": "uint256"
315
+ }
316
+ ],
317
+ "name": "collateralizePolicy",
318
+ "outputs": [],
319
+ "stateMutability": "nonpayable",
320
+ "type": "function"
321
+ },
322
+ {
323
+ "inputs": [
324
+ {
325
+ "internalType": "NftId",
326
+ "name": "productNftId",
327
+ "type": "uint96"
328
+ },
329
+ {
330
+ "internalType": "NftId",
331
+ "name": "policyNftId",
332
+ "type": "uint96"
333
+ },
334
+ {
335
+ "internalType": "uint256",
336
+ "name": "sumInsuredAmount",
337
+ "type": "uint256"
338
+ },
339
+ {
340
+ "internalType": "uint256",
341
+ "name": "premiumAmount",
342
+ "type": "uint256"
343
+ },
344
+ {
345
+ "internalType": "uint256",
346
+ "name": "lifetime",
347
+ "type": "uint256"
348
+ },
349
+ {
350
+ "internalType": "NftId",
351
+ "name": "bundleNftId",
352
+ "type": "uint96"
353
+ }
354
+ ],
355
+ "name": "createApplication",
356
+ "outputs": [],
357
+ "stateMutability": "nonpayable",
358
+ "type": "function"
359
+ },
360
+ {
361
+ "inputs": [
362
+ {
363
+ "internalType": "NftId",
364
+ "name": "bundleNftId",
365
+ "type": "uint96"
366
+ },
367
+ {
368
+ "internalType": "NftId",
369
+ "name": "poolNftId",
370
+ "type": "uint96"
371
+ },
372
+ {
373
+ "internalType": "uint256",
374
+ "name": "amount",
375
+ "type": "uint256"
376
+ },
377
+ {
378
+ "internalType": "uint256",
379
+ "name": "lifetime",
380
+ "type": "uint256"
381
+ },
382
+ {
383
+ "internalType": "bytes",
384
+ "name": "filter",
385
+ "type": "bytes"
386
+ }
387
+ ],
388
+ "name": "createBundleInfo",
389
+ "outputs": [],
390
+ "stateMutability": "nonpayable",
391
+ "type": "function"
392
+ },
393
+ {
394
+ "inputs": [
395
+ {
396
+ "internalType": "string",
397
+ "name": "roleName",
398
+ "type": "string"
399
+ }
400
+ ],
401
+ "name": "createRole",
402
+ "outputs": [
403
+ {
404
+ "internalType": "RoleId",
405
+ "name": "role",
406
+ "type": "bytes8"
407
+ }
408
+ ],
409
+ "stateMutability": "nonpayable",
410
+ "type": "function"
411
+ },
412
+ {
413
+ "inputs": [
414
+ {
415
+ "internalType": "NftId",
416
+ "name": "poolNftId",
417
+ "type": "uint96"
418
+ }
419
+ ],
420
+ "name": "getBundleCount",
421
+ "outputs": [
422
+ {
423
+ "internalType": "uint256",
424
+ "name": "bundleCount",
425
+ "type": "uint256"
426
+ }
427
+ ],
428
+ "stateMutability": "view",
429
+ "type": "function"
430
+ },
431
+ {
432
+ "inputs": [
433
+ {
434
+ "internalType": "NftId",
435
+ "name": "bundleNftId",
436
+ "type": "uint96"
437
+ }
438
+ ],
439
+ "name": "getBundleInfo",
440
+ "outputs": [
441
+ {
442
+ "components": [
443
+ {
444
+ "internalType": "NftId",
445
+ "name": "nftId",
446
+ "type": "uint96"
447
+ },
448
+ {
449
+ "internalType": "NftId",
450
+ "name": "poolNftId",
451
+ "type": "uint96"
452
+ },
453
+ {
454
+ "internalType": "StateId",
455
+ "name": "state",
456
+ "type": "uint8"
457
+ },
458
+ {
459
+ "internalType": "bytes",
460
+ "name": "filter",
461
+ "type": "bytes"
462
+ },
463
+ {
464
+ "internalType": "uint256",
465
+ "name": "capitalAmount",
466
+ "type": "uint256"
467
+ },
468
+ {
469
+ "internalType": "uint256",
470
+ "name": "lockedAmount",
471
+ "type": "uint256"
472
+ },
473
+ {
474
+ "internalType": "uint256",
475
+ "name": "balanceAmount",
476
+ "type": "uint256"
477
+ },
478
+ {
479
+ "internalType": "Timestamp",
480
+ "name": "createdAt",
481
+ "type": "uint40"
482
+ },
483
+ {
484
+ "internalType": "Timestamp",
485
+ "name": "expiredAt",
486
+ "type": "uint40"
487
+ },
488
+ {
489
+ "internalType": "Timestamp",
490
+ "name": "closedAt",
491
+ "type": "uint40"
492
+ },
493
+ {
494
+ "internalType": "Blocknumber",
495
+ "name": "updatedIn",
496
+ "type": "uint32"
497
+ }
498
+ ],
499
+ "internalType": "struct IBundle.BundleInfo",
500
+ "name": "bundleInfo",
501
+ "type": "tuple"
502
+ }
503
+ ],
504
+ "stateMutability": "view",
505
+ "type": "function"
506
+ },
507
+ {
508
+ "inputs": [
509
+ {
510
+ "internalType": "NftId",
511
+ "name": "poolNftId",
512
+ "type": "uint96"
513
+ },
514
+ {
515
+ "internalType": "uint256",
516
+ "name": "index",
517
+ "type": "uint256"
518
+ }
519
+ ],
520
+ "name": "getBundleNftId",
521
+ "outputs": [
522
+ {
523
+ "internalType": "NftId",
524
+ "name": "bundleNftId",
525
+ "type": "uint96"
526
+ }
527
+ ],
528
+ "stateMutability": "view",
529
+ "type": "function"
530
+ },
531
+ {
532
+ "inputs": [],
533
+ "name": "getComponentCount",
534
+ "outputs": [
535
+ {
536
+ "internalType": "uint256",
537
+ "name": "numberOfCompnents",
538
+ "type": "uint256"
539
+ }
540
+ ],
541
+ "stateMutability": "view",
542
+ "type": "function"
543
+ },
544
+ {
545
+ "inputs": [
546
+ {
547
+ "internalType": "uint256",
548
+ "name": "idx",
549
+ "type": "uint256"
550
+ }
551
+ ],
552
+ "name": "getComponentId",
553
+ "outputs": [
554
+ {
555
+ "internalType": "NftId",
556
+ "name": "nftId",
557
+ "type": "uint96"
558
+ }
559
+ ],
560
+ "stateMutability": "view",
561
+ "type": "function"
562
+ },
563
+ {
564
+ "inputs": [
565
+ {
566
+ "internalType": "NftId",
567
+ "name": "nftId",
568
+ "type": "uint96"
569
+ }
570
+ ],
571
+ "name": "getComponentInfo",
572
+ "outputs": [
573
+ {
574
+ "components": [
575
+ {
576
+ "internalType": "NftId",
577
+ "name": "nftId",
578
+ "type": "uint96"
579
+ },
580
+ {
581
+ "internalType": "StateId",
582
+ "name": "state",
583
+ "type": "uint8"
584
+ },
585
+ {
586
+ "internalType": "contract IERC20Metadata",
587
+ "name": "token",
588
+ "type": "address"
589
+ }
590
+ ],
591
+ "internalType": "struct IComponent.ComponentInfo",
592
+ "name": "info",
593
+ "type": "tuple"
594
+ }
595
+ ],
596
+ "stateMutability": "view",
597
+ "type": "function"
598
+ },
599
+ {
600
+ "inputs": [],
601
+ "name": "getComponentOwnerService",
602
+ "outputs": [
603
+ {
604
+ "internalType": "contract IComponentOwnerService",
605
+ "name": "",
606
+ "type": "address"
607
+ }
608
+ ],
609
+ "stateMutability": "view",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [],
614
+ "name": "getData",
615
+ "outputs": [
616
+ {
617
+ "internalType": "bytes",
618
+ "name": "data",
619
+ "type": "bytes"
620
+ }
621
+ ],
622
+ "stateMutability": "view",
623
+ "type": "function"
624
+ },
625
+ {
626
+ "inputs": [
627
+ {
628
+ "internalType": "UFixed",
629
+ "name": "fractionalFee",
630
+ "type": "uint256"
631
+ },
632
+ {
633
+ "internalType": "uint256",
634
+ "name": "fixedFee",
635
+ "type": "uint256"
636
+ }
637
+ ],
638
+ "name": "getFee",
639
+ "outputs": [
640
+ {
641
+ "components": [
642
+ {
643
+ "internalType": "UFixed",
644
+ "name": "fractionalFee",
645
+ "type": "uint256"
646
+ },
647
+ {
648
+ "internalType": "uint256",
649
+ "name": "fixedFee",
650
+ "type": "uint256"
651
+ }
652
+ ],
653
+ "internalType": "struct Fee",
654
+ "name": "fee",
655
+ "type": "tuple"
656
+ }
657
+ ],
658
+ "stateMutability": "pure",
659
+ "type": "function"
660
+ },
661
+ {
662
+ "inputs": [
663
+ {
664
+ "internalType": "ObjectType",
665
+ "name": "objectType",
666
+ "type": "uint8"
667
+ }
668
+ ],
669
+ "name": "getInitialState",
670
+ "outputs": [
671
+ {
672
+ "internalType": "StateId",
673
+ "name": "",
674
+ "type": "uint8"
675
+ }
676
+ ],
677
+ "stateMutability": "view",
678
+ "type": "function"
679
+ },
680
+ {
681
+ "inputs": [],
682
+ "name": "getNftId",
683
+ "outputs": [
684
+ {
685
+ "internalType": "NftId",
686
+ "name": "nftId",
687
+ "type": "uint96"
688
+ }
689
+ ],
690
+ "stateMutability": "view",
691
+ "type": "function"
692
+ },
693
+ {
694
+ "inputs": [],
695
+ "name": "getOwner",
696
+ "outputs": [
697
+ {
698
+ "internalType": "address",
699
+ "name": "owner",
700
+ "type": "address"
701
+ }
702
+ ],
703
+ "stateMutability": "view",
704
+ "type": "function"
705
+ },
706
+ {
707
+ "inputs": [],
708
+ "name": "getParentNftId",
709
+ "outputs": [
710
+ {
711
+ "internalType": "NftId",
712
+ "name": "nftId",
713
+ "type": "uint96"
714
+ }
715
+ ],
716
+ "stateMutability": "view",
717
+ "type": "function"
718
+ },
719
+ {
720
+ "inputs": [
721
+ {
722
+ "internalType": "NftId",
723
+ "name": "nftId",
724
+ "type": "uint96"
725
+ }
726
+ ],
727
+ "name": "getPolicyInfo",
728
+ "outputs": [
729
+ {
730
+ "components": [
731
+ {
732
+ "internalType": "NftId",
733
+ "name": "nftId",
734
+ "type": "uint96"
735
+ },
736
+ {
737
+ "internalType": "NftId",
738
+ "name": "productNftId",
739
+ "type": "uint96"
740
+ },
741
+ {
742
+ "internalType": "NftId",
743
+ "name": "bundleNftId",
744
+ "type": "uint96"
745
+ },
746
+ {
747
+ "internalType": "address",
748
+ "name": "beneficiary",
749
+ "type": "address"
750
+ },
751
+ {
752
+ "internalType": "StateId",
753
+ "name": "state",
754
+ "type": "uint8"
755
+ },
756
+ {
757
+ "internalType": "uint256",
758
+ "name": "sumInsuredAmount",
759
+ "type": "uint256"
760
+ },
761
+ {
762
+ "internalType": "uint256",
763
+ "name": "premiumAmount",
764
+ "type": "uint256"
765
+ },
766
+ {
767
+ "internalType": "uint256",
768
+ "name": "premiumPaidAmount",
769
+ "type": "uint256"
770
+ },
771
+ {
772
+ "internalType": "uint256",
773
+ "name": "lifetime",
774
+ "type": "uint256"
775
+ },
776
+ {
777
+ "internalType": "bytes",
778
+ "name": "data",
779
+ "type": "bytes"
780
+ },
781
+ {
782
+ "internalType": "Timestamp",
783
+ "name": "createdAt",
784
+ "type": "uint40"
785
+ },
786
+ {
787
+ "internalType": "Timestamp",
788
+ "name": "activatedAt",
789
+ "type": "uint40"
790
+ },
791
+ {
792
+ "internalType": "Timestamp",
793
+ "name": "expiredAt",
794
+ "type": "uint40"
795
+ },
796
+ {
797
+ "internalType": "Timestamp",
798
+ "name": "closedAt",
799
+ "type": "uint40"
800
+ },
801
+ {
802
+ "internalType": "Blocknumber",
803
+ "name": "updatedIn",
804
+ "type": "uint32"
805
+ }
806
+ ],
807
+ "internalType": "struct IPolicy.PolicyInfo",
808
+ "name": "info",
809
+ "type": "tuple"
810
+ }
811
+ ],
812
+ "stateMutability": "view",
813
+ "type": "function"
814
+ },
815
+ {
816
+ "inputs": [
817
+ {
818
+ "internalType": "NftId",
819
+ "name": "nftId",
820
+ "type": "uint96"
821
+ }
822
+ ],
823
+ "name": "getPoolInfo",
824
+ "outputs": [
825
+ {
826
+ "components": [
827
+ {
828
+ "internalType": "NftId",
829
+ "name": "nftId",
830
+ "type": "uint96"
831
+ },
832
+ {
833
+ "internalType": "bool",
834
+ "name": "isVerifying",
835
+ "type": "bool"
836
+ },
837
+ {
838
+ "internalType": "UFixed",
839
+ "name": "collateralizationLevel",
840
+ "type": "uint256"
841
+ }
842
+ ],
843
+ "internalType": "struct IPool.PoolInfo",
844
+ "name": "info",
845
+ "type": "tuple"
846
+ }
847
+ ],
848
+ "stateMutability": "view",
849
+ "type": "function"
850
+ },
851
+ {
852
+ "inputs": [],
853
+ "name": "getPoolService",
854
+ "outputs": [
855
+ {
856
+ "internalType": "contract IPoolService",
857
+ "name": "",
858
+ "type": "address"
859
+ }
860
+ ],
861
+ "stateMutability": "view",
862
+ "type": "function"
863
+ },
864
+ {
865
+ "inputs": [
866
+ {
867
+ "internalType": "NftId",
868
+ "name": "poolNftId",
869
+ "type": "uint96"
870
+ }
871
+ ],
872
+ "name": "getPoolSetup",
873
+ "outputs": [
874
+ {
875
+ "components": [
876
+ {
877
+ "internalType": "NftId",
878
+ "name": "poolNftId",
879
+ "type": "uint96"
880
+ },
881
+ {
882
+ "internalType": "address",
883
+ "name": "wallet",
884
+ "type": "address"
885
+ },
886
+ {
887
+ "components": [
888
+ {
889
+ "internalType": "UFixed",
890
+ "name": "fractionalFee",
891
+ "type": "uint256"
892
+ },
893
+ {
894
+ "internalType": "uint256",
895
+ "name": "fixedFee",
896
+ "type": "uint256"
897
+ }
898
+ ],
899
+ "internalType": "struct Fee",
900
+ "name": "stakingFee",
901
+ "type": "tuple"
902
+ },
903
+ {
904
+ "components": [
905
+ {
906
+ "internalType": "UFixed",
907
+ "name": "fractionalFee",
908
+ "type": "uint256"
909
+ },
910
+ {
911
+ "internalType": "uint256",
912
+ "name": "fixedFee",
913
+ "type": "uint256"
914
+ }
915
+ ],
916
+ "internalType": "struct Fee",
917
+ "name": "performanceFee",
918
+ "type": "tuple"
919
+ }
920
+ ],
921
+ "internalType": "struct ITreasury.PoolSetup",
922
+ "name": "setup",
923
+ "type": "tuple"
924
+ }
925
+ ],
926
+ "stateMutability": "view",
927
+ "type": "function"
928
+ },
929
+ {
930
+ "inputs": [],
931
+ "name": "getProductService",
932
+ "outputs": [
933
+ {
934
+ "internalType": "contract IProductService",
935
+ "name": "",
936
+ "type": "address"
937
+ }
938
+ ],
939
+ "stateMutability": "view",
940
+ "type": "function"
941
+ },
942
+ {
943
+ "inputs": [
944
+ {
945
+ "internalType": "NftId",
946
+ "name": "productNftId",
947
+ "type": "uint96"
948
+ }
949
+ ],
950
+ "name": "getProductSetup",
951
+ "outputs": [
952
+ {
953
+ "components": [
954
+ {
955
+ "internalType": "NftId",
956
+ "name": "productNftId",
957
+ "type": "uint96"
958
+ },
959
+ {
960
+ "internalType": "NftId",
961
+ "name": "distributorNftId",
962
+ "type": "uint96"
963
+ },
964
+ {
965
+ "internalType": "NftId",
966
+ "name": "poolNftId",
967
+ "type": "uint96"
968
+ },
969
+ {
970
+ "internalType": "contract IERC20Metadata",
971
+ "name": "token",
972
+ "type": "address"
973
+ },
974
+ {
975
+ "internalType": "contract TokenHandler",
976
+ "name": "tokenHandler",
977
+ "type": "address"
978
+ },
979
+ {
980
+ "internalType": "address",
981
+ "name": "wallet",
982
+ "type": "address"
983
+ },
984
+ {
985
+ "components": [
986
+ {
987
+ "internalType": "UFixed",
988
+ "name": "fractionalFee",
989
+ "type": "uint256"
990
+ },
991
+ {
992
+ "internalType": "uint256",
993
+ "name": "fixedFee",
994
+ "type": "uint256"
995
+ }
996
+ ],
997
+ "internalType": "struct Fee",
998
+ "name": "policyFee",
999
+ "type": "tuple"
1000
+ },
1001
+ {
1002
+ "components": [
1003
+ {
1004
+ "internalType": "UFixed",
1005
+ "name": "fractionalFee",
1006
+ "type": "uint256"
1007
+ },
1008
+ {
1009
+ "internalType": "uint256",
1010
+ "name": "fixedFee",
1011
+ "type": "uint256"
1012
+ }
1013
+ ],
1014
+ "internalType": "struct Fee",
1015
+ "name": "processingFee",
1016
+ "type": "tuple"
1017
+ }
1018
+ ],
1019
+ "internalType": "struct ITreasury.ProductSetup",
1020
+ "name": "setup",
1021
+ "type": "tuple"
1022
+ }
1023
+ ],
1024
+ "stateMutability": "view",
1025
+ "type": "function"
1026
+ },
1027
+ {
1028
+ "inputs": [],
1029
+ "name": "getRegistry",
1030
+ "outputs": [
1031
+ {
1032
+ "internalType": "contract IRegistry",
1033
+ "name": "registry",
1034
+ "type": "address"
1035
+ }
1036
+ ],
1037
+ "stateMutability": "view",
1038
+ "type": "function"
1039
+ },
1040
+ {
1041
+ "inputs": [
1042
+ {
1043
+ "internalType": "uint256",
1044
+ "name": "idx",
1045
+ "type": "uint256"
1046
+ }
1047
+ ],
1048
+ "name": "getRole",
1049
+ "outputs": [
1050
+ {
1051
+ "internalType": "RoleId",
1052
+ "name": "role",
1053
+ "type": "bytes8"
1054
+ }
1055
+ ],
1056
+ "stateMutability": "view",
1057
+ "type": "function"
1058
+ },
1059
+ {
1060
+ "inputs": [],
1061
+ "name": "getRoleCount",
1062
+ "outputs": [
1063
+ {
1064
+ "internalType": "uint256",
1065
+ "name": "roles",
1066
+ "type": "uint256"
1067
+ }
1068
+ ],
1069
+ "stateMutability": "view",
1070
+ "type": "function"
1071
+ },
1072
+ {
1073
+ "inputs": [
1074
+ {
1075
+ "internalType": "string",
1076
+ "name": "roleName",
1077
+ "type": "string"
1078
+ }
1079
+ ],
1080
+ "name": "getRoleId",
1081
+ "outputs": [
1082
+ {
1083
+ "internalType": "RoleId",
1084
+ "name": "role",
1085
+ "type": "bytes8"
1086
+ }
1087
+ ],
1088
+ "stateMutability": "pure",
1089
+ "type": "function"
1090
+ },
1091
+ {
1092
+ "inputs": [
1093
+ {
1094
+ "internalType": "RoleId",
1095
+ "name": "role",
1096
+ "type": "bytes8"
1097
+ }
1098
+ ],
1099
+ "name": "getRoleInfo",
1100
+ "outputs": [
1101
+ {
1102
+ "components": [
1103
+ {
1104
+ "internalType": "RoleId",
1105
+ "name": "id",
1106
+ "type": "bytes8"
1107
+ },
1108
+ {
1109
+ "internalType": "string",
1110
+ "name": "name",
1111
+ "type": "string"
1112
+ },
1113
+ {
1114
+ "internalType": "bool",
1115
+ "name": "isActive",
1116
+ "type": "bool"
1117
+ }
1118
+ ],
1119
+ "internalType": "struct IAccess.RoleInfo",
1120
+ "name": "info",
1121
+ "type": "tuple"
1122
+ }
1123
+ ],
1124
+ "stateMutability": "view",
1125
+ "type": "function"
1126
+ },
1127
+ {
1128
+ "inputs": [
1129
+ {
1130
+ "internalType": "RoleId",
1131
+ "name": "role",
1132
+ "type": "bytes8"
1133
+ },
1134
+ {
1135
+ "internalType": "uint256",
1136
+ "name": "idx",
1137
+ "type": "uint256"
1138
+ }
1139
+ ],
1140
+ "name": "getRoleMember",
1141
+ "outputs": [
1142
+ {
1143
+ "internalType": "address",
1144
+ "name": "roleMember",
1145
+ "type": "address"
1146
+ }
1147
+ ],
1148
+ "stateMutability": "view",
1149
+ "type": "function"
1150
+ },
1151
+ {
1152
+ "inputs": [
1153
+ {
1154
+ "internalType": "RoleId",
1155
+ "name": "role",
1156
+ "type": "bytes8"
1157
+ }
1158
+ ],
1159
+ "name": "getRoleMemberCount",
1160
+ "outputs": [
1161
+ {
1162
+ "internalType": "uint256",
1163
+ "name": "roleMembers",
1164
+ "type": "uint256"
1165
+ }
1166
+ ],
1167
+ "stateMutability": "view",
1168
+ "type": "function"
1169
+ },
1170
+ {
1171
+ "inputs": [
1172
+ {
1173
+ "internalType": "NftId",
1174
+ "name": "productNftId",
1175
+ "type": "uint96"
1176
+ }
1177
+ ],
1178
+ "name": "getTokenHandler",
1179
+ "outputs": [
1180
+ {
1181
+ "internalType": "contract TokenHandler",
1182
+ "name": "tokenHandler",
1183
+ "type": "address"
1184
+ }
1185
+ ],
1186
+ "stateMutability": "view",
1187
+ "type": "function"
1188
+ },
1189
+ {
1190
+ "inputs": [],
1191
+ "name": "getType",
1192
+ "outputs": [
1193
+ {
1194
+ "internalType": "ObjectType",
1195
+ "name": "objectType",
1196
+ "type": "uint8"
1197
+ }
1198
+ ],
1199
+ "stateMutability": "pure",
1200
+ "type": "function"
1201
+ },
1202
+ {
1203
+ "inputs": [
1204
+ {
1205
+ "internalType": "uint256",
1206
+ "name": "a",
1207
+ "type": "uint256"
1208
+ },
1209
+ {
1210
+ "internalType": "int8",
1211
+ "name": "exp",
1212
+ "type": "int8"
1213
+ }
1214
+ ],
1215
+ "name": "getUFixed",
1216
+ "outputs": [
1217
+ {
1218
+ "internalType": "UFixed",
1219
+ "name": "",
1220
+ "type": "uint256"
1221
+ }
1222
+ ],
1223
+ "stateMutability": "pure",
1224
+ "type": "function"
1225
+ },
1226
+ {
1227
+ "inputs": [
1228
+ {
1229
+ "internalType": "uint256",
1230
+ "name": "a",
1231
+ "type": "uint256"
1232
+ }
1233
+ ],
1234
+ "name": "getUFixed",
1235
+ "outputs": [
1236
+ {
1237
+ "internalType": "UFixed",
1238
+ "name": "",
1239
+ "type": "uint256"
1240
+ }
1241
+ ],
1242
+ "stateMutability": "pure",
1243
+ "type": "function"
1244
+ },
1245
+ {
1246
+ "inputs": [],
1247
+ "name": "getVersion",
1248
+ "outputs": [
1249
+ {
1250
+ "internalType": "Version",
1251
+ "name": "",
1252
+ "type": "uint24"
1253
+ }
1254
+ ],
1255
+ "stateMutability": "pure",
1256
+ "type": "function"
1257
+ },
1258
+ {
1259
+ "inputs": [
1260
+ {
1261
+ "internalType": "uint256",
1262
+ "name": "index",
1263
+ "type": "uint256"
1264
+ }
1265
+ ],
1266
+ "name": "getVersion",
1267
+ "outputs": [
1268
+ {
1269
+ "internalType": "Version",
1270
+ "name": "version",
1271
+ "type": "uint24"
1272
+ }
1273
+ ],
1274
+ "stateMutability": "view",
1275
+ "type": "function"
1276
+ },
1277
+ {
1278
+ "inputs": [],
1279
+ "name": "getVersionCount",
1280
+ "outputs": [
1281
+ {
1282
+ "internalType": "uint256",
1283
+ "name": "numberOfVersions",
1284
+ "type": "uint256"
1285
+ }
1286
+ ],
1287
+ "stateMutability": "view",
1288
+ "type": "function"
1289
+ },
1290
+ {
1291
+ "inputs": [
1292
+ {
1293
+ "internalType": "Version",
1294
+ "name": "version",
1295
+ "type": "uint24"
1296
+ }
1297
+ ],
1298
+ "name": "getVersionInfo",
1299
+ "outputs": [
1300
+ {
1301
+ "components": [
1302
+ {
1303
+ "internalType": "Version",
1304
+ "name": "version",
1305
+ "type": "uint24"
1306
+ },
1307
+ {
1308
+ "internalType": "address",
1309
+ "name": "implementation",
1310
+ "type": "address"
1311
+ },
1312
+ {
1313
+ "internalType": "address",
1314
+ "name": "activatedBy",
1315
+ "type": "address"
1316
+ },
1317
+ {
1318
+ "internalType": "Blocknumber",
1319
+ "name": "activatedIn",
1320
+ "type": "uint32"
1321
+ },
1322
+ {
1323
+ "internalType": "Timestamp",
1324
+ "name": "activatedAt",
1325
+ "type": "uint40"
1326
+ }
1327
+ ],
1328
+ "internalType": "struct IVersionable.VersionInfo",
1329
+ "name": "versionInfo",
1330
+ "type": "tuple"
1331
+ }
1332
+ ],
1333
+ "stateMutability": "view",
1334
+ "type": "function"
1335
+ },
1336
+ {
1337
+ "inputs": [],
1338
+ "name": "getZeroFee",
1339
+ "outputs": [
1340
+ {
1341
+ "components": [
1342
+ {
1343
+ "internalType": "UFixed",
1344
+ "name": "fractionalFee",
1345
+ "type": "uint256"
1346
+ },
1347
+ {
1348
+ "internalType": "uint256",
1349
+ "name": "fixedFee",
1350
+ "type": "uint256"
1351
+ }
1352
+ ],
1353
+ "internalType": "struct Fee",
1354
+ "name": "fee",
1355
+ "type": "tuple"
1356
+ }
1357
+ ],
1358
+ "stateMutability": "pure",
1359
+ "type": "function"
1360
+ },
1361
+ {
1362
+ "inputs": [
1363
+ {
1364
+ "internalType": "RoleId",
1365
+ "name": "role",
1366
+ "type": "bytes8"
1367
+ },
1368
+ {
1369
+ "internalType": "address",
1370
+ "name": "member",
1371
+ "type": "address"
1372
+ }
1373
+ ],
1374
+ "name": "grantRole",
1375
+ "outputs": [],
1376
+ "stateMutability": "nonpayable",
1377
+ "type": "function"
1378
+ },
1379
+ {
1380
+ "inputs": [
1381
+ {
1382
+ "internalType": "RoleId",
1383
+ "name": "role",
1384
+ "type": "bytes8"
1385
+ },
1386
+ {
1387
+ "internalType": "address",
1388
+ "name": "member",
1389
+ "type": "address"
1390
+ }
1391
+ ],
1392
+ "name": "hasRole",
1393
+ "outputs": [
1394
+ {
1395
+ "internalType": "bool",
1396
+ "name": "hasRole",
1397
+ "type": "bool"
1398
+ }
1399
+ ],
1400
+ "stateMutability": "view",
1401
+ "type": "function"
1402
+ },
1403
+ {
1404
+ "inputs": [
1405
+ {
1406
+ "internalType": "Version",
1407
+ "name": "version",
1408
+ "type": "uint24"
1409
+ }
1410
+ ],
1411
+ "name": "isActivated",
1412
+ "outputs": [
1413
+ {
1414
+ "internalType": "bool",
1415
+ "name": "",
1416
+ "type": "bool"
1417
+ }
1418
+ ],
1419
+ "stateMutability": "view",
1420
+ "type": "function"
1421
+ },
1422
+ {
1423
+ "inputs": [
1424
+ {
1425
+ "internalType": "ObjectType",
1426
+ "name": "objectType",
1427
+ "type": "uint8"
1428
+ },
1429
+ {
1430
+ "internalType": "StateId",
1431
+ "name": "fromId",
1432
+ "type": "uint8"
1433
+ },
1434
+ {
1435
+ "internalType": "StateId",
1436
+ "name": "toId",
1437
+ "type": "uint8"
1438
+ }
1439
+ ],
1440
+ "name": "isValidTransition",
1441
+ "outputs": [
1442
+ {
1443
+ "internalType": "bool",
1444
+ "name": "",
1445
+ "type": "bool"
1446
+ }
1447
+ ],
1448
+ "stateMutability": "view",
1449
+ "type": "function"
1450
+ },
1451
+ {
1452
+ "inputs": [],
1453
+ "name": "register",
1454
+ "outputs": [
1455
+ {
1456
+ "internalType": "NftId",
1457
+ "name": "nftId",
1458
+ "type": "uint96"
1459
+ }
1460
+ ],
1461
+ "stateMutability": "nonpayable",
1462
+ "type": "function"
1463
+ },
1464
+ {
1465
+ "inputs": [
1466
+ {
1467
+ "internalType": "NftId",
1468
+ "name": "nftId",
1469
+ "type": "uint96"
1470
+ },
1471
+ {
1472
+ "internalType": "ObjectType",
1473
+ "name": "objectType",
1474
+ "type": "uint8"
1475
+ },
1476
+ {
1477
+ "internalType": "contract IERC20Metadata",
1478
+ "name": "token",
1479
+ "type": "address"
1480
+ }
1481
+ ],
1482
+ "name": "registerComponent",
1483
+ "outputs": [],
1484
+ "stateMutability": "nonpayable",
1485
+ "type": "function"
1486
+ },
1487
+ {
1488
+ "inputs": [
1489
+ {
1490
+ "internalType": "NftId",
1491
+ "name": "poolNftId",
1492
+ "type": "uint96"
1493
+ },
1494
+ {
1495
+ "internalType": "address",
1496
+ "name": "wallet",
1497
+ "type": "address"
1498
+ },
1499
+ {
1500
+ "components": [
1501
+ {
1502
+ "internalType": "UFixed",
1503
+ "name": "fractionalFee",
1504
+ "type": "uint256"
1505
+ },
1506
+ {
1507
+ "internalType": "uint256",
1508
+ "name": "fixedFee",
1509
+ "type": "uint256"
1510
+ }
1511
+ ],
1512
+ "internalType": "struct Fee",
1513
+ "name": "stakingFee",
1514
+ "type": "tuple"
1515
+ },
1516
+ {
1517
+ "components": [
1518
+ {
1519
+ "internalType": "UFixed",
1520
+ "name": "fractionalFee",
1521
+ "type": "uint256"
1522
+ },
1523
+ {
1524
+ "internalType": "uint256",
1525
+ "name": "fixedFee",
1526
+ "type": "uint256"
1527
+ }
1528
+ ],
1529
+ "internalType": "struct Fee",
1530
+ "name": "performanceFee",
1531
+ "type": "tuple"
1532
+ }
1533
+ ],
1534
+ "name": "registerPool",
1535
+ "outputs": [],
1536
+ "stateMutability": "nonpayable",
1537
+ "type": "function"
1538
+ },
1539
+ {
1540
+ "inputs": [
1541
+ {
1542
+ "internalType": "NftId",
1543
+ "name": "poolNftId",
1544
+ "type": "uint96"
1545
+ },
1546
+ {
1547
+ "internalType": "bool",
1548
+ "name": "isVerifying",
1549
+ "type": "bool"
1550
+ },
1551
+ {
1552
+ "internalType": "UFixed",
1553
+ "name": "collateralizationLevel",
1554
+ "type": "uint256"
1555
+ }
1556
+ ],
1557
+ "name": "registerPool",
1558
+ "outputs": [],
1559
+ "stateMutability": "nonpayable",
1560
+ "type": "function"
1561
+ },
1562
+ {
1563
+ "inputs": [
1564
+ {
1565
+ "internalType": "NftId",
1566
+ "name": "productNftId",
1567
+ "type": "uint96"
1568
+ },
1569
+ {
1570
+ "internalType": "NftId",
1571
+ "name": "distributorNftId",
1572
+ "type": "uint96"
1573
+ },
1574
+ {
1575
+ "internalType": "NftId",
1576
+ "name": "poolNftId",
1577
+ "type": "uint96"
1578
+ },
1579
+ {
1580
+ "internalType": "contract IERC20Metadata",
1581
+ "name": "token",
1582
+ "type": "address"
1583
+ },
1584
+ {
1585
+ "internalType": "address",
1586
+ "name": "wallet",
1587
+ "type": "address"
1588
+ },
1589
+ {
1590
+ "components": [
1591
+ {
1592
+ "internalType": "UFixed",
1593
+ "name": "fractionalFee",
1594
+ "type": "uint256"
1595
+ },
1596
+ {
1597
+ "internalType": "uint256",
1598
+ "name": "fixedFee",
1599
+ "type": "uint256"
1600
+ }
1601
+ ],
1602
+ "internalType": "struct Fee",
1603
+ "name": "policyFee",
1604
+ "type": "tuple"
1605
+ },
1606
+ {
1607
+ "components": [
1608
+ {
1609
+ "internalType": "UFixed",
1610
+ "name": "fractionalFee",
1611
+ "type": "uint256"
1612
+ },
1613
+ {
1614
+ "internalType": "uint256",
1615
+ "name": "fixedFee",
1616
+ "type": "uint256"
1617
+ }
1618
+ ],
1619
+ "internalType": "struct Fee",
1620
+ "name": "processingFee",
1621
+ "type": "tuple"
1622
+ }
1623
+ ],
1624
+ "name": "registerProduct",
1625
+ "outputs": [],
1626
+ "stateMutability": "nonpayable",
1627
+ "type": "function"
1628
+ },
1629
+ {
1630
+ "inputs": [
1631
+ {
1632
+ "internalType": "NftId",
1633
+ "name": "bundleNftId",
1634
+ "type": "uint96"
1635
+ },
1636
+ {
1637
+ "internalType": "NftId",
1638
+ "name": "policyNftId",
1639
+ "type": "uint96"
1640
+ }
1641
+ ],
1642
+ "name": "releasePolicy",
1643
+ "outputs": [
1644
+ {
1645
+ "internalType": "uint256",
1646
+ "name": "collateralAmount",
1647
+ "type": "uint256"
1648
+ }
1649
+ ],
1650
+ "stateMutability": "nonpayable",
1651
+ "type": "function"
1652
+ },
1653
+ {
1654
+ "inputs": [
1655
+ {
1656
+ "internalType": "RoleId",
1657
+ "name": "role",
1658
+ "type": "bytes8"
1659
+ },
1660
+ {
1661
+ "internalType": "address",
1662
+ "name": "member",
1663
+ "type": "address"
1664
+ }
1665
+ ],
1666
+ "name": "revokeRole",
1667
+ "outputs": [],
1668
+ "stateMutability": "nonpayable",
1669
+ "type": "function"
1670
+ },
1671
+ {
1672
+ "inputs": [
1673
+ {
1674
+ "internalType": "RoleId",
1675
+ "name": "role",
1676
+ "type": "bytes8"
1677
+ }
1678
+ ],
1679
+ "name": "roleExists",
1680
+ "outputs": [
1681
+ {
1682
+ "internalType": "bool",
1683
+ "name": "",
1684
+ "type": "bool"
1685
+ }
1686
+ ],
1687
+ "stateMutability": "view",
1688
+ "type": "function"
1689
+ },
1690
+ {
1691
+ "inputs": [
1692
+ {
1693
+ "components": [
1694
+ {
1695
+ "internalType": "NftId",
1696
+ "name": "nftId",
1697
+ "type": "uint96"
1698
+ },
1699
+ {
1700
+ "internalType": "NftId",
1701
+ "name": "poolNftId",
1702
+ "type": "uint96"
1703
+ },
1704
+ {
1705
+ "internalType": "StateId",
1706
+ "name": "state",
1707
+ "type": "uint8"
1708
+ },
1709
+ {
1710
+ "internalType": "bytes",
1711
+ "name": "filter",
1712
+ "type": "bytes"
1713
+ },
1714
+ {
1715
+ "internalType": "uint256",
1716
+ "name": "capitalAmount",
1717
+ "type": "uint256"
1718
+ },
1719
+ {
1720
+ "internalType": "uint256",
1721
+ "name": "lockedAmount",
1722
+ "type": "uint256"
1723
+ },
1724
+ {
1725
+ "internalType": "uint256",
1726
+ "name": "balanceAmount",
1727
+ "type": "uint256"
1728
+ },
1729
+ {
1730
+ "internalType": "Timestamp",
1731
+ "name": "createdAt",
1732
+ "type": "uint40"
1733
+ },
1734
+ {
1735
+ "internalType": "Timestamp",
1736
+ "name": "expiredAt",
1737
+ "type": "uint40"
1738
+ },
1739
+ {
1740
+ "internalType": "Timestamp",
1741
+ "name": "closedAt",
1742
+ "type": "uint40"
1743
+ },
1744
+ {
1745
+ "internalType": "Blocknumber",
1746
+ "name": "updatedIn",
1747
+ "type": "uint32"
1748
+ }
1749
+ ],
1750
+ "internalType": "struct IBundle.BundleInfo",
1751
+ "name": "bundleInfo",
1752
+ "type": "tuple"
1753
+ }
1754
+ ],
1755
+ "name": "setBundleInfo",
1756
+ "outputs": [],
1757
+ "stateMutability": "nonpayable",
1758
+ "type": "function"
1759
+ },
1760
+ {
1761
+ "inputs": [
1762
+ {
1763
+ "components": [
1764
+ {
1765
+ "internalType": "NftId",
1766
+ "name": "nftId",
1767
+ "type": "uint96"
1768
+ },
1769
+ {
1770
+ "internalType": "StateId",
1771
+ "name": "state",
1772
+ "type": "uint8"
1773
+ },
1774
+ {
1775
+ "internalType": "contract IERC20Metadata",
1776
+ "name": "token",
1777
+ "type": "address"
1778
+ }
1779
+ ],
1780
+ "internalType": "struct IComponent.ComponentInfo",
1781
+ "name": "info",
1782
+ "type": "tuple"
1783
+ }
1784
+ ],
1785
+ "name": "setComponentInfo",
1786
+ "outputs": [
1787
+ {
1788
+ "internalType": "NftId",
1789
+ "name": "componentNftId",
1790
+ "type": "uint96"
1791
+ }
1792
+ ],
1793
+ "stateMutability": "nonpayable",
1794
+ "type": "function"
1795
+ },
1796
+ {
1797
+ "inputs": [
1798
+ {
1799
+ "components": [
1800
+ {
1801
+ "internalType": "NftId",
1802
+ "name": "nftId",
1803
+ "type": "uint96"
1804
+ },
1805
+ {
1806
+ "internalType": "NftId",
1807
+ "name": "productNftId",
1808
+ "type": "uint96"
1809
+ },
1810
+ {
1811
+ "internalType": "NftId",
1812
+ "name": "bundleNftId",
1813
+ "type": "uint96"
1814
+ },
1815
+ {
1816
+ "internalType": "address",
1817
+ "name": "beneficiary",
1818
+ "type": "address"
1819
+ },
1820
+ {
1821
+ "internalType": "StateId",
1822
+ "name": "state",
1823
+ "type": "uint8"
1824
+ },
1825
+ {
1826
+ "internalType": "uint256",
1827
+ "name": "sumInsuredAmount",
1828
+ "type": "uint256"
1829
+ },
1830
+ {
1831
+ "internalType": "uint256",
1832
+ "name": "premiumAmount",
1833
+ "type": "uint256"
1834
+ },
1835
+ {
1836
+ "internalType": "uint256",
1837
+ "name": "premiumPaidAmount",
1838
+ "type": "uint256"
1839
+ },
1840
+ {
1841
+ "internalType": "uint256",
1842
+ "name": "lifetime",
1843
+ "type": "uint256"
1844
+ },
1845
+ {
1846
+ "internalType": "bytes",
1847
+ "name": "data",
1848
+ "type": "bytes"
1849
+ },
1850
+ {
1851
+ "internalType": "Timestamp",
1852
+ "name": "createdAt",
1853
+ "type": "uint40"
1854
+ },
1855
+ {
1856
+ "internalType": "Timestamp",
1857
+ "name": "activatedAt",
1858
+ "type": "uint40"
1859
+ },
1860
+ {
1861
+ "internalType": "Timestamp",
1862
+ "name": "expiredAt",
1863
+ "type": "uint40"
1864
+ },
1865
+ {
1866
+ "internalType": "Timestamp",
1867
+ "name": "closedAt",
1868
+ "type": "uint40"
1869
+ },
1870
+ {
1871
+ "internalType": "Blocknumber",
1872
+ "name": "updatedIn",
1873
+ "type": "uint32"
1874
+ }
1875
+ ],
1876
+ "internalType": "struct IPolicy.PolicyInfo",
1877
+ "name": "policyInfo",
1878
+ "type": "tuple"
1879
+ }
1880
+ ],
1881
+ "name": "setPolicyInfo",
1882
+ "outputs": [],
1883
+ "stateMutability": "nonpayable",
1884
+ "type": "function"
1885
+ },
1886
+ {
1887
+ "inputs": [
1888
+ {
1889
+ "internalType": "NftId",
1890
+ "name": "poolNftId",
1891
+ "type": "uint96"
1892
+ },
1893
+ {
1894
+ "components": [
1895
+ {
1896
+ "internalType": "UFixed",
1897
+ "name": "fractionalFee",
1898
+ "type": "uint256"
1899
+ },
1900
+ {
1901
+ "internalType": "uint256",
1902
+ "name": "fixedFee",
1903
+ "type": "uint256"
1904
+ }
1905
+ ],
1906
+ "internalType": "struct Fee",
1907
+ "name": "stakingFee",
1908
+ "type": "tuple"
1909
+ },
1910
+ {
1911
+ "components": [
1912
+ {
1913
+ "internalType": "UFixed",
1914
+ "name": "fractionalFee",
1915
+ "type": "uint256"
1916
+ },
1917
+ {
1918
+ "internalType": "uint256",
1919
+ "name": "fixedFee",
1920
+ "type": "uint256"
1921
+ }
1922
+ ],
1923
+ "internalType": "struct Fee",
1924
+ "name": "performanceFee",
1925
+ "type": "tuple"
1926
+ }
1927
+ ],
1928
+ "name": "setPoolFees",
1929
+ "outputs": [],
1930
+ "stateMutability": "nonpayable",
1931
+ "type": "function"
1932
+ },
1933
+ {
1934
+ "inputs": [
1935
+ {
1936
+ "internalType": "NftId",
1937
+ "name": "productNftId",
1938
+ "type": "uint96"
1939
+ },
1940
+ {
1941
+ "components": [
1942
+ {
1943
+ "internalType": "UFixed",
1944
+ "name": "fractionalFee",
1945
+ "type": "uint256"
1946
+ },
1947
+ {
1948
+ "internalType": "uint256",
1949
+ "name": "fixedFee",
1950
+ "type": "uint256"
1951
+ }
1952
+ ],
1953
+ "internalType": "struct Fee",
1954
+ "name": "policyFee",
1955
+ "type": "tuple"
1956
+ },
1957
+ {
1958
+ "components": [
1959
+ {
1960
+ "internalType": "UFixed",
1961
+ "name": "fractionalFee",
1962
+ "type": "uint256"
1963
+ },
1964
+ {
1965
+ "internalType": "uint256",
1966
+ "name": "fixedFee",
1967
+ "type": "uint256"
1968
+ }
1969
+ ],
1970
+ "internalType": "struct Fee",
1971
+ "name": "processingFee",
1972
+ "type": "tuple"
1973
+ }
1974
+ ],
1975
+ "name": "setProductFees",
1976
+ "outputs": [],
1977
+ "stateMutability": "nonpayable",
1978
+ "type": "function"
1979
+ },
1980
+ {
1981
+ "inputs": [
1982
+ {
1983
+ "internalType": "RoleId",
1984
+ "name": "role",
1985
+ "type": "bytes8"
1986
+ },
1987
+ {
1988
+ "internalType": "bool",
1989
+ "name": "active",
1990
+ "type": "bool"
1991
+ }
1992
+ ],
1993
+ "name": "setRoleState",
1994
+ "outputs": [],
1995
+ "stateMutability": "nonpayable",
1996
+ "type": "function"
1997
+ },
1998
+ {
1999
+ "inputs": [
2000
+ {
2001
+ "internalType": "bytes4",
2002
+ "name": "interfaceId",
2003
+ "type": "bytes4"
2004
+ }
2005
+ ],
2006
+ "name": "supportsInterface",
2007
+ "outputs": [
2008
+ {
2009
+ "internalType": "bool",
2010
+ "name": "",
2011
+ "type": "bool"
2012
+ }
2013
+ ],
2014
+ "stateMutability": "view",
2015
+ "type": "function"
2016
+ }
2017
+ ],
2018
+ "bytecode": "0x",
2019
+ "deployedBytecode": "0x",
2020
+ "linkReferences": {},
2021
+ "deployedLinkReferences": {}
2022
+ }