@etherisc/gif-next 0.0.2-aa8d0c4-506 → 0.0.2-aaa8646-641
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 +71 -15
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +842 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +902 -227
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +801 -36
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +849 -346
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +626 -234
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +462 -554
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +342 -168
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +458 -3052
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +609 -178
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +262 -247
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +480 -346
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +294 -113
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2663 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +298 -169
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +902 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +649 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1326 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +725 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1072 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +685 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1033 -199
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +396 -75
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IApplicationService.sol/IApplicationService.json} +235 -200
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +714 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +602 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +585 -160
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +969 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +544 -145
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → instance/service/IPricingService.sol/IPricingService.json} +248 -172
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1575 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +741 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +906 -245
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +348 -87
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +988 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +689 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +872 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +227 -224
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +232 -219
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +241 -330
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +233 -312
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +295 -150
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +86 -172
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +191 -163
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +209 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +38 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/Component.sol +253 -0
- package/contracts/components/Distribution.sol +201 -83
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +43 -18
- package/contracts/components/IPoolComponent.sol +88 -37
- package/contracts/components/IProductComponent.sol +10 -5
- package/contracts/components/Pool.sol +219 -164
- package/contracts/components/Product.sol +252 -175
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +62 -21
- package/contracts/instance/IInstanceService.sol +58 -8
- package/contracts/instance/Instance.sol +155 -361
- package/contracts/instance/InstanceAccessManager.sol +429 -176
- package/contracts/instance/InstanceAuthorizationsLib.sol +300 -0
- package/contracts/instance/InstanceReader.sol +51 -37
- package/contracts/instance/InstanceService.sol +252 -125
- package/contracts/instance/InstanceServiceManager.sol +11 -13
- package/contracts/instance/InstanceStore.sol +208 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +148 -0
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +23 -6
- package/contracts/instance/module/IAccess.sol +36 -20
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +41 -9
- package/contracts/instance/module/ISetup.sol +9 -20
- package/contracts/instance/service/ApplicationService.sol +185 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +440 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +239 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +287 -44
- package/contracts/instance/service/DistributionServiceManager.sol +11 -13
- package/contracts/instance/service/IApplicationService.sol +61 -0
- package/contracts/instance/service/IBundleService.sol +102 -0
- package/contracts/instance/service/IClaimService.sol +92 -0
- package/contracts/instance/service/IDistributionService.sol +73 -0
- package/contracts/instance/service/IPolicyService.sol +142 -0
- package/contracts/instance/service/IPoolService.sol +82 -17
- package/contracts/instance/service/IPricingService.sol +36 -0
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +579 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +251 -118
- package/contracts/instance/service/PoolServiceManager.sol +11 -13
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +210 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +9 -1
- package/contracts/registry/IRegistry.sol +40 -33
- package/contracts/registry/IRegistryService.sol +48 -13
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +234 -256
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +118 -231
- package/contracts/registry/RegistryServiceManager.sol +21 -39
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +22 -17
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +5 -4
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +67 -83
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +16 -32
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +42 -24
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- package/contracts/types/Amount.sol +70 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +75 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/ObjectType.sol +15 -6
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +26 -18
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +7 -2
- package/contracts/types/Timestamp.sol +18 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -60
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -1,443 +1,237 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
|
-
import {
|
5
|
-
|
4
|
+
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
5
|
+
|
6
|
+
import {Key32} from "../types/Key32.sol";
|
7
|
+
import {NftId} from "../types/NftId.sol";
|
8
|
+
import {RiskId} from "../types/RiskId.sol";
|
9
|
+
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET, COMPONENT, DISTRIBUTOR, DISTRIBUTOR_TYPE} from "../types/ObjectType.sol";
|
10
|
+
import {RoleId, RoleIdLib, eqRoleId, ADMIN_ROLE, INSTANCE_ROLE, INSTANCE_OWNER_ROLE} from "../types/RoleId.sol";
|
11
|
+
import {VersionPart, VersionPartLib} from "../types/Version.sol";
|
12
|
+
import {ClaimId} from "../types/ClaimId.sol";
|
13
|
+
import {ReferralId} from "../types/Referral.sol";
|
14
|
+
import {PayoutId} from "../types/PayoutId.sol";
|
15
|
+
import {DistributorType} from "../types/DistributorType.sol";
|
16
|
+
|
17
|
+
import {Registerable} from "../shared/Registerable.sol";
|
18
|
+
import {TokenHandler} from "../shared/TokenHandler.sol";
|
19
|
+
|
20
|
+
import {IRegistry} from "../registry/IRegistry.sol";
|
21
|
+
|
22
|
+
import {IInstance} from "./IInstance.sol";
|
23
|
+
import {InstanceReader} from "./InstanceReader.sol";
|
24
|
+
import {InstanceAccessManager} from "./InstanceAccessManager.sol";
|
25
|
+
import {BundleManager} from "./BundleManager.sol";
|
26
|
+
import {InstanceStore} from "./InstanceStore.sol";
|
27
|
+
|
28
|
+
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
6
29
|
|
7
|
-
import {AccessManagedSimple} from "./AccessManagedSimple.sol";
|
8
|
-
import {AccessManagerSimple} from "./AccessManagerSimple.sol";
|
9
|
-
import {IAccess} from "./module/IAccess.sol";
|
10
30
|
import {IBundle} from "./module/IBundle.sol";
|
31
|
+
import {IComponents} from "./module/IComponents.sol";
|
32
|
+
import {IDistribution} from "./module/IDistribution.sol";
|
11
33
|
import {IPolicy} from "./module/IPolicy.sol";
|
12
34
|
import {IRisk} from "./module/IRisk.sol";
|
13
35
|
import {ISetup} from "./module/ISetup.sol";
|
14
|
-
|
15
|
-
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
16
|
-
import {IInstance} from "./IInstance.sol";
|
17
|
-
import {InstanceReader} from "./InstanceReader.sol";
|
18
|
-
import {NftId} from "../types/NftId.sol";
|
19
|
-
import {NumberId} from "../types/NumberId.sol";
|
20
|
-
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
21
|
-
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
22
|
-
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
23
|
-
import {StateId, ACTIVE} from "../types/StateId.sol";
|
24
|
-
import {ERC165} from "../shared/ERC165.sol";
|
25
|
-
import {Registerable} from "../shared/Registerable.sol";
|
26
|
-
import {ComponentOwnerService} from "./service/ComponentOwnerService.sol";
|
27
|
-
import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
|
36
|
+
|
28
37
|
import {IDistributionService} from "./service/IDistributionService.sol";
|
29
38
|
import {IPoolService} from "./service/IPoolService.sol";
|
30
|
-
import {
|
39
|
+
import {IProductService} from "./service/IProductService.sol";
|
40
|
+
import {IPolicyService} from "./service/IPolicyService.sol";
|
41
|
+
import {IBundleService} from "./service/IBundleService.sol";
|
31
42
|
|
32
43
|
contract Instance is
|
33
|
-
AccessManagedSimple,
|
34
|
-
KeyValueStore,
|
35
44
|
IInstance,
|
36
|
-
|
45
|
+
AccessManagedUpgradeable,
|
37
46
|
Registerable
|
38
47
|
{
|
48
|
+
/* error ErrorInstanceInstanceReaderInstanceMismatch(address expectedInstance, address foundInstance);
|
39
49
|
|
40
|
-
|
41
|
-
|
42
|
-
|
50
|
+
error InstanceErrorBundleManagerAlreadySet();
|
51
|
+
error InstanceErrorBundleManagerAuthorityMismatch();
|
52
|
+
error InstanceErrorBundleManagerInstanceMismatch(address expectedInstance, address foundInstance);
|
43
53
|
|
44
|
-
|
54
|
+
error InstanceErrorAccessManagerAlreadySet();
|
55
|
+
error InstanceErrorAccessManagerAuthorityMismatch();
|
45
56
|
|
46
|
-
|
57
|
+
error InstanceErrorInstanceStoreAlreadySet();
|
58
|
+
error InstanceErrorInstanceStoreAuthorityMismatch();*/
|
47
59
|
|
48
|
-
|
49
|
-
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
50
|
-
RoleId [] internal _roles;
|
60
|
+
uint256 public constant GIF_MAJOR_VERSION = 3;
|
51
61
|
|
52
|
-
|
62
|
+
bool private _initialized;
|
53
63
|
|
54
|
-
|
64
|
+
InstanceAccessManager internal _accessManager;
|
55
65
|
InstanceReader internal _instanceReader;
|
66
|
+
BundleManager internal _bundleManager;
|
67
|
+
InstanceStore internal _instanceStore;
|
56
68
|
|
57
|
-
|
58
|
-
|
59
|
-
|
69
|
+
modifier onlyChainNft() {
|
70
|
+
if(msg.sender != getRegistry().getChainNftAddress()) {
|
71
|
+
revert();
|
72
|
+
}
|
73
|
+
_;
|
60
74
|
}
|
61
75
|
|
62
|
-
function initialize(address
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
_initializeRegisterable(registryAddress, registryNftId, INSTANCE(), false, initialOwner, "");
|
72
|
-
|
73
|
-
_registerInterface(type(IInstance).interfaceId);
|
74
|
-
_initialized = true;
|
75
|
-
}
|
76
|
+
function initialize(address authority, address registryAddress, address initialOwner)
|
77
|
+
external
|
78
|
+
initializer()
|
79
|
+
{
|
80
|
+
__AccessManaged_init(authority);
|
81
|
+
|
82
|
+
IRegistry registry = IRegistry(registryAddress);
|
83
|
+
initializeRegisterable(registryAddress, registry.getNftId(), INSTANCE(), true, initialOwner, "");
|
76
84
|
|
77
|
-
|
78
|
-
function createStandardRole(RoleId roleId, string memory name) external restricted() {
|
79
|
-
_createRole(roleId, name, false, true);
|
85
|
+
registerInterface(type(IInstance).interfaceId);
|
80
86
|
}
|
81
87
|
|
82
|
-
|
83
|
-
_createRole(roleId, name, true, true);
|
84
|
-
}
|
88
|
+
//--- Roles ------------------------------------------------------------//
|
85
89
|
|
86
|
-
function
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
+
function createRole(string memory roleName, string memory adminName)
|
91
|
+
external
|
92
|
+
restricted // INSTANCE_OWNER_ROLE
|
93
|
+
returns (RoleId roleId, RoleId admin)
|
94
|
+
{
|
95
|
+
(roleId, admin) = _accessManager.createRole(roleName, adminName);
|
90
96
|
}
|
91
97
|
|
92
|
-
function
|
93
|
-
|
98
|
+
function grantRole(RoleId roleId, address account)
|
99
|
+
external
|
100
|
+
restricted // INSTANCE_OWNER_ROLE
|
101
|
+
{
|
102
|
+
_accessManager.grantRole(roleId, account);
|
94
103
|
}
|
95
104
|
|
96
|
-
function
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
}
|
102
|
-
|
103
|
-
if (getState(roleKey) != ACTIVE()) {
|
104
|
-
revert IAccess.ErrorRoleIdNotActive(roleId);
|
105
|
-
}
|
106
|
-
|
107
|
-
if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
|
108
|
-
_accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
|
109
|
-
EnumerableSet.add(_roleMembers[roleId], member);
|
110
|
-
return true;
|
111
|
-
}
|
112
|
-
|
113
|
-
return false;
|
105
|
+
function revokeRole(RoleId roleId, address account)
|
106
|
+
external
|
107
|
+
restricted // INSTANCE_OWNER_ROLE
|
108
|
+
{
|
109
|
+
_accessManager.revokeRole(roleId, account);
|
114
110
|
}
|
115
111
|
|
116
|
-
|
117
|
-
Key32 roleKey = toRoleKey32(roleId);
|
118
|
-
|
119
|
-
if (!exists(roleKey)) {
|
120
|
-
revert IAccess.ErrorRevokeNonexstentRole(roleId);
|
121
|
-
}
|
122
|
-
|
123
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
124
|
-
_accessManager.revokeRole(roleId.toInt(), member);
|
125
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
126
|
-
return true;
|
127
|
-
}
|
112
|
+
//--- Targets ------------------------------------------------------------//
|
128
113
|
|
129
|
-
|
114
|
+
function createTarget(address target, string memory name)
|
115
|
+
external
|
116
|
+
restricted // INSTANCE_OWNER_ROLE
|
117
|
+
{
|
118
|
+
_accessManager.createTarget(target, name);
|
130
119
|
}
|
131
120
|
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
143
|
-
_accessManager.renounceRole(roleId.toInt(), member);
|
144
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
145
|
-
return true;
|
146
|
-
}
|
147
|
-
|
148
|
-
return false;
|
121
|
+
function setTargetFunctionRole(
|
122
|
+
string memory targetName,
|
123
|
+
bytes4[] calldata selectors,
|
124
|
+
RoleId roleId
|
125
|
+
)
|
126
|
+
external
|
127
|
+
restricted // INSTANCE_OWNER_ROLE
|
128
|
+
{
|
129
|
+
_accessManager.setTargetFunctionRole(targetName, selectors, roleId);
|
149
130
|
}
|
150
131
|
|
151
|
-
function
|
152
|
-
|
132
|
+
function setTargetLocked(address target, bool locked)
|
133
|
+
external
|
134
|
+
restricted // INSTANCE_OWNER_ROLE
|
135
|
+
{
|
136
|
+
_accessManager.setTargetLockedByInstance(target, locked);
|
153
137
|
}
|
154
138
|
|
155
|
-
|
156
|
-
return _roles[idx];
|
157
|
-
}
|
139
|
+
//--- ITransferInterceptor ------------------------------------------------------------//
|
158
140
|
|
159
|
-
function
|
160
|
-
|
141
|
+
function nftMint(address to, uint256 tokenId) external onlyChainNft {
|
142
|
+
assert(_accessManager.roleMembers(INSTANCE_OWNER_ROLE()) == 0);// temp
|
143
|
+
assert(_accessManager.grantRole(INSTANCE_OWNER_ROLE(), to) == true);
|
161
144
|
}
|
162
145
|
|
163
|
-
function
|
164
|
-
|
146
|
+
function nftTransferFrom(address from, address to, uint256 tokenId) external onlyChainNft {
|
147
|
+
assert(_accessManager.revokeRole(INSTANCE_OWNER_ROLE(), from) == true);
|
148
|
+
assert(_accessManager.grantRole(INSTANCE_OWNER_ROLE(), to) == true);
|
165
149
|
}
|
166
150
|
|
167
|
-
|
168
|
-
return EnumerableSet.at(_roleMembers[roleId], idx);
|
169
|
-
}
|
151
|
+
//--- initial setup functions -------------------------------------------//
|
170
152
|
|
171
|
-
function
|
172
|
-
if (
|
173
|
-
|
153
|
+
function setInstanceAccessManager(InstanceAccessManager accessManager) external restricted {
|
154
|
+
if(address(_accessManager) != address(0)) {
|
155
|
+
revert ErrorInstanceInstanceAccessManagerAlreadySet(address(_accessManager));
|
174
156
|
}
|
175
|
-
|
176
|
-
|
177
|
-
_role[role.name] = roleId;
|
178
|
-
_roles.push(roleId);
|
179
|
-
|
180
|
-
create(toRoleKey32(roleId), abi.encode(role));
|
181
|
-
}
|
182
|
-
|
183
|
-
//--- Target ------------------------------------------------------//
|
184
|
-
function createTarget(address target, IAccess.TargetInfo memory targetInfo) external restricted() {
|
185
|
-
_validateTargetParameters(target, targetInfo);
|
186
|
-
create(toTargetKey32(target), abi.encode(targetInfo));
|
187
|
-
}
|
188
|
-
|
189
|
-
function setTargetClosed(address target, bool closed) external restricted() {
|
190
|
-
if (!exists(toTargetKey32(target))) {
|
191
|
-
revert IAccess.ErrorTargetDoesNotExist(target);
|
157
|
+
if(accessManager.authority() != authority()) {
|
158
|
+
revert ErrorInstanceInstanceAccessManagerAuthorityMismatch(authority());
|
192
159
|
}
|
193
|
-
|
194
|
-
_accessManager.setTargetClosed(target, closed);
|
195
|
-
}
|
196
|
-
|
197
|
-
//--- ProductSetup ------------------------------------------------------//
|
198
|
-
function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external restricted() {
|
199
|
-
create(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup));
|
200
|
-
}
|
201
|
-
|
202
|
-
function updateProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup, StateId newState) external restricted() {
|
203
|
-
update(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup), newState);
|
204
|
-
}
|
205
|
-
|
206
|
-
function updateProductSetupState(NftId productNftId, StateId newState) external restricted() {
|
207
|
-
updateState(_toNftKey32(productNftId, PRODUCT()), newState);
|
208
|
-
}
|
209
|
-
|
210
|
-
//--- DistributionSetup ------------------------------------------------------//
|
211
|
-
function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external restricted() {
|
212
|
-
create(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup));
|
213
|
-
}
|
214
|
-
|
215
|
-
function updateDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup, StateId newState) external restricted() {
|
216
|
-
update(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup), newState);
|
217
|
-
}
|
218
|
-
|
219
|
-
function updateDistributionSetupState(NftId distributionNftId, StateId newState) external restricted() {
|
220
|
-
updateState(_toNftKey32(distributionNftId, DISTRIBUTION()), newState);
|
221
|
-
}
|
222
|
-
|
223
|
-
//--- PoolSetup ------------------------------------------------------//
|
224
|
-
function createPoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup) external restricted() {
|
225
|
-
create(_toNftKey32(poolNftId, POOL()), abi.encode(setup));
|
226
|
-
}
|
227
|
-
|
228
|
-
function updatePoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup, StateId newState) external restricted() {
|
229
|
-
update(_toNftKey32(poolNftId, POOL()), abi.encode(setup), newState);
|
230
|
-
}
|
231
|
-
|
232
|
-
function updatePoolSetupState(NftId poolNftId, StateId newState) external restricted() {
|
233
|
-
updateState(_toNftKey32(poolNftId, POOL()), newState);
|
234
|
-
}
|
235
|
-
|
236
|
-
//--- DistributorType ---------------------------------------------------//
|
237
|
-
function createDistributorType(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
238
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
239
|
-
}
|
240
|
-
|
241
|
-
function updateDistributorType(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
242
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
243
|
-
}
|
244
|
-
|
245
|
-
function updateDistributorTypeState(NftId policyNftId, StateId newState) external restricted() {
|
246
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
247
|
-
}
|
248
|
-
|
249
|
-
//--- Distributor -------------------------------------------------------//
|
250
|
-
function createDistributor(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
251
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
252
|
-
}
|
253
|
-
|
254
|
-
function updateDistributor(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
255
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
256
|
-
}
|
257
|
-
|
258
|
-
function updateDistributorState(NftId policyNftId, StateId newState) external restricted() {
|
259
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
260
|
-
}
|
261
|
-
|
262
|
-
//--- Referral ----------------------------------------------------------//
|
263
|
-
function createReferral(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
264
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
265
|
-
}
|
266
|
-
|
267
|
-
function updateReferral(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
268
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
269
|
-
}
|
270
|
-
|
271
|
-
function updateReferralState(NftId policyNftId, StateId newState) external restricted() {
|
272
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
273
|
-
}
|
274
|
-
|
275
|
-
//--- Bundle ------------------------------------------------------------//
|
276
|
-
function createBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle) external restricted() {
|
277
|
-
create(toBundleKey32(bundleNftId), abi.encode(bundle));
|
278
|
-
}
|
279
|
-
|
280
|
-
function updateBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle, StateId newState) external restricted() {
|
281
|
-
update(toBundleKey32(bundleNftId), abi.encode(bundle), newState);
|
282
|
-
}
|
283
|
-
|
284
|
-
function updateBundleState(NftId bundleNftId, StateId newState) external restricted() {
|
285
|
-
updateState(toBundleKey32(bundleNftId), newState);
|
286
|
-
}
|
287
|
-
|
288
|
-
//--- Risk --------------------------------------------------------------//
|
289
|
-
function createRisk(RiskId riskId, IRisk.RiskInfo memory risk) external restricted() {
|
290
|
-
create(riskId.toKey32(), abi.encode(risk));
|
291
|
-
}
|
292
|
-
|
293
|
-
function updateRisk(RiskId riskId, IRisk.RiskInfo memory risk, StateId newState) external restricted() {
|
294
|
-
update(riskId.toKey32(), abi.encode(risk), newState);
|
295
|
-
}
|
296
|
-
|
297
|
-
function updateRiskState(RiskId riskId, StateId newState) external restricted() {
|
298
|
-
updateState(riskId.toKey32(), newState);
|
299
|
-
}
|
300
|
-
|
301
|
-
//--- Policy ------------------------------------------------------------//
|
302
|
-
function createPolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy) external restricted() {
|
303
|
-
create(toPolicyKey32(policyNftId), abi.encode(policy));
|
304
|
-
}
|
305
|
-
|
306
|
-
function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
307
|
-
update(toPolicyKey32(policyNftId), abi.encode(policy), newState);
|
308
|
-
}
|
309
|
-
|
310
|
-
function updatePolicyState(NftId policyNftId, StateId newState) external restricted() {
|
311
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
160
|
+
_accessManager = accessManager;
|
312
161
|
}
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
}
|
318
|
-
|
319
|
-
function updateClaim(NftId policyNftId, NumberId claimId, IPolicy.ClaimInfo memory claim, StateId newState) external restricted() {
|
320
|
-
update(toPolicyKey32(policyNftId), abi.encode(claim), newState);
|
321
|
-
}
|
322
|
-
|
323
|
-
function updateClaimState(NftId policyNftId, StateId newState) external restricted() {
|
324
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
325
|
-
}
|
326
|
-
|
327
|
-
//--- Payout ------------------------------------------------------------//
|
328
|
-
function createPayout(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
329
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
330
|
-
}
|
331
|
-
|
332
|
-
function updateClaim(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
333
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
334
|
-
}
|
335
|
-
|
336
|
-
function updatePayoutState(NftId policyNftId, StateId newState) external restricted() {
|
337
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
338
|
-
}
|
339
|
-
|
340
|
-
//--- internal view/pure functions --------------------------------------//
|
341
|
-
function _toRole(RoleId roleId, string memory name, bool isCustom)
|
342
|
-
internal
|
343
|
-
pure
|
344
|
-
returns (IAccess.RoleInfo memory role)
|
345
|
-
{
|
346
|
-
return IAccess.RoleInfo(
|
347
|
-
ShortStrings.toShortString(name),
|
348
|
-
isCustom);
|
349
|
-
}
|
350
|
-
|
351
|
-
function _validateRoleParameters(
|
352
|
-
RoleId roleId,
|
353
|
-
string memory name,
|
354
|
-
bool isCustom
|
355
|
-
)
|
356
|
-
internal
|
357
|
-
view
|
358
|
-
returns (
|
359
|
-
bool roleExists,
|
360
|
-
bool roleIsCustom
|
361
|
-
)
|
362
|
-
{
|
363
|
-
Key32 roleKey = toRoleKey32(roleId);
|
364
|
-
roleExists = exists(roleKey);
|
365
|
-
if (roleExists) {
|
366
|
-
roleIsCustom = abi.decode(getData(roleKey), (IAccess.RoleInfo)).isCustom;
|
367
|
-
} else {
|
368
|
-
roleIsCustom = isCustom;
|
162
|
+
|
163
|
+
function setBundleManager(BundleManager bundleManager) external restricted() {
|
164
|
+
if(address(_bundleManager) != address(0)) {
|
165
|
+
revert ErrorInstanceBundleManagerAlreadySet(address(_bundleManager));
|
369
166
|
}
|
370
|
-
|
371
|
-
|
372
|
-
uint64 roleIdInt = RoleId.unwrap(roleId);
|
373
|
-
if(roleIdInt == ADMIN_ROLE || roleIdInt == PUBLIC_ROLE) {
|
374
|
-
revert IAccess.ErrorRoleIdInvalid(roleId);
|
167
|
+
if(bundleManager.getInstance() != Instance(this)) {
|
168
|
+
revert ErrorInstanceBundleManagerInstanceMismatch(address(this));
|
375
169
|
}
|
376
|
-
|
377
|
-
|
378
|
-
revert IAccess.ErrorRoleIdTooSmall(roleId);
|
379
|
-
} else if (roleIsCustom && roleIdInt >= CUSTOM_ROLE_ID_MIN) {
|
380
|
-
revert IAccess.ErrorRoleIdTooBig(roleId);
|
170
|
+
if(bundleManager.authority() != authority()) {
|
171
|
+
revert ErrorInstanceBundleManagerAuthorityMismatch(authority());
|
381
172
|
}
|
173
|
+
_bundleManager = bundleManager;
|
174
|
+
}
|
382
175
|
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
revert IAccess.ErrorRoleNameEmpty(roleId);
|
176
|
+
function setInstanceReader(InstanceReader instanceReader) external restricted() {
|
177
|
+
if(instanceReader.getInstance() != Instance(this)) {
|
178
|
+
revert ErrorInstanceInstanceReaderInstanceMismatch(address(this));
|
387
179
|
}
|
388
180
|
|
389
|
-
|
390
|
-
revert IAccess.ErrorRoleNameNotUnique(_role[nameShort], nameShort);
|
391
|
-
}
|
181
|
+
_instanceReader = instanceReader;
|
392
182
|
}
|
393
183
|
|
394
|
-
|
184
|
+
//--- external view functions -------------------------------------------//
|
395
185
|
|
186
|
+
function getInstanceReader() external view returns (InstanceReader) {
|
187
|
+
return _instanceReader;
|
396
188
|
}
|
397
189
|
|
398
|
-
function
|
399
|
-
return
|
400
|
-
}
|
401
|
-
|
402
|
-
function toTargetKey32(address target) public pure returns (Key32) {
|
403
|
-
return Key32Lib.toKey32(TARGET(), KeyId.wrap(bytes20(target)));
|
190
|
+
function getBundleManager() external view returns (BundleManager) {
|
191
|
+
return _bundleManager;
|
404
192
|
}
|
405
193
|
|
406
|
-
function
|
407
|
-
return
|
194
|
+
function getInstanceAccessManager() external view returns (InstanceAccessManager) {
|
195
|
+
return _accessManager;
|
408
196
|
}
|
409
197
|
|
410
|
-
function
|
411
|
-
|
198
|
+
function setInstanceStore(InstanceStore instanceStore) external restricted {
|
199
|
+
if(address(_instanceStore) != address(0)) {
|
200
|
+
revert ErrorInstanceInstanceStoreAlreadySet(address(_instanceStore));
|
201
|
+
}
|
202
|
+
if(instanceStore.authority() != authority()) {
|
203
|
+
revert ErrorInstanceInstanceStoreAuthorityMismatch(authority());
|
204
|
+
}
|
205
|
+
_instanceStore = instanceStore;
|
412
206
|
}
|
413
207
|
|
414
|
-
function
|
415
|
-
return
|
208
|
+
function getInstanceStore() external view returns (InstanceStore) {
|
209
|
+
return _instanceStore;
|
416
210
|
}
|
417
211
|
|
418
|
-
function
|
419
|
-
return
|
212
|
+
function getMajorVersion() external pure returns (VersionPart majorVersion) {
|
213
|
+
return VersionPartLib.toVersionPart(GIF_MAJOR_VERSION);
|
420
214
|
}
|
421
215
|
|
422
216
|
function getDistributionService() external view returns (IDistributionService) {
|
423
|
-
return IDistributionService(
|
217
|
+
return IDistributionService(getRegistry().getServiceAddress(DISTRIBUTION(), VersionPart.wrap(3)));
|
424
218
|
}
|
425
219
|
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
// }
|
220
|
+
function getProductService() external view returns (IProductService) {
|
221
|
+
return IProductService(getRegistry().getServiceAddress(PRODUCT(), VersionPart.wrap(3)));
|
222
|
+
}
|
430
223
|
|
431
224
|
function getPoolService() external view returns (IPoolService) {
|
432
|
-
return IPoolService(
|
225
|
+
return IPoolService(getRegistry().getServiceAddress(POOL(), VersionPart.wrap(3)));
|
433
226
|
}
|
434
227
|
|
435
|
-
function
|
436
|
-
|
437
|
-
_instanceReader = instanceReader;
|
228
|
+
function getPolicyService() external view returns (IPolicyService) {
|
229
|
+
return IPolicyService(getRegistry().getServiceAddress(POLICY(), VersionPart.wrap(3)));
|
438
230
|
}
|
439
231
|
|
440
|
-
function
|
441
|
-
return
|
232
|
+
function getBundleService() external view returns (IBundleService) {
|
233
|
+
return IBundleService(getRegistry().getServiceAddress(BUNDLE(), VersionPart.wrap(3)));
|
442
234
|
}
|
443
|
-
|
235
|
+
|
236
|
+
//--- internal view/pure functions --------------------------------------//
|
237
|
+
}
|