@etherisc/gif-next 0.0.2-a6f9f86-582 → 0.0.2-a733491-751
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 +243 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +853 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1389 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +283 -227
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +943 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +887 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +806 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/components/Pool.sol/Pool.json +1322 -0
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/components/Product.sol/Product.json +1246 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2497 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +530 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1049 -1168
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +488 -184
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1386 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +936 -24
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +701 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ServiceBase.sol/ServiceBase.json → ComponentService.sol/ComponentService.json} +211 -138
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +0 -77
- 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 +10 -244
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +65 -44
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +858 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +657 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1085 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +743 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +943 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +681 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +462 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +622 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +398 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +480 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +572 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +336 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +373 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1109 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +717 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +724 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +653 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +766 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +47 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +255 -63
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +312 -178
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +229 -212
- 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 +423 -270
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +323 -129
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- 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 +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/IService.sol/IService.json} +59 -42
- 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 +4 -0
- package/artifacts/contracts/{instance/base/IService.sol/IService.json → shared/Service.sol/Service.json} +147 -154
- 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 +4 -4
- 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 +111 -5
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +140 -230
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -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 +4 -4
- 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 +2 -2
- 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 +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- 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/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/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +241 -0
- package/contracts/components/Distribution.sol +308 -0
- package/contracts/components/IComponent.sol +54 -0
- package/contracts/components/IDistributionComponent.sol +100 -0
- package/contracts/components/IPoolComponent.sol +87 -0
- package/contracts/components/IProductComponent.sol +39 -0
- package/contracts/components/Pool.sol +254 -0
- package/contracts/components/Product.sol +285 -0
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +94 -0
- package/contracts/instance/IInstanceService.sol +65 -0
- package/contracts/instance/Instance.sol +141 -235
- package/contracts/instance/InstanceAccessManager.sol +466 -174
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +445 -23
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +5 -4
- package/contracts/instance/base/KeyValueStore.sol +4 -20
- package/contracts/instance/module/IAccess.sol +37 -21
- package/contracts/instance/module/IBundle.sol +1 -0
- package/contracts/instance/module/IPolicy.sol +4 -2
- package/contracts/instance/module/ISetup.sol +9 -3
- package/contracts/instance/module/ITreasury.sol +1 -1
- package/contracts/instance/service/ApplicationService.sol +268 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +298 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +295 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +54 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +65 -0
- package/contracts/instance/service/IPolicyService.sol +89 -0
- package/contracts/instance/service/IPoolService.sol +20 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +474 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +125 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +241 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +41 -26
- package/contracts/registry/IRegistry.sol +53 -25
- package/contracts/registry/IRegistryService.sol +54 -16
- package/contracts/registry/Registry.sol +291 -313
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +170 -256
- package/contracts/registry/RegistryServiceManager.sol +30 -11
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ERC165.sol +15 -9
- 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 +16 -0
- 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 +101 -26
- package/contracts/shared/Registerable.sol +15 -30
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +58 -0
- package/contracts/shared/TokenHandler.sol +2 -2
- package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
- package/contracts/shared/Versionable.sol +5 -93
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestRoleId.sol +6 -6
- package/contracts/test/TestService.sol +6 -7
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +3 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/ObjectType.sol +9 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/RoleId.sol +22 -4
- package/contracts/types/StateId.sol +4 -0
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +4 -1
- package/package.json +6 -5
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- 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/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 -1119
- 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/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/IBaseComponent.sol +0 -19
- 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 -114
- package/contracts/instance/AccessManagerSimple.sol +0 -682
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/ServiceBase.sol +0 -44
- package/contracts/registry/IChainNft.sol +0 -22
@@ -1,170 +1,73 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
|
-
import {
|
5
|
-
import {ShortString, ShortStrings} from "@openzeppelin5/contracts/utils/ShortStrings.sol";
|
4
|
+
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
6
5
|
|
7
|
-
import {AccessManagedSimple} from "./AccessManagedSimple.sol";
|
8
|
-
import {AccessManagerSimple} from "./AccessManagerSimple.sol";
|
9
|
-
import {IAccess} from "./module/IAccess.sol";
|
10
|
-
import {IBundle} from "./module/IBundle.sol";
|
11
|
-
import {IPolicy} from "./module/IPolicy.sol";
|
12
|
-
import {IRisk} from "./module/IRisk.sol";
|
13
|
-
import {ISetup} from "./module/ISetup.sol";
|
14
6
|
import {Key32, KeyId, Key32Lib} from "../types/Key32.sol";
|
15
|
-
import {KeyValueStore} from "../instance/base/KeyValueStore.sol";
|
16
7
|
import {NftId} from "../types/NftId.sol";
|
8
|
+
import {ClaimId} from "../types/ClaimId.sol";
|
17
9
|
import {NumberId} from "../types/NumberId.sol";
|
18
|
-
import {ObjectType, BUNDLE, DISTRIBUTION, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
10
|
+
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET, COMPONENT, DISTRIBUTOR, DISTRIBUTOR_TYPE} from "../types/ObjectType.sol";
|
19
11
|
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
20
12
|
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
21
13
|
import {StateId, ACTIVE} from "../types/StateId.sol";
|
14
|
+
import {TimestampLib} from "../types/Timestamp.sol";
|
15
|
+
import {VersionPart} from "../types/Version.sol";
|
16
|
+
|
17
|
+
import {ERC165} from "../shared/ERC165.sol";
|
18
|
+
import {Registerable} from "../shared/Registerable.sol";
|
19
|
+
|
20
|
+
import {IInstance} from "./IInstance.sol";
|
21
|
+
import {InstanceReader} from "./InstanceReader.sol";
|
22
|
+
import {InstanceAccessManager} from "./InstanceAccessManager.sol";
|
23
|
+
import {BundleManager} from "./BundleManager.sol";
|
24
|
+
|
25
|
+
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
26
|
+
|
27
|
+
import {IAccess} from "./module/IAccess.sol";
|
28
|
+
import {IBundle} from "./module/IBundle.sol";
|
29
|
+
import {IDistribution} from "./module/IDistribution.sol";
|
30
|
+
import {IPolicy} from "./module/IPolicy.sol";
|
31
|
+
import {IRisk} from "./module/IRisk.sol";
|
32
|
+
import {ISetup} from "./module/ISetup.sol";
|
33
|
+
|
34
|
+
import {IDistributionService} from "./service/IDistributionService.sol";
|
35
|
+
import {IPoolService} from "./service/IPoolService.sol";
|
36
|
+
import {IProductService} from "./service/IProductService.sol";
|
37
|
+
import {IPolicyService} from "./service/IPolicyService.sol";
|
38
|
+
import {IBundleService} from "./service/IBundleService.sol";
|
39
|
+
import {VersionPart, VersionPartLib} from "../types/Version.sol";
|
22
40
|
|
23
41
|
contract Instance is
|
24
|
-
|
42
|
+
IInstance,
|
43
|
+
AccessManagedUpgradeable,
|
44
|
+
Registerable,
|
25
45
|
KeyValueStore
|
26
46
|
{
|
27
47
|
|
48
|
+
uint256 public constant GIF_MAJOR_VERSION = 3;
|
49
|
+
|
28
50
|
uint64 public constant ADMIN_ROLE = type(uint64).min;
|
29
51
|
uint64 public constant PUBLIC_ROLE = type(uint64).max;
|
30
52
|
uint64 public constant CUSTOM_ROLE_ID_MIN = 10000;
|
31
53
|
|
32
54
|
uint32 public constant EXECUTION_DELAY = 0;
|
33
55
|
|
34
|
-
|
35
|
-
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
36
|
-
RoleId [] internal _roles;
|
37
|
-
|
38
|
-
mapping(ShortString name => address target) internal _target;
|
56
|
+
bool private _initialized;
|
39
57
|
|
40
|
-
|
58
|
+
InstanceAccessManager internal _accessManager;
|
59
|
+
InstanceReader internal _instanceReader;
|
60
|
+
BundleManager internal _bundleManager;
|
41
61
|
|
42
|
-
|
43
|
-
|
62
|
+
function initialize(address instanceAccessManagerAddress, address registryAddress, NftId registryNftId, address initialOwner)
|
63
|
+
public
|
64
|
+
initializer()
|
44
65
|
{
|
45
|
-
_accessManager =
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
//--- Role ------------------------------------------------------//
|
51
|
-
function createStandardRole(RoleId roleId, string memory name) external restricted() {
|
52
|
-
_createRole(roleId, name, false, true);
|
53
|
-
}
|
54
|
-
|
55
|
-
function createCustomRole(RoleId roleId, string memory name) external restricted() {
|
56
|
-
_createRole(roleId, name, true, true);
|
57
|
-
}
|
58
|
-
|
59
|
-
function updateRole(RoleId roleId, string memory name, StateId newState) external restricted() {
|
60
|
-
(bool isCustom,) = _validateRoleParameters(roleId, name, false);
|
61
|
-
IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
|
62
|
-
update(toRoleKey32(roleId), abi.encode(role), newState);
|
63
|
-
}
|
64
|
-
|
65
|
-
function updateRoleState(RoleId roleId, StateId newState) external restricted() {
|
66
|
-
updateState(toRoleKey32(roleId), newState);
|
67
|
-
}
|
68
|
-
|
69
|
-
function grantRole(RoleId roleId, address member) external restricted() returns (bool granted) {
|
70
|
-
Key32 roleKey = toRoleKey32(roleId);
|
71
|
-
|
72
|
-
if (!exists(roleKey)) {
|
73
|
-
revert IAccess.ErrorGrantNonexstentRole(roleId);
|
74
|
-
}
|
75
|
-
|
76
|
-
if (getState(roleKey) != ACTIVE()) {
|
77
|
-
revert IAccess.ErrorRoleIdNotActive(roleId);
|
78
|
-
}
|
79
|
-
|
80
|
-
if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
|
81
|
-
_accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
|
82
|
-
EnumerableSet.add(_roleMembers[roleId], member);
|
83
|
-
return true;
|
84
|
-
}
|
85
|
-
|
86
|
-
return false;
|
87
|
-
}
|
88
|
-
|
89
|
-
function revokeRole(RoleId roleId, address member) external restricted() returns (bool revoked) {
|
90
|
-
Key32 roleKey = toRoleKey32(roleId);
|
91
|
-
|
92
|
-
if (!exists(roleKey)) {
|
93
|
-
revert IAccess.ErrorRevokeNonexstentRole(roleId);
|
94
|
-
}
|
95
|
-
|
96
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
97
|
-
_accessManager.revokeRole(roleId.toInt(), member);
|
98
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
99
|
-
return true;
|
100
|
-
}
|
101
|
-
|
102
|
-
return false;
|
103
|
-
}
|
104
|
-
|
105
|
-
/// @dev not restricted function by intention
|
106
|
-
/// the restriction to role members is already enforced by the call to the access manger
|
107
|
-
function renounceRole(RoleId roleId) external returns (bool revoked) {
|
108
|
-
address member = msg.sender;
|
109
|
-
Key32 roleKey = toRoleKey32(roleId);
|
110
|
-
|
111
|
-
if (!exists(roleKey)) {
|
112
|
-
revert IAccess.ErrorRenounceNonexstentRole(roleId);
|
113
|
-
}
|
114
|
-
|
115
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
116
|
-
_accessManager.renounceRole(roleId.toInt(), member);
|
117
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
118
|
-
return true;
|
119
|
-
}
|
120
|
-
|
121
|
-
return false;
|
122
|
-
}
|
123
|
-
|
124
|
-
function roles() external view returns (uint256 numberOfRoles) {
|
125
|
-
return _roles.length;
|
126
|
-
}
|
127
|
-
|
128
|
-
function getRoleId(uint256 idx) external view returns (RoleId roleId) {
|
129
|
-
return _roles[idx];
|
130
|
-
}
|
131
|
-
|
132
|
-
function getRole(RoleId roleId) external view returns (IAccess.RoleInfo memory role) {
|
133
|
-
return abi.decode(getData(roleId.toKey32()), (IAccess.RoleInfo));
|
134
|
-
}
|
135
|
-
|
136
|
-
function roleMembers(RoleId roleId) external view returns (uint256 numberOfMembers) {
|
137
|
-
return EnumerableSet.length(_roleMembers[roleId]);
|
138
|
-
}
|
139
|
-
|
140
|
-
function getRoleMember(RoleId roleId, uint256 idx) external view returns (address roleMember) {
|
141
|
-
return EnumerableSet.at(_roleMembers[roleId], idx);
|
142
|
-
}
|
143
|
-
|
144
|
-
function _createRole(RoleId roleId, string memory name, bool isCustom, bool validateParameters) internal {
|
145
|
-
if (validateParameters) {
|
146
|
-
_validateRoleParameters(roleId, name, isCustom);
|
147
|
-
}
|
148
|
-
|
149
|
-
IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
|
150
|
-
_role[role.name] = roleId;
|
151
|
-
_roles.push(roleId);
|
152
|
-
|
153
|
-
create(toRoleKey32(roleId), abi.encode(role));
|
154
|
-
}
|
155
|
-
|
156
|
-
//--- Target ------------------------------------------------------//
|
157
|
-
function createTarget(address target, IAccess.TargetInfo memory targetInfo) external restricted() {
|
158
|
-
_validateTargetParameters(target, targetInfo);
|
159
|
-
create(toTargetKey32(target), abi.encode(targetInfo));
|
160
|
-
}
|
161
|
-
|
162
|
-
function setTargetClosed(address target, bool closed) external restricted() {
|
163
|
-
if (!exists(toTargetKey32(target))) {
|
164
|
-
revert IAccess.ErrorTargetDoesNotExist(target);
|
165
|
-
}
|
166
|
-
|
167
|
-
_accessManager.setTargetClosed(target, closed);
|
66
|
+
_accessManager = InstanceAccessManager(instanceAccessManagerAddress);
|
67
|
+
__AccessManaged_init(_accessManager.authority());
|
68
|
+
|
69
|
+
initializeRegisterable(registryAddress, registryNftId, INSTANCE(), false, initialOwner, "");
|
70
|
+
registerInterface(type(IInstance).interfaceId);
|
168
71
|
}
|
169
72
|
|
170
73
|
//--- ProductSetup ------------------------------------------------------//
|
@@ -181,11 +84,11 @@ contract Instance is
|
|
181
84
|
}
|
182
85
|
|
183
86
|
//--- DistributionSetup ------------------------------------------------------//
|
184
|
-
function createDistributionSetup(NftId distributionNftId, ISetup.
|
87
|
+
function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external restricted() {
|
185
88
|
create(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup));
|
186
89
|
}
|
187
90
|
|
188
|
-
function updateDistributionSetup(NftId distributionNftId, ISetup.
|
91
|
+
function updateDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup, StateId newState) external restricted() {
|
189
92
|
update(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup), newState);
|
190
93
|
}
|
191
94
|
|
@@ -194,55 +97,55 @@ contract Instance is
|
|
194
97
|
}
|
195
98
|
|
196
99
|
//--- PoolSetup ------------------------------------------------------//
|
197
|
-
function createPoolSetup(NftId
|
198
|
-
create(_toNftKey32(
|
100
|
+
function createPoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup) external restricted() {
|
101
|
+
create(_toNftKey32(poolNftId, POOL()), abi.encode(setup));
|
199
102
|
}
|
200
103
|
|
201
|
-
function updatePoolSetup(NftId
|
202
|
-
update(_toNftKey32(
|
104
|
+
function updatePoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup, StateId newState) external restricted() {
|
105
|
+
update(_toNftKey32(poolNftId, POOL()), abi.encode(setup), newState);
|
203
106
|
}
|
204
107
|
|
205
|
-
function updatePoolSetupState(NftId
|
206
|
-
updateState(_toNftKey32(
|
108
|
+
function updatePoolSetupState(NftId poolNftId, StateId newState) external restricted() {
|
109
|
+
updateState(_toNftKey32(poolNftId, POOL()), newState);
|
207
110
|
}
|
208
111
|
|
209
|
-
//--- DistributorType
|
210
|
-
function createDistributorType(
|
211
|
-
create(
|
112
|
+
//--- DistributorType -------------------------------------------------------//
|
113
|
+
function createDistributorType(Key32 distributorKey, IDistribution.DistributorTypeInfo memory info) external restricted() {
|
114
|
+
create(distributorKey, abi.encode(info));
|
212
115
|
}
|
213
116
|
|
214
|
-
function updateDistributorType(
|
215
|
-
update(
|
117
|
+
function updateDistributorType(Key32 distributorKey, IDistribution.DistributorTypeInfo memory info, StateId newState) external restricted() {
|
118
|
+
update(distributorKey, abi.encode(info), newState);
|
216
119
|
}
|
217
120
|
|
218
|
-
function updateDistributorTypeState(
|
219
|
-
updateState(
|
121
|
+
function updateDistributorTypeState(Key32 distributorKey, StateId newState) external restricted() {
|
122
|
+
updateState(distributorKey, newState);
|
220
123
|
}
|
221
124
|
|
222
125
|
//--- Distributor -------------------------------------------------------//
|
223
|
-
function createDistributor(NftId
|
224
|
-
create(
|
126
|
+
function createDistributor(NftId nftId, IDistribution.DistributorInfo memory info) external restricted() {
|
127
|
+
create(toDistributorKey32(nftId), abi.encode(info));
|
225
128
|
}
|
226
129
|
|
227
|
-
function updateDistributor(NftId
|
228
|
-
update(
|
130
|
+
function updateDistributor(NftId nftId, IDistribution.DistributorInfo memory info, StateId newState) external restricted() {
|
131
|
+
update(toDistributorKey32(nftId), abi.encode(info), newState);
|
229
132
|
}
|
230
133
|
|
231
|
-
function updateDistributorState(NftId
|
232
|
-
updateState(
|
134
|
+
function updateDistributorState(NftId nftId, StateId newState) external restricted() {
|
135
|
+
updateState(toDistributorKey32(nftId), newState);
|
233
136
|
}
|
234
137
|
|
235
138
|
//--- Referral ----------------------------------------------------------//
|
236
|
-
function createReferral(
|
237
|
-
create(
|
139
|
+
function createReferral(Key32 referralKey, IDistribution.ReferralInfo memory referralInfo) external restricted() {
|
140
|
+
create(referralKey, abi.encode(referralInfo));
|
238
141
|
}
|
239
142
|
|
240
|
-
function updateReferral(
|
241
|
-
update(
|
143
|
+
function updateReferral(Key32 referralKey, IDistribution.ReferralInfo memory referralInfo, StateId newState) external restricted() {
|
144
|
+
update(referralKey, abi.encode(referralInfo), newState);
|
242
145
|
}
|
243
146
|
|
244
|
-
function updateReferralState(
|
245
|
-
updateState(
|
147
|
+
function updateReferralState(Key32 referralKey, StateId newState) external restricted() {
|
148
|
+
updateState(referralKey, newState);
|
246
149
|
}
|
247
150
|
|
248
151
|
//--- Bundle ------------------------------------------------------------//
|
@@ -271,11 +174,20 @@ contract Instance is
|
|
271
174
|
updateState(riskId.toKey32(), newState);
|
272
175
|
}
|
273
176
|
|
274
|
-
//--- Policy
|
275
|
-
function
|
276
|
-
create(toPolicyKey32(
|
177
|
+
//--- Application (Policy) ----------------------------------------------//
|
178
|
+
function createApplication(NftId applicationNftId, IPolicy.PolicyInfo memory policy) external restricted() {
|
179
|
+
create(toPolicyKey32(applicationNftId), abi.encode(policy));
|
277
180
|
}
|
278
181
|
|
182
|
+
function updateApplication(NftId applicationNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
183
|
+
update(toPolicyKey32(applicationNftId), abi.encode(policy), newState);
|
184
|
+
}
|
185
|
+
|
186
|
+
function updateApplicationState(NftId applicationNftId, StateId newState) external restricted() {
|
187
|
+
updateState(toPolicyKey32(applicationNftId), newState);
|
188
|
+
}
|
189
|
+
|
190
|
+
//--- Policy ------------------------------------------------------------//
|
279
191
|
function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
280
192
|
update(toPolicyKey32(policyNftId), abi.encode(policy), newState);
|
281
193
|
}
|
@@ -285,15 +197,15 @@ contract Instance is
|
|
285
197
|
}
|
286
198
|
|
287
199
|
//--- Claim -------------------------------------------------------------//
|
288
|
-
function createClaim(NftId policyNftId,
|
200
|
+
function createClaim(NftId policyNftId, ClaimId claimId, IPolicy.ClaimInfo memory claim) external restricted() {
|
289
201
|
create(toPolicyKey32(policyNftId), abi.encode(claim));
|
290
202
|
}
|
291
203
|
|
292
|
-
function updateClaim(NftId policyNftId,
|
204
|
+
function updateClaim(NftId policyNftId, ClaimId claimId, IPolicy.ClaimInfo memory claim, StateId newState) external restricted() {
|
293
205
|
update(toPolicyKey32(policyNftId), abi.encode(claim), newState);
|
294
206
|
}
|
295
207
|
|
296
|
-
function updateClaimState(NftId policyNftId, StateId newState) external restricted() {
|
208
|
+
function updateClaimState(NftId policyNftId, ClaimId claimId, StateId newState) external restricted() {
|
297
209
|
updateState(toPolicyKey32(policyNftId), newState);
|
298
210
|
}
|
299
211
|
|
@@ -302,7 +214,7 @@ contract Instance is
|
|
302
214
|
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
303
215
|
}
|
304
216
|
|
305
|
-
function
|
217
|
+
function updatePayout(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
306
218
|
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
307
219
|
}
|
308
220
|
|
@@ -311,80 +223,74 @@ contract Instance is
|
|
311
223
|
}
|
312
224
|
|
313
225
|
//--- internal view/pure functions --------------------------------------//
|
314
|
-
function
|
315
|
-
|
316
|
-
|
317
|
-
returns (IAccess.RoleInfo memory role)
|
318
|
-
{
|
319
|
-
return IAccess.RoleInfo(
|
320
|
-
ShortStrings.toShortString(name),
|
321
|
-
isCustom);
|
322
|
-
}
|
323
|
-
|
324
|
-
function _validateRoleParameters(
|
325
|
-
RoleId roleId,
|
326
|
-
string memory name,
|
327
|
-
bool isCustom
|
328
|
-
)
|
329
|
-
internal
|
330
|
-
view
|
331
|
-
returns (
|
332
|
-
bool roleExists,
|
333
|
-
bool roleIsCustom
|
334
|
-
)
|
335
|
-
{
|
336
|
-
Key32 roleKey = toRoleKey32(roleId);
|
337
|
-
roleExists = exists(roleKey);
|
338
|
-
if (roleExists) {
|
339
|
-
roleIsCustom = abi.decode(getData(roleKey), (IAccess.RoleInfo)).isCustom;
|
340
|
-
} else {
|
341
|
-
roleIsCustom = isCustom;
|
342
|
-
}
|
226
|
+
function _toNftKey32(NftId nftId, ObjectType objectType) internal pure returns (Key32) {
|
227
|
+
return nftId.toKey32(objectType);
|
228
|
+
}
|
343
229
|
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
revert IAccess.ErrorRoleIdInvalid(roleId);
|
348
|
-
}
|
230
|
+
function toBundleKey32(NftId bundleNftId) public pure returns (Key32) {
|
231
|
+
return bundleNftId.toKey32(BUNDLE());
|
232
|
+
}
|
349
233
|
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
revert IAccess.ErrorRoleIdTooBig(roleId);
|
354
|
-
}
|
234
|
+
function toPolicyKey32(NftId policyNftId) public pure returns (Key32) {
|
235
|
+
return policyNftId.toKey32(POLICY());
|
236
|
+
}
|
355
237
|
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
revert IAccess.ErrorRoleNameEmpty(roleId);
|
360
|
-
}
|
238
|
+
function toDistributionKey32(NftId distNftId) public pure returns (Key32) {
|
239
|
+
return distNftId.toKey32(DISTRIBUTION());
|
240
|
+
}
|
361
241
|
|
362
|
-
|
363
|
-
|
364
|
-
}
|
242
|
+
function toDistributorTypeKey32(NftId distNftId) public pure returns (Key32) {
|
243
|
+
return distNftId.toKey32(DISTRIBUTOR_TYPE());
|
365
244
|
}
|
366
245
|
|
367
|
-
function
|
246
|
+
function toDistributorKey32(NftId distNftId) public pure returns (Key32) {
|
247
|
+
return distNftId.toKey32(DISTRIBUTOR());
|
248
|
+
}
|
249
|
+
|
250
|
+
function getDistributionService() external view returns (IDistributionService) {
|
251
|
+
return IDistributionService(getRegistry().getServiceAddress(DISTRIBUTION(), VersionPart.wrap(3)));
|
252
|
+
}
|
368
253
|
|
254
|
+
function getProductService() external view returns (IProductService) {
|
255
|
+
return IProductService(getRegistry().getServiceAddress(PRODUCT(), VersionPart.wrap(3)));
|
369
256
|
}
|
370
257
|
|
371
|
-
function
|
372
|
-
return
|
258
|
+
function getPoolService() external view returns (IPoolService) {
|
259
|
+
return IPoolService(getRegistry().getServiceAddress(POOL(), VersionPart.wrap(3)));
|
373
260
|
}
|
374
261
|
|
375
|
-
function
|
376
|
-
return
|
262
|
+
function getPolicyService() external view returns (IPolicyService) {
|
263
|
+
return IPolicyService(getRegistry().getServiceAddress(POLICY(), VersionPart.wrap(3)));
|
377
264
|
}
|
378
265
|
|
379
|
-
function
|
380
|
-
return
|
266
|
+
function getBundleService() external view returns (IBundleService) {
|
267
|
+
return IBundleService(getRegistry().getServiceAddress(BUNDLE(), VersionPart.wrap(3)));
|
381
268
|
}
|
382
269
|
|
383
|
-
function
|
384
|
-
|
270
|
+
function setInstanceReader(InstanceReader instanceReader) external restricted() {
|
271
|
+
require(instanceReader.getInstance() == Instance(this), "InstanceReader instance mismatch");
|
272
|
+
_instanceReader = instanceReader;
|
385
273
|
}
|
386
274
|
|
387
|
-
function
|
388
|
-
return
|
275
|
+
function getMajorVersion() external pure returns (VersionPart majorVersion) {
|
276
|
+
return VersionPartLib.toVersionPart(GIF_MAJOR_VERSION);
|
277
|
+
}
|
278
|
+
|
279
|
+
function getInstanceReader() external view returns (InstanceReader) {
|
280
|
+
return _instanceReader;
|
281
|
+
}
|
282
|
+
|
283
|
+
function setBundleManager(BundleManager bundleManager) external restricted() {
|
284
|
+
require(address(_bundleManager) == address(0), "BundleManager is set");
|
285
|
+
require(bundleManager.getInstance() == Instance(this), "BundleManager instance mismatch");
|
286
|
+
_bundleManager = bundleManager;
|
287
|
+
}
|
288
|
+
|
289
|
+
function getBundleManager() external view returns (BundleManager) {
|
290
|
+
return _bundleManager;
|
291
|
+
}
|
292
|
+
|
293
|
+
function getInstanceAccessManager() external view returns (InstanceAccessManager) {
|
294
|
+
return _accessManager;
|
389
295
|
}
|
390
296
|
}
|