@etherisc/gif-next 0.0.2-c8cedfe-604 → 0.0.2-ca84135-795
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 +63 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/Component.sol/Component.json} +184 -128
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +154 -133
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{BaseComponent.sol/BaseComponent.json → IComponent.sol/IComponent.json} +116 -30
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -52
- 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 +190 -122
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +170 -154
- 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/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/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} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1621 -93
- 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 +136 -643
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +244 -114
- 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 +231 -102
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +33 -41
- 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/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +163 -35
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +19 -23
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IBundleService.sol/IBundleService.json} +295 -41
- 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 +123 -232
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +196 -68
- 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 +137 -330
- 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 +44 -94
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -112
- 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 +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
- 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/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 +2 -2
- 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/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 +15 -27
- package/contracts/components/IComponent.sol +37 -0
- package/contracts/components/IDistributionComponent.sol +0 -2
- package/contracts/components/IPoolComponent.sol +5 -1
- package/contracts/components/IProductComponent.sol +2 -2
- package/contracts/components/Pool.sol +46 -46
- 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 +38 -9
- package/contracts/instance/IInstanceBase.sol +27 -0
- package/contracts/instance/IInstanceService.sol +14 -4
- package/contracts/instance/Instance.sol +52 -236
- 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 +284 -83
- 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 +51 -32
- package/contracts/instance/service/DistributionServiceManager.sol +10 -12
- 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 +27 -30
- package/contracts/registry/IRegistryService.sol +37 -13
- package/contracts/registry/Registry.sol +150 -243
- package/contracts/registry/RegistryAccessManager.sol +210 -0
- package/contracts/registry/RegistryService.sol +86 -173
- package/contracts/registry/RegistryServiceManager.sol +18 -36
- package/contracts/registry/ReleaseManager.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +5 -6
- 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/Service.sol +14 -8
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +10 -8
- 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 -280
- 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 -91
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -39
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -0,0 +1,177 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
|
5
|
+
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
6
|
+
|
7
|
+
import {IComponent} from "./IComponent.sol";
|
8
|
+
import {IProductService} from "../instance/service/IProductService.sol";
|
9
|
+
import {IInstanceService} from "../instance/IInstanceService.sol";
|
10
|
+
import {IInstance} from "../instance/IInstance.sol";
|
11
|
+
import {InstanceAccessManager} from "../instance/InstanceAccessManager.sol";
|
12
|
+
import {IRegistry} from "../registry/IRegistry.sol";
|
13
|
+
import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
|
14
|
+
import {ObjectType, INSTANCE, PRODUCT} from "../types/ObjectType.sol";
|
15
|
+
import {VersionLib} from "../types/Version.sol";
|
16
|
+
import {Registerable} from "../shared/Registerable.sol";
|
17
|
+
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
18
|
+
import {IAccess} from "../instance/module/IAccess.sol";
|
19
|
+
|
20
|
+
// TODO discuss to inherit from oz accessmanaged
|
21
|
+
// TODO make contract upgradeable, then add ComponentUpradeable that also intherits from Versionable
|
22
|
+
// same pattern as for Service which is also upgradeable
|
23
|
+
abstract contract Component is
|
24
|
+
Registerable,
|
25
|
+
IComponent
|
26
|
+
{
|
27
|
+
IInstanceService internal _instanceService;
|
28
|
+
IProductService internal _productService;
|
29
|
+
|
30
|
+
IInstance internal _instance;
|
31
|
+
IERC20Metadata internal _token;
|
32
|
+
address internal _wallet;
|
33
|
+
NftId internal _productNftId;
|
34
|
+
|
35
|
+
modifier onlyProductService() {
|
36
|
+
if(msg.sender != address(_productService)) {
|
37
|
+
revert ErrorComponentNotProductService(msg.sender);
|
38
|
+
}
|
39
|
+
_;
|
40
|
+
}
|
41
|
+
|
42
|
+
// TODO discuss replacement with modifier restricted from accessmanaged
|
43
|
+
modifier onlyInstanceRole(uint64 roleIdNum) {
|
44
|
+
RoleId roleId = RoleIdLib.toRoleId(roleIdNum);
|
45
|
+
InstanceAccessManager accessManager = InstanceAccessManager(_instance.authority());
|
46
|
+
if( !accessManager.hasRole(roleId, msg.sender)) {
|
47
|
+
revert ErrorComponentUnauthorized(msg.sender, roleIdNum);
|
48
|
+
}
|
49
|
+
_;
|
50
|
+
}
|
51
|
+
|
52
|
+
// TODO discuss replacement with modifier restricted from accessmanaged
|
53
|
+
modifier isNotLocked() {
|
54
|
+
InstanceAccessManager accessManager = InstanceAccessManager(_instance.authority());
|
55
|
+
if (accessManager.isTargetLocked(address(this))) {
|
56
|
+
revert IAccess.ErrorIAccessTargetLocked(address(this));
|
57
|
+
}
|
58
|
+
_;
|
59
|
+
}
|
60
|
+
|
61
|
+
constructor(
|
62
|
+
address registry,
|
63
|
+
NftId instanceNftId,
|
64
|
+
address token,
|
65
|
+
ObjectType componentType,
|
66
|
+
bool isInterceptor,
|
67
|
+
address initialOwner
|
68
|
+
)
|
69
|
+
{
|
70
|
+
bytes memory data = "";
|
71
|
+
_initializeRegisterable(registry, instanceNftId, componentType, isInterceptor, initialOwner, data);
|
72
|
+
|
73
|
+
IRegistry.ObjectInfo memory instanceInfo = _registry.getObjectInfo(instanceNftId);
|
74
|
+
_instance = IInstance(instanceInfo.objectAddress);
|
75
|
+
require(
|
76
|
+
_instance.supportsInterface(type(IInstance).interfaceId),
|
77
|
+
""
|
78
|
+
);
|
79
|
+
|
80
|
+
_instanceService = IInstanceService(_registry.getServiceAddress(INSTANCE(), VersionLib.toVersion(3, 0, 0).toMajorPart()));
|
81
|
+
_productService = IProductService(_registry.getServiceAddress(PRODUCT(), VersionLib.toVersion(3, 0, 0).toMajorPart()));
|
82
|
+
_wallet = address(this);
|
83
|
+
_token = IERC20Metadata(token);
|
84
|
+
|
85
|
+
_registerInterface(type(IComponent).interfaceId);
|
86
|
+
}
|
87
|
+
|
88
|
+
// TODO discuss replacement with modifier restricted from accessmanaged
|
89
|
+
function lock() external onlyOwner override {
|
90
|
+
_instanceService.setTargetLocked(getName(), true);
|
91
|
+
}
|
92
|
+
|
93
|
+
// TODO discuss replacement with modifier restricted from accessmanaged
|
94
|
+
function unlock() external onlyOwner override {
|
95
|
+
_instanceService.setTargetLocked(getName(), false);
|
96
|
+
}
|
97
|
+
|
98
|
+
// TODO discuss to split this base contract into a minimal component base (eg oracle)
|
99
|
+
// and a component base that is linked to a product component (all others in v3)
|
100
|
+
function setProductNftId(NftId productNftId)
|
101
|
+
external
|
102
|
+
override
|
103
|
+
onlyProductService()
|
104
|
+
{
|
105
|
+
if(_productNftId.gtz()) {
|
106
|
+
revert ErrorComponentProductNftAlreadySet();
|
107
|
+
}
|
108
|
+
|
109
|
+
_productNftId = productNftId;
|
110
|
+
}
|
111
|
+
|
112
|
+
/// @dev Sets the wallet address for the component.
|
113
|
+
/// if the current wallet has tokens, these will be transferred.
|
114
|
+
/// if the new wallet address is externally owned, an approval from the
|
115
|
+
/// owner of the external wallet for the component to move all tokens must exist.
|
116
|
+
function setWallet(address newWallet) external override onlyOwner {
|
117
|
+
address currentWallet = _wallet;
|
118
|
+
uint256 currentBalance = _token.balanceOf(currentWallet);
|
119
|
+
|
120
|
+
// checks
|
121
|
+
if (newWallet == currentWallet) {
|
122
|
+
revert ErrorComponentWalletAddressIsSameAsCurrent(newWallet);
|
123
|
+
}
|
124
|
+
|
125
|
+
if (currentBalance > 0) {
|
126
|
+
if (currentWallet == address(this)) {
|
127
|
+
// move tokens from component smart contract to external wallet
|
128
|
+
} else {
|
129
|
+
// move tokens from external wallet to component smart contract or another external wallet
|
130
|
+
uint256 allowance = _token.allowance(currentWallet, address(this));
|
131
|
+
if (allowance < currentBalance) {
|
132
|
+
revert ErrorComponentWalletAllowanceTooSmall(currentWallet, newWallet, allowance, currentBalance);
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
// effects
|
138
|
+
_wallet = newWallet;
|
139
|
+
emit LogComponentWalletAddressChanged(newWallet);
|
140
|
+
|
141
|
+
// interactions
|
142
|
+
if (currentBalance > 0) {
|
143
|
+
// transfer tokens from current wallet to new wallet
|
144
|
+
if (currentWallet == address(this)) {
|
145
|
+
// transferFrom requires self allowance too
|
146
|
+
_token.approve(address(this), currentBalance);
|
147
|
+
}
|
148
|
+
|
149
|
+
SafeERC20.safeTransferFrom(_token, currentWallet, newWallet, currentBalance);
|
150
|
+
emit LogComponentWalletTokensTransferred(currentWallet, newWallet, currentBalance);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
// TODO set name via constructor or initialization, pure function likely too restrictive
|
155
|
+
function getName() public pure virtual returns (string memory name);
|
156
|
+
|
157
|
+
function getWallet()
|
158
|
+
external
|
159
|
+
view
|
160
|
+
override
|
161
|
+
returns (address walletAddress)
|
162
|
+
{
|
163
|
+
return _wallet;
|
164
|
+
}
|
165
|
+
|
166
|
+
function getToken() public view override returns (IERC20Metadata token) {
|
167
|
+
return _token;
|
168
|
+
}
|
169
|
+
|
170
|
+
function getInstance() public view override returns (IInstance instance) {
|
171
|
+
return _instance;
|
172
|
+
}
|
173
|
+
|
174
|
+
function getProductNftId() public view override returns (NftId productNftId) {
|
175
|
+
return _productNftId;
|
176
|
+
}
|
177
|
+
}
|
@@ -7,7 +7,7 @@ import {IProductService} from "../instance/service/IProductService.sol";
|
|
7
7
|
import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
|
8
8
|
import {ReferralId} from "../types/Referral.sol";
|
9
9
|
import {Fee, FeeLib} from "../types/Fee.sol";
|
10
|
-
import {
|
10
|
+
import {Component} from "./Component.sol";
|
11
11
|
import {IDistributionComponent} from "./IDistributionComponent.sol";
|
12
12
|
import {IRegistry} from "../registry/IRegistry.sol";
|
13
13
|
import {IRegisterable} from "../shared/IRegisterable.sol";
|
@@ -16,8 +16,8 @@ import {Registerable} from "../shared/Registerable.sol";
|
|
16
16
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|
17
17
|
import {InstanceReader} from "../instance/InstanceReader.sol";
|
18
18
|
|
19
|
-
contract Distribution is
|
20
|
-
|
19
|
+
abstract contract Distribution is
|
20
|
+
Component,
|
21
21
|
IDistributionComponent
|
22
22
|
{
|
23
23
|
using NftIdLib for NftId;
|
@@ -25,15 +25,9 @@ contract Distribution is
|
|
25
25
|
Fee internal _initialDistributionFee;
|
26
26
|
bool internal _isVerifying;
|
27
27
|
|
28
|
-
|
29
|
-
IProductService private _productService;
|
28
|
+
TokenHandler internal _tokenHandler;
|
30
29
|
|
31
|
-
|
32
|
-
require(
|
33
|
-
msg.sender == address(_productService),
|
34
|
-
"ERROR:POL-002:NOT_PRODUCT_SERVICE");
|
35
|
-
_;
|
36
|
-
}
|
30
|
+
IDistributionService private _distributionService;
|
37
31
|
|
38
32
|
constructor(
|
39
33
|
address registry,
|
@@ -44,14 +38,13 @@ contract Distribution is
|
|
44
38
|
Fee memory distributionFee,
|
45
39
|
address initialOwner
|
46
40
|
)
|
47
|
-
|
41
|
+
Component(registry, instanceNftId, token, DISTRIBUTION(), true, initialOwner)
|
48
42
|
{
|
49
43
|
_isVerifying = verifying;
|
50
44
|
_initialDistributionFee = distributionFee;
|
51
45
|
|
46
|
+
_tokenHandler = TokenHandler(token);
|
52
47
|
_distributionService = _instance.getDistributionService();
|
53
|
-
// TODO: reactivate when services are available again
|
54
|
-
// _productService = _instance.getProductService();
|
55
48
|
|
56
49
|
_registerInterface(type(IDistributionComponent).interfaceId);
|
57
50
|
}
|
@@ -121,16 +114,6 @@ contract Distribution is
|
|
121
114
|
return false;
|
122
115
|
}
|
123
116
|
|
124
|
-
function getInitialSetupInfo() public view returns (ISetup.DistributionSetupInfo memory setupInfo) {
|
125
|
-
return ISetup.DistributionSetupInfo(
|
126
|
-
_productNftId,
|
127
|
-
TokenHandler(address(_token)),
|
128
|
-
_initialDistributionFee,
|
129
|
-
_isVerifying,
|
130
|
-
address(this)
|
131
|
-
);
|
132
|
-
}
|
133
|
-
|
134
117
|
function getSetupInfo() public view returns (ISetup.DistributionSetupInfo memory setupInfo) {
|
135
118
|
InstanceReader reader = _instance.getInstanceReader();
|
136
119
|
return reader.getDistributionSetupInfo(getNftId());
|
@@ -152,14 +135,19 @@ contract Distribution is
|
|
152
135
|
{
|
153
136
|
(
|
154
137
|
IRegistry.ObjectInfo memory info,
|
155
|
-
bytes memory data
|
156
138
|
) = super.getInitialInfo();
|
157
139
|
|
158
140
|
return (
|
159
141
|
info,
|
160
142
|
abi.encode(
|
161
|
-
|
162
|
-
|
143
|
+
getName(),
|
144
|
+
ISetup.DistributionSetupInfo(
|
145
|
+
_productNftId,
|
146
|
+
_tokenHandler,
|
147
|
+
_initialDistributionFee,
|
148
|
+
_isVerifying,
|
149
|
+
address(this)
|
150
|
+
)
|
163
151
|
)
|
164
152
|
);
|
165
153
|
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
|
+
|
6
|
+
import {IRegisterable} from "../shared/IRegisterable.sol";
|
7
|
+
import {IInstance} from "../instance/IInstance.sol";
|
8
|
+
import {NftId} from "../types/NftId.sol";
|
9
|
+
|
10
|
+
interface IComponent is IRegisterable {
|
11
|
+
|
12
|
+
error ErrorComponentProductNftAlreadySet();
|
13
|
+
error ErrorComponentWalletAddressIsSameAsCurrent(address newWallet);
|
14
|
+
error ErrorComponentWalletAllowanceTooSmall(address oldWallet, address newWallet, uint256 allowance, uint256 balance);
|
15
|
+
error ErrorComponentUnauthorized(address caller, uint64 requiredRoleIdNum);
|
16
|
+
error ErrorComponentNotProductService(address caller);
|
17
|
+
|
18
|
+
event LogComponentWalletAddressChanged(address newWallet);
|
19
|
+
event LogComponentWalletTokensTransferred(address from, address to, uint256 amount);
|
20
|
+
|
21
|
+
function getName() external pure returns (string memory name);
|
22
|
+
|
23
|
+
// TODO remove and replace with accessmanaged target locking mechanism
|
24
|
+
function lock() external;
|
25
|
+
function unlock() external;
|
26
|
+
|
27
|
+
function getToken() external view returns (IERC20Metadata token);
|
28
|
+
|
29
|
+
function setWallet(address walletAddress) external;
|
30
|
+
function getWallet() external view returns (address walletAddress);
|
31
|
+
|
32
|
+
function getInstance() external view returns (IInstance instance);
|
33
|
+
|
34
|
+
function setProductNftId(NftId productNftId) external;
|
35
|
+
function getProductNftId() external view returns (NftId productNftId);
|
36
|
+
|
37
|
+
}
|
@@ -8,8 +8,6 @@ import {ISetup} from "../instance/module/ISetup.sol";
|
|
8
8
|
|
9
9
|
interface IDistributionComponent {
|
10
10
|
|
11
|
-
function getInitialSetupInfo() external view returns (ISetup.DistributionSetupInfo memory setupInfo);
|
12
|
-
|
13
11
|
function setFees(
|
14
12
|
Fee memory distributionFee
|
15
13
|
) external;
|
@@ -43,6 +43,10 @@ interface IPoolComponent {
|
|
43
43
|
uint256 collateralizationAmount
|
44
44
|
) external;
|
45
45
|
|
46
|
+
function lockBundle(NftId bundleNftId) external;
|
47
|
+
|
48
|
+
function unlockBundle(NftId bundleNftId) external;
|
49
|
+
|
46
50
|
/**
|
47
51
|
* @dev returns true iff the policy application data in policyData matches
|
48
52
|
* with the bundle filter criteria encoded in bundleFilter.
|
@@ -55,7 +59,7 @@ interface IPoolComponent {
|
|
55
59
|
view
|
56
60
|
returns (bool isMatching);
|
57
61
|
|
58
|
-
function
|
62
|
+
function isConfirmingApplication() external view returns (bool isConfirmingApplication);
|
59
63
|
|
60
64
|
function getCollateralizationLevel() external view returns (UFixed collateralizationLevel);
|
61
65
|
|
@@ -18,8 +18,8 @@ interface IProductComponent {
|
|
18
18
|
RiskId riskId,
|
19
19
|
uint256 lifetime,
|
20
20
|
bytes memory applicationData,
|
21
|
-
|
22
|
-
|
21
|
+
NftId bundleNftId,
|
22
|
+
ReferralId referralId
|
23
23
|
) external view returns (uint256 premiumAmount);
|
24
24
|
|
25
25
|
function calculateNetPremium(
|
@@ -1,42 +1,40 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
|
-
import {
|
5
|
-
import {IProductService} from "../instance/service/IProductService.sol";
|
4
|
+
import {POOL} from "../types/ObjectType.sol";
|
6
5
|
import {IPoolService} from "../instance/service/IPoolService.sol";
|
7
|
-
import {
|
6
|
+
import {IBundleService} from "../instance/service/IBundleService.sol";
|
7
|
+
import {NftId, NftIdLib} from "../types/NftId.sol";
|
8
8
|
import {Fee} from "../types/Fee.sol";
|
9
9
|
import {UFixed} from "../types/UFixed.sol";
|
10
10
|
import {IPoolComponent} from "./IPoolComponent.sol";
|
11
|
-
import {
|
11
|
+
import {Component} from "./Component.sol";
|
12
12
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|
13
13
|
import {ISetup} from "../instance/module/ISetup.sol";
|
14
14
|
|
15
15
|
import {IRegistry} from "../registry/IRegistry.sol";
|
16
16
|
|
17
|
-
// import {IPool} from "../instance/module/pool/IPoolModule.sol";
|
18
|
-
import {ITreasury} from "../instance/module/ITreasury.sol";
|
19
17
|
import {ISetup} from "../instance/module/ISetup.sol";
|
20
18
|
import {InstanceReader} from "../instance/InstanceReader.sol";
|
21
19
|
|
22
20
|
import {IRegisterable} from "../shared/IRegisterable.sol";
|
23
21
|
import {Registerable} from "../shared/Registerable.sol";
|
24
22
|
|
25
|
-
contract Pool is
|
23
|
+
abstract contract Pool is Component, IPoolComponent {
|
26
24
|
using NftIdLib for NftId;
|
27
25
|
|
28
|
-
bool internal
|
26
|
+
bool internal _isConfirmingApplication;
|
29
27
|
UFixed internal _collateralizationLevel;
|
30
28
|
|
31
29
|
Fee internal _initialPoolFee;
|
32
30
|
Fee internal _initialStakingFee;
|
33
31
|
Fee internal _initialPerformanceFee;
|
34
32
|
|
33
|
+
TokenHandler internal _tokenHandler;
|
34
|
+
|
35
35
|
// may be used to interact with instance by derived contracts
|
36
36
|
IPoolService internal _poolService;
|
37
|
-
|
38
|
-
// only relevant to protect callback functions for "active" pools
|
39
|
-
IProductService private _productService;
|
37
|
+
IBundleService private _bundleService;
|
40
38
|
|
41
39
|
modifier onlyPoolService() {
|
42
40
|
require(
|
@@ -45,38 +43,33 @@ contract Pool is BaseComponent, IPoolComponent {
|
|
45
43
|
_;
|
46
44
|
}
|
47
45
|
|
48
|
-
modifier onlyProductService() {
|
49
|
-
require(
|
50
|
-
msg.sender == address(_productService),
|
51
|
-
"ERROR:POL-002:NOT_PRODUCT_SERVICE");
|
52
|
-
_;
|
53
|
-
}
|
54
|
-
|
55
46
|
constructor(
|
56
47
|
address registry,
|
57
48
|
NftId instanceNftId,
|
58
49
|
// TODO refactor into tokenNftId
|
59
50
|
address token,
|
60
51
|
bool isInterceptor,
|
61
|
-
bool
|
52
|
+
bool isConfirmingApplication,
|
62
53
|
UFixed collateralizationLevel,
|
63
54
|
Fee memory poolFee,
|
64
55
|
Fee memory stakingFee,
|
65
56
|
Fee memory performanceFee,
|
66
57
|
address initialOwner
|
67
58
|
)
|
68
|
-
|
59
|
+
Component(registry, instanceNftId, token, POOL(), isInterceptor, initialOwner)
|
69
60
|
{
|
70
|
-
|
61
|
+
_isConfirmingApplication = isConfirmingApplication;
|
71
62
|
// TODO add validation
|
72
63
|
_collateralizationLevel = collateralizationLevel;
|
73
64
|
_initialPoolFee = poolFee;
|
74
65
|
_initialStakingFee = stakingFee;
|
75
66
|
_initialPerformanceFee = performanceFee;
|
76
67
|
|
77
|
-
|
78
|
-
|
68
|
+
_tokenHandler = new TokenHandler(token);
|
69
|
+
|
70
|
+
_poolService = _instance.getPoolService();
|
79
71
|
// _productService = _instance.getProductService();
|
72
|
+
_bundleService = _instance.getBundleService();
|
80
73
|
|
81
74
|
_registerInterface(type(IPoolComponent).interfaceId);
|
82
75
|
}
|
@@ -92,7 +85,7 @@ contract Pool is BaseComponent, IPoolComponent {
|
|
92
85
|
returns(NftId bundleNftId)
|
93
86
|
{
|
94
87
|
address owner = msg.sender;
|
95
|
-
bundleNftId =
|
88
|
+
bundleNftId = _bundleService.createBundle(
|
96
89
|
owner,
|
97
90
|
fee,
|
98
91
|
initialAmount,
|
@@ -137,8 +130,8 @@ contract Pool is BaseComponent, IPoolComponent {
|
|
137
130
|
}
|
138
131
|
|
139
132
|
|
140
|
-
function
|
141
|
-
return
|
133
|
+
function isConfirmingApplication() external view override returns (bool isConfirmingApplication) {
|
134
|
+
return _isConfirmingApplication;
|
142
135
|
}
|
143
136
|
|
144
137
|
function getCollateralizationLevel() external view override returns (UFixed collateralizationLevel) {
|
@@ -165,24 +158,30 @@ contract Pool is BaseComponent, IPoolComponent {
|
|
165
158
|
override
|
166
159
|
// TODO add onlyBundleOwner
|
167
160
|
{
|
168
|
-
|
161
|
+
_bundleService.setBundleFee(bundleNftId, fee);
|
169
162
|
}
|
170
163
|
|
171
|
-
function
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
_initialPerformanceFee,
|
181
|
-
_isVerifying,
|
182
|
-
_wallet
|
183
|
-
);
|
184
|
-
}
|
164
|
+
function lockBundle(
|
165
|
+
NftId bundleNftId
|
166
|
+
)
|
167
|
+
external
|
168
|
+
override
|
169
|
+
// TODO add onlyBundleOwner
|
170
|
+
{
|
171
|
+
_bundleService.lockBundle(bundleNftId);
|
172
|
+
}
|
185
173
|
|
174
|
+
function unlockBundle(
|
175
|
+
NftId bundleNftId
|
176
|
+
)
|
177
|
+
external
|
178
|
+
override
|
179
|
+
// TODO add onlyBundleOwner
|
180
|
+
{
|
181
|
+
_bundleService.unlockBundle(bundleNftId);
|
182
|
+
}
|
183
|
+
|
184
|
+
function getSetupInfo() public view returns (ISetup.PoolSetupInfo memory setupInfo) {
|
186
185
|
InstanceReader reader = _instance.getInstanceReader();
|
187
186
|
return reader.getPoolSetupInfo(getNftId());
|
188
187
|
}
|
@@ -199,20 +198,21 @@ contract Pool is BaseComponent, IPoolComponent {
|
|
199
198
|
{
|
200
199
|
(
|
201
200
|
IRegistry.ObjectInfo memory info,
|
202
|
-
bytes memory data
|
203
201
|
) = super.getInitialInfo();
|
204
202
|
|
205
203
|
return (
|
206
204
|
info,
|
207
205
|
abi.encode(
|
206
|
+
getName(),
|
208
207
|
ISetup.PoolSetupInfo(
|
209
|
-
|
210
|
-
|
208
|
+
_productNftId,
|
209
|
+
_tokenHandler,
|
211
210
|
_collateralizationLevel,
|
212
211
|
_initialPoolFee,
|
213
212
|
_initialStakingFee,
|
214
213
|
_initialPerformanceFee,
|
215
|
-
|
214
|
+
false,
|
215
|
+
_isConfirmingApplication,
|
216
216
|
_wallet
|
217
217
|
)
|
218
218
|
)
|
@@ -247,7 +247,7 @@ contract Pool is BaseComponent, IPoolComponent {
|
|
247
247
|
internal
|
248
248
|
returns(NftId bundleNftId)
|
249
249
|
{
|
250
|
-
bundleNftId =
|
250
|
+
bundleNftId = _bundleService.createBundle(
|
251
251
|
bundleOwner,
|
252
252
|
fee,
|
253
253
|
amount,
|