@etherisc/gif-next 0.0.2-efdb520-159 → 0.0.2-f0d86c2-077

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  2. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  4. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  5. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  6. package/artifacts/contracts/components/Pool.sol/Pool.json +2 -2
  7. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  8. package/artifacts/contracts/components/Product.sol/Product.json +2 -2
  9. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  10. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  11. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  12. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  13. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  14. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  15. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  16. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  21. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  25. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  27. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  29. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  30. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +48 -204
  31. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
  32. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  33. package/artifacts/contracts/instance/Instance.sol/Instance.json +211 -303
  34. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  35. package/artifacts/contracts/instance/{service → base}/ComponentServiceBase.sol/ComponentServiceBase.json +6 -6
  36. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  37. package/artifacts/contracts/instance/{IServiceLinked.sol/IServiceLinked.json → base/IInstanceBase.sol/IInstanceBase.json} +15 -2
  38. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +511 -0
  40. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  41. package/artifacts/contracts/instance/{module/lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  42. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  43. package/artifacts/contracts/instance/{service → base}/IService.sol/IService.json +6 -6
  44. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  45. package/artifacts/contracts/instance/{InstanceBase.sol → base/InstanceBase.sol}/InstanceBase.json +19 -6
  46. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +692 -0
  48. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  50. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{module/product/ProductModule.sol/ProductModule.json → base/ModuleBase.sol/ModuleBase.json} +2 -2
  52. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{service → base}/ServiceBase.sol/ServiceBase.json +6 -6
  54. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
  55. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
  56. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
  58. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +50 -30
  59. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
  60. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
  61. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +50 -30
  62. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +10 -0
  64. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +4 -0
  65. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +10 -0
  66. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +10 -0
  68. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
  74. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
  75. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
  77. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  78. package/artifacts/contracts/instance/module/{product/IProductModule.sol/IProductModule.json → risk/IRisk.sol/IRisk.json} +2 -2
  79. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  80. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +10 -0
  81. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  82. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +10 -0
  83. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
  84. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +1 -6
  86. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
  88. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +1 -6
  90. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +48 -44
  92. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +5 -5
  94. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +5 -5
  96. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +5 -5
  98. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +18 -46
  100. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  101. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +47 -59
  102. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  103. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  104. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  105. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  106. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  107. package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
  108. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  109. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
  110. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  111. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  112. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +5 -5
  113. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  114. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  115. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +5 -5
  116. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  117. package/artifacts/contracts/test/TestFee.sol/TestFee.json +28 -4
  118. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
  119. package/artifacts/contracts/test/TestPool.sol/TestPool.json +2 -2
  120. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
  121. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +2 -2
  122. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  123. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
  124. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  125. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +38 -4
  126. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  127. package/artifacts/contracts/test/TestService.sol/TestService.json +15 -43
  128. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  129. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  130. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +14 -18
  131. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  132. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +15 -39
  133. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  134. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  135. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  136. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  137. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  138. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  139. package/artifacts/contracts/types/Fee.sol/FeeLib.json +218 -0
  140. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  141. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  142. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  143. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  144. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  145. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  146. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  147. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  148. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  149. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  150. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  151. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  152. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  153. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +34 -8
  154. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/Version.sol/VersionLib.json +63 -2
  156. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  157. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  158. package/contracts/components/BaseComponent.sol +0 -1
  159. package/contracts/instance/IInstance.sol +13 -11
  160. package/contracts/instance/Instance.sol +13 -7
  161. package/contracts/instance/{service → base}/ComponentServiceBase.sol +1 -0
  162. package/contracts/instance/base/IInstanceBase.sol +14 -0
  163. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  164. package/contracts/instance/base/ILifecycle.sol +30 -0
  165. package/contracts/instance/{InstanceBase.sol → base/InstanceBase.sol} +21 -15
  166. package/contracts/instance/base/KeyValueStore.sol +156 -0
  167. package/contracts/instance/{module/lifecycle/LifecycleModule.sol → base/Lifecycle.sol} +36 -30
  168. package/contracts/instance/base/ModuleBase.sol +52 -0
  169. package/contracts/instance/{service → base}/ServiceBase.sol +1 -3
  170. package/contracts/instance/module/access/Access.sol +3 -3
  171. package/contracts/instance/module/bundle/BundleModule.sol +24 -116
  172. package/contracts/instance/module/bundle/IBundle.sol +8 -3
  173. package/contracts/instance/module/compensation/CompensationModule.sol +8 -0
  174. package/contracts/instance/module/compensation/ICompensation.sol +10 -0
  175. package/contracts/instance/module/component/ComponentModule.sol +10 -19
  176. package/contracts/instance/module/policy/PolicyModule.sol +2 -10
  177. package/contracts/instance/module/{product/IProductModule.sol → risk/IRisk.sol} +6 -2
  178. package/contracts/instance/module/risk/RiskModule.sol +8 -0
  179. package/contracts/instance/module/treasury/ITreasury.sol +2 -3
  180. package/contracts/instance/module/treasury/TreasuryModule.sol +15 -11
  181. package/contracts/instance/service/ComponentOwnerService.sol +4 -8
  182. package/contracts/instance/service/IComponentOwnerService.sol +1 -1
  183. package/contracts/instance/service/IPoolService.sol +1 -1
  184. package/contracts/instance/service/IProductService.sol +1 -1
  185. package/contracts/instance/service/PoolService.sol +36 -11
  186. package/contracts/instance/service/ProductService.sol +6 -10
  187. package/contracts/registry/Registry.sol +1 -1
  188. package/contracts/shared/IVersionable.sol +2 -2
  189. package/contracts/shared/Versionable.sol +3 -6
  190. package/contracts/test/TestFee.sol +3 -3
  191. package/contracts/test/TestPool.sol +1 -1
  192. package/contracts/test/TestProduct.sol +1 -1
  193. package/contracts/test/TestRoleId.sol +2 -2
  194. package/contracts/test/TestService.sol +3 -6
  195. package/contracts/test/TestVersion.sol +4 -7
  196. package/contracts/test/TestVersionable.sol +2 -5
  197. package/contracts/test/Usdc.sol +26 -0
  198. package/contracts/types/Fee.sol +39 -20
  199. package/contracts/types/Key32.sol +45 -0
  200. package/contracts/types/NftId.sol +16 -1
  201. package/contracts/types/RoleId.sol +11 -9
  202. package/contracts/types/StateId.sol +7 -1
  203. package/contracts/types/UFixed.sol +19 -16
  204. package/contracts/types/Version.sol +29 -25
  205. package/package.json +1 -1
  206. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +0 -4
  207. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  208. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  209. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  210. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  211. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  212. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  213. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.dbg.json +0 -4
  214. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.dbg.json +0 -4
  215. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  216. package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +0 -4
  217. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  218. package/contracts/instance/IServiceLinked.sol +0 -12
  219. package/contracts/instance/module/lifecycle/ILifecycle.sol +0 -47
  220. package/contracts/instance/module/product/ProductModule.sol +0 -8
  221. /package/contracts/instance/{service → base}/IService.sol +0 -0
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_format": "hh-sol-artifact-1",
3
3
  "contractName": "ComponentServiceBase",
4
- "sourceName": "contracts/instance/service/ComponentServiceBase.sol",
4
+ "sourceName": "contracts/instance/base/ComponentServiceBase.sol",
5
5
  "abi": [
6
6
  {
7
7
  "anonymous": false,
@@ -222,15 +222,15 @@
222
222
  "name": "activatedBy",
223
223
  "type": "address"
224
224
  },
225
- {
226
- "internalType": "Blocknumber",
227
- "name": "activatedIn",
228
- "type": "uint32"
229
- },
230
225
  {
231
226
  "internalType": "Timestamp",
232
227
  "name": "activatedAt",
233
228
  "type": "uint40"
229
+ },
230
+ {
231
+ "internalType": "Blocknumber",
232
+ "name": "activatedIn",
233
+ "type": "uint32"
234
234
  }
235
235
  ],
236
236
  "internalType": "struct IVersionable.VersionInfo",
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_format": "hh-sol-artifact-1",
3
- "contractName": "IServiceLinked",
4
- "sourceName": "contracts/instance/IServiceLinked.sol",
3
+ "contractName": "IInstanceBase",
4
+ "sourceName": "contracts/instance/base/IInstanceBase.sol",
5
5
  "abi": [
6
6
  {
7
7
  "inputs": [],
@@ -16,6 +16,19 @@
16
16
  "stateMutability": "view",
17
17
  "type": "function"
18
18
  },
19
+ {
20
+ "inputs": [],
21
+ "name": "getKeyValueStore",
22
+ "outputs": [
23
+ {
24
+ "internalType": "contract IKeyValueStore",
25
+ "name": "keyValueStore",
26
+ "type": "address"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
19
32
  {
20
33
  "inputs": [],
21
34
  "name": "getPoolService",
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }
@@ -0,0 +1,511 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IKeyValueStore",
4
+ "sourceName": "contracts/instance/base/IKeyValueStore.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "ObjectType",
10
+ "name": "objectType",
11
+ "type": "uint8"
12
+ },
13
+ {
14
+ "internalType": "StateId",
15
+ "name": "fromStateId",
16
+ "type": "uint8"
17
+ },
18
+ {
19
+ "internalType": "StateId",
20
+ "name": "toStateId",
21
+ "type": "uint8"
22
+ }
23
+ ],
24
+ "name": "ErrorInvalidStateTransition",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "inputs": [
29
+ {
30
+ "internalType": "NftId",
31
+ "name": "nftId",
32
+ "type": "uint96"
33
+ },
34
+ {
35
+ "internalType": "ObjectType",
36
+ "name": "objectType",
37
+ "type": "uint8"
38
+ }
39
+ ],
40
+ "name": "ErrorNoLifecycle",
41
+ "type": "error"
42
+ },
43
+ {
44
+ "anonymous": false,
45
+ "inputs": [
46
+ {
47
+ "components": [
48
+ {
49
+ "internalType": "ObjectType",
50
+ "name": "objectType",
51
+ "type": "uint8"
52
+ },
53
+ {
54
+ "internalType": "KeyId",
55
+ "name": "id",
56
+ "type": "bytes31"
57
+ }
58
+ ],
59
+ "indexed": false,
60
+ "internalType": "struct IKeyValueStore.Key",
61
+ "name": "key",
62
+ "type": "tuple"
63
+ },
64
+ {
65
+ "indexed": false,
66
+ "internalType": "StateId",
67
+ "name": "state",
68
+ "type": "uint8"
69
+ },
70
+ {
71
+ "indexed": false,
72
+ "internalType": "address",
73
+ "name": "createdBy",
74
+ "type": "address"
75
+ }
76
+ ],
77
+ "name": "LogInfoCreated",
78
+ "type": "event"
79
+ },
80
+ {
81
+ "anonymous": false,
82
+ "inputs": [
83
+ {
84
+ "components": [
85
+ {
86
+ "internalType": "ObjectType",
87
+ "name": "objectType",
88
+ "type": "uint8"
89
+ },
90
+ {
91
+ "internalType": "KeyId",
92
+ "name": "id",
93
+ "type": "bytes31"
94
+ }
95
+ ],
96
+ "indexed": false,
97
+ "internalType": "struct IKeyValueStore.Key",
98
+ "name": "key",
99
+ "type": "tuple"
100
+ },
101
+ {
102
+ "indexed": false,
103
+ "internalType": "StateId",
104
+ "name": "state",
105
+ "type": "uint8"
106
+ },
107
+ {
108
+ "indexed": false,
109
+ "internalType": "address",
110
+ "name": "updatedBy",
111
+ "type": "address"
112
+ },
113
+ {
114
+ "indexed": false,
115
+ "internalType": "Blocknumber",
116
+ "name": "lastUpdatedIn",
117
+ "type": "uint32"
118
+ }
119
+ ],
120
+ "name": "LogInfoUpdated",
121
+ "type": "event"
122
+ },
123
+ {
124
+ "anonymous": false,
125
+ "inputs": [
126
+ {
127
+ "components": [
128
+ {
129
+ "internalType": "ObjectType",
130
+ "name": "objectType",
131
+ "type": "uint8"
132
+ },
133
+ {
134
+ "internalType": "KeyId",
135
+ "name": "id",
136
+ "type": "bytes31"
137
+ }
138
+ ],
139
+ "indexed": false,
140
+ "internalType": "struct IKeyValueStore.Key",
141
+ "name": "key",
142
+ "type": "tuple"
143
+ },
144
+ {
145
+ "indexed": false,
146
+ "internalType": "StateId",
147
+ "name": "stateOld",
148
+ "type": "uint8"
149
+ },
150
+ {
151
+ "indexed": false,
152
+ "internalType": "StateId",
153
+ "name": "stateNew",
154
+ "type": "uint8"
155
+ },
156
+ {
157
+ "indexed": false,
158
+ "internalType": "address",
159
+ "name": "updatedBy",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "indexed": false,
164
+ "internalType": "Blocknumber",
165
+ "name": "lastUpdatedIn",
166
+ "type": "uint32"
167
+ }
168
+ ],
169
+ "name": "LogStateUpdated",
170
+ "type": "event"
171
+ },
172
+ {
173
+ "inputs": [
174
+ {
175
+ "internalType": "Key32",
176
+ "name": "key",
177
+ "type": "bytes32"
178
+ },
179
+ {
180
+ "internalType": "ObjectType",
181
+ "name": "objectType",
182
+ "type": "uint8"
183
+ },
184
+ {
185
+ "internalType": "bytes",
186
+ "name": "data",
187
+ "type": "bytes"
188
+ }
189
+ ],
190
+ "name": "create",
191
+ "outputs": [],
192
+ "stateMutability": "nonpayable",
193
+ "type": "function"
194
+ },
195
+ {
196
+ "inputs": [
197
+ {
198
+ "internalType": "Key32",
199
+ "name": "key",
200
+ "type": "bytes32"
201
+ }
202
+ ],
203
+ "name": "exists",
204
+ "outputs": [
205
+ {
206
+ "internalType": "bool",
207
+ "name": "",
208
+ "type": "bool"
209
+ }
210
+ ],
211
+ "stateMutability": "view",
212
+ "type": "function"
213
+ },
214
+ {
215
+ "inputs": [
216
+ {
217
+ "internalType": "Key32",
218
+ "name": "key",
219
+ "type": "bytes32"
220
+ }
221
+ ],
222
+ "name": "get",
223
+ "outputs": [
224
+ {
225
+ "components": [
226
+ {
227
+ "components": [
228
+ {
229
+ "internalType": "ObjectType",
230
+ "name": "objectType",
231
+ "type": "uint8"
232
+ },
233
+ {
234
+ "internalType": "StateId",
235
+ "name": "state",
236
+ "type": "uint8"
237
+ },
238
+ {
239
+ "internalType": "address",
240
+ "name": "updatedBy",
241
+ "type": "address"
242
+ },
243
+ {
244
+ "internalType": "Blocknumber",
245
+ "name": "updatedIn",
246
+ "type": "uint32"
247
+ },
248
+ {
249
+ "internalType": "Blocknumber",
250
+ "name": "createdIn",
251
+ "type": "uint32"
252
+ }
253
+ ],
254
+ "internalType": "struct IKeyValueStore.Metadata",
255
+ "name": "metadata",
256
+ "type": "tuple"
257
+ },
258
+ {
259
+ "internalType": "bytes",
260
+ "name": "data",
261
+ "type": "bytes"
262
+ }
263
+ ],
264
+ "internalType": "struct IKeyValueStore.Value",
265
+ "name": "value",
266
+ "type": "tuple"
267
+ }
268
+ ],
269
+ "stateMutability": "view",
270
+ "type": "function"
271
+ },
272
+ {
273
+ "inputs": [
274
+ {
275
+ "internalType": "Key32",
276
+ "name": "key",
277
+ "type": "bytes32"
278
+ }
279
+ ],
280
+ "name": "getData",
281
+ "outputs": [
282
+ {
283
+ "internalType": "bytes",
284
+ "name": "data",
285
+ "type": "bytes"
286
+ }
287
+ ],
288
+ "stateMutability": "view",
289
+ "type": "function"
290
+ },
291
+ {
292
+ "inputs": [
293
+ {
294
+ "internalType": "ObjectType",
295
+ "name": "objectType",
296
+ "type": "uint8"
297
+ }
298
+ ],
299
+ "name": "getInitialState",
300
+ "outputs": [
301
+ {
302
+ "internalType": "StateId",
303
+ "name": "",
304
+ "type": "uint8"
305
+ }
306
+ ],
307
+ "stateMutability": "view",
308
+ "type": "function"
309
+ },
310
+ {
311
+ "inputs": [
312
+ {
313
+ "internalType": "Key32",
314
+ "name": "key",
315
+ "type": "bytes32"
316
+ }
317
+ ],
318
+ "name": "getMetadata",
319
+ "outputs": [
320
+ {
321
+ "components": [
322
+ {
323
+ "internalType": "ObjectType",
324
+ "name": "objectType",
325
+ "type": "uint8"
326
+ },
327
+ {
328
+ "internalType": "StateId",
329
+ "name": "state",
330
+ "type": "uint8"
331
+ },
332
+ {
333
+ "internalType": "address",
334
+ "name": "updatedBy",
335
+ "type": "address"
336
+ },
337
+ {
338
+ "internalType": "Blocknumber",
339
+ "name": "updatedIn",
340
+ "type": "uint32"
341
+ },
342
+ {
343
+ "internalType": "Blocknumber",
344
+ "name": "createdIn",
345
+ "type": "uint32"
346
+ }
347
+ ],
348
+ "internalType": "struct IKeyValueStore.Metadata",
349
+ "name": "metadata",
350
+ "type": "tuple"
351
+ }
352
+ ],
353
+ "stateMutability": "view",
354
+ "type": "function"
355
+ },
356
+ {
357
+ "inputs": [
358
+ {
359
+ "internalType": "Key32",
360
+ "name": "key",
361
+ "type": "bytes32"
362
+ }
363
+ ],
364
+ "name": "getState",
365
+ "outputs": [
366
+ {
367
+ "internalType": "StateId",
368
+ "name": "state",
369
+ "type": "uint8"
370
+ }
371
+ ],
372
+ "stateMutability": "view",
373
+ "type": "function"
374
+ },
375
+ {
376
+ "inputs": [
377
+ {
378
+ "internalType": "ObjectType",
379
+ "name": "objectType",
380
+ "type": "uint8"
381
+ }
382
+ ],
383
+ "name": "hasLifecycle",
384
+ "outputs": [
385
+ {
386
+ "internalType": "bool",
387
+ "name": "",
388
+ "type": "bool"
389
+ }
390
+ ],
391
+ "stateMutability": "view",
392
+ "type": "function"
393
+ },
394
+ {
395
+ "inputs": [
396
+ {
397
+ "internalType": "ObjectType",
398
+ "name": "objectType",
399
+ "type": "uint8"
400
+ },
401
+ {
402
+ "internalType": "StateId",
403
+ "name": "fromId",
404
+ "type": "uint8"
405
+ },
406
+ {
407
+ "internalType": "StateId",
408
+ "name": "toId",
409
+ "type": "uint8"
410
+ }
411
+ ],
412
+ "name": "isValidTransition",
413
+ "outputs": [
414
+ {
415
+ "internalType": "bool",
416
+ "name": "",
417
+ "type": "bool"
418
+ }
419
+ ],
420
+ "stateMutability": "view",
421
+ "type": "function"
422
+ },
423
+ {
424
+ "inputs": [
425
+ {
426
+ "internalType": "ObjectType",
427
+ "name": "objectType",
428
+ "type": "uint8"
429
+ },
430
+ {
431
+ "internalType": "KeyId",
432
+ "name": "id",
433
+ "type": "bytes31"
434
+ }
435
+ ],
436
+ "name": "toKey32",
437
+ "outputs": [
438
+ {
439
+ "internalType": "Key32",
440
+ "name": "",
441
+ "type": "bytes32"
442
+ }
443
+ ],
444
+ "stateMutability": "pure",
445
+ "type": "function"
446
+ },
447
+ {
448
+ "inputs": [
449
+ {
450
+ "internalType": "Key32",
451
+ "name": "key",
452
+ "type": "bytes32"
453
+ },
454
+ {
455
+ "internalType": "StateId",
456
+ "name": "state",
457
+ "type": "uint8"
458
+ },
459
+ {
460
+ "internalType": "bytes",
461
+ "name": "data",
462
+ "type": "bytes"
463
+ }
464
+ ],
465
+ "name": "update",
466
+ "outputs": [],
467
+ "stateMutability": "nonpayable",
468
+ "type": "function"
469
+ },
470
+ {
471
+ "inputs": [
472
+ {
473
+ "internalType": "Key32",
474
+ "name": "key",
475
+ "type": "bytes32"
476
+ },
477
+ {
478
+ "internalType": "bytes",
479
+ "name": "data",
480
+ "type": "bytes"
481
+ }
482
+ ],
483
+ "name": "updateData",
484
+ "outputs": [],
485
+ "stateMutability": "nonpayable",
486
+ "type": "function"
487
+ },
488
+ {
489
+ "inputs": [
490
+ {
491
+ "internalType": "Key32",
492
+ "name": "key",
493
+ "type": "bytes32"
494
+ },
495
+ {
496
+ "internalType": "StateId",
497
+ "name": "state",
498
+ "type": "uint8"
499
+ }
500
+ ],
501
+ "name": "updateState",
502
+ "outputs": [],
503
+ "stateMutability": "nonpayable",
504
+ "type": "function"
505
+ }
506
+ ],
507
+ "bytecode": "0x",
508
+ "deployedBytecode": "0x",
509
+ "linkReferences": {},
510
+ "deployedLinkReferences": {}
511
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/ac8b1a0ba35c3a8a508882d70043ad3f.json"
4
+ }