@etherisc/gif-next 0.0.2-e875d61-189 → 0.0.2-e9148e0-933
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 +179 -26
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +176 -23
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +129 -23
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +74 -181
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +55 -177
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +397 -70
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +444 -73
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +462 -1400
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2412 -1075
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +931 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +508 -0
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +276 -36
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +33 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
 - 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 +37 -245
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +381 -77
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -0
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +177 -75
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ServiceBase.sol/ServiceBase.json → service/IDistributionService.sol/IDistributionService.json} +204 -58
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +235 -50
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +325 -51
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +421 -53
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +479 -94
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +448 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +358 -37
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +947 -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 +466 -129
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1293 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +513 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -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/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +175 -54
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
 - 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/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +188 -90
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
 - 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/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 +14 -14
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +283 -62
 - 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 +103 -23
 - 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/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +52 -13
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
 - 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 +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - 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/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
 - 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 +15 -2
 - 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 +40 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
 - package/contracts/components/BaseComponent.sol +26 -29
 - package/contracts/components/Distribution.sol +159 -0
 - package/contracts/components/IBaseComponent.sol +9 -3
 - package/contracts/components/IDistributionComponent.sol +44 -0
 - package/contracts/components/IPoolComponent.sol +14 -9
 - package/contracts/components/IProductComponent.sol +25 -9
 - package/contracts/components/Pool.sol +89 -38
 - package/contracts/components/Product.sol +196 -46
 - package/contracts/experiment/cloning/Cloner.sol +47 -0
 - package/contracts/instance/AccessManagedSimple.sol +115 -0
 - package/contracts/instance/AccessManagerSimple.sol +692 -0
 - package/contracts/instance/IAccessManagerSimple.sol +391 -0
 - package/contracts/instance/IInstance.sol +34 -43
 - package/contracts/instance/IInstanceService.sol +30 -0
 - package/contracts/instance/Instance.sol +427 -55
 - package/contracts/instance/InstanceAccessManager.sol +288 -0
 - package/contracts/instance/InstanceReader.sol +306 -0
 - package/contracts/instance/InstanceService.sol +192 -0
 - package/contracts/instance/InstanceServiceManager.sol +57 -0
 - package/contracts/instance/base/ComponentServiceBase.sol +92 -10
 - package/contracts/instance/base/IInstanceBase.sol +6 -2
 - package/contracts/instance/base/IKeyValueStore.sol +13 -14
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +49 -38
 - package/contracts/instance/base/Lifecycle.sol +11 -3
 - package/contracts/instance/module/IAccess.sol +38 -0
 - package/contracts/instance/module/IBundle.sol +20 -0
 - package/contracts/instance/module/IDistribution.sol +39 -0
 - package/contracts/instance/module/IPolicy.sol +45 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +44 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ComponentOwnerService.sol +238 -76
 - package/contracts/instance/service/DistributionService.sol +88 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +54 -0
 - package/contracts/instance/service/IComponentOwnerService.sol +1 -3
 - package/contracts/instance/service/IDistributionService.sol +12 -0
 - package/contracts/instance/service/IPoolService.sol +8 -1
 - package/contracts/instance/service/IProductService.sol +56 -7
 - package/contracts/instance/service/PoolService.sol +117 -52
 - package/contracts/instance/service/PoolServiceManager.sol +54 -0
 - package/contracts/instance/service/ProductService.sol +351 -169
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +80 -37
 - package/contracts/registry/IRegistry.sol +47 -25
 - package/contracts/registry/IRegistryService.sol +50 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +333 -270
 - package/contracts/registry/RegistryService.sol +358 -0
 - package/contracts/registry/RegistryServiceManager.sol +80 -0
 - package/contracts/registry/TokenRegistry.sol +111 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +6 -2
 - package/contracts/shared/INftOwnable.sol +22 -0
 - package/contracts/shared/IRegisterable.sol +8 -15
 - package/contracts/{instance/base → shared}/IService.sol +3 -3
 - package/contracts/shared/IVersionable.sol +55 -11
 - package/contracts/shared/NftOwnable.sol +134 -0
 - package/contracts/shared/ProxyManager.sol +94 -0
 - package/contracts/shared/Registerable.sol +63 -59
 - package/contracts/shared/RegisterableUpgradable.sol +16 -0
 - package/contracts/shared/Service.sol +55 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +113 -55
 - package/contracts/test/TestFee.sol +2 -2
 - package/contracts/test/TestRegisterable.sol +5 -6
 - package/contracts/test/TestRoleId.sol +1 -1
 - package/contracts/test/TestService.sol +5 -13
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +10 -5
 - package/contracts/types/Key32.sol +8 -3
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +40 -11
 - package/contracts/types/Referral.sol +85 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +62 -10
 - package/contracts/types/StateId.sol +5 -1
 - package/contracts/types/Timestamp.sol +7 -3
 - package/contracts/types/UFixed.sol +128 -12
 - package/contracts/types/Version.sol +13 -1
 - package/package.json +4 -3
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
 - 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/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -531
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -531
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
 - package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -455
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -436
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/contracts/experiment/statemachine/README.md +0 -112
 - package/contracts/instance/IInstanceLinked.sol +0 -8
 - package/contracts/instance/base/InstanceBase.sol +0 -84
 - package/contracts/instance/base/ModuleBase.sol +0 -46
 - package/contracts/instance/base/ServiceBase.sol +0 -37
 - package/contracts/instance/module/access/Access.sol +0 -149
 - package/contracts/instance/module/access/IAccess.sol +0 -53
 - package/contracts/instance/module/bundle/BundleModule.sol +0 -135
 - package/contracts/instance/module/bundle/IBundle.sol +0 -51
 - package/contracts/instance/module/compensation/CompensationModule.sol +0 -17
 - package/contracts/instance/module/compensation/ICompensation.sol +0 -10
 - package/contracts/instance/module/component/ComponentModule.sol +0 -81
 - package/contracts/instance/module/component/IComponent.sol +0 -29
 - package/contracts/instance/module/policy/IPolicy.sol +0 -59
 - package/contracts/instance/module/policy/PolicyModule.sol +0 -89
 - package/contracts/instance/module/pool/IPoolModule.sol +0 -40
 - package/contracts/instance/module/pool/PoolModule.sol +0 -90
 - package/contracts/instance/module/risk/IRisk.sol +0 -10
 - package/contracts/instance/module/risk/RiskModule.sol +0 -17
 - package/contracts/instance/module/treasury/ITreasury.sol +0 -96
 - package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
 - package/contracts/instance/module/treasury/TreasuryModule.sol +0 -171
 - package/contracts/registry/IChainNft.sol +0 -21
 - package/contracts/registry/IRegistryLinked.sol +0 -8
 - package/contracts/shared/IOwnable.sol +0 -6
 - package/contracts/test/TestPool.sol +0 -24
 - package/contracts/test/TestProduct.sol +0 -51
 
| 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "MathLib",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/types/UFixed.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [],
         
     | 
| 
      
 6 
     | 
    
         
            +
              "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122037289d516393e3ab18915541d9161392eccdb5d0597291240d7784121072260864736f6c63430008140033",
         
     | 
| 
      
 7 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122037289d516393e3ab18915541d9161392eccdb5d0597291240d7784121072260864736f6c63430008140033",
         
     | 
| 
      
 8 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 9 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
      
 10 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
     | 
    
         
            -
              "contractName": " 
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "UFixedLib",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/types/UFixed.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
         @@ -472,8 +472,8 @@ 
     | 
|
| 
       472 
472 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       473 
473 
     | 
    
         
             
                }
         
     | 
| 
       474 
474 
     | 
    
         
             
              ],
         
     | 
| 
       475 
     | 
    
         
            -
              "bytecode": " 
     | 
| 
       476 
     | 
    
         
            -
              "deployedBytecode": " 
     | 
| 
      
 475 
     | 
    
         
            +
              "bytecode": "0x610a2a61003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c80637a858b97116100cd578063bc1b392d11610086578063bc1b392d146102c7578063bdbb4630146102ce578063c8a4ac9c146102d5578063cc8b7b73146102e8578063ea6515c4146102fb578063eb646d711461030e57600080fd5b80637a858b971461025f57806389fa8ed71461027257806393aa872514610287578063a391c15b1461028e578063b4773329146102a1578063b67d77c5146102b457600080fd5b8063313ce5671161011f578063313ce567146101f957806332148d731461020057806344aa68361461021357806345ebb61e14610226578063753b14a514610239578063771602f71461024c57600080fd5b8063059f8b161461016757806308c76ec414610182578063118fc88c146101955780631488c845146101b85780631a12cd47146101cb57806321e5749b146101e6575b600080fd5b61016f610316565b6040519081526020015b60405180910390f35b61016f610190366004610797565b610325565b6101a86101a33660046107cd565b6103ad565b6040519015158152602001610179565b61016f6101c63660046107ef565b6103ba565b6101d3601281565b60405160009190910b8152602001610179565b6101a86101f43660046107cd565b61049c565b601261016f565b6101a861020e3660046107cd565b6104a6565b61016f61022136600461081a565b6104b0565b61016f61023436600461081a565b6104bd565b6101a861024736600461081a565b6104d5565b61016f61025a3660046107cd565b6104de565b6101a861026d36600461081a565b6104ea565b60025b60405160ff9091168152602001610179565b6000610275565b61016f61029c3660046107cd565b6104f4565b6101a86102af3660046107cd565b610500565b61016f6102c23660046107cd565b61050b565b600061016f565b6001610275565b61016f6102e33660046107cd565b610517565b61016f6102f63660046107cd565b610523565b6101a86103093660046107cd565b61052f565b61016f61053a565b6103226012600a61092d565b81565b600060011960ff8316016103745761036d60026103446012600a61092d565b61034e919061094f565b6103589085610971565b60016103666012600a61092d565b6000610552565b90506103a7565b60ff821661038e5761036d8360016103666012600a61092d565b61036d8360016103a06012600a61092d565b6001610552565b92915050565b60008282115b9392505050565b6000806103c8836012610984565b60000b121561041e5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a464d2d3031303a4558504f4e454e545f544f4f5f534d414c4c0060448201526064015b60405180910390fd5b604061042b836012610984565b60000b131561047c5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a464d2d3031313a4558504f4e454e545f544f4f5f4c41524745006044820152606401610415565b610487826012610984565b61049290600a6109a5565b6103b390846109b4565b60008282106103b3565b60008183146103b3565b60006103a7826002610325565b60006104cb6012600a61092d565b6103a790836109b4565b600081156103a7565b60006103b383836105af565b60008115156103a7565b60006103b383836105bb565b6000828211156103b3565b60006103b3838361061f565b60006103b3838361067b565b60006103b38383610690565b6000828210156103b3565b60026105486012600a61092d565b610322919061094f565b6000806105608686866106ae565b90506001836002811115610576576105766109cb565b14801561059357506000848061058e5761058e610939565b868809115b156105a6576105a3600182610971565b90505b95945050505050565b60006103b38284610971565b600080821161060c5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a55464d2d3032303a44495649534f525f5a45524f0000000000006044820152606401610415565b6103b383670de0b6b3a7640000846106ae565b6000828211156106715760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a55464d2d3031303a4e454741544956455f524553554c540000006044820152606401610415565b6103b382846109e1565b60006103b38383670de0b6b3a76400006106ae565b6000828210156106a45761036d838361061f565b6103b3828461061f565b60008080600019858709858702925082811083820303915050806000036106e8578382816106de576106de610939565b04925050506103b3565b80841161072f5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610415565b600084868809600260036001881981018916988990049182028318808302840302808302840302808302840302808302840302808302840302918202909203026000889003889004909101858311909403939093029303949094049190911702949350505050565b600080604083850312156107aa57600080fd5b82359150602083013560ff811681146107c257600080fd5b809150509250929050565b600080604083850312156107e057600080fd5b50508035926020909101359150565b6000806040838503121561080257600080fd5b8235915060208301358060000b81146107c257600080fd5b60006020828403121561082c57600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561088457816000190482111561086a5761086a610833565b8085161561087757918102915b93841c939080029061084e565b509250929050565b60008261089b575060016103a7565b816108a8575060006103a7565b81600181146108be57600281146108c8576108e4565b60019150506103a7565b60ff8411156108d9576108d9610833565b50506001821b6103a7565b5060208310610133831016604e8410600b8410161715610907575081810a6103a7565b6109118383610849565b806000190482111561092557610925610833565b029392505050565b60006103b3838361088c565b634e487b7160e01b600052601260045260246000fd5b60008261096c57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156103a7576103a7610833565b600081810b9083900b01607f8113607f19821217156103a7576103a7610833565b60006103b360ff84168361088c565b80820281158282048414176103a7576103a7610833565b634e487b7160e01b600052602160045260246000fd5b818103818111156103a7576103a761083356fea2646970667358221220f659b86edd0962c8a443cf254dd05085c2f84aebd873f9d04820daa9354e580d64736f6c63430008140033",
         
     | 
| 
      
 476 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c80637a858b97116100cd578063bc1b392d11610086578063bc1b392d146102c7578063bdbb4630146102ce578063c8a4ac9c146102d5578063cc8b7b73146102e8578063ea6515c4146102fb578063eb646d711461030e57600080fd5b80637a858b971461025f57806389fa8ed71461027257806393aa872514610287578063a391c15b1461028e578063b4773329146102a1578063b67d77c5146102b457600080fd5b8063313ce5671161011f578063313ce567146101f957806332148d731461020057806344aa68361461021357806345ebb61e14610226578063753b14a514610239578063771602f71461024c57600080fd5b8063059f8b161461016757806308c76ec414610182578063118fc88c146101955780631488c845146101b85780631a12cd47146101cb57806321e5749b146101e6575b600080fd5b61016f610316565b6040519081526020015b60405180910390f35b61016f610190366004610797565b610325565b6101a86101a33660046107cd565b6103ad565b6040519015158152602001610179565b61016f6101c63660046107ef565b6103ba565b6101d3601281565b60405160009190910b8152602001610179565b6101a86101f43660046107cd565b61049c565b601261016f565b6101a861020e3660046107cd565b6104a6565b61016f61022136600461081a565b6104b0565b61016f61023436600461081a565b6104bd565b6101a861024736600461081a565b6104d5565b61016f61025a3660046107cd565b6104de565b6101a861026d36600461081a565b6104ea565b60025b60405160ff9091168152602001610179565b6000610275565b61016f61029c3660046107cd565b6104f4565b6101a86102af3660046107cd565b610500565b61016f6102c23660046107cd565b61050b565b600061016f565b6001610275565b61016f6102e33660046107cd565b610517565b61016f6102f63660046107cd565b610523565b6101a86103093660046107cd565b61052f565b61016f61053a565b6103226012600a61092d565b81565b600060011960ff8316016103745761036d60026103446012600a61092d565b61034e919061094f565b6103589085610971565b60016103666012600a61092d565b6000610552565b90506103a7565b60ff821661038e5761036d8360016103666012600a61092d565b61036d8360016103a06012600a61092d565b6001610552565b92915050565b60008282115b9392505050565b6000806103c8836012610984565b60000b121561041e5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a464d2d3031303a4558504f4e454e545f544f4f5f534d414c4c0060448201526064015b60405180910390fd5b604061042b836012610984565b60000b131561047c5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a464d2d3031313a4558504f4e454e545f544f4f5f4c41524745006044820152606401610415565b610487826012610984565b61049290600a6109a5565b6103b390846109b4565b60008282106103b3565b60008183146103b3565b60006103a7826002610325565b60006104cb6012600a61092d565b6103a790836109b4565b600081156103a7565b60006103b383836105af565b60008115156103a7565b60006103b383836105bb565b6000828211156103b3565b60006103b3838361061f565b60006103b3838361067b565b60006103b38383610690565b6000828210156103b3565b60026105486012600a61092d565b610322919061094f565b6000806105608686866106ae565b90506001836002811115610576576105766109cb565b14801561059357506000848061058e5761058e610939565b868809115b156105a6576105a3600182610971565b90505b95945050505050565b60006103b38284610971565b600080821161060c5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a55464d2d3032303a44495649534f525f5a45524f0000000000006044820152606401610415565b6103b383670de0b6b3a7640000846106ae565b6000828211156106715760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a55464d2d3031303a4e454741544956455f524553554c540000006044820152606401610415565b6103b382846109e1565b60006103b38383670de0b6b3a76400006106ae565b6000828210156106a45761036d838361061f565b6103b3828461061f565b60008080600019858709858702925082811083820303915050806000036106e8578382816106de576106de610939565b04925050506103b3565b80841161072f5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610415565b600084868809600260036001881981018916988990049182028318808302840302808302840302808302840302808302840302808302840302918202909203026000889003889004909101858311909403939093029303949094049190911702949350505050565b600080604083850312156107aa57600080fd5b82359150602083013560ff811681146107c257600080fd5b809150509250929050565b600080604083850312156107e057600080fd5b50508035926020909101359150565b6000806040838503121561080257600080fd5b8235915060208301358060000b81146107c257600080fd5b60006020828403121561082c57600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561088457816000190482111561086a5761086a610833565b8085161561087757918102915b93841c939080029061084e565b509250929050565b60008261089b575060016103a7565b816108a8575060006103a7565b81600181146108be57600281146108c8576108e4565b60019150506103a7565b60ff8411156108d9576108d9610833565b50506001821b6103a7565b5060208310610133831016604e8410600b8410161715610907575081810a6103a7565b6109118383610849565b806000190482111561092557610925610833565b029392505050565b60006103b3838361088c565b634e487b7160e01b600052601260045260246000fd5b60008261096c57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156103a7576103a7610833565b600081810b9083900b01607f8113607f19821217156103a7576103a7610833565b60006103b360ff84168361088c565b80820281158282048414176103a7576103a7610833565b634e487b7160e01b600052602160045260246000fd5b818103818111156103a7576103a761083356fea2646970667358221220f659b86edd0962c8a443cf254dd05085c2f84aebd873f9d04820daa9354e580d64736f6c63430008140033",
         
     | 
| 
       477 
477 
     | 
    
         
             
              "linkReferences": {},
         
     | 
| 
       478 
478 
     | 
    
         
             
              "deployedLinkReferences": {}
         
     | 
| 
       479 
479 
     | 
    
         
             
            }
         
     | 
| 
         @@ -41,6 +41,25 @@ 
     | 
|
| 
       41 
41 
     | 
    
         
             
                  "stateMutability": "pure",
         
     | 
| 
       42 
42 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       43 
43 
     | 
    
         
             
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "toUint64",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 54 
     | 
    
         
            +
                    {
         
     | 
| 
      
 55 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 56 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 58 
     | 
    
         
            +
                    }
         
     | 
| 
      
 59 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 60 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 62 
     | 
    
         
            +
                },
         
     | 
| 
       44 
63 
     | 
    
         
             
                {
         
     | 
| 
       45 
64 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       46 
65 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -70,6 +89,25 @@ 
     | 
|
| 
       70 
89 
     | 
    
         
             
                  "stateMutability": "pure",
         
     | 
| 
       71 
90 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       72 
91 
     | 
    
         
             
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 94 
     | 
    
         
            +
                    {
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "name": "versionNumber",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    }
         
     | 
| 
      
 99 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "name": "toVersion",
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 102 
     | 
    
         
            +
                    {
         
     | 
| 
      
 103 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 104 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 105 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 106 
     | 
    
         
            +
                    }
         
     | 
| 
      
 107 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 110 
     | 
    
         
            +
                },
         
     | 
| 
       73 
111 
     | 
    
         
             
                {
         
     | 
| 
       74 
112 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       75 
113 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -132,8 +170,8 @@ 
     | 
|
| 
       132 
170 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       133 
171 
     | 
    
         
             
                }
         
     | 
| 
       134 
172 
     | 
    
         
             
              ],
         
     | 
| 
       135 
     | 
    
         
            -
              "bytecode": " 
     | 
| 
       136 
     | 
    
         
            -
              "deployedBytecode": " 
     | 
| 
      
 173 
     | 
    
         
            +
              "bytecode": "0x61039161003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea264697066735822122096e4b37266f82e0aaf6f30afa90c545c35f82576ca3b67d630233921e58f525b64736f6c63430008140033",
         
     | 
| 
      
 174 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea264697066735822122096e4b37266f82e0aaf6f30afa90c545c35f82576ca3b67d630233921e58f525b64736f6c63430008140033",
         
     | 
| 
       137 
175 
     | 
    
         
             
              "linkReferences": {},
         
     | 
| 
       138 
176 
     | 
    
         
             
              "deployedLinkReferences": {}
         
     | 
| 
       139 
177 
     | 
    
         
             
            }
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
9 
     | 
    
         
             
                      "internalType": "VersionPart",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
       11 
11 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       12 
12 
     | 
    
         
             
                    }
         
     | 
| 
       13 
13 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -21,10 +21,29 @@ 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  ],
         
     | 
| 
       22 
22 
     | 
    
         
             
                  "stateMutability": "pure",
         
     | 
| 
       23 
23 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
      
 24 
     | 
    
         
            +
                },
         
     | 
| 
      
 25 
     | 
    
         
            +
                {
         
     | 
| 
      
 26 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 27 
     | 
    
         
            +
                    {
         
     | 
| 
      
 28 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 29 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 30 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 31 
     | 
    
         
            +
                    }
         
     | 
| 
      
 32 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "name": "toVersionPart",
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       24 
43 
     | 
    
         
             
                }
         
     | 
| 
       25 
44 
     | 
    
         
             
              ],
         
     | 
| 
       26 
     | 
    
         
            -
              "bytecode": " 
     | 
| 
       27 
     | 
    
         
            -
              "deployedBytecode": " 
     | 
| 
      
 45 
     | 
    
         
            +
              "bytecode": "0x60fb610039600b82828239805160001a60731461002c57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c80638e4ad86c146042578063ac43d834146067575b600080fd5b6050604d3660046085565b90565b60405160ff90911681526020015b60405180910390f35b60786072366004609d565b60ff1690565b604051908152602001605e565b600060208284031215609657600080fd5b5035919050565b60006020828403121560ae57600080fd5b813560ff8116811460be57600080fd5b939250505056fea264697066735822122074bb6f75f2cab9692d05e41844bf40283045a9440c662c37a97b2502d38207ed64736f6c63430008140033",
         
     | 
| 
      
 46 
     | 
    
         
            +
              "deployedBytecode": "0x7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c80638e4ad86c146042578063ac43d834146067575b600080fd5b6050604d3660046085565b90565b60405160ff90911681526020015b60405180910390f35b60786072366004609d565b60ff1690565b604051908152602001605e565b600060208284031215609657600080fd5b5035919050565b60006020828403121560ae57600080fd5b813560ff8116811460be57600080fd5b939250505056fea264697066735822122074bb6f75f2cab9692d05e41844bf40283045a9440c662c37a97b2502d38207ed64736f6c63430008140033",
         
     | 
| 
       28 
47 
     | 
    
         
             
              "linkReferences": {},
         
     | 
| 
       29 
48 
     | 
    
         
             
              "deployedLinkReferences": {}
         
     | 
| 
       30 
49 
     | 
    
         
             
            }
         
     | 
| 
         @@ -1,42 +1,46 @@ 
     | 
|
| 
       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 
     | 
    
         
            -
            import {IRegisterable} from "../shared/IRegisterable.sol";
         
     | 
| 
       7 
6 
     | 
    
         
             
            import {Registerable} from "../shared/Registerable.sol";
         
     | 
| 
       8 
7 
     | 
    
         | 
| 
       9 
8 
     | 
    
         
             
            import {IRegistry} from "../registry/IRegistry.sol";
         
     | 
| 
       10 
9 
     | 
    
         
             
            import {IInstance} from "../instance/IInstance.sol";
         
     | 
| 
       11 
10 
     | 
    
         | 
| 
       12 
11 
     | 
    
         
             
            import {IInstance} from "../instance/IInstance.sol";
         
     | 
| 
       13 
     | 
    
         
            -
            import {IComponent, IComponentModule} from "../instance/module/component/IComponent.sol";
         
     | 
| 
       14 
12 
     | 
    
         
             
            import {IComponentOwnerService} from "../instance/service/IComponentOwnerService.sol";
         
     | 
| 
       15 
13 
     | 
    
         
             
            import {IBaseComponent} from "./IBaseComponent.sol";
         
     | 
| 
       16 
     | 
    
         
            -
            import { 
     | 
| 
       17 
     | 
    
         
            -
            import { 
     | 
| 
      
 14 
     | 
    
         
            +
            import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
         
     | 
| 
      
 15 
     | 
    
         
            +
            import {ObjectType} from "../types/ObjectType.sol";
         
     | 
| 
       18 
16 
     | 
    
         | 
| 
       19 
17 
     | 
    
         
             
            abstract contract BaseComponent is
         
     | 
| 
       20 
18 
     | 
    
         
             
                Registerable,
         
     | 
| 
       21 
19 
     | 
    
         
             
                IBaseComponent
         
     | 
| 
       22 
20 
     | 
    
         
             
            {
         
     | 
| 
      
 21 
     | 
    
         
            +
                using NftIdLib for NftId;
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
       23 
23 
     | 
    
         
             
                IComponentOwnerService internal _componentOwnerService;
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
25 
     | 
    
         
             
                address internal _deployer;
         
     | 
| 
       26 
26 
     | 
    
         
             
                address internal _wallet;
         
     | 
| 
       27 
27 
     | 
    
         
             
                IERC20Metadata internal _token;
         
     | 
| 
       28 
28 
     | 
    
         
             
                IInstance internal _instance;
         
     | 
| 
       29 
     | 
    
         
            -
                 
     | 
| 
       30 
     | 
    
         
            -
                Fee internal _zeroFee;
         
     | 
| 
      
 29 
     | 
    
         
            +
                NftId internal _productNftId;
         
     | 
| 
       31 
30 
     | 
    
         | 
| 
       32 
31 
     | 
    
         
             
                constructor(
         
     | 
| 
       33 
32 
     | 
    
         
             
                    address registry,
         
     | 
| 
       34 
33 
     | 
    
         
             
                    NftId instanceNftId,
         
     | 
| 
       35 
     | 
    
         
            -
                    address token
         
     | 
| 
      
 34 
     | 
    
         
            +
                    address token,
         
     | 
| 
      
 35 
     | 
    
         
            +
                    ObjectType componentType,
         
     | 
| 
      
 36 
     | 
    
         
            +
                    bool isInterceptor,
         
     | 
| 
      
 37 
     | 
    
         
            +
                    address initialOwner
         
     | 
| 
       36 
38 
     | 
    
         
             
                )
         
     | 
| 
       37 
     | 
    
         
            -
                    Registerable(registry, instanceNftId)
         
     | 
| 
       38 
39 
     | 
    
         
             
                {
         
     | 
| 
       39 
     | 
    
         
            -
                     
     | 
| 
      
 40 
     | 
    
         
            +
                    bytes memory data = "";
         
     | 
| 
      
 41 
     | 
    
         
            +
                    _initializeRegisterable(registry, instanceNftId, componentType, isInterceptor, initialOwner, data);
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                    IRegistry.ObjectInfo memory instanceInfo = getRegistry().getObjectInfo(instanceNftId);
         
     | 
| 
       40 
44 
     | 
    
         
             
                    _instance = IInstance(instanceInfo.objectAddress);
         
     | 
| 
       41 
45 
     | 
    
         
             
                    require(
         
     | 
| 
       42 
46 
     | 
    
         
             
                        _instance.supportsInterface(type(IInstance).interfaceId),
         
     | 
| 
         @@ -46,24 +50,8 @@ abstract contract BaseComponent is 
     | 
|
| 
       46 
50 
     | 
    
         
             
                    _componentOwnerService = _instance.getComponentOwnerService();
         
     | 
| 
       47 
51 
     | 
    
         
             
                    _wallet = address(this);
         
     | 
| 
       48 
52 
     | 
    
         
             
                    _token = IERC20Metadata(token);
         
     | 
| 
       49 
     | 
    
         
            -
                    _isRegistered = false;
         
     | 
| 
       50 
     | 
    
         
            -
                    _zeroFee = FeeLib.zeroFee();
         
     | 
| 
       51 
     | 
    
         
            -
                }
         
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
                // from registerable
         
     | 
| 
       54 
     | 
    
         
            -
                function register() public override(IRegisterable, Registerable) returns (NftId componentId) {
         
     | 
| 
       55 
     | 
    
         
            -
                    require(msg.sender == getOwner(), "");
         
     | 
| 
       56 
     | 
    
         
            -
                    require(
         
     | 
| 
       57 
     | 
    
         
            -
                        address(_registry) != address(0),
         
     | 
| 
       58 
     | 
    
         
            -
                        "ERROR:COB-001:REGISTRY_ZERO"
         
     | 
| 
       59 
     | 
    
         
            -
                    );
         
     | 
| 
       60 
     | 
    
         
            -
                    require(
         
     | 
| 
       61 
     | 
    
         
            -
                        _registry.isRegistered(address(_instance)),
         
     | 
| 
       62 
     | 
    
         
            -
                        "ERROR:COB:INSTANCE_NOT_REGISTERED"
         
     | 
| 
       63 
     | 
    
         
            -
                    );
         
     | 
| 
       64 
53 
     | 
    
         | 
| 
       65 
     | 
    
         
            -
                     
     | 
| 
       66 
     | 
    
         
            -
                    return _componentOwnerService.register(this);
         
     | 
| 
      
 54 
     | 
    
         
            +
                    _registerInterface(type(IBaseComponent).interfaceId);
         
     | 
| 
       67 
55 
     | 
    
         
             
                }
         
     | 
| 
       68 
56 
     | 
    
         | 
| 
       69 
57 
     | 
    
         
             
                // from component contract
         
     | 
| 
         @@ -84,11 +72,20 @@ abstract contract BaseComponent is 
     | 
|
| 
       84 
72 
     | 
    
         
             
                    return _wallet;
         
     | 
| 
       85 
73 
     | 
    
         
             
                }
         
     | 
| 
       86 
74 
     | 
    
         | 
| 
       87 
     | 
    
         
            -
                function getToken()  
     | 
| 
      
 75 
     | 
    
         
            +
                function getToken() public view override returns (IERC20Metadata token) {
         
     | 
| 
       88 
76 
     | 
    
         
             
                    return _token;
         
     | 
| 
       89 
77 
     | 
    
         
             
                }
         
     | 
| 
       90 
78 
     | 
    
         | 
| 
       91 
     | 
    
         
            -
                function getInstance()  
     | 
| 
      
 79 
     | 
    
         
            +
                function getInstance() public view override returns (IInstance instance) {
         
     | 
| 
       92 
80 
     | 
    
         
             
                    return _instance;
         
     | 
| 
       93 
81 
     | 
    
         
             
                }
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
                function setProductNftId(NftId productNftId) public override onlyOwner {
         
     | 
| 
      
 84 
     | 
    
         
            +
                    require(_productNftId.eq(zeroNftId()), "product nft id already set");
         
     | 
| 
      
 85 
     | 
    
         
            +
                    _productNftId = productNftId;
         
     | 
| 
      
 86 
     | 
    
         
            +
                }
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
                function getProductNftId() public view override returns (NftId productNftId) {
         
     | 
| 
      
 89 
     | 
    
         
            +
                    return _productNftId;
         
     | 
| 
      
 90 
     | 
    
         
            +
                }
         
     | 
| 
       94 
91 
     | 
    
         
             
            }
         
     | 
| 
         @@ -0,0 +1,159 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.19;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {DISTRIBUTION} from "../types/ObjectType.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {IDistributionService} from "../instance/service/IDistributionService.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {IProductService} from "../instance/service/IProductService.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {ReferralId} from "../types/Referral.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {Fee, FeeLib} from "../types/Fee.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {BaseComponent} from "./BaseComponent.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {IDistributionComponent} from "./IDistributionComponent.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {IRegistry} from "../registry/IRegistry.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import {IRegisterable} from "../shared/IRegisterable.sol";
         
     | 
| 
      
 14 
     | 
    
         
            +
            import {ISetup} from "../instance/module/ISetup.sol";
         
     | 
| 
      
 15 
     | 
    
         
            +
            import {Registerable} from "../shared/Registerable.sol";
         
     | 
| 
      
 16 
     | 
    
         
            +
            import {TokenHandler} from "../shared/TokenHandler.sol";
         
     | 
| 
      
 17 
     | 
    
         
            +
            import {InstanceReader} from "../instance/InstanceReader.sol";
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            contract Distribution is
         
     | 
| 
      
 20 
     | 
    
         
            +
                BaseComponent,
         
     | 
| 
      
 21 
     | 
    
         
            +
                IDistributionComponent
         
     | 
| 
      
 22 
     | 
    
         
            +
            {
         
     | 
| 
      
 23 
     | 
    
         
            +
                using NftIdLib for NftId;
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                Fee internal _initialDistributionFee;
         
     | 
| 
      
 26 
     | 
    
         
            +
                bool internal _isVerifying;
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                IDistributionService private _distributionService;
         
     | 
| 
      
 29 
     | 
    
         
            +
                IProductService private _productService;
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
                modifier onlyProductService() {
         
     | 
| 
      
 32 
     | 
    
         
            +
                    require(
         
     | 
| 
      
 33 
     | 
    
         
            +
                        msg.sender == address(_productService), 
         
     | 
| 
      
 34 
     | 
    
         
            +
                        "ERROR:POL-002:NOT_PRODUCT_SERVICE");
         
     | 
| 
      
 35 
     | 
    
         
            +
                    _;
         
     | 
| 
      
 36 
     | 
    
         
            +
                }
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                constructor(
         
     | 
| 
      
 39 
     | 
    
         
            +
                    address registry,
         
     | 
| 
      
 40 
     | 
    
         
            +
                    NftId instanceNftId,
         
     | 
| 
      
 41 
     | 
    
         
            +
                    // TODO refactor into tokenNftId
         
     | 
| 
      
 42 
     | 
    
         
            +
                    address token,
         
     | 
| 
      
 43 
     | 
    
         
            +
                    bool verifying,
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Fee memory distributionFee,
         
     | 
| 
      
 45 
     | 
    
         
            +
                    address initialOwner
         
     | 
| 
      
 46 
     | 
    
         
            +
                )
         
     | 
| 
      
 47 
     | 
    
         
            +
                    BaseComponent(registry, instanceNftId, token, DISTRIBUTION(), true, initialOwner)
         
     | 
| 
      
 48 
     | 
    
         
            +
                {
         
     | 
| 
      
 49 
     | 
    
         
            +
                    _isVerifying = verifying;
         
     | 
| 
      
 50 
     | 
    
         
            +
                    _initialDistributionFee = distributionFee;
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
                    _distributionService = _instance.getDistributionService();
         
     | 
| 
      
 53 
     | 
    
         
            +
                    _productService = _instance.getProductService();
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
                    _registerInterface(type(IDistributionComponent).interfaceId);
         
     | 
| 
      
 56 
     | 
    
         
            +
                }
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
                function setFees(
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Fee memory distributionFee
         
     | 
| 
      
 61 
     | 
    
         
            +
                )
         
     | 
| 
      
 62 
     | 
    
         
            +
                    external
         
     | 
| 
      
 63 
     | 
    
         
            +
                    override
         
     | 
| 
      
 64 
     | 
    
         
            +
                {
         
     | 
| 
      
 65 
     | 
    
         
            +
                    _distributionService.setFees(distributionFee);
         
     | 
| 
      
 66 
     | 
    
         
            +
                }
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                function calculateFeeAmount(
         
     | 
| 
      
 69 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 70 
     | 
    
         
            +
                    uint256 netPremiumAmount
         
     | 
| 
      
 71 
     | 
    
         
            +
                )
         
     | 
| 
      
 72 
     | 
    
         
            +
                    external
         
     | 
| 
      
 73 
     | 
    
         
            +
                    view
         
     | 
| 
      
 74 
     | 
    
         
            +
                    virtual override
         
     | 
| 
      
 75 
     | 
    
         
            +
                    returns (uint256 feeAmount)
         
     | 
| 
      
 76 
     | 
    
         
            +
                {
         
     | 
| 
      
 77 
     | 
    
         
            +
                    ISetup.DistributionSetupInfo memory setupInfo = getSetupInfo();
         
     | 
| 
      
 78 
     | 
    
         
            +
                    Fee memory fee = setupInfo.distributionFee;
         
     | 
| 
      
 79 
     | 
    
         
            +
                    (feeAmount,) = FeeLib.calculateFee(fee, netPremiumAmount);
         
     | 
| 
      
 80 
     | 
    
         
            +
                }
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
                function calculateRenewalFeeAmount(
         
     | 
| 
      
 84 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 85 
     | 
    
         
            +
                    uint256 netPremiumAmount
         
     | 
| 
      
 86 
     | 
    
         
            +
                )
         
     | 
| 
      
 87 
     | 
    
         
            +
                    external
         
     | 
| 
      
 88 
     | 
    
         
            +
                    view
         
     | 
| 
      
 89 
     | 
    
         
            +
                    virtual override
         
     | 
| 
      
 90 
     | 
    
         
            +
                    returns (uint256 feeAmount)
         
     | 
| 
      
 91 
     | 
    
         
            +
                {
         
     | 
| 
      
 92 
     | 
    
         
            +
                    // default is no fees
         
     | 
| 
      
 93 
     | 
    
         
            +
                    return 0 * netPremiumAmount;
         
     | 
| 
      
 94 
     | 
    
         
            +
                }
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
                function processSale(
         
     | 
| 
      
 97 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 98 
     | 
    
         
            +
                    uint256 feeAmount
         
     | 
| 
      
 99 
     | 
    
         
            +
                )
         
     | 
| 
      
 100 
     | 
    
         
            +
                    external
         
     | 
| 
      
 101 
     | 
    
         
            +
                    onlyProductService
         
     | 
| 
      
 102 
     | 
    
         
            +
                    virtual override
         
     | 
| 
      
 103 
     | 
    
         
            +
                {
         
     | 
| 
      
 104 
     | 
    
         
            +
                    // default is no action
         
     | 
| 
      
 105 
     | 
    
         
            +
                }
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
                function processRenewal(
         
     | 
| 
      
 108 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 109 
     | 
    
         
            +
                    uint256 feeAmount
         
     | 
| 
      
 110 
     | 
    
         
            +
                )
         
     | 
| 
      
 111 
     | 
    
         
            +
                    external
         
     | 
| 
      
 112 
     | 
    
         
            +
                    onlyProductService
         
     | 
| 
      
 113 
     | 
    
         
            +
                    virtual override
         
     | 
| 
      
 114 
     | 
    
         
            +
                {
         
     | 
| 
      
 115 
     | 
    
         
            +
                    // default is no action
         
     | 
| 
      
 116 
     | 
    
         
            +
                }
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
                function referralIsValid(ReferralId referralId) external view returns (bool isValid) {
         
     | 
| 
      
 119 
     | 
    
         
            +
                    // default is invalid
         
     | 
| 
      
 120 
     | 
    
         
            +
                    return false;
         
     | 
| 
      
 121 
     | 
    
         
            +
                }
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
                function getSetupInfo() public view returns (ISetup.DistributionSetupInfo memory setupInfo) {
         
     | 
| 
      
 124 
     | 
    
         
            +
                    InstanceReader reader = _instance.getInstanceReader();
         
     | 
| 
      
 125 
     | 
    
         
            +
                    return reader.getDistributionSetupInfo(getNftId());
         
     | 
| 
      
 126 
     | 
    
         
            +
                }
         
     | 
| 
      
 127 
     | 
    
         
            +
                
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
                /// @dev returns true iff the component needs to be called when selling/renewing policis
         
     | 
| 
      
 130 
     | 
    
         
            +
                function isVerifying() external view returns (bool verifying) {
         
     | 
| 
      
 131 
     | 
    
         
            +
                    return _isVerifying;
         
     | 
| 
      
 132 
     | 
    
         
            +
                }
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
                // from IRegisterable
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
                function getInitialInfo() 
         
     | 
| 
      
 137 
     | 
    
         
            +
                    public 
         
     | 
| 
      
 138 
     | 
    
         
            +
                    view
         
     | 
| 
      
 139 
     | 
    
         
            +
                    override (IRegisterable, Registerable)
         
     | 
| 
      
 140 
     | 
    
         
            +
                    returns(IRegistry.ObjectInfo memory, bytes memory)
         
     | 
| 
      
 141 
     | 
    
         
            +
                {
         
     | 
| 
      
 142 
     | 
    
         
            +
                    (
         
     | 
| 
      
 143 
     | 
    
         
            +
                        IRegistry.ObjectInfo memory info, 
         
     | 
| 
      
 144 
     | 
    
         
            +
                    ) = super.getInitialInfo();
         
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
                    return (
         
     | 
| 
      
 147 
     | 
    
         
            +
                        info,
         
     | 
| 
      
 148 
     | 
    
         
            +
                        abi.encode(
         
     | 
| 
      
 149 
     | 
    
         
            +
                            ISetup.DistributionSetupInfo(
         
     | 
| 
      
 150 
     | 
    
         
            +
                                _productNftId,
         
     | 
| 
      
 151 
     | 
    
         
            +
                                TokenHandler(address(_token)),
         
     | 
| 
      
 152 
     | 
    
         
            +
                                _initialDistributionFee,
         
     | 
| 
      
 153 
     | 
    
         
            +
                                _isVerifying,
         
     | 
| 
      
 154 
     | 
    
         
            +
                                address(this)
         
     | 
| 
      
 155 
     | 
    
         
            +
                            )
         
     | 
| 
      
 156 
     | 
    
         
            +
                        )
         
     | 
| 
      
 157 
     | 
    
         
            +
                    );
         
     | 
| 
      
 158 
     | 
    
         
            +
                }
         
     | 
| 
      
 159 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,12 +1,13 @@ 
     | 
|
| 
       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 {IRegisterable} from "../shared/IRegisterable.sol";
         
     | 
| 
       7 
     | 
    
         
            -
            import { 
     | 
| 
      
 7 
     | 
    
         
            +
            import {IInstance} from "../instance/IInstance.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {NftId} from "../types/NftId.sol";
         
     | 
| 
       8 
9 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
            interface IBaseComponent is IRegisterable 
     | 
| 
      
 10 
     | 
    
         
            +
            interface IBaseComponent is IRegisterable {
         
     | 
| 
       10 
11 
     | 
    
         | 
| 
       11 
12 
     | 
    
         
             
                function lock() external;
         
     | 
| 
       12 
13 
     | 
    
         | 
| 
         @@ -16,4 +17,9 @@ interface IBaseComponent is IRegisterable, IInstanceLinked { 
     | 
|
| 
       16 
17 
     | 
    
         | 
| 
       17 
18 
     | 
    
         
             
                function getWallet() external view returns (address walletAddress);
         
     | 
| 
       18 
19 
     | 
    
         | 
| 
      
 20 
     | 
    
         
            +
                function getInstance() external view returns (IInstance instance);
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
                function setProductNftId(NftId productNftId) external;
         
     | 
| 
      
 23 
     | 
    
         
            +
                function getProductNftId() external view returns (NftId productNftId);
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
       19 
25 
     | 
    
         
             
            }
         
     | 
| 
         @@ -0,0 +1,44 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.19;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Fee} from "../types/Fee.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {ReferralId} from "../types/Referral.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId} from "../types/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ISetup} from "../instance/module/ISetup.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            interface IDistributionComponent {
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                function setFees(
         
     | 
| 
      
 12 
     | 
    
         
            +
                    Fee memory distributionFee
         
     | 
| 
      
 13 
     | 
    
         
            +
                ) external;
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
                function calculateFeeAmount(
         
     | 
| 
      
 16 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 17 
     | 
    
         
            +
                    uint256 netPremiumAmount
         
     | 
| 
      
 18 
     | 
    
         
            +
                ) external view returns (uint256 feeAmount);
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                function calculateRenewalFeeAmount(
         
     | 
| 
      
 21 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 22 
     | 
    
         
            +
                    uint256 netPremiumAmount
         
     | 
| 
      
 23 
     | 
    
         
            +
                ) external view returns (uint256 feeAmount);
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                /// @dev callback from product service when selling a policy for a specific referralId
         
     | 
| 
      
 26 
     | 
    
         
            +
                /// the used referral id and the collected fee are provided as parameters
         
     | 
| 
      
 27 
     | 
    
         
            +
                /// the component implementation can then process this information accordingly
         
     | 
| 
      
 28 
     | 
    
         
            +
                function processSale(
         
     | 
| 
      
 29 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 30 
     | 
    
         
            +
                    uint256 feeAmount
         
     | 
| 
      
 31 
     | 
    
         
            +
                ) external;
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
                /// @dev callback from product service when a policy is renews for a specific referralId
         
     | 
| 
      
 34 
     | 
    
         
            +
                function processRenewal(
         
     | 
| 
      
 35 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 36 
     | 
    
         
            +
                    uint256 feeAmount
         
     | 
| 
      
 37 
     | 
    
         
            +
                ) external;
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                /// @dev returns true iff the referral id is valid
         
     | 
| 
      
 40 
     | 
    
         
            +
                function referralIsValid(ReferralId referralId) external view returns (bool isValid);
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                /// @dev returns true iff the component needs to be called when selling/renewing policis
         
     | 
| 
      
 43 
     | 
    
         
            +
                function isVerifying() external view returns (bool verifying);
         
     | 
| 
      
 44 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,24 +1,35 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
       2 
     | 
    
         
            -
            pragma solidity ^0.8. 
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {NftId} from "../types/NftId.sol";
         
     | 
| 
       5 
5 
     | 
    
         
             
            import {Fee} from "../types/Fee.sol";
         
     | 
| 
       6 
6 
     | 
    
         
             
            import {UFixed} from "../types/UFixed.sol";
         
     | 
| 
       7 
     | 
    
         
            -
            import {IBaseComponent} from "./IBaseComponent.sol";
         
     | 
| 
       8 
7 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
            interface IPoolComponent  
     | 
| 
      
 8 
     | 
    
         
            +
            interface IPoolComponent {
         
     | 
| 
       10 
9 
     | 
    
         | 
| 
       11 
10 
     | 
    
         
             
                event LogUnderwrittenByPool(NftId policyNftId, uint256 collateralizationAmount, address pool);
         
     | 
| 
       12 
11 
     | 
    
         | 
| 
      
 12 
     | 
    
         
            +
                function setFees(
         
     | 
| 
      
 13 
     | 
    
         
            +
                    Fee memory poolFee,
         
     | 
| 
      
 14 
     | 
    
         
            +
                    Fee memory stakingFee,
         
     | 
| 
      
 15 
     | 
    
         
            +
                    Fee memory performanceFee
         
     | 
| 
      
 16 
     | 
    
         
            +
                ) external;
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
       13 
18 
     | 
    
         
             
                /**
         
     | 
| 
       14 
19 
     | 
    
         
             
                 * @dev creates a new bundle for this pool.
         
     | 
| 
       15 
20 
     | 
    
         
             
                 */
         
     | 
| 
       16 
21 
     | 
    
         
             
                function createBundle(
         
     | 
| 
      
 22 
     | 
    
         
            +
                    Fee memory fee,
         
     | 
| 
       17 
23 
     | 
    
         
             
                    uint256 initialAmount,
         
     | 
| 
       18 
24 
     | 
    
         
             
                    uint256 lifetime,
         
     | 
| 
       19 
25 
     | 
    
         
             
                    bytes memory filter
         
     | 
| 
       20 
26 
     | 
    
         
             
                ) external returns(NftId bundleNftId);
         
     | 
| 
       21 
27 
     | 
    
         | 
| 
      
 28 
     | 
    
         
            +
                function setBundleFee(
         
     | 
| 
      
 29 
     | 
    
         
            +
                    NftId policyNftId, 
         
     | 
| 
      
 30 
     | 
    
         
            +
                    Fee memory fee
         
     | 
| 
      
 31 
     | 
    
         
            +
                ) external;
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
       22 
33 
     | 
    
         
             
                /** 
         
     | 
| 
       23 
34 
     | 
    
         
             
                 * @dev this is a callback function that is called by the product service when underwriting a policy.
         
     | 
| 
       24 
35 
     | 
    
         
             
                 * the pool has the option to check the details and object to underwriting by reverting.
         
     | 
| 
         @@ -48,10 +59,4 @@ interface IPoolComponent is IBaseComponent { 
     | 
|
| 
       48 
59 
     | 
    
         | 
| 
       49 
60 
     | 
    
         
             
                function getCollateralizationLevel() external view returns (UFixed collateralizationLevel);
         
     | 
| 
       50 
61 
     | 
    
         | 
| 
       51 
     | 
    
         
            -
                function getStakingFee() external view returns (Fee memory stakingFee);
         
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
                function getPerformanceFee()
         
     | 
| 
       54 
     | 
    
         
            -
                    external
         
     | 
| 
       55 
     | 
    
         
            -
                    view
         
     | 
| 
       56 
     | 
    
         
            -
                    returns (Fee memory performanceFee);
         
     | 
| 
       57 
62 
     | 
    
         
             
            }
         
     | 
| 
         @@ -1,19 +1,35 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
       2 
     | 
    
         
            -
            pragma solidity ^0.8. 
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            import {NftId} from "../types/NftId.sol";
         
     | 
| 
       5 
4 
     | 
    
         
             
            import {Fee} from "../types/Fee.sol";
         
     | 
| 
       6 
     | 
    
         
            -
            import { 
     | 
| 
      
 5 
     | 
    
         
            +
            import {NftId} from "../types/NftId.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {ReferralId} from "../types/Referral.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {RiskId} from "../types/RiskId.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            interface IProductComponent {
         
     | 
| 
       7 
10 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
            interface IProductComponent is IBaseComponent {
         
     | 
| 
       9 
11 
     | 
    
         
             
                function setFees(
         
     | 
| 
       10 
     | 
    
         
            -
                    Fee memory  
     | 
| 
      
 12 
     | 
    
         
            +
                    Fee memory productFee,
         
     | 
| 
       11 
13 
     | 
    
         
             
                    Fee memory processingFee
         
     | 
| 
       12 
14 
     | 
    
         
             
                ) external;
         
     | 
| 
       13 
15 
     | 
    
         | 
| 
       14 
     | 
    
         
            -
                function  
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
      
 16 
     | 
    
         
            +
                function calculatePremium(
         
     | 
| 
      
 17 
     | 
    
         
            +
                    uint256 sumInsuredAmount,
         
     | 
| 
      
 18 
     | 
    
         
            +
                    RiskId riskId,
         
     | 
| 
      
 19 
     | 
    
         
            +
                    uint256 lifetime,
         
     | 
| 
      
 20 
     | 
    
         
            +
                    bytes memory applicationData,
         
     | 
| 
      
 21 
     | 
    
         
            +
                    ReferralId referralId,
         
     | 
| 
      
 22 
     | 
    
         
            +
                    NftId bundleNftId
         
     | 
| 
      
 23 
     | 
    
         
            +
                ) external view returns (uint256 premiumAmount);
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                function calculateNetPremium(
         
     | 
| 
      
 26 
     | 
    
         
            +
                    uint256 sumInsuredAmount,
         
     | 
| 
      
 27 
     | 
    
         
            +
                    RiskId riskId,
         
     | 
| 
      
 28 
     | 
    
         
            +
                    uint256 lifetime,
         
     | 
| 
      
 29 
     | 
    
         
            +
                    bytes memory applicationData
         
     | 
| 
      
 30 
     | 
    
         
            +
                ) external view returns (uint256 netPremiumAmount);    
         
     | 
| 
       17 
31 
     | 
    
         | 
| 
       18 
     | 
    
         
            -
                 
     | 
| 
      
 32 
     | 
    
         
            +
                
         
     | 
| 
      
 33 
     | 
    
         
            +
                function getPoolNftId() external view returns (NftId poolNftId);
         
     | 
| 
      
 34 
     | 
    
         
            +
                function getDistributionNftId() external view returns (NftId distributionNftId);
         
     | 
| 
       19 
35 
     | 
    
         
             
            }
         
     |