@etherisc/gif-next 0.0.2-a1053ad-624 → 0.0.2-a25e4b8-781
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 +67 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → components/Component.sol/Component.json} +288 -166
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +260 -89
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{BaseComponent.sol/BaseComponent.json → IComponent.sol/IComponent.json} +129 -30
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +28 -2
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +5 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +290 -116
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +271 -144
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
- 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/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- 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/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1649 -28
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +162 -13
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +176 -678
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +231 -114
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +182 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +315 -62
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +57 -21
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +125 -11
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -13
- 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/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1094 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +436 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +764 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +424 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +720 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -13
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -77
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +25 -240
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1219 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +492 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +798 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +424 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +848 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +424 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +339 -59
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +195 -86
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +301 -188
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +38 -112
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -91
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +381 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +14 -14
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +4 -4
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/Service.sol/Service.json} +15 -15
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +4 -4
- 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 +31 -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 +2 -2
- 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/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- 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/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +179 -0
- package/contracts/components/Distribution.sol +20 -32
- package/contracts/components/IComponent.sol +37 -0
- package/contracts/components/IDistributionComponent.sol +1 -0
- package/contracts/components/IPoolComponent.sol +5 -1
- package/contracts/components/IProductComponent.sol +2 -2
- package/contracts/components/Pool.sol +49 -50
- package/contracts/components/Product.sol +60 -60
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +50 -12
- package/contracts/instance/IInstanceService.sol +30 -7
- package/contracts/instance/Instance.sol +66 -249
- package/contracts/instance/InstanceAccessManager.sol +88 -78
- package/contracts/instance/InstanceReader.sol +34 -21
- package/contracts/instance/InstanceService.sol +313 -53
- package/contracts/instance/InstanceServiceManager.sol +10 -12
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +133 -0
- package/contracts/instance/base/IInstanceBase.sol +0 -2
- package/contracts/instance/module/IAccess.sol +27 -17
- package/contracts/instance/module/IBundle.sol +1 -0
- package/contracts/instance/module/ISetup.sol +3 -0
- package/contracts/instance/service/BundleService.sol +293 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +115 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IDistributionService.sol +1 -1
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +7 -24
- package/contracts/instance/service/IProductService.sol +7 -74
- package/contracts/instance/service/PolicyService.sol +538 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +142 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +241 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +47 -6
- package/contracts/registry/IRegistryService.sol +52 -30
- package/contracts/registry/Registry.sol +243 -214
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +87 -214
- package/contracts/registry/RegistryServiceManager.sol +20 -22
- package/contracts/registry/ReleaseManager.sol +352 -0
- package/contracts/registry/TokenRegistry.sol +112 -0
- package/contracts/shared/ERC165.sol +6 -2
- package/contracts/shared/IRegisterable.sol +0 -2
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/NftOwnable.sol +4 -4
- package/contracts/shared/ProxyManager.sol +1 -1
- package/contracts/shared/Registerable.sol +1 -0
- package/contracts/shared/Service.sol +60 -0
- package/contracts/test/TestService.sol +6 -7
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +14 -6
- package/contracts/types/StateId.sol +4 -0
- package/contracts/types/Version.sol +4 -1
- package/package.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -267
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1119
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -86
- package/contracts/components/IBaseComponent.sol +0 -24
- package/contracts/instance/AccessManagedSimple.sol +0 -114
- package/contracts/instance/AccessManagerSimple.sol +0 -682
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/ServiceBase.sol +0 -44
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
package/README.md
CHANGED
@@ -51,7 +51,7 @@ hh docgen
|
|
51
51
|
The resulting markdown files are written to `docs`
|
52
52
|
|
53
53
|
|
54
|
-
###
|
54
|
+
### Full protocol deployment
|
55
55
|
|
56
56
|
Install the dependencies before running the script below for the first time.
|
57
57
|
|
@@ -81,6 +81,25 @@ Environment variables:
|
|
81
81
|
- `WALLET_MNEMONIC` the mnemonic of the wallet to use for deployment (required for mumbai and mainnet)
|
82
82
|
- `ETHERSCAN_API_KEY` `POLYGONSCAN_API_KEY` the api key for etherscan/polygonscan (required for mumbai and mainnet)
|
83
83
|
|
84
|
+
### Create a new instance
|
85
|
+
|
86
|
+
Requires previous step to be completed.
|
87
|
+
|
88
|
+
```bash
|
89
|
+
# set appropriate values vor env variables (see below)
|
90
|
+
|
91
|
+
hh run --network <networkname> scripts/new_instance.ts
|
92
|
+
```
|
93
|
+
|
94
|
+
Currently an HD wallet is expected to be used for the deployment. The mnemonic of the wallet needs to be provided via the `WALLET_MNEMONIC` environment variable.
|
95
|
+
The instance owner will be the 11th address of the wallet.
|
96
|
+
|
97
|
+
Environment variables:
|
98
|
+
|
99
|
+
- `WEB3_INFURA_PROJECT_ID` set to infura project id (required for mumbai and mainnet)
|
100
|
+
- `WALLET_MNEMONIC` the mnemonic of the wallet to use for deployment (required for mumbai and mainnet)
|
101
|
+
- `REGISTRY_ADDRESS` the address of the registry that is already deployed and configured and has a valid master instance
|
102
|
+
|
84
103
|
|
85
104
|
### Console
|
86
105
|
|
@@ -119,7 +138,11 @@ forge test -vvvv --mt test_decimals
|
|
119
138
|
# provide gas report for a single test
|
120
139
|
forge test --mt test_decimals --gas-report
|
121
140
|
|
141
|
+
# provide code coverage report
|
122
142
|
forge coverage
|
143
|
+
forge coverage --report lcov
|
144
|
+
|
145
|
+
|
123
146
|
```
|
124
147
|
|
125
148
|
Chisel session
|
@@ -415,3 +438,46 @@ Distribution Service
|
|
415
438
|
- registered via registry service by registry owner
|
416
439
|
- registers distribution components for registered products via registry service by distribution owner (distribution owner role is permissend by the product's instance)
|
417
440
|
- registers distributors for registered distribution components via registry service
|
441
|
+
|
442
|
+
## Contract Organisation
|
443
|
+
|
444
|
+
now
|
445
|
+
|
446
|
+
contracts
|
447
|
+
components
|
448
|
+
instance
|
449
|
+
registry
|
450
|
+
shared
|
451
|
+
types
|
452
|
+
|
453
|
+
|
454
|
+
contracts
|
455
|
+
component
|
456
|
+
pool
|
457
|
+
Pool.sol
|
458
|
+
PoolService.sol
|
459
|
+
oracle
|
460
|
+
distribution
|
461
|
+
product
|
462
|
+
Product.sol
|
463
|
+
ProductService.sol
|
464
|
+
Component.sol
|
465
|
+
ComponentService.sol
|
466
|
+
instance
|
467
|
+
Instance.sol
|
468
|
+
InstanceAccessManager.sol
|
469
|
+
InstanceReader.sol
|
470
|
+
InstanceService.sol
|
471
|
+
InstanceServiceManager.sol
|
472
|
+
registry
|
473
|
+
ChainNft.sol
|
474
|
+
Registry.sol
|
475
|
+
RegistryService.sol
|
476
|
+
RegistryServiceManager.sol
|
477
|
+
shared
|
478
|
+
Registerable.sol
|
479
|
+
RegisterableUpgradable.sol
|
480
|
+
type
|
481
|
+
NftId.sol
|
482
|
+
ObjectType.sol
|
483
|
+
|
@@ -1,8 +1,68 @@
|
|
1
1
|
{
|
2
2
|
"_format": "hh-sol-artifact-1",
|
3
|
-
"contractName": "
|
4
|
-
"sourceName": "contracts/
|
3
|
+
"contractName": "Component",
|
4
|
+
"sourceName": "contracts/components/Component.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "target",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "AddressEmptyCode",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "account",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "AddressInsufficientBalance",
|
64
|
+
"type": "error"
|
65
|
+
},
|
6
66
|
{
|
7
67
|
"inputs": [
|
8
68
|
{
|
@@ -19,6 +79,75 @@
|
|
19
79
|
"name": "ErrorAlreadyLinked",
|
20
80
|
"type": "error"
|
21
81
|
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "caller",
|
87
|
+
"type": "address"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "ErrorComponentNotProductService",
|
91
|
+
"type": "error"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [],
|
95
|
+
"name": "ErrorComponentProductNftAlreadySet",
|
96
|
+
"type": "error"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"inputs": [
|
100
|
+
{
|
101
|
+
"internalType": "address",
|
102
|
+
"name": "caller",
|
103
|
+
"type": "address"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"internalType": "uint64",
|
107
|
+
"name": "requiredRoleIdNum",
|
108
|
+
"type": "uint64"
|
109
|
+
}
|
110
|
+
],
|
111
|
+
"name": "ErrorComponentUnauthorized",
|
112
|
+
"type": "error"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"inputs": [
|
116
|
+
{
|
117
|
+
"internalType": "address",
|
118
|
+
"name": "newWallet",
|
119
|
+
"type": "address"
|
120
|
+
}
|
121
|
+
],
|
122
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
123
|
+
"type": "error"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"inputs": [
|
127
|
+
{
|
128
|
+
"internalType": "address",
|
129
|
+
"name": "oldWallet",
|
130
|
+
"type": "address"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"internalType": "address",
|
134
|
+
"name": "newWallet",
|
135
|
+
"type": "address"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"internalType": "uint256",
|
139
|
+
"name": "allowance",
|
140
|
+
"type": "uint256"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"internalType": "uint256",
|
144
|
+
"name": "balance",
|
145
|
+
"type": "uint256"
|
146
|
+
}
|
147
|
+
],
|
148
|
+
"name": "ErrorComponentWalletAllowanceTooSmall",
|
149
|
+
"type": "error"
|
150
|
+
},
|
22
151
|
{
|
23
152
|
"inputs": [
|
24
153
|
{
|
@@ -52,6 +181,17 @@
|
|
52
181
|
"name": "ErrorNotRegistry",
|
53
182
|
"type": "error"
|
54
183
|
},
|
184
|
+
{
|
185
|
+
"inputs": [
|
186
|
+
{
|
187
|
+
"internalType": "address",
|
188
|
+
"name": "registryAddress",
|
189
|
+
"type": "address"
|
190
|
+
}
|
191
|
+
],
|
192
|
+
"name": "ErrorRegisterableNotRegistry",
|
193
|
+
"type": "error"
|
194
|
+
},
|
55
195
|
{
|
56
196
|
"inputs": [],
|
57
197
|
"name": "ErrorRegistryAddressZero",
|
@@ -73,31 +213,122 @@
|
|
73
213
|
"name": "ErrorRegistryNotInitialized",
|
74
214
|
"type": "error"
|
75
215
|
},
|
216
|
+
{
|
217
|
+
"inputs": [],
|
218
|
+
"name": "FailedInnerCall",
|
219
|
+
"type": "error"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"inputs": [],
|
223
|
+
"name": "InvalidInitialization",
|
224
|
+
"type": "error"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"inputs": [],
|
228
|
+
"name": "NotInitializing",
|
229
|
+
"type": "error"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"inputs": [
|
233
|
+
{
|
234
|
+
"internalType": "address",
|
235
|
+
"name": "token",
|
236
|
+
"type": "address"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"name": "SafeERC20FailedOperation",
|
240
|
+
"type": "error"
|
241
|
+
},
|
76
242
|
{
|
77
243
|
"anonymous": false,
|
78
244
|
"inputs": [
|
79
245
|
{
|
80
246
|
"indexed": false,
|
81
|
-
"internalType": "
|
247
|
+
"internalType": "address",
|
248
|
+
"name": "authority",
|
249
|
+
"type": "address"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"name": "AuthorityUpdated",
|
253
|
+
"type": "event"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"anonymous": false,
|
257
|
+
"inputs": [
|
258
|
+
{
|
259
|
+
"indexed": false,
|
260
|
+
"internalType": "uint64",
|
82
261
|
"name": "version",
|
83
|
-
"type": "
|
84
|
-
}
|
262
|
+
"type": "uint64"
|
263
|
+
}
|
264
|
+
],
|
265
|
+
"name": "Initialized",
|
266
|
+
"type": "event"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"anonymous": false,
|
270
|
+
"inputs": [
|
271
|
+
{
|
272
|
+
"indexed": false,
|
273
|
+
"internalType": "address",
|
274
|
+
"name": "newWallet",
|
275
|
+
"type": "address"
|
276
|
+
}
|
277
|
+
],
|
278
|
+
"name": "LogComponentWalletAddressChanged",
|
279
|
+
"type": "event"
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"anonymous": false,
|
283
|
+
"inputs": [
|
85
284
|
{
|
86
285
|
"indexed": false,
|
87
286
|
"internalType": "address",
|
88
|
-
"name": "
|
287
|
+
"name": "from",
|
89
288
|
"type": "address"
|
90
289
|
},
|
91
290
|
{
|
92
291
|
"indexed": false,
|
93
292
|
"internalType": "address",
|
94
|
-
"name": "
|
293
|
+
"name": "to",
|
95
294
|
"type": "address"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"indexed": false,
|
298
|
+
"internalType": "uint256",
|
299
|
+
"name": "amount",
|
300
|
+
"type": "uint256"
|
96
301
|
}
|
97
302
|
],
|
98
|
-
"name": "
|
303
|
+
"name": "LogComponentWalletTokensTransferred",
|
99
304
|
"type": "event"
|
100
305
|
},
|
306
|
+
{
|
307
|
+
"inputs": [],
|
308
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
309
|
+
"outputs": [
|
310
|
+
{
|
311
|
+
"internalType": "bytes32",
|
312
|
+
"name": "",
|
313
|
+
"type": "bytes32"
|
314
|
+
}
|
315
|
+
],
|
316
|
+
"stateMutability": "view",
|
317
|
+
"type": "function"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"inputs": [],
|
321
|
+
"name": "authority",
|
322
|
+
"outputs": [
|
323
|
+
{
|
324
|
+
"internalType": "address",
|
325
|
+
"name": "",
|
326
|
+
"type": "address"
|
327
|
+
}
|
328
|
+
],
|
329
|
+
"stateMutability": "view",
|
330
|
+
"type": "function"
|
331
|
+
},
|
101
332
|
{
|
102
333
|
"inputs": [],
|
103
334
|
"name": "getInitialInfo",
|
@@ -155,25 +386,12 @@
|
|
155
386
|
},
|
156
387
|
{
|
157
388
|
"inputs": [],
|
158
|
-
"name": "
|
389
|
+
"name": "getInstance",
|
159
390
|
"outputs": [
|
160
391
|
{
|
161
|
-
"internalType": "
|
162
|
-
"name": "",
|
163
|
-
"type": "
|
164
|
-
}
|
165
|
-
],
|
166
|
-
"stateMutability": "view",
|
167
|
-
"type": "function"
|
168
|
-
},
|
169
|
-
{
|
170
|
-
"inputs": [],
|
171
|
-
"name": "getMajorVersion",
|
172
|
-
"outputs": [
|
173
|
-
{
|
174
|
-
"internalType": "VersionPart",
|
175
|
-
"name": "majorVersion",
|
176
|
-
"type": "uint8"
|
392
|
+
"internalType": "contract IInstance",
|
393
|
+
"name": "instance",
|
394
|
+
"type": "address"
|
177
395
|
}
|
178
396
|
],
|
179
397
|
"stateMutability": "view",
|
@@ -220,63 +438,51 @@
|
|
220
438
|
},
|
221
439
|
{
|
222
440
|
"inputs": [],
|
223
|
-
"name": "
|
441
|
+
"name": "getProductNftId",
|
224
442
|
"outputs": [
|
225
443
|
{
|
226
|
-
"internalType": "
|
227
|
-
"name": "",
|
228
|
-
"type": "
|
444
|
+
"internalType": "NftId",
|
445
|
+
"name": "productNftId",
|
446
|
+
"type": "uint96"
|
229
447
|
}
|
230
448
|
],
|
231
449
|
"stateMutability": "view",
|
232
450
|
"type": "function"
|
233
451
|
},
|
234
452
|
{
|
235
|
-
"inputs": [
|
236
|
-
|
237
|
-
"internalType": "ObjectType",
|
238
|
-
"name": "cType",
|
239
|
-
"type": "uint8"
|
240
|
-
}
|
241
|
-
],
|
242
|
-
"name": "getRoleForType",
|
453
|
+
"inputs": [],
|
454
|
+
"name": "getRegistry",
|
243
455
|
"outputs": [
|
244
456
|
{
|
245
|
-
"internalType": "
|
246
|
-
"name": "
|
247
|
-
"type": "
|
457
|
+
"internalType": "contract IRegistry",
|
458
|
+
"name": "",
|
459
|
+
"type": "address"
|
248
460
|
}
|
249
461
|
],
|
250
|
-
"stateMutability": "
|
462
|
+
"stateMutability": "view",
|
251
463
|
"type": "function"
|
252
464
|
},
|
253
465
|
{
|
254
466
|
"inputs": [],
|
255
|
-
"name": "
|
467
|
+
"name": "getToken",
|
256
468
|
"outputs": [
|
257
469
|
{
|
258
|
-
"internalType": "
|
259
|
-
"name": "",
|
260
|
-
"type": "
|
470
|
+
"internalType": "contract IERC20Metadata",
|
471
|
+
"name": "token",
|
472
|
+
"type": "address"
|
261
473
|
}
|
262
474
|
],
|
263
|
-
"stateMutability": "
|
475
|
+
"stateMutability": "view",
|
264
476
|
"type": "function"
|
265
477
|
},
|
266
478
|
{
|
267
|
-
"inputs": [
|
268
|
-
|
269
|
-
"internalType": "uint256",
|
270
|
-
"name": "index",
|
271
|
-
"type": "uint256"
|
272
|
-
}
|
273
|
-
],
|
274
|
-
"name": "getVersion",
|
479
|
+
"inputs": [],
|
480
|
+
"name": "getWallet",
|
275
481
|
"outputs": [
|
276
482
|
{
|
277
|
-
"internalType": "
|
278
|
-
"name": "
|
279
|
-
"type": "
|
483
|
+
"internalType": "address",
|
484
|
+
"name": "walletAddress",
|
485
|
+
"type": "address"
|
280
486
|
}
|
281
487
|
],
|
282
488
|
"stateMutability": "view",
|
@@ -284,82 +490,40 @@
|
|
284
490
|
},
|
285
491
|
{
|
286
492
|
"inputs": [],
|
287
|
-
"name": "
|
493
|
+
"name": "isConsumingScheduledOp",
|
288
494
|
"outputs": [
|
289
495
|
{
|
290
|
-
"internalType": "
|
291
|
-
"name": "
|
292
|
-
"type": "
|
496
|
+
"internalType": "bytes4",
|
497
|
+
"name": "",
|
498
|
+
"type": "bytes4"
|
293
499
|
}
|
294
500
|
],
|
295
501
|
"stateMutability": "view",
|
296
502
|
"type": "function"
|
297
503
|
},
|
298
504
|
{
|
299
|
-
"inputs": [
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
"
|
307
|
-
"
|
308
|
-
|
309
|
-
|
310
|
-
{
|
311
|
-
"internalType": "Version",
|
312
|
-
"name": "version",
|
313
|
-
"type": "uint24"
|
314
|
-
},
|
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": "Timestamp",
|
327
|
-
"name": "activatedAt",
|
328
|
-
"type": "uint40"
|
329
|
-
},
|
330
|
-
{
|
331
|
-
"internalType": "Blocknumber",
|
332
|
-
"name": "activatedIn",
|
333
|
-
"type": "uint32"
|
334
|
-
}
|
335
|
-
],
|
336
|
-
"internalType": "struct IVersionable.VersionInfo",
|
337
|
-
"name": "versionInfo",
|
338
|
-
"type": "tuple"
|
339
|
-
}
|
340
|
-
],
|
341
|
-
"stateMutability": "view",
|
505
|
+
"inputs": [],
|
506
|
+
"name": "linkToRegisteredNftId",
|
507
|
+
"outputs": [],
|
508
|
+
"stateMutability": "nonpayable",
|
509
|
+
"type": "function"
|
510
|
+
},
|
511
|
+
{
|
512
|
+
"inputs": [],
|
513
|
+
"name": "lock",
|
514
|
+
"outputs": [],
|
515
|
+
"stateMutability": "nonpayable",
|
342
516
|
"type": "function"
|
343
517
|
},
|
344
518
|
{
|
345
519
|
"inputs": [
|
346
520
|
{
|
347
521
|
"internalType": "address",
|
348
|
-
"name": "
|
522
|
+
"name": "newAuthority",
|
349
523
|
"type": "address"
|
350
|
-
},
|
351
|
-
{
|
352
|
-
"internalType": "address",
|
353
|
-
"name": "activatedBy",
|
354
|
-
"type": "address"
|
355
|
-
},
|
356
|
-
{
|
357
|
-
"internalType": "bytes",
|
358
|
-
"name": "activationData",
|
359
|
-
"type": "bytes"
|
360
524
|
}
|
361
525
|
],
|
362
|
-
"name": "
|
526
|
+
"name": "setAuthority",
|
363
527
|
"outputs": [],
|
364
528
|
"stateMutability": "nonpayable",
|
365
529
|
"type": "function"
|
@@ -367,25 +531,12 @@
|
|
367
531
|
{
|
368
532
|
"inputs": [
|
369
533
|
{
|
370
|
-
"internalType": "
|
371
|
-
"name": "
|
372
|
-
"type": "
|
373
|
-
}
|
374
|
-
],
|
375
|
-
"name": "isInitialized",
|
376
|
-
"outputs": [
|
377
|
-
{
|
378
|
-
"internalType": "bool",
|
379
|
-
"name": "",
|
380
|
-
"type": "bool"
|
534
|
+
"internalType": "NftId",
|
535
|
+
"name": "productNftId",
|
536
|
+
"type": "uint96"
|
381
537
|
}
|
382
538
|
],
|
383
|
-
"
|
384
|
-
"type": "function"
|
385
|
-
},
|
386
|
-
{
|
387
|
-
"inputs": [],
|
388
|
-
"name": "linkToRegisteredNftId",
|
539
|
+
"name": "setProductNftId",
|
389
540
|
"outputs": [],
|
390
541
|
"stateMutability": "nonpayable",
|
391
542
|
"type": "function"
|
@@ -393,12 +544,12 @@
|
|
393
544
|
{
|
394
545
|
"inputs": [
|
395
546
|
{
|
396
|
-
"internalType": "
|
397
|
-
"name": "
|
547
|
+
"internalType": "address",
|
548
|
+
"name": "newWallet",
|
398
549
|
"type": "address"
|
399
550
|
}
|
400
551
|
],
|
401
|
-
"name": "
|
552
|
+
"name": "setWallet",
|
402
553
|
"outputs": [],
|
403
554
|
"stateMutability": "nonpayable",
|
404
555
|
"type": "function"
|
@@ -423,40 +574,11 @@
|
|
423
574
|
"type": "function"
|
424
575
|
},
|
425
576
|
{
|
426
|
-
"inputs": [
|
427
|
-
{
|
428
|
-
"internalType": "contract IBaseComponent",
|
429
|
-
"name": "component",
|
430
|
-
"type": "address"
|
431
|
-
}
|
432
|
-
],
|
577
|
+
"inputs": [],
|
433
578
|
"name": "unlock",
|
434
579
|
"outputs": [],
|
435
580
|
"stateMutability": "nonpayable",
|
436
581
|
"type": "function"
|
437
|
-
},
|
438
|
-
{
|
439
|
-
"inputs": [
|
440
|
-
{
|
441
|
-
"internalType": "address",
|
442
|
-
"name": "implementation",
|
443
|
-
"type": "address"
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"internalType": "address",
|
447
|
-
"name": "activatedBy",
|
448
|
-
"type": "address"
|
449
|
-
},
|
450
|
-
{
|
451
|
-
"internalType": "bytes",
|
452
|
-
"name": "upgradeData",
|
453
|
-
"type": "bytes"
|
454
|
-
}
|
455
|
-
],
|
456
|
-
"name": "upgrade",
|
457
|
-
"outputs": [],
|
458
|
-
"stateMutability": "nonpayable",
|
459
|
-
"type": "function"
|
460
582
|
}
|
461
583
|
],
|
462
584
|
"bytecode": "0x",
|