@etherisc/gif-next 0.0.2-c96f882-016 → 0.0.2-ca84135-795
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +63 -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} +210 -178
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +171 -90
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +133 -162
- 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 +203 -119
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +183 -146
- 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/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- 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} +74 -3
- 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/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +619 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +104 -14
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +155 -662
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +243 -126
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +164 -66
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +275 -74
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +52 -24
- 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 +146 -229
- 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 +159 -316
- 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 -95
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +530 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +397 -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 +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +13 -13
- 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 +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +13 -13
- 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/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/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- 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/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +177 -0
- package/contracts/components/Distribution.sol +17 -29
- 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 +46 -47
- package/contracts/components/Product.sol +57 -59
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +43 -9
- package/contracts/instance/IInstanceBase.sol +27 -0
- package/contracts/instance/IInstanceService.sol +14 -4
- package/contracts/instance/Instance.sol +54 -237
- package/contracts/instance/InstanceAccessManager.sol +93 -78
- package/contracts/instance/InstanceBase.sol +38 -0
- package/contracts/instance/InstanceReader.sol +29 -26
- package/contracts/instance/InstanceService.sol +301 -77
- 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/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +6 -23
- package/contracts/instance/service/IProductService.sol +6 -73
- 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 +30 -29
- package/contracts/registry/IRegistryService.sol +36 -14
- package/contracts/registry/Registry.sol +163 -239
- package/contracts/registry/RegistryAccessManager.sol +210 -0
- package/contracts/registry/RegistryService.sol +86 -218
- package/contracts/registry/RegistryServiceManager.sol +20 -22
- package/contracts/registry/ReleaseManager.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +110 -0
- package/contracts/shared/ERC165.sol +6 -2
- package/contracts/shared/IRegisterable.sol +0 -2
- package/contracts/shared/IService.sol +2 -1
- 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 +14 -8
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +14 -6
- package/contracts/types/StateId.sol +4 -0
- package/package.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -314
- 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 -1132
- 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/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/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -86
- package/contracts/components/IBaseComponent.sol +0 -24
- package/contracts/instance/AccessManagedSimple.sol +0 -122
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
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
|
|
@@ -419,3 +438,46 @@ Distribution Service
|
|
419
438
|
- registered via registry service by registry owner
|
420
439
|
- registers distribution components for registered products via registry service by distribution owner (distribution owner role is permissend by the product's instance)
|
421
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,30 @@
|
|
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": "target",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AddressEmptyCode",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "account",
|
22
|
+
"type": "address"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"name": "AddressInsufficientBalance",
|
26
|
+
"type": "error"
|
27
|
+
},
|
6
28
|
{
|
7
29
|
"inputs": [
|
8
30
|
{
|
@@ -19,6 +41,75 @@
|
|
19
41
|
"name": "ErrorAlreadyLinked",
|
20
42
|
"type": "error"
|
21
43
|
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "caller",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorComponentNotProductService",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [],
|
57
|
+
"name": "ErrorComponentProductNftAlreadySet",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [
|
62
|
+
{
|
63
|
+
"internalType": "address",
|
64
|
+
"name": "caller",
|
65
|
+
"type": "address"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"internalType": "uint64",
|
69
|
+
"name": "requiredRoleIdNum",
|
70
|
+
"type": "uint64"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"name": "ErrorComponentUnauthorized",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "address",
|
80
|
+
"name": "newWallet",
|
81
|
+
"type": "address"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [
|
89
|
+
{
|
90
|
+
"internalType": "address",
|
91
|
+
"name": "oldWallet",
|
92
|
+
"type": "address"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"internalType": "address",
|
96
|
+
"name": "newWallet",
|
97
|
+
"type": "address"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"internalType": "uint256",
|
101
|
+
"name": "allowance",
|
102
|
+
"type": "uint256"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"internalType": "uint256",
|
106
|
+
"name": "balance",
|
107
|
+
"type": "uint256"
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"name": "ErrorComponentWalletAllowanceTooSmall",
|
111
|
+
"type": "error"
|
112
|
+
},
|
22
113
|
{
|
23
114
|
"inputs": [
|
24
115
|
{
|
@@ -52,6 +143,17 @@
|
|
52
143
|
"name": "ErrorNotRegistry",
|
53
144
|
"type": "error"
|
54
145
|
},
|
146
|
+
{
|
147
|
+
"inputs": [
|
148
|
+
{
|
149
|
+
"internalType": "address",
|
150
|
+
"name": "registryAddress",
|
151
|
+
"type": "address"
|
152
|
+
}
|
153
|
+
],
|
154
|
+
"name": "ErrorRegisterableNotRegistry",
|
155
|
+
"type": "error"
|
156
|
+
},
|
55
157
|
{
|
56
158
|
"inputs": [],
|
57
159
|
"name": "ErrorRegistryAddressZero",
|
@@ -73,31 +175,96 @@
|
|
73
175
|
"name": "ErrorRegistryNotInitialized",
|
74
176
|
"type": "error"
|
75
177
|
},
|
178
|
+
{
|
179
|
+
"inputs": [],
|
180
|
+
"name": "FailedInnerCall",
|
181
|
+
"type": "error"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"inputs": [],
|
185
|
+
"name": "InvalidInitialization",
|
186
|
+
"type": "error"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"inputs": [],
|
190
|
+
"name": "NotInitializing",
|
191
|
+
"type": "error"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"inputs": [
|
195
|
+
{
|
196
|
+
"internalType": "address",
|
197
|
+
"name": "token",
|
198
|
+
"type": "address"
|
199
|
+
}
|
200
|
+
],
|
201
|
+
"name": "SafeERC20FailedOperation",
|
202
|
+
"type": "error"
|
203
|
+
},
|
76
204
|
{
|
77
205
|
"anonymous": false,
|
78
206
|
"inputs": [
|
79
207
|
{
|
80
208
|
"indexed": false,
|
81
|
-
"internalType": "
|
209
|
+
"internalType": "uint64",
|
82
210
|
"name": "version",
|
83
|
-
"type": "
|
84
|
-
}
|
211
|
+
"type": "uint64"
|
212
|
+
}
|
213
|
+
],
|
214
|
+
"name": "Initialized",
|
215
|
+
"type": "event"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"anonymous": false,
|
219
|
+
"inputs": [
|
85
220
|
{
|
86
221
|
"indexed": false,
|
87
222
|
"internalType": "address",
|
88
|
-
"name": "
|
223
|
+
"name": "newWallet",
|
224
|
+
"type": "address"
|
225
|
+
}
|
226
|
+
],
|
227
|
+
"name": "LogComponentWalletAddressChanged",
|
228
|
+
"type": "event"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"anonymous": false,
|
232
|
+
"inputs": [
|
233
|
+
{
|
234
|
+
"indexed": false,
|
235
|
+
"internalType": "address",
|
236
|
+
"name": "from",
|
89
237
|
"type": "address"
|
90
238
|
},
|
91
239
|
{
|
92
240
|
"indexed": false,
|
93
241
|
"internalType": "address",
|
94
|
-
"name": "
|
242
|
+
"name": "to",
|
95
243
|
"type": "address"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"indexed": false,
|
247
|
+
"internalType": "uint256",
|
248
|
+
"name": "amount",
|
249
|
+
"type": "uint256"
|
96
250
|
}
|
97
251
|
],
|
98
|
-
"name": "
|
252
|
+
"name": "LogComponentWalletTokensTransferred",
|
99
253
|
"type": "event"
|
100
254
|
},
|
255
|
+
{
|
256
|
+
"inputs": [],
|
257
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
258
|
+
"outputs": [
|
259
|
+
{
|
260
|
+
"internalType": "bytes32",
|
261
|
+
"name": "",
|
262
|
+
"type": "bytes32"
|
263
|
+
}
|
264
|
+
],
|
265
|
+
"stateMutability": "view",
|
266
|
+
"type": "function"
|
267
|
+
},
|
101
268
|
{
|
102
269
|
"inputs": [],
|
103
270
|
"name": "getInitialInfo",
|
@@ -155,25 +322,12 @@
|
|
155
322
|
},
|
156
323
|
{
|
157
324
|
"inputs": [],
|
158
|
-
"name": "
|
159
|
-
"outputs": [
|
160
|
-
{
|
161
|
-
"internalType": "uint64",
|
162
|
-
"name": "",
|
163
|
-
"type": "uint64"
|
164
|
-
}
|
165
|
-
],
|
166
|
-
"stateMutability": "view",
|
167
|
-
"type": "function"
|
168
|
-
},
|
169
|
-
{
|
170
|
-
"inputs": [],
|
171
|
-
"name": "getMajorVersion",
|
325
|
+
"name": "getInstance",
|
172
326
|
"outputs": [
|
173
327
|
{
|
174
|
-
"internalType": "
|
175
|
-
"name": "
|
176
|
-
"type": "
|
328
|
+
"internalType": "contract IInstance",
|
329
|
+
"name": "instance",
|
330
|
+
"type": "address"
|
177
331
|
}
|
178
332
|
],
|
179
333
|
"stateMutability": "view",
|
@@ -220,63 +374,38 @@
|
|
220
374
|
},
|
221
375
|
{
|
222
376
|
"inputs": [],
|
223
|
-
"name": "
|
377
|
+
"name": "getProductNftId",
|
224
378
|
"outputs": [
|
225
379
|
{
|
226
|
-
"internalType": "
|
227
|
-
"name": "",
|
228
|
-
"type": "
|
380
|
+
"internalType": "NftId",
|
381
|
+
"name": "productNftId",
|
382
|
+
"type": "uint96"
|
229
383
|
}
|
230
384
|
],
|
231
385
|
"stateMutability": "view",
|
232
386
|
"type": "function"
|
233
387
|
},
|
234
|
-
{
|
235
|
-
"inputs": [
|
236
|
-
{
|
237
|
-
"internalType": "ObjectType",
|
238
|
-
"name": "cType",
|
239
|
-
"type": "uint8"
|
240
|
-
}
|
241
|
-
],
|
242
|
-
"name": "getRoleForType",
|
243
|
-
"outputs": [
|
244
|
-
{
|
245
|
-
"internalType": "RoleId",
|
246
|
-
"name": "role",
|
247
|
-
"type": "uint64"
|
248
|
-
}
|
249
|
-
],
|
250
|
-
"stateMutability": "pure",
|
251
|
-
"type": "function"
|
252
|
-
},
|
253
388
|
{
|
254
389
|
"inputs": [],
|
255
|
-
"name": "
|
390
|
+
"name": "getRegistry",
|
256
391
|
"outputs": [
|
257
392
|
{
|
258
|
-
"internalType": "
|
393
|
+
"internalType": "contract IRegistry",
|
259
394
|
"name": "",
|
260
|
-
"type": "
|
395
|
+
"type": "address"
|
261
396
|
}
|
262
397
|
],
|
263
|
-
"stateMutability": "
|
398
|
+
"stateMutability": "view",
|
264
399
|
"type": "function"
|
265
400
|
},
|
266
401
|
{
|
267
|
-
"inputs": [
|
268
|
-
|
269
|
-
"internalType": "uint256",
|
270
|
-
"name": "index",
|
271
|
-
"type": "uint256"
|
272
|
-
}
|
273
|
-
],
|
274
|
-
"name": "getVersion",
|
402
|
+
"inputs": [],
|
403
|
+
"name": "getToken",
|
275
404
|
"outputs": [
|
276
405
|
{
|
277
|
-
"internalType": "
|
278
|
-
"name": "
|
279
|
-
"type": "
|
406
|
+
"internalType": "contract IERC20Metadata",
|
407
|
+
"name": "token",
|
408
|
+
"type": "address"
|
280
409
|
}
|
281
410
|
],
|
282
411
|
"stateMutability": "view",
|
@@ -284,82 +413,27 @@
|
|
284
413
|
},
|
285
414
|
{
|
286
415
|
"inputs": [],
|
287
|
-
"name": "
|
416
|
+
"name": "getWallet",
|
288
417
|
"outputs": [
|
289
418
|
{
|
290
|
-
"internalType": "
|
291
|
-
"name": "
|
292
|
-
"type": "
|
419
|
+
"internalType": "address",
|
420
|
+
"name": "walletAddress",
|
421
|
+
"type": "address"
|
293
422
|
}
|
294
423
|
],
|
295
424
|
"stateMutability": "view",
|
296
425
|
"type": "function"
|
297
426
|
},
|
298
427
|
{
|
299
|
-
"inputs": [
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
"type": "uint24"
|
304
|
-
}
|
305
|
-
],
|
306
|
-
"name": "getVersionInfo",
|
307
|
-
"outputs": [
|
308
|
-
{
|
309
|
-
"components": [
|
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",
|
428
|
+
"inputs": [],
|
429
|
+
"name": "linkToRegisteredNftId",
|
430
|
+
"outputs": [],
|
431
|
+
"stateMutability": "nonpayable",
|
342
432
|
"type": "function"
|
343
433
|
},
|
344
434
|
{
|
345
|
-
"inputs": [
|
346
|
-
|
347
|
-
"internalType": "address",
|
348
|
-
"name": "implementation",
|
349
|
-
"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
|
-
}
|
361
|
-
],
|
362
|
-
"name": "initialize",
|
435
|
+
"inputs": [],
|
436
|
+
"name": "lock",
|
363
437
|
"outputs": [],
|
364
438
|
"stateMutability": "nonpayable",
|
365
439
|
"type": "function"
|
@@ -367,25 +441,12 @@
|
|
367
441
|
{
|
368
442
|
"inputs": [
|
369
443
|
{
|
370
|
-
"internalType": "
|
371
|
-
"name": "
|
372
|
-
"type": "
|
373
|
-
}
|
374
|
-
],
|
375
|
-
"name": "isInitialized",
|
376
|
-
"outputs": [
|
377
|
-
{
|
378
|
-
"internalType": "bool",
|
379
|
-
"name": "",
|
380
|
-
"type": "bool"
|
444
|
+
"internalType": "NftId",
|
445
|
+
"name": "productNftId",
|
446
|
+
"type": "uint96"
|
381
447
|
}
|
382
448
|
],
|
383
|
-
"
|
384
|
-
"type": "function"
|
385
|
-
},
|
386
|
-
{
|
387
|
-
"inputs": [],
|
388
|
-
"name": "linkToRegisteredNftId",
|
449
|
+
"name": "setProductNftId",
|
389
450
|
"outputs": [],
|
390
451
|
"stateMutability": "nonpayable",
|
391
452
|
"type": "function"
|
@@ -393,12 +454,12 @@
|
|
393
454
|
{
|
394
455
|
"inputs": [
|
395
456
|
{
|
396
|
-
"internalType": "
|
397
|
-
"name": "
|
457
|
+
"internalType": "address",
|
458
|
+
"name": "newWallet",
|
398
459
|
"type": "address"
|
399
460
|
}
|
400
461
|
],
|
401
|
-
"name": "
|
462
|
+
"name": "setWallet",
|
402
463
|
"outputs": [],
|
403
464
|
"stateMutability": "nonpayable",
|
404
465
|
"type": "function"
|
@@ -423,40 +484,11 @@
|
|
423
484
|
"type": "function"
|
424
485
|
},
|
425
486
|
{
|
426
|
-
"inputs": [
|
427
|
-
{
|
428
|
-
"internalType": "contract IBaseComponent",
|
429
|
-
"name": "component",
|
430
|
-
"type": "address"
|
431
|
-
}
|
432
|
-
],
|
487
|
+
"inputs": [],
|
433
488
|
"name": "unlock",
|
434
489
|
"outputs": [],
|
435
490
|
"stateMutability": "nonpayable",
|
436
491
|
"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
492
|
}
|
461
493
|
],
|
462
494
|
"bytecode": "0x",
|