@etherisc/gif-next 0.0.2-78bf628-134 → 0.0.2-790d44b-698

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (231) hide show
  1. package/README.md +38 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.json +405 -0
  5. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  6. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +340 -0
  8. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +131 -0
  10. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +109 -18
  12. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  13. package/artifacts/contracts/components/Pool.sol/Pool.json +194 -3
  14. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  15. package/artifacts/contracts/components/Product.sol/Product.json +160 -21
  16. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  28. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  34. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  35. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +609 -416
  36. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
  37. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  38. package/artifacts/contracts/instance/Instance.sol/Instance.json +751 -467
  39. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  40. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +82 -18
  41. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  42. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +32 -0
  43. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  44. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
  46. package/artifacts/contracts/instance/base/IService.sol/IService.json +59 -18
  47. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
  48. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +115 -19
  49. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  50. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +14 -14
  51. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  52. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
  53. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
  54. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
  55. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +82 -18
  56. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
  58. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
  59. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
  60. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +55 -54
  61. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
  62. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
  63. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +56 -55
  64. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
  65. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +12 -7
  66. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
  68. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +12 -7
  69. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  70. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  71. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  72. package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensation.json → distribution/IDistribution.sol/IDistribution.json} +2 -2
  73. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  74. package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensationModule.json → distribution/IDistribution.sol/IDistributionModule.json} +2 -2
  75. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
  77. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +53 -40
  78. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
  79. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +53 -40
  80. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
  81. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
  82. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -5
  83. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
  84. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -5
  85. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
  86. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +104 -1
  88. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +126 -5
  90. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
  91. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
  92. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +209 -231
  93. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  94. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
  95. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
  96. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +209 -231
  97. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +119 -47
  99. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  100. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +484 -0
  101. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  102. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +59 -18
  103. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  104. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +366 -0
  105. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  106. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +124 -19
  107. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  108. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +212 -18
  109. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  110. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +170 -34
  111. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  112. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +296 -47
  113. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  114. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  115. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  116. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  117. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  118. package/artifacts/contracts/registry/Registry.sol/Registry.json +266 -14
  119. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  120. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
  121. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  122. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  123. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
  124. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +4 -0
  125. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +248 -0
  126. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +4 -0
  127. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +129 -0
  128. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  129. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  130. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
  131. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  132. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +405 -0
  133. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  134. package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
  135. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
  136. package/artifacts/contracts/test/TestPool.sol/TestPool.json +194 -3
  137. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
  138. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +209 -27
  139. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  140. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
  141. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  142. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  143. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  144. package/artifacts/contracts/test/TestService.sol/TestService.json +95 -31
  145. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  146. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  147. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  148. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +89 -25
  150. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  151. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  152. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  153. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  154. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/Fee.sol/FeeLib.json +50 -11
  156. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  157. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
  158. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  159. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
  160. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  161. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  162. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  164. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  165. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  166. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  167. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  168. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  169. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  170. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
  175. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  177. package/contracts/components/BaseComponent.sol +7 -1
  178. package/contracts/components/Distribution.sol +132 -0
  179. package/contracts/components/IDistributionComponent.sol +47 -0
  180. package/contracts/components/IPoolComponent.sol +14 -0
  181. package/contracts/components/IProductComponent.sol +24 -5
  182. package/contracts/components/Pool.sol +64 -3
  183. package/contracts/components/Product.sol +123 -13
  184. package/contracts/instance/IInstance.sol +7 -4
  185. package/contracts/instance/Instance.sol +11 -4
  186. package/contracts/instance/base/IInstanceBase.sol +3 -0
  187. package/contracts/instance/base/InstanceBase.sol +7 -0
  188. package/contracts/instance/base/Lifecycle.sol +10 -2
  189. package/contracts/instance/base/ModuleBase.sol +22 -17
  190. package/contracts/instance/module/access/Access.sol +3 -3
  191. package/contracts/instance/module/bundle/BundleModule.sol +10 -12
  192. package/contracts/instance/module/bundle/IBundle.sol +6 -11
  193. package/contracts/instance/module/component/ComponentModule.sol +15 -20
  194. package/contracts/instance/module/component/IComponent.sol +3 -2
  195. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  196. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  197. package/contracts/instance/module/policy/IPolicy.sol +10 -8
  198. package/contracts/instance/module/policy/PolicyModule.sol +33 -19
  199. package/contracts/instance/module/pool/IPoolModule.sol +0 -1
  200. package/contracts/instance/module/pool/PoolModule.sol +12 -9
  201. package/contracts/instance/module/risk/IRisk.sol +18 -2
  202. package/contracts/instance/module/risk/RiskModule.sol +56 -2
  203. package/contracts/instance/module/treasury/ITreasury.sol +29 -50
  204. package/contracts/instance/module/treasury/TreasuryModule.sol +71 -85
  205. package/contracts/instance/service/ComponentOwnerService.sol +19 -24
  206. package/contracts/instance/service/DistributionService.sol +59 -0
  207. package/contracts/instance/service/IDistributionService.sol +12 -0
  208. package/contracts/instance/service/IPoolService.sol +7 -0
  209. package/contracts/instance/service/IProductService.sol +56 -7
  210. package/contracts/instance/service/PoolService.sol +30 -4
  211. package/contracts/instance/service/ProductService.sol +229 -74
  212. package/contracts/registry/Registry.sol +190 -113
  213. package/contracts/shared/IVersionable.sol +51 -9
  214. package/contracts/shared/Proxy.sol +94 -0
  215. package/contracts/shared/Versionable.sol +90 -38
  216. package/contracts/test/TestDistribution.sol +21 -0
  217. package/contracts/test/TestPool.sol +5 -2
  218. package/contracts/test/TestProduct.sol +35 -7
  219. package/contracts/types/Fee.sol +8 -3
  220. package/contracts/types/ObjectType.sol +17 -5
  221. package/contracts/types/ReferralId.sol +48 -0
  222. package/contracts/types/RiskId.sol +43 -0
  223. package/contracts/types/RoleId.sol +2 -2
  224. package/contracts/types/Version.sol +8 -0
  225. package/package.json +1 -1
  226. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  227. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  228. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  229. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  230. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  231. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
@@ -0,0 +1,366 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IDistributionService",
4
+ "sourceName": "contracts/instance/service/IDistributionService.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "Version",
12
+ "name": "version",
13
+ "type": "uint24"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "implementation",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "address",
24
+ "name": "activatedBy",
25
+ "type": "address"
26
+ }
27
+ ],
28
+ "name": "LogVersionableInitialized",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "getData",
34
+ "outputs": [
35
+ {
36
+ "internalType": "bytes",
37
+ "name": "data",
38
+ "type": "bytes"
39
+ }
40
+ ],
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "getInitializedVersion",
47
+ "outputs": [
48
+ {
49
+ "internalType": "uint64",
50
+ "name": "",
51
+ "type": "uint64"
52
+ }
53
+ ],
54
+ "stateMutability": "view",
55
+ "type": "function"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "getMajorVersion",
60
+ "outputs": [
61
+ {
62
+ "internalType": "VersionPart",
63
+ "name": "majorVersion",
64
+ "type": "uint8"
65
+ }
66
+ ],
67
+ "stateMutability": "view",
68
+ "type": "function"
69
+ },
70
+ {
71
+ "inputs": [],
72
+ "name": "getName",
73
+ "outputs": [
74
+ {
75
+ "internalType": "string",
76
+ "name": "name",
77
+ "type": "string"
78
+ }
79
+ ],
80
+ "stateMutability": "pure",
81
+ "type": "function"
82
+ },
83
+ {
84
+ "inputs": [],
85
+ "name": "getNftId",
86
+ "outputs": [
87
+ {
88
+ "internalType": "NftId",
89
+ "name": "nftId",
90
+ "type": "uint96"
91
+ }
92
+ ],
93
+ "stateMutability": "view",
94
+ "type": "function"
95
+ },
96
+ {
97
+ "inputs": [],
98
+ "name": "getOwner",
99
+ "outputs": [
100
+ {
101
+ "internalType": "address",
102
+ "name": "owner",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "stateMutability": "view",
107
+ "type": "function"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "getParentNftId",
112
+ "outputs": [
113
+ {
114
+ "internalType": "NftId",
115
+ "name": "nftId",
116
+ "type": "uint96"
117
+ }
118
+ ],
119
+ "stateMutability": "view",
120
+ "type": "function"
121
+ },
122
+ {
123
+ "inputs": [],
124
+ "name": "getRegistry",
125
+ "outputs": [
126
+ {
127
+ "internalType": "contract IRegistry",
128
+ "name": "registry",
129
+ "type": "address"
130
+ }
131
+ ],
132
+ "stateMutability": "view",
133
+ "type": "function"
134
+ },
135
+ {
136
+ "inputs": [],
137
+ "name": "getType",
138
+ "outputs": [
139
+ {
140
+ "internalType": "ObjectType",
141
+ "name": "objectType",
142
+ "type": "uint8"
143
+ }
144
+ ],
145
+ "stateMutability": "pure",
146
+ "type": "function"
147
+ },
148
+ {
149
+ "inputs": [],
150
+ "name": "getVersion",
151
+ "outputs": [
152
+ {
153
+ "internalType": "Version",
154
+ "name": "",
155
+ "type": "uint24"
156
+ }
157
+ ],
158
+ "stateMutability": "pure",
159
+ "type": "function"
160
+ },
161
+ {
162
+ "inputs": [
163
+ {
164
+ "internalType": "uint256",
165
+ "name": "index",
166
+ "type": "uint256"
167
+ }
168
+ ],
169
+ "name": "getVersion",
170
+ "outputs": [
171
+ {
172
+ "internalType": "Version",
173
+ "name": "version",
174
+ "type": "uint24"
175
+ }
176
+ ],
177
+ "stateMutability": "view",
178
+ "type": "function"
179
+ },
180
+ {
181
+ "inputs": [],
182
+ "name": "getVersionCount",
183
+ "outputs": [
184
+ {
185
+ "internalType": "uint256",
186
+ "name": "numberOfVersions",
187
+ "type": "uint256"
188
+ }
189
+ ],
190
+ "stateMutability": "view",
191
+ "type": "function"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "Version",
197
+ "name": "version",
198
+ "type": "uint24"
199
+ }
200
+ ],
201
+ "name": "getVersionInfo",
202
+ "outputs": [
203
+ {
204
+ "components": [
205
+ {
206
+ "internalType": "Version",
207
+ "name": "version",
208
+ "type": "uint24"
209
+ },
210
+ {
211
+ "internalType": "address",
212
+ "name": "implementation",
213
+ "type": "address"
214
+ },
215
+ {
216
+ "internalType": "address",
217
+ "name": "activatedBy",
218
+ "type": "address"
219
+ },
220
+ {
221
+ "internalType": "Timestamp",
222
+ "name": "activatedAt",
223
+ "type": "uint40"
224
+ },
225
+ {
226
+ "internalType": "Blocknumber",
227
+ "name": "activatedIn",
228
+ "type": "uint32"
229
+ }
230
+ ],
231
+ "internalType": "struct IVersionable.VersionInfo",
232
+ "name": "versionInfo",
233
+ "type": "tuple"
234
+ }
235
+ ],
236
+ "stateMutability": "view",
237
+ "type": "function"
238
+ },
239
+ {
240
+ "inputs": [
241
+ {
242
+ "internalType": "address",
243
+ "name": "implementation",
244
+ "type": "address"
245
+ },
246
+ {
247
+ "internalType": "address",
248
+ "name": "activatedBy",
249
+ "type": "address"
250
+ },
251
+ {
252
+ "internalType": "bytes",
253
+ "name": "activationData",
254
+ "type": "bytes"
255
+ }
256
+ ],
257
+ "name": "initialize",
258
+ "outputs": [],
259
+ "stateMutability": "nonpayable",
260
+ "type": "function"
261
+ },
262
+ {
263
+ "inputs": [
264
+ {
265
+ "internalType": "Version",
266
+ "name": "version",
267
+ "type": "uint24"
268
+ }
269
+ ],
270
+ "name": "isInitialized",
271
+ "outputs": [
272
+ {
273
+ "internalType": "bool",
274
+ "name": "",
275
+ "type": "bool"
276
+ }
277
+ ],
278
+ "stateMutability": "view",
279
+ "type": "function"
280
+ },
281
+ {
282
+ "inputs": [],
283
+ "name": "register",
284
+ "outputs": [
285
+ {
286
+ "internalType": "NftId",
287
+ "name": "nftId",
288
+ "type": "uint96"
289
+ }
290
+ ],
291
+ "stateMutability": "nonpayable",
292
+ "type": "function"
293
+ },
294
+ {
295
+ "inputs": [
296
+ {
297
+ "components": [
298
+ {
299
+ "internalType": "UFixed",
300
+ "name": "fractionalFee",
301
+ "type": "uint256"
302
+ },
303
+ {
304
+ "internalType": "uint256",
305
+ "name": "fixedFee",
306
+ "type": "uint256"
307
+ }
308
+ ],
309
+ "internalType": "struct Fee",
310
+ "name": "distributionFee",
311
+ "type": "tuple"
312
+ }
313
+ ],
314
+ "name": "setFees",
315
+ "outputs": [],
316
+ "stateMutability": "nonpayable",
317
+ "type": "function"
318
+ },
319
+ {
320
+ "inputs": [
321
+ {
322
+ "internalType": "bytes4",
323
+ "name": "interfaceId",
324
+ "type": "bytes4"
325
+ }
326
+ ],
327
+ "name": "supportsInterface",
328
+ "outputs": [
329
+ {
330
+ "internalType": "bool",
331
+ "name": "",
332
+ "type": "bool"
333
+ }
334
+ ],
335
+ "stateMutability": "view",
336
+ "type": "function"
337
+ },
338
+ {
339
+ "inputs": [
340
+ {
341
+ "internalType": "address",
342
+ "name": "implementation",
343
+ "type": "address"
344
+ },
345
+ {
346
+ "internalType": "address",
347
+ "name": "activatedBy",
348
+ "type": "address"
349
+ },
350
+ {
351
+ "internalType": "bytes",
352
+ "name": "upgradeData",
353
+ "type": "bytes"
354
+ }
355
+ ],
356
+ "name": "upgrade",
357
+ "outputs": [],
358
+ "stateMutability": "nonpayable",
359
+ "type": "function"
360
+ }
361
+ ],
362
+ "bytecode": "0x",
363
+ "deployedBytecode": "0x",
364
+ "linkReferences": {},
365
+ "deployedLinkReferences": {}
366
+ }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -25,33 +25,32 @@
25
25
  "type": "address"
26
26
  }
27
27
  ],
28
- "name": "LogVersionableActivated",
28
+ "name": "LogVersionableInitialized",
29
29
  "type": "event"
30
30
  },
31
31
  {
32
32
  "inputs": [
33
33
  {
34
34
  "internalType": "address",
35
- "name": "implementation",
35
+ "name": "owner",
36
36
  "type": "address"
37
37
  },
38
38
  {
39
- "internalType": "address",
40
- "name": "activatedBy",
41
- "type": "address"
42
- }
43
- ],
44
- "name": "activate",
45
- "outputs": [],
46
- "stateMutability": "nonpayable",
47
- "type": "function"
48
- },
49
- {
50
- "inputs": [
51
- {
52
- "internalType": "address",
53
- "name": "owner",
54
- "type": "address"
39
+ "components": [
40
+ {
41
+ "internalType": "UFixed",
42
+ "name": "fractionalFee",
43
+ "type": "uint256"
44
+ },
45
+ {
46
+ "internalType": "uint256",
47
+ "name": "fixedFee",
48
+ "type": "uint256"
49
+ }
50
+ ],
51
+ "internalType": "struct Fee",
52
+ "name": "fee",
53
+ "type": "tuple"
55
54
  },
56
55
  {
57
56
  "internalType": "uint256",
@@ -93,6 +92,19 @@
93
92
  "stateMutability": "view",
94
93
  "type": "function"
95
94
  },
95
+ {
96
+ "inputs": [],
97
+ "name": "getInitializedVersion",
98
+ "outputs": [
99
+ {
100
+ "internalType": "uint64",
101
+ "name": "",
102
+ "type": "uint64"
103
+ }
104
+ ],
105
+ "stateMutability": "view",
106
+ "type": "function"
107
+ },
96
108
  {
97
109
  "inputs": [],
98
110
  "name": "getMajorVersion",
@@ -275,6 +287,29 @@
275
287
  "stateMutability": "view",
276
288
  "type": "function"
277
289
  },
290
+ {
291
+ "inputs": [
292
+ {
293
+ "internalType": "address",
294
+ "name": "implementation",
295
+ "type": "address"
296
+ },
297
+ {
298
+ "internalType": "address",
299
+ "name": "activatedBy",
300
+ "type": "address"
301
+ },
302
+ {
303
+ "internalType": "bytes",
304
+ "name": "activationData",
305
+ "type": "bytes"
306
+ }
307
+ ],
308
+ "name": "initialize",
309
+ "outputs": [],
310
+ "stateMutability": "nonpayable",
311
+ "type": "function"
312
+ },
278
313
  {
279
314
  "inputs": [
280
315
  {
@@ -283,7 +318,7 @@
283
318
  "type": "uint24"
284
319
  }
285
320
  ],
286
- "name": "isActivated",
321
+ "name": "isInitialized",
287
322
  "outputs": [
288
323
  {
289
324
  "internalType": "bool",
@@ -307,8 +342,55 @@
307
342
  "stateMutability": "nonpayable",
308
343
  "type": "function"
309
344
  },
345
+ {
346
+ "inputs": [
347
+ {
348
+ "internalType": "NftId",
349
+ "name": "bundleNftId",
350
+ "type": "uint96"
351
+ },
352
+ {
353
+ "components": [
354
+ {
355
+ "internalType": "UFixed",
356
+ "name": "fractionalFee",
357
+ "type": "uint256"
358
+ },
359
+ {
360
+ "internalType": "uint256",
361
+ "name": "fixedFee",
362
+ "type": "uint256"
363
+ }
364
+ ],
365
+ "internalType": "struct Fee",
366
+ "name": "fee",
367
+ "type": "tuple"
368
+ }
369
+ ],
370
+ "name": "setBundleFee",
371
+ "outputs": [],
372
+ "stateMutability": "nonpayable",
373
+ "type": "function"
374
+ },
310
375
  {
311
376
  "inputs": [
377
+ {
378
+ "components": [
379
+ {
380
+ "internalType": "UFixed",
381
+ "name": "fractionalFee",
382
+ "type": "uint256"
383
+ },
384
+ {
385
+ "internalType": "uint256",
386
+ "name": "fixedFee",
387
+ "type": "uint256"
388
+ }
389
+ ],
390
+ "internalType": "struct Fee",
391
+ "name": "poolFee",
392
+ "type": "tuple"
393
+ },
312
394
  {
313
395
  "components": [
314
396
  {
@@ -367,6 +449,29 @@
367
449
  ],
368
450
  "stateMutability": "view",
369
451
  "type": "function"
452
+ },
453
+ {
454
+ "inputs": [
455
+ {
456
+ "internalType": "address",
457
+ "name": "implementation",
458
+ "type": "address"
459
+ },
460
+ {
461
+ "internalType": "address",
462
+ "name": "activatedBy",
463
+ "type": "address"
464
+ },
465
+ {
466
+ "internalType": "bytes",
467
+ "name": "upgradeData",
468
+ "type": "bytes"
469
+ }
470
+ ],
471
+ "name": "upgrade",
472
+ "outputs": [],
473
+ "stateMutability": "nonpayable",
474
+ "type": "function"
370
475
  }
371
476
  ],
372
477
  "bytecode": "0x",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }