@etherisc/gif-next 0.0.2-d911522 → 0.0.2-dc7e4cb-141
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 +125 -0
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{Component.sol/Component.json → BaseComponent.sol/BaseComponent.json} +48 -53
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +48 -53
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +356 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IProduct.sol → IProductComponent.sol}/IProductComponent.json +139 -52
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +218 -44
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +144 -70
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- 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 +4 -0
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1414 -289
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
- package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccessComponentTypeRoles.json → IServiceLinked.sol/IServiceLinked.json} +14 -14
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1554 -348
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → InstanceBase.sol/InstanceBase.json} +128 -142
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +276 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +276 -0
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +10 -0
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +4 -0
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +10 -0
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +10 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +188 -0
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponentModule.json +40 -97
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +134 -0
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.json +182 -0
- package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +221 -0
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +142 -112
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +142 -112
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +57 -57
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +50 -63
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +10 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +10 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +533 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +533 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +491 -0
- package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.json +300 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +376 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +477 -0
- package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponentContract.json → service/IService.sol/IService.json} +148 -27
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +471 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +673 -0
- package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.json +300 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +65 -2
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +103 -77
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +194 -69
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +18 -63
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +18 -63
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +164 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +387 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +393 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +82 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +379 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +206 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +218 -0
- 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 +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +64 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +98 -59
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +139 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
- package/contracts/components/BaseComponent.sol +89 -0
- package/contracts/components/IBaseComponent.sol +19 -0
- package/contracts/components/IPoolComponent.sol +57 -0
- package/contracts/components/IProductComponent.sol +19 -0
- package/contracts/components/Pool.sol +161 -16
- package/contracts/components/Product.sol +77 -26
- package/contracts/experiment/errors/Require.sol +10 -5
- package/contracts/experiment/errors/Revert.sol +13 -8
- package/contracts/experiment/inheritance/A.sol +8 -11
- package/contracts/experiment/inheritance/B.sol +10 -5
- package/contracts/experiment/inheritance/C.sol +11 -5
- package/contracts/experiment/inheritance/IA.sol +2 -7
- package/contracts/experiment/inheritance/IB.sol +3 -2
- package/contracts/experiment/inheritance/IC.sol +4 -3
- package/contracts/experiment/statemachine/Dummy.sol +27 -0
- package/contracts/experiment/statemachine/ISM.sol +25 -0
- package/contracts/experiment/statemachine/README.md +112 -0
- package/contracts/experiment/statemachine/SM.sol +57 -0
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
- package/contracts/experiment/types/TypeA.sol +14 -9
- package/contracts/experiment/types/TypeB.sol +14 -9
- package/contracts/instance/IInstance.sol +41 -8
- package/contracts/instance/IInstanceLinked.sol +8 -0
- package/contracts/instance/IServiceLinked.sol +12 -0
- package/contracts/instance/Instance.sol +46 -44
- package/contracts/instance/InstanceBase.sol +71 -0
- package/contracts/instance/module/access/Access.sol +149 -0
- package/contracts/instance/module/access/IAccess.sol +53 -0
- package/contracts/instance/module/bundle/BundleModule.sol +228 -0
- package/contracts/instance/module/bundle/IBundle.sol +53 -0
- package/contracts/instance/module/compensation/CompensationModule.sol +8 -0
- package/contracts/instance/module/compensation/ICompensation.sol +10 -0
- package/contracts/instance/module/component/ComponentModule.sol +103 -0
- package/contracts/instance/module/component/IComponent.sol +53 -0
- package/contracts/instance/module/lifecycle/ILifecycle.sol +47 -0
- package/contracts/instance/module/lifecycle/LifecycleModule.sol +89 -0
- package/contracts/instance/module/policy/IPolicy.sol +60 -0
- package/contracts/instance/module/policy/PolicyModule.sol +84 -0
- package/contracts/instance/module/pool/IPoolModule.sol +41 -0
- package/contracts/instance/module/pool/PoolModule.sol +87 -0
- package/contracts/instance/module/risk/IRisk.sol +10 -0
- package/contracts/instance/module/risk/RiskModule.sol +8 -0
- package/contracts/instance/module/treasury/ITreasury.sol +103 -0
- package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
- package/contracts/instance/module/treasury/TreasuryModule.sol +152 -0
- package/contracts/instance/service/ComponentOwnerService.sol +171 -0
- package/contracts/instance/service/ComponentServiceBase.sol +41 -0
- package/contracts/instance/service/IComponentOwnerService.sol +22 -0
- package/contracts/instance/service/IPoolService.sol +30 -0
- package/contracts/instance/service/IProductService.sol +58 -0
- package/contracts/instance/service/IService.sol +15 -0
- package/contracts/instance/service/PoolService.sol +123 -0
- package/contracts/instance/service/ProductService.sol +355 -0
- package/contracts/instance/service/ServiceBase.sol +39 -0
- package/contracts/registry/ChainNft.sol +80 -94
- package/contracts/registry/IChainNft.sol +10 -7
- package/contracts/registry/IRegistry.sol +38 -51
- package/contracts/registry/IRegistryLinked.sol +8 -0
- package/contracts/registry/Registry.sol +310 -111
- package/contracts/shared/ERC165.sol +21 -0
- package/contracts/shared/IOwnable.sol +6 -0
- package/contracts/shared/IRegisterable.sol +24 -0
- package/contracts/shared/IVersionable.sol +52 -0
- package/contracts/shared/Registerable.sol +86 -0
- package/contracts/shared/Versionable.sol +89 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestPool.sol +22 -0
- package/contracts/test/TestProduct.sol +44 -0
- package/contracts/test/TestRegisterable.sol +19 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +32 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Blocknumber.sol +76 -18
- package/contracts/types/ChainId.sol +18 -10
- package/contracts/types/Fee.sol +51 -0
- package/contracts/types/NftId.sol +33 -11
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/ObjectType.sol +115 -0
- package/contracts/types/RoleId.sol +36 -0
- package/contracts/types/StateId.sol +95 -0
- package/contracts/types/Timestamp.sol +85 -17
- package/contracts/types/UFixed.sol +78 -76
- package/contracts/types/Version.sol +95 -0
- package/package.json +19 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/Component.sol +0 -62
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -12
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -248
- package/contracts/instance/component/IComponent.sol +0 -95
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -107
- package/contracts/instance/pool/IPoolModule.sol +0 -41
- package/contracts/instance/pool/PoolModule.sol +0 -86
- package/contracts/instance/product/IProductService.sol +0 -46
- package/contracts/instance/product/ProductService.sol +0 -108
@@ -0,0 +1,152 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
|
+
|
6
|
+
import {NftId} from "../../../types/NftId.sol";
|
7
|
+
import {Fee, FeeLib} from "../../../types/Fee.sol";
|
8
|
+
import {UFixed, UFixedMathLib} from "../../../types/UFixed.sol";
|
9
|
+
import {TokenHandler} from "./TokenHandler.sol";
|
10
|
+
import {ITreasuryModule} from "./ITreasury.sol";
|
11
|
+
|
12
|
+
abstract contract TreasuryModule is ITreasuryModule {
|
13
|
+
mapping(NftId productNftId => ProductSetup setup) private _productSetup;
|
14
|
+
mapping(NftId distributorNftId => DistributorSetup setup)
|
15
|
+
private _distributorSetup;
|
16
|
+
mapping(NftId poolNftId => PoolSetup setup) private _poolSetup;
|
17
|
+
mapping(NftId componentNftId => TokenHandler tokenHanlder) _tokenHandler;
|
18
|
+
|
19
|
+
function registerProduct(
|
20
|
+
NftId productNftId,
|
21
|
+
NftId distributorNftId,
|
22
|
+
NftId poolNftId,
|
23
|
+
IERC20Metadata token,
|
24
|
+
address wallet,
|
25
|
+
Fee memory policyFee,
|
26
|
+
Fee memory processingFee
|
27
|
+
) external override // TODO add authz (only component module)
|
28
|
+
{
|
29
|
+
require(address(_tokenHandler[productNftId]) == address(0), "ERROR:TRS-010:TOKEN_HANDLER_ALREADY_REGISTERED");
|
30
|
+
require(address(_tokenHandler[poolNftId]) == address(0), "ERROR:TRS-011:TOKEN_HANDLER_ALREADY_REGISTERED");
|
31
|
+
require(address(_tokenHandler[distributorNftId]) == address(0), "ERROR:TRS-012:TOKEN_HANDLER_ALREADY_REGISTERED");
|
32
|
+
// TODO add additional validations
|
33
|
+
|
34
|
+
// deploy product specific handler contract
|
35
|
+
TokenHandler tokenHandler = new TokenHandler(productNftId, address(token));
|
36
|
+
_tokenHandler[productNftId] = tokenHandler;
|
37
|
+
_tokenHandler[poolNftId] = tokenHandler;
|
38
|
+
_tokenHandler[distributorNftId] = tokenHandler;
|
39
|
+
|
40
|
+
// create product setup
|
41
|
+
_productSetup[productNftId] = ProductSetup(
|
42
|
+
productNftId,
|
43
|
+
distributorNftId,
|
44
|
+
poolNftId,
|
45
|
+
token,
|
46
|
+
wallet,
|
47
|
+
policyFee,
|
48
|
+
processingFee
|
49
|
+
);
|
50
|
+
|
51
|
+
// TODO add logging
|
52
|
+
}
|
53
|
+
|
54
|
+
function setProductFees(
|
55
|
+
NftId productNftId,
|
56
|
+
Fee memory policyFee,
|
57
|
+
Fee memory processingFee
|
58
|
+
) external override // TODO add authz (only component owner service)
|
59
|
+
{
|
60
|
+
// TODO add validation
|
61
|
+
|
62
|
+
ProductSetup storage setup = _productSetup[productNftId];
|
63
|
+
setup.policyFee = policyFee;
|
64
|
+
setup.processingFee = processingFee;
|
65
|
+
|
66
|
+
// TODO add logging
|
67
|
+
}
|
68
|
+
|
69
|
+
function registerPool(
|
70
|
+
NftId poolNftId,
|
71
|
+
address wallet,
|
72
|
+
Fee memory stakingFee,
|
73
|
+
Fee memory performanceFee
|
74
|
+
) external override // TODO add authz (only component module)
|
75
|
+
{
|
76
|
+
// TODO add validation
|
77
|
+
|
78
|
+
_poolSetup[poolNftId] = PoolSetup(
|
79
|
+
poolNftId,
|
80
|
+
wallet,
|
81
|
+
stakingFee,
|
82
|
+
performanceFee
|
83
|
+
);
|
84
|
+
|
85
|
+
// TODO add logging
|
86
|
+
}
|
87
|
+
|
88
|
+
function setPoolFees(
|
89
|
+
NftId poolNftId,
|
90
|
+
Fee memory stakingFee,
|
91
|
+
Fee memory performanceFee
|
92
|
+
) external override // TODO add authz (only component owner service)
|
93
|
+
{
|
94
|
+
// TODO add validation
|
95
|
+
|
96
|
+
PoolSetup storage setup = _poolSetup[poolNftId];
|
97
|
+
setup.stakingFee = stakingFee;
|
98
|
+
setup.performanceFee = performanceFee;
|
99
|
+
|
100
|
+
// TODO add logging
|
101
|
+
}
|
102
|
+
|
103
|
+
function getTokenHandler(
|
104
|
+
NftId componentNftId
|
105
|
+
) external view override returns (TokenHandler tokenHandler) {
|
106
|
+
return _tokenHandler[componentNftId];
|
107
|
+
}
|
108
|
+
|
109
|
+
function getProductSetup(
|
110
|
+
NftId productNftId
|
111
|
+
) external view override returns (ProductSetup memory setup) {
|
112
|
+
return _productSetup[productNftId];
|
113
|
+
}
|
114
|
+
|
115
|
+
function getPoolSetup(
|
116
|
+
NftId poolNftId
|
117
|
+
) external view override returns (PoolSetup memory setup) {
|
118
|
+
return _poolSetup[poolNftId];
|
119
|
+
}
|
120
|
+
|
121
|
+
function calculateFeeAmount(
|
122
|
+
uint256 amount,
|
123
|
+
Fee memory fee
|
124
|
+
) public pure override returns (uint256 feeAmount, uint256 netAmount) {
|
125
|
+
return FeeLib.calculateFee(amount, fee);
|
126
|
+
}
|
127
|
+
|
128
|
+
function getFee(
|
129
|
+
UFixed fractionalFee,
|
130
|
+
uint256 fixedFee
|
131
|
+
) external pure override returns (Fee memory fee) {
|
132
|
+
return FeeLib.toFee(fractionalFee, fixedFee);
|
133
|
+
}
|
134
|
+
|
135
|
+
function getZeroFee() external pure override returns (Fee memory fee) {
|
136
|
+
return FeeLib.zeroFee();
|
137
|
+
}
|
138
|
+
|
139
|
+
function getUFixed(
|
140
|
+
uint256 a
|
141
|
+
) external pure override returns (UFixed) {
|
142
|
+
return UFixedMathLib.toUFixed(a);
|
143
|
+
}
|
144
|
+
|
145
|
+
function getUFixed(
|
146
|
+
uint256 a,
|
147
|
+
int8 exp
|
148
|
+
) external pure returns (UFixed)
|
149
|
+
{
|
150
|
+
return UFixedMathLib.toUFixed(a, exp);
|
151
|
+
}
|
152
|
+
}
|
@@ -0,0 +1,171 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
|
+
|
6
|
+
import {IRegistry} from "../../registry/IRegistry.sol";
|
7
|
+
import {IInstance} from "../IInstance.sol";
|
8
|
+
|
9
|
+
import {LifecycleModule} from "../module/lifecycle/LifecycleModule.sol";
|
10
|
+
import {ITreasuryModule} from "../module/treasury/ITreasury.sol";
|
11
|
+
import {TreasuryModule} from "../module/treasury/TreasuryModule.sol";
|
12
|
+
import {IComponent, IComponentModule} from "../module/component/IComponent.sol";
|
13
|
+
import {IBaseComponent} from "../../components/IBaseComponent.sol";
|
14
|
+
import {IPoolComponent} from "../../components/IPoolComponent.sol";
|
15
|
+
|
16
|
+
import {IVersionable} from "../../shared/IVersionable.sol";
|
17
|
+
import {Versionable} from "../../shared/Versionable.sol";
|
18
|
+
|
19
|
+
import {RoleId, PRODUCT_OWNER_ROLE, POOL_OWNER_ROLE, ORACLE_OWNER_ROLE} from "../../types/RoleId.sol";
|
20
|
+
import {ObjectType, PRODUCT, ORACLE, POOL} from "../../types/ObjectType.sol";
|
21
|
+
import {StateId, ACTIVE, PAUSED} from "../../types/StateId.sol";
|
22
|
+
import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
|
23
|
+
import {Fee} from "../../types/Fee.sol";
|
24
|
+
import {Version, VersionLib} from "../../types/Version.sol";
|
25
|
+
|
26
|
+
import {IProductComponent} from "../../components/IProductComponent.sol";
|
27
|
+
import {ServiceBase} from "./ServiceBase.sol";
|
28
|
+
import {IComponentOwnerService} from "./IComponentOwnerService.sol";
|
29
|
+
|
30
|
+
contract ComponentOwnerService is
|
31
|
+
ServiceBase,
|
32
|
+
IComponentOwnerService
|
33
|
+
{
|
34
|
+
using NftIdLib for NftId;
|
35
|
+
|
36
|
+
string public constant NAME = "ComponentOwnerService";
|
37
|
+
|
38
|
+
modifier onlyRegisteredComponent(IBaseComponent component) {
|
39
|
+
NftId nftId = _registry.getNftId(address(component));
|
40
|
+
require(nftId.gtz(), "ERROR:COS-001:COMPONENT_UNKNOWN");
|
41
|
+
_;
|
42
|
+
}
|
43
|
+
|
44
|
+
constructor(
|
45
|
+
address registry,
|
46
|
+
NftId registryNftId
|
47
|
+
) ServiceBase(registry, registryNftId) // solhint-disable-next-line no-empty-blocks
|
48
|
+
{
|
49
|
+
|
50
|
+
}
|
51
|
+
|
52
|
+
function getVersion()
|
53
|
+
public
|
54
|
+
pure
|
55
|
+
virtual override (IVersionable, Versionable)
|
56
|
+
returns(Version)
|
57
|
+
{
|
58
|
+
return VersionLib.toVersion(3,0,0);
|
59
|
+
}
|
60
|
+
|
61
|
+
function getName() external pure override returns(string memory name) {
|
62
|
+
return NAME;
|
63
|
+
}
|
64
|
+
|
65
|
+
function getRoleForType(
|
66
|
+
ObjectType cType
|
67
|
+
) public pure override returns (RoleId role) {
|
68
|
+
if (cType == PRODUCT()) {
|
69
|
+
return PRODUCT_OWNER_ROLE();
|
70
|
+
}
|
71
|
+
if (cType == POOL()) {
|
72
|
+
return POOL_OWNER_ROLE();
|
73
|
+
}
|
74
|
+
if (cType == ORACLE()) {
|
75
|
+
return ORACLE_OWNER_ROLE();
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
function register(
|
80
|
+
IBaseComponent component
|
81
|
+
) external override returns (NftId nftId) {
|
82
|
+
address initialOwner = component.getOwner();
|
83
|
+
require(
|
84
|
+
msg.sender == address(component),
|
85
|
+
"ERROR:COS-003:NOT_COMPONENT"
|
86
|
+
);
|
87
|
+
|
88
|
+
IInstance instance = component.getInstance();
|
89
|
+
ObjectType objectType = component.getType();
|
90
|
+
RoleId typeRole = getRoleForType(objectType);
|
91
|
+
require(
|
92
|
+
instance.hasRole(typeRole, initialOwner),
|
93
|
+
"ERROR:CMP-004:TYPE_ROLE_MISSING"
|
94
|
+
);
|
95
|
+
|
96
|
+
nftId = _registry.register(address(component));
|
97
|
+
IERC20Metadata token = component.getToken();
|
98
|
+
|
99
|
+
instance.registerComponent(
|
100
|
+
nftId,
|
101
|
+
objectType,
|
102
|
+
token);
|
103
|
+
|
104
|
+
address wallet = component.getWallet();
|
105
|
+
|
106
|
+
// component type specific registration actions
|
107
|
+
if (component.getType() == PRODUCT()) {
|
108
|
+
IProductComponent product = IProductComponent(address(component));
|
109
|
+
NftId poolNftId = product.getPoolNftId();
|
110
|
+
require(poolNftId.gtz(), "ERROR:CMP-005:POOL_UNKNOWN");
|
111
|
+
// validate pool token and product token are same
|
112
|
+
|
113
|
+
// register with tresury
|
114
|
+
// implement and add validation
|
115
|
+
NftId distributorNftId = zeroNftId();
|
116
|
+
instance.registerProduct(
|
117
|
+
nftId,
|
118
|
+
distributorNftId,
|
119
|
+
poolNftId,
|
120
|
+
token,
|
121
|
+
wallet,
|
122
|
+
product.getPolicyFee(),
|
123
|
+
product.getProcessingFee()
|
124
|
+
);
|
125
|
+
} else if (component.getType() == POOL()) {
|
126
|
+
IPoolComponent pool = IPoolComponent(address(component));
|
127
|
+
|
128
|
+
// register with pool
|
129
|
+
instance.registerPool(
|
130
|
+
nftId,
|
131
|
+
pool.isVerifying(),
|
132
|
+
pool.getCollateralizationLevel());
|
133
|
+
|
134
|
+
// register with tresury
|
135
|
+
instance.registerPool(
|
136
|
+
nftId,
|
137
|
+
wallet,
|
138
|
+
pool.getStakingFee(),
|
139
|
+
pool.getPerformanceFee());
|
140
|
+
}
|
141
|
+
// TODO add distribution
|
142
|
+
}
|
143
|
+
|
144
|
+
function lock(
|
145
|
+
IBaseComponent component
|
146
|
+
) external override onlyRegisteredComponent(component) {
|
147
|
+
IInstance instance = component.getInstance();
|
148
|
+
IComponent.ComponentInfo memory info = instance.getComponentInfo(
|
149
|
+
component.getNftId()
|
150
|
+
);
|
151
|
+
require(info.nftId.gtz(), "ERROR_COMPONENT_UNKNOWN");
|
152
|
+
|
153
|
+
info.state = PAUSED();
|
154
|
+
// setComponentInfo checks for valid state changes
|
155
|
+
instance.setComponentInfo(info);
|
156
|
+
}
|
157
|
+
|
158
|
+
function unlock(
|
159
|
+
IBaseComponent component
|
160
|
+
) external override onlyRegisteredComponent(component) {
|
161
|
+
IInstance instance = component.getInstance();
|
162
|
+
IComponent.ComponentInfo memory info = instance.getComponentInfo(
|
163
|
+
component.getNftId()
|
164
|
+
);
|
165
|
+
require(info.nftId.gtz(), "ERROR_COMPONENT_UNKNOWN");
|
166
|
+
|
167
|
+
info.state = ACTIVE();
|
168
|
+
// setComponentInfo checks for valid state changes
|
169
|
+
instance.setComponentInfo(info);
|
170
|
+
}
|
171
|
+
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {IRegistry} from "../../registry/IRegistry.sol";
|
5
|
+
import {IInstance} from "../../instance/IInstance.sol";
|
6
|
+
import {ObjectType, INSTANCE, PRODUCT, POOL} from "../../types/ObjectType.sol";
|
7
|
+
import {NftId, NftIdLib} from "../../types/NftId.sol";
|
8
|
+
|
9
|
+
import {ServiceBase} from "./ServiceBase.sol";
|
10
|
+
|
11
|
+
abstract contract ComponentServiceBase is ServiceBase {
|
12
|
+
|
13
|
+
constructor(
|
14
|
+
address registry,
|
15
|
+
NftId registryNftId
|
16
|
+
)
|
17
|
+
ServiceBase(registry, registryNftId)
|
18
|
+
{
|
19
|
+
}
|
20
|
+
|
21
|
+
|
22
|
+
function _getAndVerifyComponentInfoAndInstance(
|
23
|
+
ObjectType objectType
|
24
|
+
)
|
25
|
+
internal
|
26
|
+
view
|
27
|
+
returns(
|
28
|
+
IRegistry.ObjectInfo memory info,
|
29
|
+
IInstance instance
|
30
|
+
)
|
31
|
+
{
|
32
|
+
NftId componentNftId = _registry.getNftId(msg.sender);
|
33
|
+
require(componentNftId.gtz(), "ERROR_COMPONENT_UNKNOWN");
|
34
|
+
|
35
|
+
info = _registry.getObjectInfo(componentNftId);
|
36
|
+
require(info.objectType == objectType, "OBJECT_TYPE_INVALID");
|
37
|
+
|
38
|
+
address instanceAddress = _registry.getObjectInfo(info.parentNftId).objectAddress;
|
39
|
+
instance = IInstance(instanceAddress);
|
40
|
+
}
|
41
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {NftId} from "../../types/NftId.sol";
|
5
|
+
import {ObjectType} from "../../types/ObjectType.sol";
|
6
|
+
import {RoleId} from "../../types/RoleId.sol";
|
7
|
+
import {IBaseComponent} from "../../components/IBaseComponent.sol";
|
8
|
+
import {IService} from "./IService.sol";
|
9
|
+
|
10
|
+
// TODO rename to registry service
|
11
|
+
interface IComponentOwnerService is IService {
|
12
|
+
|
13
|
+
function register(IBaseComponent component) external returns(NftId componentNftId);
|
14
|
+
|
15
|
+
// TODO move to product/pool services
|
16
|
+
function lock(IBaseComponent component) external;
|
17
|
+
|
18
|
+
// TODO move to product/pool services
|
19
|
+
function unlock(IBaseComponent component) external;
|
20
|
+
|
21
|
+
function getRoleForType(ObjectType cType) external pure returns (RoleId role);
|
22
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {NftId} from "../../types/NftId.sol";
|
5
|
+
import {Fee} from "../../types/Fee.sol";
|
6
|
+
import {IService} from "./IService.sol";
|
7
|
+
|
8
|
+
interface IPoolService is IService {
|
9
|
+
function setFees(
|
10
|
+
Fee memory stakingFee,
|
11
|
+
Fee memory performanceFee
|
12
|
+
) external;
|
13
|
+
|
14
|
+
function createBundle(
|
15
|
+
address owner,
|
16
|
+
uint256 amount,
|
17
|
+
uint256 lifetime,
|
18
|
+
bytes calldata filter
|
19
|
+
) external returns(NftId bundleNftId);
|
20
|
+
|
21
|
+
// function fundBundle(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
|
22
|
+
|
23
|
+
// function defundBundle(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
|
24
|
+
|
25
|
+
// function lockBundle(NftId bundleNftId) external;
|
26
|
+
|
27
|
+
// function unlockBundle(NftId bundleNftId) external;
|
28
|
+
|
29
|
+
// function closeBundle(NftId bundleNftId) external;
|
30
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {NftId} from "../../types/NftId.sol";
|
5
|
+
import {Timestamp} from "../../types/Timestamp.sol";
|
6
|
+
import {UFixed} from "../../types/UFixed.sol";
|
7
|
+
import {Fee} from "../../types/Fee.sol";
|
8
|
+
import {IService} from "./IService.sol";
|
9
|
+
|
10
|
+
interface IProductService is IService {
|
11
|
+
function setFees(
|
12
|
+
Fee memory policyFee,
|
13
|
+
Fee memory processingFee
|
14
|
+
) external;
|
15
|
+
|
16
|
+
function createApplication(
|
17
|
+
address applicationOwner,
|
18
|
+
uint256 sumInsuredAmount,
|
19
|
+
uint256 premiumAmount,
|
20
|
+
uint256 lifetime,
|
21
|
+
NftId bundleNftId
|
22
|
+
) external returns (NftId nftId);
|
23
|
+
|
24
|
+
// function revoke(unit256 nftId) external;
|
25
|
+
|
26
|
+
/**
|
27
|
+
* @dev underwrites the policy represented by {policyNftId}.
|
28
|
+
* optionally collects premiums and activates the policy.
|
29
|
+
* - premium payment is only attempted if requirePremiumPayment is set to true
|
30
|
+
* - activation is only done if activateAt is a non-zero timestamp
|
31
|
+
*/
|
32
|
+
function underwrite(
|
33
|
+
NftId policyNftId,
|
34
|
+
bool requirePremiumPayment,
|
35
|
+
Timestamp activateAt
|
36
|
+
) external;
|
37
|
+
|
38
|
+
// function decline(uint256 nftId) external;
|
39
|
+
// function expire(uint256 nftId) external;
|
40
|
+
|
41
|
+
function collectPremium(NftId nftId, Timestamp activateAt) external;
|
42
|
+
|
43
|
+
function activate(NftId nftId, Timestamp activateAt) external;
|
44
|
+
|
45
|
+
|
46
|
+
function close(NftId nftId) external;
|
47
|
+
|
48
|
+
// function createClaim(uint256 nftId, uint256 claimAmount) external;
|
49
|
+
// function confirmClaim(uint256 nftId, uint256 claimId, uint256 claimAmount) external;
|
50
|
+
// function declineClaim(uint256 nftId, uint256 claimId) external;
|
51
|
+
// function closeClaim(uint256 nftId, uint256 claimId) external;
|
52
|
+
|
53
|
+
function calculateRequiredCollateral(
|
54
|
+
UFixed collateralizationLevel,
|
55
|
+
uint256 sumInsuredAmount
|
56
|
+
) external pure returns(uint256 collateralAmount);
|
57
|
+
|
58
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {VersionPart} from "../../types/Version.sol";
|
5
|
+
|
6
|
+
import {IRegisterable} from "../../shared/IRegisterable.sol";
|
7
|
+
import {IVersionable} from "../../shared/IVersionable.sol";
|
8
|
+
|
9
|
+
interface IService is
|
10
|
+
IRegisterable,
|
11
|
+
IVersionable
|
12
|
+
{
|
13
|
+
function getName() external pure returns(string memory name);
|
14
|
+
function getMajorVersion() external view returns(VersionPart majorVersion);
|
15
|
+
}
|
@@ -0,0 +1,123 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {IRegistry} from "../../registry/IRegistry.sol";
|
5
|
+
import {IInstance} from "../../instance/IInstance.sol";
|
6
|
+
import {ITreasury, ITreasuryModule, TokenHandler} from "../../instance/module/treasury/ITreasury.sol";
|
7
|
+
|
8
|
+
import {IVersionable} from "../../shared/IVersionable.sol";
|
9
|
+
import {Versionable} from "../../shared/Versionable.sol";
|
10
|
+
|
11
|
+
import {NftId, NftIdLib} from "../../types/NftId.sol";
|
12
|
+
import {POOL, BUNDLE} from "../../types/ObjectType.sol";
|
13
|
+
import {Fee} from "../../types/Fee.sol";
|
14
|
+
import {Version, VersionLib} from "../../types/Version.sol";
|
15
|
+
|
16
|
+
import {ComponentServiceBase} from "./ComponentServiceBase.sol";
|
17
|
+
import {IPoolService} from "./IPoolService.sol";
|
18
|
+
|
19
|
+
|
20
|
+
contract PoolService is ComponentServiceBase, IPoolService {
|
21
|
+
using NftIdLib for NftId;
|
22
|
+
|
23
|
+
string public constant NAME = "PoolService";
|
24
|
+
|
25
|
+
constructor(
|
26
|
+
address registry,
|
27
|
+
NftId registryNftId
|
28
|
+
) ComponentServiceBase(registry, registryNftId) // solhint-disable-next-line no-empty-blocks
|
29
|
+
{
|
30
|
+
_registerInterface(type(IPoolService).interfaceId);
|
31
|
+
}
|
32
|
+
|
33
|
+
function getVersion()
|
34
|
+
public
|
35
|
+
pure
|
36
|
+
virtual override (IVersionable, Versionable)
|
37
|
+
returns(Version)
|
38
|
+
{
|
39
|
+
return VersionLib.toVersion(3,0,0);
|
40
|
+
}
|
41
|
+
|
42
|
+
function getName() external pure override returns(string memory name) {
|
43
|
+
return NAME;
|
44
|
+
}
|
45
|
+
|
46
|
+
function setFees(
|
47
|
+
Fee memory stakingFee,
|
48
|
+
Fee memory performanceFee
|
49
|
+
)
|
50
|
+
external
|
51
|
+
override
|
52
|
+
{
|
53
|
+
(IRegistry.ObjectInfo memory info, IInstance instance) = _getAndVerifyComponentInfoAndInstance(POOL());
|
54
|
+
instance.setPoolFees(info.nftId, stakingFee, performanceFee);
|
55
|
+
}
|
56
|
+
|
57
|
+
function createBundle(
|
58
|
+
address owner,
|
59
|
+
uint256 stakingAmount,
|
60
|
+
uint256 lifetime,
|
61
|
+
bytes calldata filter
|
62
|
+
)
|
63
|
+
external
|
64
|
+
override
|
65
|
+
returns(NftId bundleNftId)
|
66
|
+
{
|
67
|
+
(IRegistry.ObjectInfo memory info, IInstance instance) = _getAndVerifyComponentInfoAndInstance(POOL());
|
68
|
+
|
69
|
+
// register bundle with registry
|
70
|
+
NftId poolNftId = info.nftId;
|
71
|
+
bundleNftId = _registry.registerObjectForInstance(
|
72
|
+
poolNftId,
|
73
|
+
BUNDLE(),
|
74
|
+
owner,
|
75
|
+
"");
|
76
|
+
|
77
|
+
// create bundle info in instance
|
78
|
+
instance.createBundleInfo(
|
79
|
+
bundleNftId,
|
80
|
+
poolNftId,
|
81
|
+
stakingAmount,
|
82
|
+
lifetime,
|
83
|
+
filter);
|
84
|
+
|
85
|
+
// add bundle to pool in instance
|
86
|
+
instance.addBundleToPool(
|
87
|
+
bundleNftId,
|
88
|
+
poolNftId,
|
89
|
+
stakingAmount);
|
90
|
+
|
91
|
+
// collect capital
|
92
|
+
_processStakingByTreasury(
|
93
|
+
instance,
|
94
|
+
poolNftId,
|
95
|
+
bundleNftId,
|
96
|
+
stakingAmount);
|
97
|
+
|
98
|
+
// TODO add logging
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
function _processStakingByTreasury(
|
103
|
+
IInstance instance,
|
104
|
+
NftId poolNftId,
|
105
|
+
NftId bundleNftId,
|
106
|
+
uint256 stakingAmount
|
107
|
+
)
|
108
|
+
internal
|
109
|
+
{
|
110
|
+
// process token transfer(s)
|
111
|
+
if(stakingAmount > 0) {
|
112
|
+
TokenHandler tokenHandler = instance.getTokenHandler(poolNftId);
|
113
|
+
address bundleOwner = _registry.getOwner(bundleNftId);
|
114
|
+
address poolWallet = instance.getPoolSetup(poolNftId).wallet;
|
115
|
+
|
116
|
+
tokenHandler.transfer(
|
117
|
+
bundleOwner,
|
118
|
+
poolWallet,
|
119
|
+
stakingAmount
|
120
|
+
);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|