@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.
- package/README.md +38 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +405 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +340 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +131 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +109 -18
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +194 -3
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +160 -21
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +609 -416
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +751 -467
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +82 -18
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +32 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.json +59 -18
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +115 -19
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +14 -14
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +82 -18
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +55 -54
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +56 -55
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +12 -7
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +12 -7
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensation.json → distribution/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensationModule.json → distribution/IDistribution.sol/IDistributionModule.json} +2 -2
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +53 -40
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +53 -40
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -5
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -5
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +104 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +126 -5
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +209 -231
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +209 -231
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +119 -47
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +484 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +59 -18
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +366 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +124 -19
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +212 -18
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +170 -34
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +296 -47
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +266 -14
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +4 -0
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +248 -0
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +4 -0
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +129 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +405 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +194 -3
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +209 -27
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +95 -31
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +89 -25
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +50 -11
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/BaseComponent.sol +7 -1
- package/contracts/components/Distribution.sol +132 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +14 -0
- package/contracts/components/IProductComponent.sol +24 -5
- package/contracts/components/Pool.sol +64 -3
- package/contracts/components/Product.sol +123 -13
- package/contracts/instance/IInstance.sol +7 -4
- package/contracts/instance/Instance.sol +11 -4
- package/contracts/instance/base/IInstanceBase.sol +3 -0
- package/contracts/instance/base/InstanceBase.sol +7 -0
- package/contracts/instance/base/Lifecycle.sol +10 -2
- package/contracts/instance/base/ModuleBase.sol +22 -17
- package/contracts/instance/module/access/Access.sol +3 -3
- package/contracts/instance/module/bundle/BundleModule.sol +10 -12
- package/contracts/instance/module/bundle/IBundle.sol +6 -11
- package/contracts/instance/module/component/ComponentModule.sol +15 -20
- package/contracts/instance/module/component/IComponent.sol +3 -2
- package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
- package/contracts/instance/module/distribution/IDistribution.sol +10 -0
- package/contracts/instance/module/policy/IPolicy.sol +10 -8
- package/contracts/instance/module/policy/PolicyModule.sol +33 -19
- package/contracts/instance/module/pool/IPoolModule.sol +0 -1
- package/contracts/instance/module/pool/PoolModule.sol +12 -9
- package/contracts/instance/module/risk/IRisk.sol +18 -2
- package/contracts/instance/module/risk/RiskModule.sol +56 -2
- package/contracts/instance/module/treasury/ITreasury.sol +29 -50
- package/contracts/instance/module/treasury/TreasuryModule.sol +71 -85
- package/contracts/instance/service/ComponentOwnerService.sol +19 -24
- package/contracts/instance/service/DistributionService.sol +59 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +7 -0
- package/contracts/instance/service/IProductService.sol +56 -7
- package/contracts/instance/service/PoolService.sol +30 -4
- package/contracts/instance/service/ProductService.sol +229 -74
- package/contracts/registry/Registry.sol +190 -113
- package/contracts/shared/IVersionable.sol +51 -9
- package/contracts/shared/Proxy.sol +94 -0
- package/contracts/shared/Versionable.sol +90 -38
- package/contracts/test/TestDistribution.sol +21 -0
- package/contracts/test/TestPool.sol +5 -2
- package/contracts/test/TestProduct.sol +35 -7
- package/contracts/types/Fee.sol +8 -3
- package/contracts/types/ObjectType.sol +17 -5
- package/contracts/types/ReferralId.sol +48 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +2 -2
- package/contracts/types/Version.sol +8 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json
CHANGED
@@ -3,6 +3,29 @@
|
|
3
3
|
"contractName": "ComponentServiceBase",
|
4
4
|
"sourceName": "contracts/instance/base/ComponentServiceBase.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [],
|
8
|
+
"name": "InvalidInitialization",
|
9
|
+
"type": "error"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"inputs": [],
|
13
|
+
"name": "NotInitializing",
|
14
|
+
"type": "error"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"anonymous": false,
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"indexed": false,
|
21
|
+
"internalType": "uint64",
|
22
|
+
"name": "version",
|
23
|
+
"type": "uint64"
|
24
|
+
}
|
25
|
+
],
|
26
|
+
"name": "Initialized",
|
27
|
+
"type": "event"
|
28
|
+
},
|
6
29
|
{
|
7
30
|
"anonymous": false,
|
8
31
|
"inputs": [
|
@@ -25,35 +48,30 @@
|
|
25
48
|
"type": "address"
|
26
49
|
}
|
27
50
|
],
|
28
|
-
"name": "
|
51
|
+
"name": "LogVersionableInitialized",
|
29
52
|
"type": "event"
|
30
53
|
},
|
31
54
|
{
|
32
|
-
"inputs": [
|
33
|
-
|
34
|
-
|
35
|
-
"name": "implementation",
|
36
|
-
"type": "address"
|
37
|
-
},
|
55
|
+
"inputs": [],
|
56
|
+
"name": "getData",
|
57
|
+
"outputs": [
|
38
58
|
{
|
39
|
-
"internalType": "
|
40
|
-
"name": "
|
41
|
-
"type": "
|
59
|
+
"internalType": "bytes",
|
60
|
+
"name": "data",
|
61
|
+
"type": "bytes"
|
42
62
|
}
|
43
63
|
],
|
44
|
-
"
|
45
|
-
"outputs": [],
|
46
|
-
"stateMutability": "nonpayable",
|
64
|
+
"stateMutability": "view",
|
47
65
|
"type": "function"
|
48
66
|
},
|
49
67
|
{
|
50
68
|
"inputs": [],
|
51
|
-
"name": "
|
69
|
+
"name": "getInitializedVersion",
|
52
70
|
"outputs": [
|
53
71
|
{
|
54
|
-
"internalType": "
|
55
|
-
"name": "
|
56
|
-
"type": "
|
72
|
+
"internalType": "uint64",
|
73
|
+
"name": "",
|
74
|
+
"type": "uint64"
|
57
75
|
}
|
58
76
|
],
|
59
77
|
"stateMutability": "view",
|
@@ -241,6 +259,29 @@
|
|
241
259
|
"stateMutability": "view",
|
242
260
|
"type": "function"
|
243
261
|
},
|
262
|
+
{
|
263
|
+
"inputs": [
|
264
|
+
{
|
265
|
+
"internalType": "address",
|
266
|
+
"name": "implementation",
|
267
|
+
"type": "address"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"internalType": "address",
|
271
|
+
"name": "activatedBy",
|
272
|
+
"type": "address"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"internalType": "bytes",
|
276
|
+
"name": "data",
|
277
|
+
"type": "bytes"
|
278
|
+
}
|
279
|
+
],
|
280
|
+
"name": "initialize",
|
281
|
+
"outputs": [],
|
282
|
+
"stateMutability": "nonpayable",
|
283
|
+
"type": "function"
|
284
|
+
},
|
244
285
|
{
|
245
286
|
"inputs": [
|
246
287
|
{
|
@@ -249,7 +290,7 @@
|
|
249
290
|
"type": "uint24"
|
250
291
|
}
|
251
292
|
],
|
252
|
-
"name": "
|
293
|
+
"name": "isInitialized",
|
253
294
|
"outputs": [
|
254
295
|
{
|
255
296
|
"internalType": "bool",
|
@@ -291,6 +332,29 @@
|
|
291
332
|
],
|
292
333
|
"stateMutability": "view",
|
293
334
|
"type": "function"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"inputs": [
|
338
|
+
{
|
339
|
+
"internalType": "address",
|
340
|
+
"name": "implementation",
|
341
|
+
"type": "address"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"internalType": "address",
|
345
|
+
"name": "activatedBy",
|
346
|
+
"type": "address"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"internalType": "bytes",
|
350
|
+
"name": "data",
|
351
|
+
"type": "bytes"
|
352
|
+
}
|
353
|
+
],
|
354
|
+
"name": "upgrade",
|
355
|
+
"outputs": [],
|
356
|
+
"stateMutability": "nonpayable",
|
357
|
+
"type": "function"
|
294
358
|
}
|
295
359
|
],
|
296
360
|
"bytecode": "0x",
|
@@ -16,6 +16,19 @@
|
|
16
16
|
"stateMutability": "view",
|
17
17
|
"type": "function"
|
18
18
|
},
|
19
|
+
{
|
20
|
+
"inputs": [],
|
21
|
+
"name": "getDistributionService",
|
22
|
+
"outputs": [
|
23
|
+
{
|
24
|
+
"internalType": "contract IDistributionService",
|
25
|
+
"name": "",
|
26
|
+
"type": "address"
|
27
|
+
}
|
28
|
+
],
|
29
|
+
"stateMutability": "view",
|
30
|
+
"type": "function"
|
31
|
+
},
|
19
32
|
{
|
20
33
|
"inputs": [],
|
21
34
|
"name": "getKeyValueStore",
|
@@ -55,6 +68,25 @@
|
|
55
68
|
"stateMutability": "view",
|
56
69
|
"type": "function"
|
57
70
|
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "Key32",
|
75
|
+
"name": "key",
|
76
|
+
"type": "bytes32"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "getState",
|
80
|
+
"outputs": [
|
81
|
+
{
|
82
|
+
"internalType": "StateId",
|
83
|
+
"name": "state",
|
84
|
+
"type": "uint8"
|
85
|
+
}
|
86
|
+
],
|
87
|
+
"stateMutability": "view",
|
88
|
+
"type": "function"
|
89
|
+
},
|
58
90
|
{
|
59
91
|
"inputs": [
|
60
92
|
{
|
@@ -25,35 +25,30 @@
|
|
25
25
|
"type": "address"
|
26
26
|
}
|
27
27
|
],
|
28
|
-
"name": "
|
28
|
+
"name": "LogVersionableInitialized",
|
29
29
|
"type": "event"
|
30
30
|
},
|
31
31
|
{
|
32
|
-
"inputs": [
|
33
|
-
|
34
|
-
|
35
|
-
"name": "implementation",
|
36
|
-
"type": "address"
|
37
|
-
},
|
32
|
+
"inputs": [],
|
33
|
+
"name": "getData",
|
34
|
+
"outputs": [
|
38
35
|
{
|
39
|
-
"internalType": "
|
40
|
-
"name": "
|
41
|
-
"type": "
|
36
|
+
"internalType": "bytes",
|
37
|
+
"name": "data",
|
38
|
+
"type": "bytes"
|
42
39
|
}
|
43
40
|
],
|
44
|
-
"
|
45
|
-
"outputs": [],
|
46
|
-
"stateMutability": "nonpayable",
|
41
|
+
"stateMutability": "view",
|
47
42
|
"type": "function"
|
48
43
|
},
|
49
44
|
{
|
50
45
|
"inputs": [],
|
51
|
-
"name": "
|
46
|
+
"name": "getInitializedVersion",
|
52
47
|
"outputs": [
|
53
48
|
{
|
54
|
-
"internalType": "
|
55
|
-
"name": "
|
56
|
-
"type": "
|
49
|
+
"internalType": "uint64",
|
50
|
+
"name": "",
|
51
|
+
"type": "uint64"
|
57
52
|
}
|
58
53
|
],
|
59
54
|
"stateMutability": "view",
|
@@ -241,6 +236,29 @@
|
|
241
236
|
"stateMutability": "view",
|
242
237
|
"type": "function"
|
243
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
|
+
},
|
244
262
|
{
|
245
263
|
"inputs": [
|
246
264
|
{
|
@@ -249,7 +267,7 @@
|
|
249
267
|
"type": "uint24"
|
250
268
|
}
|
251
269
|
],
|
252
|
-
"name": "
|
270
|
+
"name": "isInitialized",
|
253
271
|
"outputs": [
|
254
272
|
{
|
255
273
|
"internalType": "bool",
|
@@ -291,6 +309,29 @@
|
|
291
309
|
],
|
292
310
|
"stateMutability": "view",
|
293
311
|
"type": "function"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"inputs": [
|
315
|
+
{
|
316
|
+
"internalType": "address",
|
317
|
+
"name": "implementation",
|
318
|
+
"type": "address"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"internalType": "address",
|
322
|
+
"name": "activatedBy",
|
323
|
+
"type": "address"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"internalType": "bytes",
|
327
|
+
"name": "upgradeData",
|
328
|
+
"type": "bytes"
|
329
|
+
}
|
330
|
+
],
|
331
|
+
"name": "upgrade",
|
332
|
+
"outputs": [],
|
333
|
+
"stateMutability": "nonpayable",
|
334
|
+
"type": "function"
|
294
335
|
}
|
295
336
|
],
|
296
337
|
"bytecode": "0x",
|
@@ -3,6 +3,29 @@
|
|
3
3
|
"contractName": "InstanceBase",
|
4
4
|
"sourceName": "contracts/instance/base/InstanceBase.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [],
|
8
|
+
"name": "InvalidInitialization",
|
9
|
+
"type": "error"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"inputs": [],
|
13
|
+
"name": "NotInitializing",
|
14
|
+
"type": "error"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"anonymous": false,
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"indexed": false,
|
21
|
+
"internalType": "uint64",
|
22
|
+
"name": "version",
|
23
|
+
"type": "uint64"
|
24
|
+
}
|
25
|
+
],
|
26
|
+
"name": "Initialized",
|
27
|
+
"type": "event"
|
28
|
+
},
|
6
29
|
{
|
7
30
|
"anonymous": false,
|
8
31
|
"inputs": [
|
@@ -25,34 +48,42 @@
|
|
25
48
|
"type": "address"
|
26
49
|
}
|
27
50
|
],
|
28
|
-
"name": "
|
51
|
+
"name": "LogVersionableInitialized",
|
29
52
|
"type": "event"
|
30
53
|
},
|
31
54
|
{
|
32
|
-
"inputs": [
|
55
|
+
"inputs": [],
|
56
|
+
"name": "getComponentOwnerService",
|
57
|
+
"outputs": [
|
33
58
|
{
|
34
|
-
"internalType": "
|
35
|
-
"name": "
|
59
|
+
"internalType": "contract IComponentOwnerService",
|
60
|
+
"name": "service",
|
36
61
|
"type": "address"
|
37
|
-
}
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"stateMutability": "view",
|
65
|
+
"type": "function"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"inputs": [],
|
69
|
+
"name": "getData",
|
70
|
+
"outputs": [
|
38
71
|
{
|
39
|
-
"internalType": "
|
40
|
-
"name": "
|
41
|
-
"type": "
|
72
|
+
"internalType": "bytes",
|
73
|
+
"name": "data",
|
74
|
+
"type": "bytes"
|
42
75
|
}
|
43
76
|
],
|
44
|
-
"
|
45
|
-
"outputs": [],
|
46
|
-
"stateMutability": "nonpayable",
|
77
|
+
"stateMutability": "view",
|
47
78
|
"type": "function"
|
48
79
|
},
|
49
80
|
{
|
50
81
|
"inputs": [],
|
51
|
-
"name": "
|
82
|
+
"name": "getDistributionService",
|
52
83
|
"outputs": [
|
53
84
|
{
|
54
|
-
"internalType": "contract
|
55
|
-
"name": "
|
85
|
+
"internalType": "contract IDistributionService",
|
86
|
+
"name": "",
|
56
87
|
"type": "address"
|
57
88
|
}
|
58
89
|
],
|
@@ -61,12 +92,12 @@
|
|
61
92
|
},
|
62
93
|
{
|
63
94
|
"inputs": [],
|
64
|
-
"name": "
|
95
|
+
"name": "getInitializedVersion",
|
65
96
|
"outputs": [
|
66
97
|
{
|
67
|
-
"internalType": "
|
68
|
-
"name": "
|
69
|
-
"type": "
|
98
|
+
"internalType": "uint64",
|
99
|
+
"name": "",
|
100
|
+
"type": "uint64"
|
70
101
|
}
|
71
102
|
],
|
72
103
|
"stateMutability": "view",
|
@@ -163,6 +194,25 @@
|
|
163
194
|
"stateMutability": "view",
|
164
195
|
"type": "function"
|
165
196
|
},
|
197
|
+
{
|
198
|
+
"inputs": [
|
199
|
+
{
|
200
|
+
"internalType": "Key32",
|
201
|
+
"name": "key",
|
202
|
+
"type": "bytes32"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"name": "getState",
|
206
|
+
"outputs": [
|
207
|
+
{
|
208
|
+
"internalType": "StateId",
|
209
|
+
"name": "state",
|
210
|
+
"type": "uint8"
|
211
|
+
}
|
212
|
+
],
|
213
|
+
"stateMutability": "view",
|
214
|
+
"type": "function"
|
215
|
+
},
|
166
216
|
{
|
167
217
|
"inputs": [],
|
168
218
|
"name": "getType",
|
@@ -267,6 +317,29 @@
|
|
267
317
|
"stateMutability": "view",
|
268
318
|
"type": "function"
|
269
319
|
},
|
320
|
+
{
|
321
|
+
"inputs": [
|
322
|
+
{
|
323
|
+
"internalType": "address",
|
324
|
+
"name": "implementation",
|
325
|
+
"type": "address"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"internalType": "address",
|
329
|
+
"name": "activatedBy",
|
330
|
+
"type": "address"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"internalType": "bytes",
|
334
|
+
"name": "data",
|
335
|
+
"type": "bytes"
|
336
|
+
}
|
337
|
+
],
|
338
|
+
"name": "initialize",
|
339
|
+
"outputs": [],
|
340
|
+
"stateMutability": "nonpayable",
|
341
|
+
"type": "function"
|
342
|
+
},
|
270
343
|
{
|
271
344
|
"inputs": [
|
272
345
|
{
|
@@ -275,7 +348,7 @@
|
|
275
348
|
"type": "uint24"
|
276
349
|
}
|
277
350
|
],
|
278
|
-
"name": "
|
351
|
+
"name": "isInitialized",
|
279
352
|
"outputs": [
|
280
353
|
{
|
281
354
|
"internalType": "bool",
|
@@ -335,6 +408,29 @@
|
|
335
408
|
"outputs": [],
|
336
409
|
"stateMutability": "nonpayable",
|
337
410
|
"type": "function"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"inputs": [
|
414
|
+
{
|
415
|
+
"internalType": "address",
|
416
|
+
"name": "implementation",
|
417
|
+
"type": "address"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"internalType": "address",
|
421
|
+
"name": "activatedBy",
|
422
|
+
"type": "address"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"internalType": "bytes",
|
426
|
+
"name": "data",
|
427
|
+
"type": "bytes"
|
428
|
+
}
|
429
|
+
],
|
430
|
+
"name": "upgrade",
|
431
|
+
"outputs": [],
|
432
|
+
"stateMutability": "nonpayable",
|
433
|
+
"type": "function"
|
338
434
|
}
|
339
435
|
],
|
340
436
|
"bytecode": "0x",
|