@etherisc/gif-next 0.0.2-de0a1d3-009 → 0.0.2-e1e92ab-754
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 +51 -25
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +166 -39
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +212 -60
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +119 -39
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -163
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +6 -185
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -163
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +257 -119
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +220 -50
- 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/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 +247 -355
- 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 +369 -507
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +144 -50
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +1 -1
- 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 +120 -40
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +147 -66
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- 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 +140 -59
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
- 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/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
- 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/distribution/DistributionModule.sol/DistributionModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +2 -2
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +1 -1
- 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 +0 -13
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -13
- 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 +29 -9
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +28 -8
- 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/RiskModule.sol/RiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +2 -2
- 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 +138 -11
- 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 +138 -11
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +288 -79
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +188 -65
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +122 -61
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +120 -40
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +120 -40
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +120 -40
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +190 -67
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +220 -97
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +141 -12
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +190 -51
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +872 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +380 -139
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1245 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +490 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- 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 +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +117 -37
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +190 -37
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/{Proxy.sol/ProxyWithProxyAdminGetter.json → UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json} +4 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +4 -27
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +1 -1
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +212 -60
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +257 -119
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +225 -56
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +204 -36
- 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 +187 -69
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- 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 +15 -38
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- 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 +4 -4
- 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/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.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/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- 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 +2 -2
- package/contracts/components/BaseComponent.sol +11 -26
- package/contracts/components/Distribution.sol +29 -6
- package/contracts/components/IBaseComponent.sol +1 -1
- package/contracts/components/IDistributionComponent.sol +1 -2
- package/contracts/components/IPoolComponent.sol +3 -10
- package/contracts/components/IProductComponent.sol +2 -3
- package/contracts/components/Pool.sol +84 -73
- package/contracts/components/Product.sol +85 -13
- package/contracts/instance/IInstance.sol +6 -7
- package/contracts/instance/Instance.sol +18 -9
- package/contracts/instance/base/ComponentServiceBase.sol +13 -6
- package/contracts/instance/base/IInstanceBase.sol +3 -2
- package/contracts/instance/base/InstanceBase.sol +6 -8
- package/contracts/instance/base/ServiceBase.sol +20 -13
- package/contracts/instance/module/component/ComponentModule.sol +4 -3
- package/contracts/instance/module/component/IComponent.sol +1 -1
- package/contracts/instance/module/policy/IPolicy.sol +1 -1
- package/contracts/instance/module/pool/IPoolModule.sol +4 -3
- package/contracts/instance/module/pool/PoolModule.sol +12 -7
- package/contracts/instance/module/treasury/ITreasury.sol +6 -4
- package/contracts/instance/module/treasury/TokenHandler.sol +1 -1
- package/contracts/instance/module/treasury/TreasuryModule.sol +23 -30
- package/contracts/instance/service/ComponentOwnerService.sol +224 -66
- package/contracts/instance/service/DistributionService.sol +6 -11
- package/contracts/instance/service/IComponentOwnerService.sol +0 -2
- package/contracts/instance/service/PoolService.sol +19 -19
- package/contracts/instance/service/ProductService.sol +27 -26
- package/contracts/registry/ChainNft.sol +42 -14
- package/contracts/registry/IChainNft.sol +2 -1
- package/contracts/registry/IRegistry.sol +27 -27
- package/contracts/registry/IRegistryService.sol +35 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +312 -267
- package/contracts/registry/RegistryService.sol +441 -0
- package/contracts/registry/RegistryServiceManager.sol +63 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +8 -15
- package/contracts/shared/IVersionable.sol +40 -9
- package/contracts/shared/NftOwnable.sol +136 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +62 -59
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +109 -61
- package/contracts/test/TestDistribution.sol +3 -2
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestPool.sol +4 -2
- package/contracts/test/TestProduct.sol +4 -2
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestService.sol +5 -11
- package/contracts/types/Fee.sol +3 -3
- package/contracts/types/RoleId.sol +7 -0
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +1 -0
- package/package.json +4 -3
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.json +0 -10
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/registry/RegistryUpgradeable.sol/RegistryUpgradeable.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryUpgradeable.sol/RegistryUpgradeable.json +0 -724
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +0 -248
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
- package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.dbg.json +0 -4
- package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.json +0 -228
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/registry/RegistryUpgradeable.sol +0 -473
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/shared/Proxy.sol +0 -94
- package/contracts/shared/VersionableUpgradeable.sol +0 -133
@@ -1,12 +1,12 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.
|
2
|
+
pragma solidity ^0.8.20;
|
3
3
|
|
4
4
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
5
|
|
6
6
|
import {IRegistry} from "../../registry/IRegistry.sol";
|
7
7
|
import {IInstance} from "../IInstance.sol";
|
8
8
|
|
9
|
-
import {ITreasuryModule} from "../module/treasury/ITreasury.sol";
|
9
|
+
import {ITreasury, ITreasuryModule} from "../module/treasury/ITreasury.sol";
|
10
10
|
import {TreasuryModule} from "../module/treasury/TreasuryModule.sol";
|
11
11
|
import {IComponent, IComponentModule} from "../module/component/IComponent.sol";
|
12
12
|
import {IBaseComponent} from "../../components/IBaseComponent.sol";
|
@@ -16,18 +16,23 @@ import {IVersionable} from "../../shared/IVersionable.sol";
|
|
16
16
|
import {Versionable} from "../../shared/Versionable.sol";
|
17
17
|
|
18
18
|
import {RoleId, PRODUCT_OWNER_ROLE, POOL_OWNER_ROLE, DISTRIBUTION_OWNER_ROLE, ORACLE_OWNER_ROLE} from "../../types/RoleId.sol";
|
19
|
-
import {ObjectType, COMPONENT, PRODUCT, ORACLE, POOL, DISTRIBUTION} from "../../types/ObjectType.sol";
|
19
|
+
import {ObjectType, TOKEN, COMPONENT, PRODUCT, ORACLE, POOL, DISTRIBUTION} from "../../types/ObjectType.sol";
|
20
20
|
import {StateId, ACTIVE, PAUSED} from "../../types/StateId.sol";
|
21
21
|
import {Key32} from "../../types/Key32.sol";
|
22
22
|
import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
|
23
23
|
import {Fee} from "../../types/Fee.sol";
|
24
24
|
import {Version, VersionLib} from "../../types/Version.sol";
|
25
|
+
import {UFixed, UFixedLib} from "../../types/UFixed.sol";
|
25
26
|
|
26
27
|
import {IDistributionComponent} from "../../components/IDistributionComponent.sol";
|
27
28
|
import {IPoolComponent} from "../../components/IPoolComponent.sol";
|
28
29
|
import {IProductComponent} from "../../components/IProductComponent.sol";
|
29
|
-
import {
|
30
|
+
import {IService} from "../base/IService.sol";
|
30
31
|
import {IComponentOwnerService} from "./IComponentOwnerService.sol";
|
32
|
+
import {ServiceBase} from "../base/ServiceBase.sol";
|
33
|
+
import {IPool, IPoolModule} from "../module/pool/IPoolModule.sol";
|
34
|
+
|
35
|
+
import {IRegistryService} from "../../registry/IRegistryService.sol";
|
31
36
|
|
32
37
|
contract ComponentOwnerService is
|
33
38
|
ServiceBase,
|
@@ -35,32 +40,35 @@ contract ComponentOwnerService is
|
|
35
40
|
{
|
36
41
|
using NftIdLib for NftId;
|
37
42
|
|
43
|
+
error MissingTypeRole();
|
44
|
+
error WalletIsZero();
|
45
|
+
error InvalidToken();
|
46
|
+
error InvalidPool();
|
47
|
+
error InvalidDistribution();
|
48
|
+
error InvalidPoolsInstance();
|
49
|
+
error InvalidDistributionsInstance();
|
50
|
+
|
51
|
+
error CollateralizationLevelIsZero();
|
52
|
+
|
38
53
|
string public constant NAME = "ComponentOwnerService";
|
39
54
|
|
40
55
|
modifier onlyRegisteredComponent(IBaseComponent component) {
|
41
|
-
NftId nftId =
|
56
|
+
NftId nftId = getRegistry().getNftId(address(component));
|
42
57
|
require(nftId.gtz(), "ERROR:COS-001:COMPONENT_UNKNOWN");
|
43
58
|
_;
|
44
59
|
}
|
45
60
|
|
46
61
|
constructor(
|
47
62
|
address registry,
|
48
|
-
NftId registryNftId
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
}
|
53
|
-
|
54
|
-
function getVersion()
|
55
|
-
public
|
56
|
-
pure
|
57
|
-
virtual override (IVersionable, Versionable)
|
58
|
-
returns(Version)
|
63
|
+
NftId registryNftId,
|
64
|
+
address initialOwner
|
65
|
+
)
|
59
66
|
{
|
60
|
-
|
67
|
+
_initializeServiceBase(registry, registryNftId, initialOwner);
|
68
|
+
_registerInterface(type(IComponentOwnerService).interfaceId);
|
61
69
|
}
|
62
70
|
|
63
|
-
function getName()
|
71
|
+
function getName() public pure override(IService, ServiceBase) returns(string memory name) {
|
64
72
|
return NAME;
|
65
73
|
}
|
66
74
|
|
@@ -81,58 +89,92 @@ contract ComponentOwnerService is
|
|
81
89
|
}
|
82
90
|
}
|
83
91
|
|
84
|
-
function
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
92
|
+
function getRegistryService() public view virtual returns (IRegistryService) {
|
93
|
+
address service = getRegistry().getServiceAddress("RegistryService", getMajorVersion());
|
94
|
+
return IRegistryService(service);
|
95
|
+
}
|
96
|
+
|
97
|
+
function registerProduct(
|
98
|
+
IBaseComponent product
|
99
|
+
) external returns (NftId nftId) {
|
100
|
+
|
101
|
+
// TODO some info parameters from component and from register may differ -> getObjectInfo() after registration?
|
102
|
+
(
|
103
|
+
IRegistry.ObjectInfo memory info,
|
104
|
+
bytes memory data
|
105
|
+
) = getRegistryService().registerProduct(
|
106
|
+
product,
|
107
|
+
msg.sender);
|
108
|
+
|
109
|
+
NftId instanceNftId = info.parentNftId;
|
110
|
+
address instanceAddress = getRegistry().getObjectInfo(instanceNftId).objectAddress;
|
111
|
+
IInstance instance = IInstance(instanceAddress);
|
112
|
+
|
113
|
+
RoleId typeRole = getRoleForType(PRODUCT());
|
114
|
+
// TODO refactor to use access manager infra
|
115
|
+
// if(instance.hasRole(typeRole, msg.sender) == false) {
|
116
|
+
// revert MissingTypeRole();
|
117
|
+
// }
|
118
|
+
|
119
|
+
_registerProduct(
|
120
|
+
info.nftId,
|
121
|
+
instanceNftId,
|
122
|
+
instance,
|
123
|
+
data
|
91
124
|
);
|
125
|
+
}
|
92
126
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
127
|
+
function registerPool(
|
128
|
+
IBaseComponent pool
|
129
|
+
) external returns (NftId nftId) {
|
130
|
+
|
131
|
+
// TODO some info parameters from component and from register may differ -> getObjectInfo() after registration?
|
132
|
+
(
|
133
|
+
IRegistry.ObjectInfo memory info,
|
134
|
+
bytes memory data
|
135
|
+
) = getRegistryService().registerPool(
|
136
|
+
pool,
|
137
|
+
msg.sender);
|
138
|
+
|
139
|
+
NftId instanceNftId = info.parentNftId;
|
140
|
+
address instanceAddress = getRegistry().getObjectInfo(instanceNftId).objectAddress;
|
141
|
+
IInstance instance = IInstance(instanceAddress);
|
142
|
+
|
143
|
+
RoleId typeRole = getRoleForType(POOL());
|
144
|
+
// TODO refactor to use access manager infra
|
145
|
+
// if(instance.hasRole(typeRole, msg.sender) == false) {
|
146
|
+
// revert MissingTypeRole();
|
147
|
+
// }
|
148
|
+
|
149
|
+
_registerPool(
|
150
|
+
info.nftId,
|
151
|
+
instanceNftId,
|
152
|
+
instance,
|
153
|
+
data
|
99
154
|
);
|
155
|
+
}
|
100
156
|
|
101
|
-
|
102
|
-
|
157
|
+
function registerDistribution(
|
158
|
+
IBaseComponent distribution
|
159
|
+
) external returns (NftId nftId) {
|
103
160
|
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
instance.registerProductSetup(
|
122
|
-
product,
|
123
|
-
pool,
|
124
|
-
distribution
|
125
|
-
);
|
126
|
-
} else if (component.getType() == POOL()) {
|
127
|
-
IPoolComponent pool = IPoolComponent(address(component));
|
128
|
-
|
129
|
-
// register with pool
|
130
|
-
instance.registerPool(
|
131
|
-
nftId,
|
132
|
-
pool.isVerifying(),
|
133
|
-
pool.getCollateralizationLevel());
|
134
|
-
}
|
135
|
-
// TODO add compensation
|
161
|
+
// TODO some info parameters from component and from register may differ -> getObjectInfo() after registration?
|
162
|
+
(
|
163
|
+
IRegistry.ObjectInfo memory info,
|
164
|
+
bytes memory data
|
165
|
+
) = getRegistryService().registerDistribution(
|
166
|
+
distribution,
|
167
|
+
msg.sender);
|
168
|
+
|
169
|
+
NftId instanceNftId = info.parentNftId;
|
170
|
+
address instanceAddress = getRegistry().getObjectInfo(instanceNftId).objectAddress;
|
171
|
+
IInstance instance = IInstance(instanceAddress);
|
172
|
+
|
173
|
+
RoleId typeRole = getRoleForType(DISTRIBUTION());
|
174
|
+
// TODO refactor to use access manager infra
|
175
|
+
// if(instance.hasRole(typeRole, msg.sender) == false) {
|
176
|
+
// revert MissingTypeRole();
|
177
|
+
// }
|
136
178
|
}
|
137
179
|
|
138
180
|
function lock(
|
@@ -154,4 +196,120 @@ contract ComponentOwnerService is
|
|
154
196
|
Key32 key = nftId.toKey32(COMPONENT());
|
155
197
|
instance.updateState(key, ACTIVE());
|
156
198
|
}
|
157
|
-
|
199
|
+
|
200
|
+
// Internals
|
201
|
+
|
202
|
+
function _registerProduct(
|
203
|
+
NftId nftId,
|
204
|
+
NftId instanceNftId,
|
205
|
+
IInstance instance,
|
206
|
+
bytes memory data
|
207
|
+
)
|
208
|
+
internal
|
209
|
+
{
|
210
|
+
(
|
211
|
+
ITreasury.TreasuryInfo memory info,
|
212
|
+
address wallet
|
213
|
+
) = abi.decode(data, (ITreasury.TreasuryInfo, address));
|
214
|
+
|
215
|
+
IRegistry _registry = getRegistry();
|
216
|
+
|
217
|
+
if(wallet == address(0)) {
|
218
|
+
revert WalletIsZero();
|
219
|
+
}
|
220
|
+
|
221
|
+
IRegistry.ObjectInfo memory tokenInfo = _registry.getObjectInfo(address(info.token));
|
222
|
+
|
223
|
+
if(tokenInfo.objectType != TOKEN()) {
|
224
|
+
revert InvalidToken();
|
225
|
+
}
|
226
|
+
|
227
|
+
IRegistry.ObjectInfo memory poolInfo = _registry.getObjectInfo(info.poolNftId);
|
228
|
+
|
229
|
+
if(poolInfo.objectType != POOL()) {
|
230
|
+
revert InvalidPool();
|
231
|
+
}
|
232
|
+
|
233
|
+
if(poolInfo.parentNftId != instanceNftId) {
|
234
|
+
revert InvalidPoolsInstance();
|
235
|
+
}
|
236
|
+
// TODO pool have the same token
|
237
|
+
//ITreasury.PoolSetup memory poolSetup = instance.getPoolSetup(info.poolNftId);
|
238
|
+
//require(tokenInfo.objectAddress == address(poolSetup.token), "ERROR:COS-018:PRODUCT_POOL_TOKEN_MISMATCH");
|
239
|
+
// TODO pool is not linked
|
240
|
+
|
241
|
+
IRegistry.ObjectInfo memory distributionInfo = _registry.getObjectInfo(info.distributionNftId);
|
242
|
+
|
243
|
+
if(distributionInfo.objectType != DISTRIBUTION()) {
|
244
|
+
revert InvalidDistribution();
|
245
|
+
}
|
246
|
+
|
247
|
+
if(distributionInfo.parentNftId != instanceNftId) {
|
248
|
+
revert InvalidDistributionsInstance();
|
249
|
+
}
|
250
|
+
// TODO distribution have the same token
|
251
|
+
// TODO distribution is not linked
|
252
|
+
|
253
|
+
// component module
|
254
|
+
instance.registerComponent(
|
255
|
+
nftId,
|
256
|
+
info.token,
|
257
|
+
wallet // TODO move wallet into TreasuryInfo?
|
258
|
+
);
|
259
|
+
|
260
|
+
// treasury module
|
261
|
+
instance.registerProductSetup(
|
262
|
+
nftId,
|
263
|
+
info
|
264
|
+
);
|
265
|
+
}
|
266
|
+
|
267
|
+
function _registerPool(
|
268
|
+
NftId nftId,
|
269
|
+
NftId instanceNftId,
|
270
|
+
IInstance instance,
|
271
|
+
bytes memory data
|
272
|
+
)
|
273
|
+
internal
|
274
|
+
{
|
275
|
+
(
|
276
|
+
IPool.PoolInfo memory info,
|
277
|
+
address wallet,
|
278
|
+
IERC20Metadata token,
|
279
|
+
/*poolFee*/,
|
280
|
+
/*stakingFee*/,
|
281
|
+
/*performanceFee*/
|
282
|
+
) = abi.decode(data, (IPool.PoolInfo, address, IERC20Metadata, Fee, Fee, Fee));
|
283
|
+
|
284
|
+
IRegistry _registry = getRegistry();
|
285
|
+
|
286
|
+
if(wallet == address(0)) {
|
287
|
+
revert WalletIsZero();
|
288
|
+
}
|
289
|
+
|
290
|
+
ObjectType tokenType = _registry.getObjectInfo(address(token)).objectType;
|
291
|
+
|
292
|
+
if(tokenType != TOKEN()) {
|
293
|
+
revert InvalidToken();
|
294
|
+
}
|
295
|
+
|
296
|
+
if(UFixedLib.eqz(info.collateralizationLevel)) {
|
297
|
+
revert CollateralizationLevelIsZero();
|
298
|
+
}
|
299
|
+
|
300
|
+
// TODO add more validations
|
301
|
+
|
302
|
+
// component module
|
303
|
+
instance.registerComponent(
|
304
|
+
nftId,
|
305
|
+
token,
|
306
|
+
wallet
|
307
|
+
);
|
308
|
+
|
309
|
+
// pool module
|
310
|
+
instance.registerPool(
|
311
|
+
nftId,
|
312
|
+
info
|
313
|
+
);
|
314
|
+
}
|
315
|
+
}
|
@@ -13,6 +13,8 @@ import {Version, VersionLib} from "../../types/Version.sol";
|
|
13
13
|
import {IVersionable} from "../../shared/IVersionable.sol";
|
14
14
|
import {Versionable} from "../../shared/Versionable.sol";
|
15
15
|
|
16
|
+
import {IService} from "../base/IService.sol";
|
17
|
+
import {ServiceBase} from "../base/ServiceBase.sol";
|
16
18
|
import {ComponentServiceBase} from "../base/ComponentServiceBase.sol";
|
17
19
|
import {IDistributionService} from "./IDistributionService.sol";
|
18
20
|
|
@@ -24,22 +26,15 @@ contract DistributionService is
|
|
24
26
|
|
25
27
|
constructor(
|
26
28
|
address registry,
|
27
|
-
NftId registryNftId
|
28
|
-
|
29
|
+
NftId registryNftId,
|
30
|
+
address initialOwner
|
31
|
+
) ComponentServiceBase(registry, registryNftId, initialOwner)
|
29
32
|
{
|
30
33
|
_registerInterface(type(IDistributionService).interfaceId);
|
31
34
|
}
|
32
35
|
|
33
|
-
function getVersion()
|
34
|
-
public
|
35
|
-
pure
|
36
|
-
virtual override (IVersionable, Versionable)
|
37
|
-
returns(Version)
|
38
|
-
{
|
39
|
-
return VersionLib.toVersion(3,0,0);
|
40
|
-
}
|
41
36
|
|
42
|
-
function getName()
|
37
|
+
function getName() public pure override(IService, ServiceBase) returns(string memory name) {
|
43
38
|
return NAME;
|
44
39
|
}
|
45
40
|
|
@@ -10,8 +10,6 @@ import {IService} from "../base/IService.sol";
|
|
10
10
|
// TODO rename to registry service
|
11
11
|
interface IComponentOwnerService is IService {
|
12
12
|
|
13
|
-
function register(IBaseComponent component) external returns(NftId componentNftId);
|
14
|
-
|
15
13
|
// TODO move to product/pool services
|
16
14
|
function lock(IBaseComponent component) external;
|
17
15
|
|
@@ -9,11 +9,13 @@ import {ITreasury, ITreasuryModule, TokenHandler} from "../../instance/module/tr
|
|
9
9
|
import {IVersionable} from "../../shared/IVersionable.sol";
|
10
10
|
import {Versionable} from "../../shared/Versionable.sol";
|
11
11
|
|
12
|
-
import {NftId, NftIdLib} from "../../types/NftId.sol";
|
12
|
+
import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
|
13
13
|
import {POOL, BUNDLE} from "../../types/ObjectType.sol";
|
14
14
|
import {Fee} from "../../types/Fee.sol";
|
15
15
|
import {Version, VersionLib} from "../../types/Version.sol";
|
16
16
|
|
17
|
+
import {IService} from "../base/IService.sol";
|
18
|
+
import {ServiceBase} from "../base/ServiceBase.sol";
|
17
19
|
import {ComponentServiceBase} from "../base/ComponentServiceBase.sol";
|
18
20
|
import {IPoolService} from "./IPoolService.sol";
|
19
21
|
|
@@ -25,22 +27,14 @@ contract PoolService is ComponentServiceBase, IPoolService {
|
|
25
27
|
|
26
28
|
constructor(
|
27
29
|
address registry,
|
28
|
-
NftId registryNftId
|
29
|
-
|
30
|
+
NftId registryNftId,
|
31
|
+
address initialOwner
|
32
|
+
) ComponentServiceBase(registry, registryNftId, initialOwner)
|
30
33
|
{
|
31
34
|
_registerInterface(type(IPoolService).interfaceId);
|
32
35
|
}
|
33
36
|
|
34
|
-
function
|
35
|
-
public
|
36
|
-
pure
|
37
|
-
virtual override (IVersionable, Versionable)
|
38
|
-
returns(Version)
|
39
|
-
{
|
40
|
-
return VersionLib.toVersion(3,0,0);
|
41
|
-
}
|
42
|
-
|
43
|
-
function getName() external pure override returns(string memory name) {
|
37
|
+
function getName() public pure override(IService, ServiceBase) returns(string memory name) {
|
44
38
|
return NAME;
|
45
39
|
}
|
46
40
|
|
@@ -77,11 +71,17 @@ contract PoolService is ComponentServiceBase, IPoolService {
|
|
77
71
|
|
78
72
|
// register bundle with registry
|
79
73
|
NftId poolNftId = info.nftId;
|
80
|
-
bundleNftId =
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
74
|
+
bundleNftId = getRegistryService().registerBundle(
|
75
|
+
IRegistry.ObjectInfo(
|
76
|
+
zeroNftId(),
|
77
|
+
poolNftId,
|
78
|
+
BUNDLE(),
|
79
|
+
false, // intercepting property for bundles is defined on pool
|
80
|
+
address(0),
|
81
|
+
owner,
|
82
|
+
""
|
83
|
+
)
|
84
|
+
);
|
85
85
|
|
86
86
|
// create bundle info in instance
|
87
87
|
instance.createBundleInfo(
|
@@ -136,7 +136,7 @@ contract PoolService is ComponentServiceBase, IPoolService {
|
|
136
136
|
if(stakingAmount > 0) {
|
137
137
|
NftId productNftId = instance.getProductNftId(poolNftId);
|
138
138
|
TokenHandler tokenHandler = instance.getTokenHandler(productNftId);
|
139
|
-
address bundleOwner =
|
139
|
+
address bundleOwner = getRegistry().ownerOf(bundleNftId);
|
140
140
|
address poolWallet = instance.getComponentWallet(poolNftId);
|
141
141
|
|
142
142
|
tokenHandler.transfer(
|
@@ -3,6 +3,7 @@ pragma solidity ^0.8.19;
|
|
3
3
|
|
4
4
|
import {IRegistry} from "../../registry/IRegistry.sol";
|
5
5
|
import {IProductComponent} from "../../components/IProductComponent.sol";
|
6
|
+
import {Product} from "../../components/Product.sol";
|
6
7
|
import {IPoolComponent} from "../../components/IPoolComponent.sol";
|
7
8
|
import {IDistributionComponent} from "../../components/IDistributionComponent.sol";
|
8
9
|
import {IInstance} from "../../instance/IInstance.sol";
|
@@ -17,17 +18,19 @@ import {IVersionable} from "../../shared/IVersionable.sol";
|
|
17
18
|
import {Versionable} from "../../shared/Versionable.sol";
|
18
19
|
|
19
20
|
import {Timestamp, zeroTimestamp} from "../../types/Timestamp.sol";
|
20
|
-
import {UFixed,
|
21
|
+
import {UFixed, UFixedLib} from "../../types/UFixed.sol";
|
21
22
|
import {Blocknumber, blockNumber} from "../../types/Blocknumber.sol";
|
22
23
|
import {ObjectType, INSTANCE, PRODUCT, POLICY} from "../../types/ObjectType.sol";
|
23
24
|
import {APPLIED, UNDERWRITTEN, ACTIVE} from "../../types/StateId.sol";
|
24
|
-
import {NftId, NftIdLib} from "../../types/NftId.sol";
|
25
|
+
import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
|
25
26
|
import {Fee, FeeLib} from "../../types/Fee.sol";
|
26
27
|
import {ReferralId} from "../../types/ReferralId.sol";
|
27
28
|
import {RiskId} from "../../types/RiskId.sol";
|
28
29
|
import {StateId} from "../../types/StateId.sol";
|
29
30
|
import {Version, VersionLib} from "../../types/Version.sol";
|
30
31
|
|
32
|
+
import {IService} from "../base/IService.sol";
|
33
|
+
import {ServiceBase} from "../base/ServiceBase.sol";
|
31
34
|
import {ComponentServiceBase} from "../base/ComponentServiceBase.sol";
|
32
35
|
import {IProductService} from "./IProductService.sol";
|
33
36
|
|
@@ -41,22 +44,15 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
41
44
|
|
42
45
|
constructor(
|
43
46
|
address registry,
|
44
|
-
NftId registryNftId
|
45
|
-
|
47
|
+
NftId registryNftId,
|
48
|
+
address initialOwner
|
49
|
+
) ComponentServiceBase(registry, registryNftId, initialOwner)
|
46
50
|
{
|
47
51
|
_registerInterface(type(IProductService).interfaceId);
|
48
52
|
}
|
49
53
|
|
50
|
-
function getVersion()
|
51
|
-
public
|
52
|
-
pure
|
53
|
-
virtual override (IVersionable, Versionable)
|
54
|
-
returns(Version)
|
55
|
-
{
|
56
|
-
return VersionLib.toVersion(3,0,0);
|
57
|
-
}
|
58
54
|
|
59
|
-
function getName()
|
55
|
+
function getName() public pure override(IService, ServiceBase) returns(string memory name) {
|
60
56
|
return NAME;
|
61
57
|
}
|
62
58
|
|
@@ -110,10 +106,10 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
110
106
|
);
|
111
107
|
}
|
112
108
|
|
113
|
-
function _getAndVerifyInstanceAndProduct() internal view returns (
|
109
|
+
function _getAndVerifyInstanceAndProduct() internal view returns (Product product) {
|
114
110
|
IRegistry.ObjectInfo memory productInfo;
|
115
111
|
(productInfo,) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
116
|
-
product =
|
112
|
+
product = Product(productInfo.objectAddress);
|
117
113
|
}
|
118
114
|
|
119
115
|
function calculatePremium(
|
@@ -135,7 +131,7 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
135
131
|
uint256 distributionFeeAmount
|
136
132
|
)
|
137
133
|
{
|
138
|
-
|
134
|
+
Product product = _getAndVerifyInstanceAndProduct();
|
139
135
|
uint256 netPremiumAmount = product.calculateNetPremium(
|
140
136
|
sumInsuredAmount,
|
141
137
|
riskId,
|
@@ -162,7 +158,7 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
162
158
|
|
163
159
|
function _calculateFeeAmounts(
|
164
160
|
uint256 netPremiumAmount,
|
165
|
-
|
161
|
+
Product product,
|
166
162
|
NftId bundleNftId,
|
167
163
|
ReferralId referralId
|
168
164
|
)
|
@@ -184,7 +180,7 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
184
180
|
(poolFeeAmount,) = FeeLib.calculateFee(treasuryInfo.poolFee, netPremiumAmount);
|
185
181
|
(bundleFeeAmount,) = FeeLib.calculateFee(bundleInfo.fee, netPremiumAmount);
|
186
182
|
|
187
|
-
IRegistry.ObjectInfo memory distributionInfo =
|
183
|
+
IRegistry.ObjectInfo memory distributionInfo = getRegistry().getObjectInfo(treasuryInfo.distributionNftId);
|
188
184
|
IDistributionComponent distribution = IDistributionComponent(distributionInfo.objectAddress);
|
189
185
|
distributionFeeAmount = distribution.calculateFeeAmount(referralId, netPremiumAmount);
|
190
186
|
}
|
@@ -202,11 +198,16 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
202
198
|
(IRegistry.ObjectInfo memory productInfo, IInstance instance) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
203
199
|
// TODO add validations (see create bundle in pool service)
|
204
200
|
|
205
|
-
policyNftId =
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
201
|
+
policyNftId = getRegistryService().registerPolicy(
|
202
|
+
IRegistry.ObjectInfo(
|
203
|
+
zeroNftId(),
|
204
|
+
productInfo.nftId,
|
205
|
+
POLICY(),
|
206
|
+
false, // intercepting property for policies is defined on product
|
207
|
+
address(0),
|
208
|
+
applicationOwner,
|
209
|
+
""
|
210
|
+
)
|
210
211
|
);
|
211
212
|
|
212
213
|
(uint256 premiumAmount,,,,) = calculatePremium(
|
@@ -283,7 +284,7 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
283
284
|
)
|
284
285
|
internal
|
285
286
|
{
|
286
|
-
address poolAddress =
|
287
|
+
address poolAddress = getRegistry().getObjectInfo(treasuryInfo.poolNftId).objectAddress;
|
287
288
|
IPoolComponent pool = IPoolComponent(poolAddress);
|
288
289
|
pool.underwrite(
|
289
290
|
policyNftId,
|
@@ -393,7 +394,7 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
393
394
|
}
|
394
395
|
|
395
396
|
function calculateRequiredCollateral(UFixed collateralizationLevel, uint256 sumInsuredAmount) public pure override returns(uint256 collateralAmount) {
|
396
|
-
UFixed sumInsuredUFixed =
|
397
|
+
UFixed sumInsuredUFixed = UFixedLib.toUFixed(sumInsuredAmount);
|
397
398
|
UFixed collateralUFixed = collateralizationLevel * sumInsuredUFixed;
|
398
399
|
return collateralUFixed.toInt();
|
399
400
|
}
|
@@ -480,7 +481,7 @@ contract ProductService is ComponentServiceBase, IProductService {
|
|
480
481
|
// process token transfer(s)
|
481
482
|
if(premiumAmount > 0) {
|
482
483
|
TokenHandler tokenHandler = instance.getTokenHandler(productNftId);
|
483
|
-
address policyOwner =
|
484
|
+
address policyOwner = getRegistry().ownerOf(policyNftId);
|
484
485
|
address poolWallet = instance.getComponentWallet(treasuryInfo.poolNftId);
|
485
486
|
netPremiumAmount = premiumAmount;
|
486
487
|
Fee memory productFee = treasuryInfo.productFee;
|