@etherisc/gif-next 0.0.2-93de5de-423 → 0.0.2-94237b7-984
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 +0 -71
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +78 -89
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +123 -183
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +156 -64
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +169 -143
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +353 -176
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +162 -138
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +299 -245
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +83 -162
- 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 +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +199 -316
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +185 -50
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +288 -387
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +472 -126
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +137 -234
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +313 -169
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +71 -23
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +86 -20
- 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 +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- 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/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +261 -80
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +41 -25
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +387 -241
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -14
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +105 -31
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +11 -7
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +933 -70
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +142 -14
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +200 -40
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +220 -183
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +90 -13
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +630 -20
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +103 -69
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +521 -13
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -13
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +150 -167
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +27 -47
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +562 -41
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +24 -12
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +115 -41
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +16 -12
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +19 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -13
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +31 -12
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +18 -26
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +7 -7
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +2 -2
- 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/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +90 -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/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.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 +3 -3
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +97 -15
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +3 -3
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +112 -26
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- 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/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- 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/Timestamp.sol/TimestampLib.json +25 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- 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/Component.sol +99 -87
- package/contracts/components/Distribution.sol +16 -44
- package/contracts/components/IComponent.sol +40 -18
- package/contracts/components/IDistributionComponent.sol +1 -30
- package/contracts/components/IPoolComponent.sol +73 -47
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +177 -128
- package/contracts/components/Product.sol +26 -18
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +7 -5
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +16 -10
- package/contracts/instance/IInstanceService.sol +18 -5
- package/contracts/instance/Instance.sol +45 -9
- package/contracts/instance/InstanceAccessManager.sol +388 -158
- package/contracts/instance/InstanceReader.sol +8 -10
- package/contracts/instance/InstanceService.sol +184 -165
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +17 -30
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +21 -14
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +26 -1
- package/contracts/instance/module/ISetup.sol +7 -21
- package/contracts/instance/service/ApplicationService.sol +130 -48
- package/contracts/instance/service/BundleService.sol +213 -80
- package/contracts/instance/service/ClaimService.sol +3 -3
- package/contracts/instance/service/DistributionService.sol +212 -54
- package/contracts/instance/service/IApplicationService.sol +7 -7
- package/contracts/instance/service/IBundleService.sol +65 -26
- package/contracts/instance/service/IDistributionService.sol +37 -3
- package/contracts/instance/service/IPolicyService.sol +3 -20
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/PolicyService.sol +107 -219
- package/contracts/instance/service/PoolService.sol +214 -20
- package/contracts/instance/service/ProductService.sol +30 -53
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +2 -0
- package/contracts/registry/IRegistryService.sol +4 -3
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +23 -20
- package/contracts/registry/RegistryService.sol +15 -16
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IService.sol +4 -4
- package/contracts/shared/Registerable.sol +2 -2
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +1 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +13 -6
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +1 -0
- package/contracts/types/Timestamp.sol +13 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +1 -1
@@ -8,6 +8,7 @@ import {NftId, zeroNftId, NftIdLib, toNftId} from "../types/NftId.sol";
|
|
8
8
|
import {ReferralId, ReferralStatus, ReferralLib} from "../types/Referral.sol";
|
9
9
|
import {Fee, FeeLib} from "../types/Fee.sol";
|
10
10
|
import {Component} from "./Component.sol";
|
11
|
+
import {IDistribution} from "../instance/module/IDistribution.sol";
|
11
12
|
import {IDistributionComponent} from "./IDistributionComponent.sol";
|
12
13
|
import {IRegistry} from "../registry/IRegistry.sol";
|
13
14
|
import {IRegisterable} from "../shared/IRegisterable.sol";
|
@@ -17,7 +18,7 @@ import {TokenHandler} from "../shared/TokenHandler.sol";
|
|
17
18
|
import {InstanceReader} from "../instance/InstanceReader.sol";
|
18
19
|
import {UFixed} from "../types/UFixed.sol";
|
19
20
|
import {DistributorType} from "../types/DistributorType.sol";
|
20
|
-
import {Timestamp} from "../types/Timestamp.sol";
|
21
|
+
import {Timestamp, TimestampLib} from "../types/Timestamp.sol";
|
21
22
|
import {ITransferInterceptor} from "../registry/ITransferInterceptor.sol";
|
22
23
|
|
23
24
|
|
@@ -29,6 +30,7 @@ abstract contract Distribution is
|
|
29
30
|
bytes32 public constant DISTRIBUTION_STORAGE_LOCATION_V1 = 0xaab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900;
|
30
31
|
|
31
32
|
struct DistributionStorage {
|
33
|
+
Fee _minDistributionOwnerFee;
|
32
34
|
Fee _distributionFee;
|
33
35
|
TokenHandler _tokenHandler;
|
34
36
|
IDistributionService _distributionService;
|
@@ -40,18 +42,20 @@ abstract contract Distribution is
|
|
40
42
|
NftId instanceNftId,
|
41
43
|
string memory name,
|
42
44
|
address token,
|
45
|
+
Fee memory minDistributionOwnerFee,
|
43
46
|
Fee memory distributionFee,
|
44
47
|
address initialOwner,
|
45
|
-
bytes memory data
|
48
|
+
bytes memory registryData // writeonly data that will saved in the object info record of the registry
|
46
49
|
)
|
47
50
|
public
|
48
51
|
virtual
|
49
52
|
onlyInitializing()
|
50
53
|
{
|
51
|
-
initializeComponent(registry, instanceNftId, name, token, DISTRIBUTION(), true, initialOwner,
|
54
|
+
initializeComponent(registry, instanceNftId, name, token, DISTRIBUTION(), true, initialOwner, registryData);
|
52
55
|
|
53
56
|
DistributionStorage storage $ = _getDistributionStorage();
|
54
57
|
// TODO add validation
|
58
|
+
$._minDistributionOwnerFee = minDistributionOwnerFee;
|
55
59
|
$._distributionFee = distributionFee;
|
56
60
|
$._tokenHandler = new TokenHandler(token);
|
57
61
|
$._distributionService = getInstance().getDistributionService();
|
@@ -60,6 +64,7 @@ abstract contract Distribution is
|
|
60
64
|
}
|
61
65
|
|
62
66
|
function setFees(
|
67
|
+
Fee memory minDistributionOwnerFee,
|
63
68
|
Fee memory distributionFee
|
64
69
|
)
|
65
70
|
external
|
@@ -67,7 +72,7 @@ abstract contract Distribution is
|
|
67
72
|
onlyOwner
|
68
73
|
restricted()
|
69
74
|
{
|
70
|
-
_getDistributionStorage()._distributionService.setFees(distributionFee);
|
75
|
+
_getDistributionStorage()._distributionService.setFees(minDistributionOwnerFee, distributionFee);
|
71
76
|
}
|
72
77
|
|
73
78
|
function getDistributionFee() external view returns (Fee memory distributionFee) {
|
@@ -141,7 +146,7 @@ abstract contract Distribution is
|
|
141
146
|
* @dev lets distributors create referral codes.
|
142
147
|
* referral codes need to be unique
|
143
148
|
*/
|
144
|
-
function
|
149
|
+
function _createReferral(
|
145
150
|
NftId distributorNftId,
|
146
151
|
string memory code,
|
147
152
|
UFixed discountPercentage,
|
@@ -149,8 +154,7 @@ abstract contract Distribution is
|
|
149
154
|
Timestamp expiryAt,
|
150
155
|
bytes memory data
|
151
156
|
)
|
152
|
-
|
153
|
-
// TODO add authz (only active distributor)
|
157
|
+
internal
|
154
158
|
returns (ReferralId referralId)
|
155
159
|
{
|
156
160
|
DistributionStorage storage $ = _getDistributionStorage();
|
@@ -163,22 +167,6 @@ abstract contract Distribution is
|
|
163
167
|
data);
|
164
168
|
}
|
165
169
|
|
166
|
-
function calculateFeeAmount(
|
167
|
-
ReferralId referralId,
|
168
|
-
uint256 netPremiumAmount
|
169
|
-
)
|
170
|
-
external
|
171
|
-
view
|
172
|
-
virtual override
|
173
|
-
returns (uint256 feeAmount)
|
174
|
-
{
|
175
|
-
ISetup.DistributionSetupInfo memory setupInfo = getSetupInfo();
|
176
|
-
Fee memory fee = setupInfo.distributionFee;
|
177
|
-
(feeAmount,) = FeeLib.calculateFee(fee, netPremiumAmount);
|
178
|
-
// TODO: use this?
|
179
|
-
// return _distributionService.calculateFeeAmount(referralId, premiumAmount);
|
180
|
-
}
|
181
|
-
|
182
170
|
function isDistributor(address candidate)
|
183
171
|
public
|
184
172
|
view
|
@@ -206,7 +194,7 @@ abstract contract Distribution is
|
|
206
194
|
)
|
207
195
|
{
|
208
196
|
ReferralId referralId = getReferralId(referralCode);
|
209
|
-
return
|
197
|
+
return _getInstanceReader().getDiscountPercentage(referralId);
|
210
198
|
}
|
211
199
|
|
212
200
|
|
@@ -235,19 +223,6 @@ abstract contract Distribution is
|
|
235
223
|
return 0 * netPremiumAmount;
|
236
224
|
}
|
237
225
|
|
238
|
-
function processSale(
|
239
|
-
ReferralId referralId,
|
240
|
-
uint256 premiumAmount
|
241
|
-
)
|
242
|
-
external
|
243
|
-
onlyOwner
|
244
|
-
restricted()
|
245
|
-
virtual override
|
246
|
-
{
|
247
|
-
DistributionStorage storage $ = _getDistributionStorage();
|
248
|
-
$._distributionService.processSale(referralId, premiumAmount);
|
249
|
-
}
|
250
|
-
|
251
226
|
function processRenewal(
|
252
227
|
ReferralId referralId,
|
253
228
|
uint256 feeAmount
|
@@ -260,11 +235,6 @@ abstract contract Distribution is
|
|
260
235
|
// default is no action
|
261
236
|
}
|
262
237
|
|
263
|
-
function referralIsValid(ReferralId referralId) external view returns (bool isValid) {
|
264
|
-
// default is invalid
|
265
|
-
return false;
|
266
|
-
}
|
267
|
-
|
268
238
|
function getSetupInfo() public view returns (ISetup.DistributionSetupInfo memory setupInfo) {
|
269
239
|
InstanceReader reader = getInstance().getInstanceReader();
|
270
240
|
setupInfo = reader.getDistributionSetupInfo(getNftId());
|
@@ -280,13 +250,15 @@ abstract contract Distribution is
|
|
280
250
|
return ISetup.DistributionSetupInfo(
|
281
251
|
zeroNftId(),
|
282
252
|
$._tokenHandler,
|
253
|
+
$._minDistributionOwnerFee,
|
283
254
|
$._distributionFee,
|
284
|
-
address(this)
|
255
|
+
address(this),
|
256
|
+
0
|
285
257
|
);
|
286
258
|
}
|
287
259
|
|
288
260
|
|
289
|
-
function
|
261
|
+
function _nftTransferFrom(address from, address to, uint256 tokenId) internal virtual override {
|
290
262
|
// keep track of distributor nft owner
|
291
263
|
emit LogDistributorUpdated(to, msg.sender);
|
292
264
|
DistributionStorage storage $ = _getDistributionStorage();
|
@@ -1,8 +1,10 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
|
+
import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
|
4
5
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
6
|
|
7
|
+
import {IComponents} from "../instance/module/IComponents.sol";
|
6
8
|
import {IInstance} from "../instance/IInstance.sol";
|
7
9
|
import {IInstanceService} from "../instance/IInstanceService.sol";
|
8
10
|
import {IProductService} from "../instance/service/IProductService.sol";
|
@@ -11,44 +13,64 @@ import {ITransferInterceptor} from "../registry/ITransferInterceptor.sol";
|
|
11
13
|
import {NftId} from "../types/NftId.sol";
|
12
14
|
import {ObjectType} from "../types/ObjectType.sol";
|
13
15
|
|
16
|
+
/// @dev component base class
|
17
|
+
/// component examples are product, distribution, pool and oracle
|
14
18
|
interface IComponent is
|
15
19
|
IRegisterable,
|
16
|
-
ITransferInterceptor
|
20
|
+
ITransferInterceptor,
|
21
|
+
IAccessManaged
|
17
22
|
{
|
18
|
-
|
19
23
|
error ErrorComponentNotChainNft(address caller);
|
20
24
|
error ErrorComponentNotProductService(address caller);
|
21
|
-
error ErrorComponentNotInstance(NftId instanceNftId
|
25
|
+
error ErrorComponentNotInstance(NftId instanceNftId);
|
22
26
|
error ErrorComponentProductNftAlreadySet();
|
27
|
+
|
23
28
|
error ErrorComponentWalletAddressZero();
|
24
|
-
error ErrorComponentWalletAddressIsSameAsCurrent(
|
29
|
+
error ErrorComponentWalletAddressIsSameAsCurrent();
|
25
30
|
error ErrorComponentWalletAllowanceTooSmall(address oldWallet, address newWallet, uint256 allowance, uint256 balance);
|
26
|
-
error ErrorComponentUnauthorized(address caller, uint64 requiredRoleIdNum);
|
27
31
|
|
28
|
-
event LogComponentWalletAddressChanged(address newWallet);
|
32
|
+
event LogComponentWalletAddressChanged(address oldWallet, address newWallet);
|
29
33
|
event LogComponentWalletTokensTransferred(address from, address to, uint256 amount);
|
30
34
|
|
31
|
-
|
32
|
-
|
35
|
+
/// @dev locks component to disable functions that may change state related to this component, the only exception is function "unlock"
|
36
|
+
/// only component owner (nft holder) is authorizes to call this function
|
33
37
|
function lock() external;
|
34
|
-
function unlock() external;
|
35
38
|
|
36
|
-
|
39
|
+
/// @dev unlocks component to (re-)enable functions that may change state related to this component
|
40
|
+
/// only component owner (nft holder) is authorizes to call this function
|
41
|
+
function unlock() external;
|
37
42
|
|
43
|
+
/// @dev sets the wallet address for the component
|
44
|
+
/// if the current wallet has tokens, these will be transferred
|
45
|
+
/// if the new wallet address is externally owned, an approval from the
|
46
|
+
/// owner of the external wallet for the component to move all tokens must exist
|
38
47
|
function setWallet(address walletAddress) external;
|
39
|
-
function getWallet() external view returns (address walletAddress);
|
40
48
|
|
41
|
-
|
49
|
+
/// @dev only product service may set product nft id during registration of product setup
|
50
|
+
function setProductNftId(NftId productNftId) external;
|
51
|
+
|
52
|
+
/// @dev returns the name of this component
|
53
|
+
/// to successfully register the component with an instance the name MUST be unique in the linked instance
|
54
|
+
function getName() external view returns (string memory name);
|
55
|
+
|
56
|
+
/// @dev defines which ERC20 token is used by this component
|
57
|
+
function getToken() external view returns (IERC20Metadata token);
|
42
58
|
|
59
|
+
/// @dev defines the instance to which this component is linked to
|
43
60
|
function getInstance() external view returns (IInstance instance);
|
44
61
|
|
45
|
-
/// @dev
|
46
|
-
///
|
47
|
-
function
|
62
|
+
/// @dev defines the wallet address used to hold the ERC20 tokens related to this component
|
63
|
+
/// the default address is the component token address
|
64
|
+
function getWallet() external view returns (address walletAddress);
|
48
65
|
|
49
|
-
|
66
|
+
/// @dev defines the product to which this component is linked to
|
67
|
+
/// this is only relevant for pool and distribution components
|
50
68
|
function getProductNftId() external view returns (NftId productNftId);
|
51
69
|
|
52
|
-
function
|
53
|
-
|
70
|
+
function isNftInterceptor() external view returns(bool isInterceptor);
|
71
|
+
|
72
|
+
/// @dev returns component infos for this pool
|
73
|
+
/// when registered with an instance the info is obtained from the data stored in the instance
|
74
|
+
/// when not registered the function returns the info from the component contract
|
75
|
+
function getComponentInfo() external view returns (IComponents.ComponentInfo memory info);
|
54
76
|
}
|
@@ -17,6 +17,7 @@ interface IDistributionComponent is IComponent {
|
|
17
17
|
function getSetupInfo() external view returns (ISetup.DistributionSetupInfo memory setupInfo);
|
18
18
|
|
19
19
|
function setFees(
|
20
|
+
Fee memory minDistributionOwnerFee,
|
20
21
|
Fee memory distributionFee
|
21
22
|
) external;
|
22
23
|
|
@@ -44,38 +45,11 @@ interface IDistributionComponent is IComponent {
|
|
44
45
|
bytes memory data
|
45
46
|
) external;
|
46
47
|
|
47
|
-
/**
|
48
|
-
* @dev lets distributors create referral codes.
|
49
|
-
* referral codes need to be unique
|
50
|
-
* distributor is identified via msg.sender.
|
51
|
-
*/
|
52
|
-
function createReferral(
|
53
|
-
NftId distributorNftId,
|
54
|
-
string memory code,
|
55
|
-
UFixed discountPercentage,
|
56
|
-
uint32 maxReferrals,
|
57
|
-
Timestamp expiryAt,
|
58
|
-
bytes memory data
|
59
|
-
) external returns (ReferralId referralId);
|
60
|
-
|
61
|
-
function calculateFeeAmount(
|
62
|
-
ReferralId referralId,
|
63
|
-
uint256 netPremiumAmount
|
64
|
-
) external view returns (uint256 feeAmount);
|
65
|
-
|
66
48
|
function calculateRenewalFeeAmount(
|
67
49
|
ReferralId referralId,
|
68
50
|
uint256 netPremiumAmount
|
69
51
|
) external view returns (uint256 feeAmount);
|
70
52
|
|
71
|
-
/// @dev callback from product service when selling a policy for a specific referralId
|
72
|
-
/// the used referral id and the collected fee are provided as parameters
|
73
|
-
/// the component implementation can then process this information accordingly
|
74
|
-
function processSale(
|
75
|
-
ReferralId referralId,
|
76
|
-
uint256 feeAmount
|
77
|
-
) external;
|
78
|
-
|
79
53
|
/// @dev callback from product service when a policy is renews for a specific referralId
|
80
54
|
function processRenewal(
|
81
55
|
ReferralId referralId,
|
@@ -92,9 +66,6 @@ interface IDistributionComponent is IComponent {
|
|
92
66
|
string memory referralCode
|
93
67
|
) external returns (ReferralId referralId);
|
94
68
|
|
95
|
-
/// @dev returns true iff the referral id is valid
|
96
|
-
function referralIsValid(ReferralId referralId) external view returns (bool isValid);
|
97
|
-
|
98
69
|
/// @dev returns true iff the component needs to be called when selling/renewing policis
|
99
70
|
function isVerifying() external view returns (bool verifying);
|
100
71
|
}
|
@@ -3,85 +3,111 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {Fee} from "../types/Fee.sol";
|
5
5
|
import {IComponent} from "./IComponent.sol";
|
6
|
-
import {
|
6
|
+
import {IComponents} from "../instance/module/IComponents.sol";
|
7
7
|
import {NftId} from "../types/NftId.sol";
|
8
|
+
import {RoleId} from "../types/RoleId.sol";
|
9
|
+
import {Seconds} from "../types/Seconds.sol";
|
8
10
|
import {UFixed} from "../types/UFixed.sol";
|
9
11
|
|
10
12
|
/// @dev pool components hold and manage the collateral to cover active policies
|
11
13
|
/// pools come in different flavors
|
12
14
|
interface IPoolComponent is IComponent {
|
13
15
|
|
14
|
-
|
16
|
+
error ErrorPoolNotBundleOwner(NftId bundleNftId, address caller);
|
17
|
+
error ErrorPoolNotPoolService(address caller);
|
15
18
|
|
16
|
-
error
|
19
|
+
error ErrorPoolApplicationBundleMismatch(NftId applicationNftId);
|
17
20
|
|
18
|
-
|
21
|
+
event LogPoolVerifiedByPool(address pool, NftId applicationNftId, uint256 collateralizationAmount);
|
19
22
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
23
|
+
/// @dev increases the staked tokens by the specified amount
|
24
|
+
/// only the bundle owner may stake tokens
|
25
|
+
/// bundle MUST be in active or locked state
|
26
|
+
function stake(NftId bundleNftId, uint256 amount) external;
|
27
|
+
|
28
|
+
/// @dev decreases the staked tokens by the specified amount
|
29
|
+
/// only the bundle owner may unstake tokens from the bundle
|
30
|
+
/// bundle MUST be in active, locked or closed state
|
31
|
+
function unstake(NftId bundleNftId, uint256 amount) external;
|
25
32
|
|
26
|
-
/// @dev
|
33
|
+
/// @dev extends the bundle lifetime of the bundle by the specified time
|
34
|
+
/// only the bundle owner may extend the bundle's lifetime
|
35
|
+
/// bundle MUST be in active or locked state
|
36
|
+
function extend(NftId bundleNftId, Seconds lifetimeExtension) external;
|
37
|
+
|
38
|
+
/// @dev locks the specified bundle
|
39
|
+
/// a bundle to be locked MUST be in active state
|
40
|
+
/// locked bundles may not be used to underwrite any new policy
|
41
|
+
function lockBundle(NftId bundleNftId) external;
|
42
|
+
|
43
|
+
/// @dev unlocks the specified bundle
|
44
|
+
/// a bundle to be unlocked MUST be in locked state
|
45
|
+
function unlockBundle(NftId bundleNftId) external;
|
46
|
+
|
47
|
+
/// @dev close the specified bundle
|
48
|
+
/// a bundle to be closed MUST be in active or locked state
|
49
|
+
/// to close a bundle all all linked policies MUST be in closed state as well
|
50
|
+
/// closing a bundle finalizes the bundle bookkeeping including overall profit calculation
|
51
|
+
/// once a bundle is closed this action cannot be reversed
|
52
|
+
function close(NftId bundleNftId) external;
|
53
|
+
|
54
|
+
/// @dev sets the fee for the specified bundle
|
55
|
+
/// the fee is added on top of the poolFee and deducted from the premium amounts
|
27
56
|
/// via these fees individual bundler owner may earn income per policy in the context of peer to peer pools
|
28
57
|
function setBundleFee(
|
29
58
|
NftId bundleNftId,
|
30
59
|
Fee memory fee
|
31
60
|
) external;
|
32
61
|
|
62
|
+
/// @dev sets the maximum overall capital amound held by this pool
|
63
|
+
/// function may only be called by pool owner
|
64
|
+
function setMaxCapitalAmount(uint256 maxCapitalAmount) external;
|
65
|
+
|
66
|
+
/// @dev sets the required role to create/own bundles
|
67
|
+
/// may only be called once after setting up a pool
|
68
|
+
/// may only be called by pool owner
|
69
|
+
function setBundleOwnerRole(RoleId bundleOwnerRole) external;
|
70
|
+
|
71
|
+
/// @dev update pool fees to the specified values
|
72
|
+
/// pool fees: are deducted from the premium amount and goes to the pool owner
|
73
|
+
/// staking fees: are deducted from the staked tokens by a bundle owner and goes to the pool owner
|
74
|
+
/// performance fees: when a bundle is closed a bundle specific profit is calculated
|
75
|
+
/// the performance fee is deducted from this profit and goes to the pool owner
|
76
|
+
function setFees(
|
77
|
+
Fee memory poolFee,
|
78
|
+
Fee memory stakingFee,
|
79
|
+
Fee memory performanceFee
|
80
|
+
) external;
|
81
|
+
|
33
82
|
/// @dev this is a callback function that is called by the product service when underwriting a policy.
|
34
83
|
/// the pool has the option to check the details and object to underwriting by reverting.
|
35
84
|
/// the function is only called for "active" pools that ask to be involved/notified
|
36
85
|
/// by product related state changes.
|
37
86
|
function verifyApplication(
|
38
87
|
NftId applicationNftId,
|
39
|
-
bytes memory
|
88
|
+
bytes memory applicationData,
|
89
|
+
NftId bundleNftId,
|
40
90
|
bytes memory bundleFilter,
|
41
91
|
uint256 collateralizationAmount
|
42
92
|
) external;
|
43
93
|
|
44
|
-
|
45
|
-
|
46
|
-
function unlockBundle(NftId bundleNftId) external;
|
47
|
-
|
48
|
-
/// @dev defines the multiplier to calculate the required collateral to cover a given sum insured amount
|
49
|
-
/// default implementation returns 100%
|
50
|
-
function getCollateralizationLevel() external view returns (UFixed collateralizationLevel);
|
51
|
-
|
52
|
-
/// @dev defines the amount of collateral held in the pool.
|
53
|
-
/// if the value is < 100% the pool is required to hold a policy that covers the locally missing collateral
|
54
|
-
/// default implementation returns 100%
|
55
|
-
function getRetentionLevel() external view returns (UFixed retentionLevel);
|
56
|
-
|
57
|
-
/// @dev declares if pool intercept transfers of bundle nft ids
|
58
|
-
/// - yes: pool may block transfer of bundle ownership or simply updates some bookkeeping related to bundle ownership. callback function is nftTransferFrom
|
59
|
-
/// - no: pool is not involved in transfer of bundle ownership
|
60
|
-
/// default implementation returns false (no)
|
61
|
-
function isInterceptingBundleTransfers() external view returns (bool);
|
62
|
-
|
63
|
-
/// @dev declares if pool relies on external management of collateral (yes/no):
|
64
|
-
/// - yes: underwriting of new policies does not require an actual token balance, instead it is assumed that the pool owner will manage funds externally and inject enough tokens to allow process confirmed payouts
|
65
|
-
/// - no: the pool smart contract ensures that the necessary capacity of the pool prior to underwriting.
|
66
|
-
/// default implementation returns false (no)
|
67
|
-
function isExternallyManaged() external view returns (bool);
|
68
|
-
|
69
|
-
/// @dev declares if pool component is actively involved in underwriting (yes/no):
|
70
|
-
/// - yes: verifying pools components actively confirm underwriting applications, ie the pool component logic explicitly needs to confirm the locking of collateral to cover the sum insured of the policy
|
71
|
-
/// - no: underwriting a policy does not require any interaction with the pool component if the covering bundle can provide the necessary captial
|
72
|
-
/// default implementation returnsfalse (no)
|
73
|
-
function isVerifyingApplications() external view returns (bool);
|
74
|
-
|
75
|
-
/// @dev returns true iff the policy application data in policyData matches
|
76
|
-
/// with the bundle filter criteria encoded in bundleFilter
|
94
|
+
/// @dev returns true iff the application matches with the bundle
|
77
95
|
/// this is a callback function that is only called if a pool declares itself as a verifying pool
|
78
96
|
/// default implementation returns true
|
79
|
-
function
|
80
|
-
|
81
|
-
bytes memory
|
97
|
+
function applicationMatchesBundle(
|
98
|
+
NftId applicationNftId,
|
99
|
+
bytes memory applicationData,
|
100
|
+
NftId bundleNftId,
|
101
|
+
bytes memory bundleFilter,
|
102
|
+
uint256 collateralizationAmount
|
82
103
|
)
|
83
104
|
external
|
84
105
|
view
|
85
106
|
returns (bool isMatching);
|
86
107
|
|
108
|
+
/// @dev returns pool specific infos for this pool
|
109
|
+
/// when registered with an instance the info is obtained from the data stored in the instance
|
110
|
+
/// when not registered the function returns the info from the component contract
|
111
|
+
function getPoolInfo() external view returns (IComponents.PoolInfo memory info);
|
112
|
+
|
87
113
|
}
|
@@ -7,6 +7,7 @@ import {ISetup} from "../instance/module/ISetup.sol";
|
|
7
7
|
import {NftId} from "../types/NftId.sol";
|
8
8
|
import {ReferralId} from "../types/Referral.sol";
|
9
9
|
import {RiskId} from "../types/RiskId.sol";
|
10
|
+
import {Seconds} from "../types/Seconds.sol";
|
10
11
|
|
11
12
|
interface IProductComponent is IComponent {
|
12
13
|
|
@@ -20,7 +21,7 @@ interface IProductComponent is IComponent {
|
|
20
21
|
function calculatePremium(
|
21
22
|
uint256 sumInsuredAmount,
|
22
23
|
RiskId riskId,
|
23
|
-
|
24
|
+
Seconds lifetime,
|
24
25
|
bytes memory applicationData,
|
25
26
|
NftId bundleNftId,
|
26
27
|
ReferralId referralId
|
@@ -29,7 +30,7 @@ interface IProductComponent is IComponent {
|
|
29
30
|
function calculateNetPremium(
|
30
31
|
uint256 sumInsuredAmount,
|
31
32
|
RiskId riskId,
|
32
|
-
|
33
|
+
Seconds lifetime,
|
33
34
|
bytes memory applicationData
|
34
35
|
) external view returns (uint256 netPremiumAmount);
|
35
36
|
|