@etherisc/gif-next 0.0.2-d2fd9d7-008 → 0.0.2-d30275e-758
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +28 -14
- 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 +946 -219
- 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 +848 -31
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +846 -57
- 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 +806 -243
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +632 -194
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +69 -66
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +303 -1340
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +337 -168
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +439 -3102
- 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 +251 -270
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +457 -402
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +292 -131
- 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 +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +11 -27
- 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} +277 -178
- 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 +1022 -223
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +392 -79
- 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 +536 -304
- 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 +78 -388
- 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 +832 -400
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +338 -93
- 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 +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +289 -564
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +289 -124
- 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 +244 -133
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
- 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 +257 -235
- 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 +200 -335
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -145
- 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 +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +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 +204 -83
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +44 -17
- package/contracts/components/IPoolComponent.sol +88 -41
- package/contracts/components/IProductComponent.sol +10 -5
- package/contracts/components/Pool.sol +217 -182
- package/contracts/components/Product.sol +248 -163
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +17 -20
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +57 -33
- package/contracts/instance/IInstanceService.sol +56 -9
- package/contracts/instance/Instance.sol +150 -367
- package/contracts/instance/InstanceAccessManager.sol +430 -177
- package/contracts/instance/InstanceAuthorizationsLib.sol +300 -0
- package/contracts/instance/InstanceReader.sol +44 -39
- package/contracts/instance/InstanceService.sol +243 -166
- package/contracts/instance/InstanceServiceManager.sol +6 -9
- package/contracts/instance/InstanceStore.sol +208 -0
- package/contracts/instance/ObjectManager.sol +11 -24
- 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 +7 -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 -33
- package/contracts/instance/service/DistributionServiceManager.sol +7 -10
- 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 +74 -1
- package/contracts/instance/service/IPolicyService.sol +139 -0
- package/contracts/instance/service/IPoolService.sol +76 -25
- package/contracts/instance/service/IPricingService.sol +36 -0
- package/contracts/instance/service/IProductService.sol +2 -72
- package/contracts/instance/service/PolicyService.sol +577 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +232 -183
- package/contracts/instance/service/PoolServiceManager.sol +6 -9
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +109 -469
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +9 -1
- package/contracts/registry/IRegistry.sol +39 -19
- package/contracts/registry/IRegistryService.sol +31 -13
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +243 -224
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +101 -173
- 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 +66 -80
- 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 +41 -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/ObjectType.sol +16 -7
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +26 -19
- 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/AccessManagedSimple.sol/AccessManagedSimple.json +0 -101
- 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 -134
- 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,454 +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 {BundleManager} from "./BundleManager.sol";
|
19
|
-
import {NftId} from "../types/NftId.sol";
|
20
|
-
import {NumberId} from "../types/NumberId.sol";
|
21
|
-
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
22
|
-
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
23
|
-
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
24
|
-
import {StateId, ACTIVE} from "../types/StateId.sol";
|
25
|
-
import {ERC165} from "../shared/ERC165.sol";
|
26
|
-
import {Registerable} from "../shared/Registerable.sol";
|
27
|
-
import {ComponentOwnerService} from "./service/ComponentOwnerService.sol";
|
28
|
-
import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
|
36
|
+
|
29
37
|
import {IDistributionService} from "./service/IDistributionService.sol";
|
30
38
|
import {IPoolService} from "./service/IPoolService.sol";
|
31
39
|
import {IProductService} from "./service/IProductService.sol";
|
32
|
-
import {
|
40
|
+
import {IPolicyService} from "./service/IPolicyService.sol";
|
41
|
+
import {IBundleService} from "./service/IBundleService.sol";
|
33
42
|
|
34
43
|
contract Instance is
|
35
|
-
AccessManagedSimple,
|
36
|
-
KeyValueStore,
|
37
44
|
IInstance,
|
38
|
-
|
45
|
+
AccessManagedUpgradeable,
|
39
46
|
Registerable
|
40
47
|
{
|
48
|
+
/* error ErrorInstanceInstanceReaderInstanceMismatch(address expectedInstance, address foundInstance);
|
41
49
|
|
42
|
-
|
43
|
-
|
44
|
-
|
50
|
+
error InstanceErrorBundleManagerAlreadySet();
|
51
|
+
error InstanceErrorBundleManagerAuthorityMismatch();
|
52
|
+
error InstanceErrorBundleManagerInstanceMismatch(address expectedInstance, address foundInstance);
|
45
53
|
|
46
|
-
|
54
|
+
error InstanceErrorAccessManagerAlreadySet();
|
55
|
+
error InstanceErrorAccessManagerAuthorityMismatch();
|
47
56
|
|
48
|
-
|
57
|
+
error InstanceErrorInstanceStoreAlreadySet();
|
58
|
+
error InstanceErrorInstanceStoreAuthorityMismatch();*/
|
49
59
|
|
50
|
-
|
51
|
-
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
52
|
-
RoleId [] internal _roles;
|
60
|
+
uint256 public constant GIF_MAJOR_VERSION = 3;
|
53
61
|
|
54
|
-
|
62
|
+
bool private _initialized;
|
55
63
|
|
56
|
-
|
64
|
+
InstanceAccessManager internal _accessManager;
|
57
65
|
InstanceReader internal _instanceReader;
|
58
66
|
BundleManager internal _bundleManager;
|
67
|
+
InstanceStore internal _instanceStore;
|
59
68
|
|
60
|
-
|
61
|
-
|
62
|
-
|
69
|
+
modifier onlyChainNft() {
|
70
|
+
if(msg.sender != getRegistry().getChainNftAddress()) {
|
71
|
+
revert();
|
72
|
+
}
|
73
|
+
_;
|
63
74
|
}
|
64
75
|
|
65
|
-
function initialize(address
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
_initializeRegisterable(registryAddress, registryNftId, INSTANCE(), false, initialOwner, "");
|
75
|
-
|
76
|
-
_registerInterface(type(IInstance).interfaceId);
|
77
|
-
_initialized = true;
|
78
|
-
}
|
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, "");
|
79
84
|
|
80
|
-
|
81
|
-
function createStandardRole(RoleId roleId, string memory name) external restricted() {
|
82
|
-
_createRole(roleId, name, false, true);
|
85
|
+
registerInterface(type(IInstance).interfaceId);
|
83
86
|
}
|
84
87
|
|
85
|
-
|
86
|
-
_createRole(roleId, name, true, true);
|
87
|
-
}
|
88
|
+
//--- Roles ------------------------------------------------------------//
|
88
89
|
|
89
|
-
function
|
90
|
-
|
91
|
-
|
92
|
-
|
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);
|
93
96
|
}
|
94
97
|
|
95
|
-
function
|
96
|
-
|
98
|
+
function grantRole(RoleId roleId, address account)
|
99
|
+
external
|
100
|
+
restricted // INSTANCE_OWNER_ROLE
|
101
|
+
{
|
102
|
+
_accessManager.grantRole(roleId, account);
|
97
103
|
}
|
98
104
|
|
99
|
-
function
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
}
|
105
|
-
|
106
|
-
if (getState(roleKey) != ACTIVE()) {
|
107
|
-
revert IAccess.ErrorRoleIdNotActive(roleId);
|
108
|
-
}
|
109
|
-
|
110
|
-
if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
|
111
|
-
_accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
|
112
|
-
EnumerableSet.add(_roleMembers[roleId], member);
|
113
|
-
return true;
|
114
|
-
}
|
115
|
-
|
116
|
-
return false;
|
105
|
+
function revokeRole(RoleId roleId, address account)
|
106
|
+
external
|
107
|
+
restricted // INSTANCE_OWNER_ROLE
|
108
|
+
{
|
109
|
+
_accessManager.revokeRole(roleId, account);
|
117
110
|
}
|
118
111
|
|
119
|
-
|
120
|
-
Key32 roleKey = toRoleKey32(roleId);
|
121
|
-
|
122
|
-
if (!exists(roleKey)) {
|
123
|
-
revert IAccess.ErrorRevokeNonexstentRole(roleId);
|
124
|
-
}
|
125
|
-
|
126
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
127
|
-
_accessManager.revokeRole(roleId.toInt(), member);
|
128
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
129
|
-
return true;
|
130
|
-
}
|
112
|
+
//--- Targets ------------------------------------------------------------//
|
131
113
|
|
132
|
-
|
114
|
+
function createTarget(address target, string memory name)
|
115
|
+
external
|
116
|
+
restricted // INSTANCE_OWNER_ROLE
|
117
|
+
{
|
118
|
+
_accessManager.createTarget(target, name);
|
133
119
|
}
|
134
120
|
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
146
|
-
_accessManager.renounceRole(roleId.toInt(), member);
|
147
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
148
|
-
return true;
|
149
|
-
}
|
150
|
-
|
151
|
-
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);
|
152
130
|
}
|
153
131
|
|
154
|
-
function
|
155
|
-
|
132
|
+
function setTargetLocked(address target, bool locked)
|
133
|
+
external
|
134
|
+
restricted // INSTANCE_OWNER_ROLE
|
135
|
+
{
|
136
|
+
_accessManager.setTargetLockedByInstance(target, locked);
|
156
137
|
}
|
157
138
|
|
158
|
-
|
159
|
-
return _roles[idx];
|
160
|
-
}
|
139
|
+
//--- ITransferInterceptor ------------------------------------------------------------//
|
161
140
|
|
162
|
-
function
|
163
|
-
|
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);
|
164
144
|
}
|
165
145
|
|
166
|
-
function
|
167
|
-
|
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);
|
168
149
|
}
|
169
150
|
|
170
|
-
|
171
|
-
return EnumerableSet.at(_roleMembers[roleId], idx);
|
172
|
-
}
|
151
|
+
//--- initial setup functions -------------------------------------------//
|
173
152
|
|
174
|
-
function
|
175
|
-
if (
|
176
|
-
|
153
|
+
function setInstanceAccessManager(InstanceAccessManager accessManager) external restricted {
|
154
|
+
if(address(_accessManager) != address(0)) {
|
155
|
+
revert ErrorInstanceInstanceAccessManagerAlreadySet(address(_accessManager));
|
177
156
|
}
|
178
|
-
|
179
|
-
|
180
|
-
_role[role.name] = roleId;
|
181
|
-
_roles.push(roleId);
|
182
|
-
|
183
|
-
create(toRoleKey32(roleId), abi.encode(role));
|
184
|
-
}
|
185
|
-
|
186
|
-
//--- Target ------------------------------------------------------//
|
187
|
-
function createTarget(address target, IAccess.TargetInfo memory targetInfo) external restricted() {
|
188
|
-
_validateTargetParameters(target, targetInfo);
|
189
|
-
create(toTargetKey32(target), abi.encode(targetInfo));
|
190
|
-
}
|
191
|
-
|
192
|
-
function setTargetClosed(address target, bool closed) external restricted() {
|
193
|
-
if (!exists(toTargetKey32(target))) {
|
194
|
-
revert IAccess.ErrorTargetDoesNotExist(target);
|
157
|
+
if(accessManager.authority() != authority()) {
|
158
|
+
revert ErrorInstanceInstanceAccessManagerAuthorityMismatch(authority());
|
195
159
|
}
|
196
|
-
|
197
|
-
_accessManager.setTargetClosed(target, closed);
|
198
|
-
}
|
199
|
-
|
200
|
-
//--- ProductSetup ------------------------------------------------------//
|
201
|
-
function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external restricted() {
|
202
|
-
create(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup));
|
203
|
-
}
|
204
|
-
|
205
|
-
function updateProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup, StateId newState) external restricted() {
|
206
|
-
update(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup), newState);
|
207
|
-
}
|
208
|
-
|
209
|
-
function updateProductSetupState(NftId productNftId, StateId newState) external restricted() {
|
210
|
-
updateState(_toNftKey32(productNftId, PRODUCT()), newState);
|
211
|
-
}
|
212
|
-
|
213
|
-
//--- DistributionSetup ------------------------------------------------------//
|
214
|
-
function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external restricted() {
|
215
|
-
create(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup));
|
216
|
-
}
|
217
|
-
|
218
|
-
function updateDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup, StateId newState) external restricted() {
|
219
|
-
update(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup), newState);
|
220
|
-
}
|
221
|
-
|
222
|
-
function updateDistributionSetupState(NftId distributionNftId, StateId newState) external restricted() {
|
223
|
-
updateState(_toNftKey32(distributionNftId, DISTRIBUTION()), newState);
|
224
|
-
}
|
225
|
-
|
226
|
-
//--- PoolSetup ------------------------------------------------------//
|
227
|
-
function createPoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup) external restricted() {
|
228
|
-
create(_toNftKey32(poolNftId, POOL()), abi.encode(setup));
|
229
|
-
}
|
230
|
-
|
231
|
-
function updatePoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup, StateId newState) external restricted() {
|
232
|
-
update(_toNftKey32(poolNftId, POOL()), abi.encode(setup), newState);
|
233
|
-
}
|
234
|
-
|
235
|
-
function updatePoolSetupState(NftId poolNftId, StateId newState) external restricted() {
|
236
|
-
updateState(_toNftKey32(poolNftId, POOL()), newState);
|
237
|
-
}
|
238
|
-
|
239
|
-
//--- DistributorType ---------------------------------------------------//
|
240
|
-
function createDistributorType(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
241
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
242
|
-
}
|
243
|
-
|
244
|
-
function updateDistributorType(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
245
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
246
|
-
}
|
247
|
-
|
248
|
-
function updateDistributorTypeState(NftId policyNftId, StateId newState) external restricted() {
|
249
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
250
|
-
}
|
251
|
-
|
252
|
-
//--- Distributor -------------------------------------------------------//
|
253
|
-
function createDistributor(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
254
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
255
|
-
}
|
256
|
-
|
257
|
-
function updateDistributor(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
258
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
259
|
-
}
|
260
|
-
|
261
|
-
function updateDistributorState(NftId policyNftId, StateId newState) external restricted() {
|
262
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
263
|
-
}
|
264
|
-
|
265
|
-
//--- Referral ----------------------------------------------------------//
|
266
|
-
function createReferral(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
267
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
268
|
-
}
|
269
|
-
|
270
|
-
function updateReferral(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
271
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
272
|
-
}
|
273
|
-
|
274
|
-
function updateReferralState(NftId policyNftId, StateId newState) external restricted() {
|
275
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
276
|
-
}
|
277
|
-
|
278
|
-
//--- Bundle ------------------------------------------------------------//
|
279
|
-
function createBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle) external restricted() {
|
280
|
-
create(toBundleKey32(bundleNftId), abi.encode(bundle));
|
281
|
-
}
|
282
|
-
|
283
|
-
function updateBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle, StateId newState) external restricted() {
|
284
|
-
update(toBundleKey32(bundleNftId), abi.encode(bundle), newState);
|
285
|
-
}
|
286
|
-
|
287
|
-
function updateBundleState(NftId bundleNftId, StateId newState) external restricted() {
|
288
|
-
updateState(toBundleKey32(bundleNftId), newState);
|
289
|
-
}
|
290
|
-
|
291
|
-
//--- Risk --------------------------------------------------------------//
|
292
|
-
function createRisk(RiskId riskId, IRisk.RiskInfo memory risk) external restricted() {
|
293
|
-
create(riskId.toKey32(), abi.encode(risk));
|
294
|
-
}
|
295
|
-
|
296
|
-
function updateRisk(RiskId riskId, IRisk.RiskInfo memory risk, StateId newState) external restricted() {
|
297
|
-
update(riskId.toKey32(), abi.encode(risk), newState);
|
298
|
-
}
|
299
|
-
|
300
|
-
function updateRiskState(RiskId riskId, StateId newState) external restricted() {
|
301
|
-
updateState(riskId.toKey32(), newState);
|
302
|
-
}
|
303
|
-
|
304
|
-
//--- Policy ------------------------------------------------------------//
|
305
|
-
function createPolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy) external restricted() {
|
306
|
-
create(toPolicyKey32(policyNftId), abi.encode(policy));
|
307
|
-
}
|
308
|
-
|
309
|
-
function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
310
|
-
update(toPolicyKey32(policyNftId), abi.encode(policy), newState);
|
311
|
-
}
|
312
|
-
|
313
|
-
function updatePolicyState(NftId policyNftId, StateId newState) external restricted() {
|
314
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
315
|
-
}
|
316
|
-
|
317
|
-
//--- Claim -------------------------------------------------------------//
|
318
|
-
function createClaim(NftId policyNftId, NumberId claimId, IPolicy.ClaimInfo memory claim) external restricted() {
|
319
|
-
create(toPolicyKey32(policyNftId), abi.encode(claim));
|
320
|
-
}
|
321
|
-
|
322
|
-
function updateClaim(NftId policyNftId, NumberId claimId, IPolicy.ClaimInfo memory claim, StateId newState) external restricted() {
|
323
|
-
update(toPolicyKey32(policyNftId), abi.encode(claim), newState);
|
324
|
-
}
|
325
|
-
|
326
|
-
function updateClaimState(NftId policyNftId, StateId newState) external restricted() {
|
327
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
328
|
-
}
|
329
|
-
|
330
|
-
//--- Payout ------------------------------------------------------------//
|
331
|
-
function createPayout(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
332
|
-
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
333
|
-
}
|
334
|
-
|
335
|
-
function updateClaim(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
336
|
-
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
337
|
-
}
|
338
|
-
|
339
|
-
function updatePayoutState(NftId policyNftId, StateId newState) external restricted() {
|
340
|
-
updateState(toPolicyKey32(policyNftId), newState);
|
160
|
+
_accessManager = accessManager;
|
341
161
|
}
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
pure
|
347
|
-
returns (IAccess.RoleInfo memory role)
|
348
|
-
{
|
349
|
-
return IAccess.RoleInfo(
|
350
|
-
ShortStrings.toShortString(name),
|
351
|
-
isCustom);
|
352
|
-
}
|
353
|
-
|
354
|
-
function _validateRoleParameters(
|
355
|
-
RoleId roleId,
|
356
|
-
string memory name,
|
357
|
-
bool isCustom
|
358
|
-
)
|
359
|
-
internal
|
360
|
-
view
|
361
|
-
returns (
|
362
|
-
bool roleExists,
|
363
|
-
bool roleIsCustom
|
364
|
-
)
|
365
|
-
{
|
366
|
-
Key32 roleKey = toRoleKey32(roleId);
|
367
|
-
roleExists = exists(roleKey);
|
368
|
-
if (roleExists) {
|
369
|
-
roleIsCustom = abi.decode(getData(roleKey), (IAccess.RoleInfo)).isCustom;
|
370
|
-
} else {
|
371
|
-
roleIsCustom = isCustom;
|
162
|
+
|
163
|
+
function setBundleManager(BundleManager bundleManager) external restricted() {
|
164
|
+
if(address(_bundleManager) != address(0)) {
|
165
|
+
revert ErrorInstanceBundleManagerAlreadySet(address(_bundleManager));
|
372
166
|
}
|
373
|
-
|
374
|
-
|
375
|
-
uint64 roleIdInt = RoleId.unwrap(roleId);
|
376
|
-
if(roleIdInt == ADMIN_ROLE || roleIdInt == PUBLIC_ROLE) {
|
377
|
-
revert IAccess.ErrorRoleIdInvalid(roleId);
|
167
|
+
if(bundleManager.getInstance() != Instance(this)) {
|
168
|
+
revert ErrorInstanceBundleManagerInstanceMismatch(address(this));
|
378
169
|
}
|
379
|
-
|
380
|
-
|
381
|
-
revert IAccess.ErrorRoleIdTooSmall(roleId);
|
382
|
-
} else if (roleIsCustom && roleIdInt >= CUSTOM_ROLE_ID_MIN) {
|
383
|
-
revert IAccess.ErrorRoleIdTooBig(roleId);
|
170
|
+
if(bundleManager.authority() != authority()) {
|
171
|
+
revert ErrorInstanceBundleManagerAuthorityMismatch(authority());
|
384
172
|
}
|
173
|
+
_bundleManager = bundleManager;
|
174
|
+
}
|
385
175
|
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
revert IAccess.ErrorRoleNameEmpty(roleId);
|
176
|
+
function setInstanceReader(InstanceReader instanceReader) external restricted() {
|
177
|
+
if(instanceReader.getInstance() != Instance(this)) {
|
178
|
+
revert ErrorInstanceInstanceReaderInstanceMismatch(address(this));
|
390
179
|
}
|
391
180
|
|
392
|
-
|
393
|
-
revert IAccess.ErrorRoleNameNotUnique(_role[nameShort], nameShort);
|
394
|
-
}
|
181
|
+
_instanceReader = instanceReader;
|
395
182
|
}
|
396
183
|
|
397
|
-
|
184
|
+
//--- external view functions -------------------------------------------//
|
398
185
|
|
186
|
+
function getInstanceReader() external view returns (InstanceReader) {
|
187
|
+
return _instanceReader;
|
399
188
|
}
|
400
189
|
|
401
|
-
function
|
402
|
-
return
|
403
|
-
}
|
404
|
-
|
405
|
-
function toTargetKey32(address target) public pure returns (Key32) {
|
406
|
-
return Key32Lib.toKey32(TARGET(), KeyId.wrap(bytes20(target)));
|
190
|
+
function getBundleManager() external view returns (BundleManager) {
|
191
|
+
return _bundleManager;
|
407
192
|
}
|
408
193
|
|
409
|
-
function
|
410
|
-
return
|
194
|
+
function getInstanceAccessManager() external view returns (InstanceAccessManager) {
|
195
|
+
return _accessManager;
|
411
196
|
}
|
412
197
|
|
413
|
-
function
|
414
|
-
|
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;
|
415
206
|
}
|
416
207
|
|
417
|
-
function
|
418
|
-
return
|
208
|
+
function getInstanceStore() external view returns (InstanceStore) {
|
209
|
+
return _instanceStore;
|
419
210
|
}
|
420
211
|
|
421
|
-
function
|
422
|
-
return
|
212
|
+
function getMajorVersion() external pure returns (VersionPart majorVersion) {
|
213
|
+
return VersionPartLib.toVersionPart(GIF_MAJOR_VERSION);
|
423
214
|
}
|
424
215
|
|
425
216
|
function getDistributionService() external view returns (IDistributionService) {
|
426
|
-
return IDistributionService(
|
217
|
+
return IDistributionService(getRegistry().getServiceAddress(DISTRIBUTION(), VersionPart.wrap(3)));
|
427
218
|
}
|
428
219
|
|
429
220
|
function getProductService() external view returns (IProductService) {
|
430
|
-
return IProductService(
|
221
|
+
return IProductService(getRegistry().getServiceAddress(PRODUCT(), VersionPart.wrap(3)));
|
431
222
|
}
|
432
223
|
|
433
224
|
function getPoolService() external view returns (IPoolService) {
|
434
|
-
return IPoolService(
|
225
|
+
return IPoolService(getRegistry().getServiceAddress(POOL(), VersionPart.wrap(3)));
|
435
226
|
}
|
436
227
|
|
437
|
-
function
|
438
|
-
|
439
|
-
_instanceReader = instanceReader;
|
228
|
+
function getPolicyService() external view returns (IPolicyService) {
|
229
|
+
return IPolicyService(getRegistry().getServiceAddress(POLICY(), VersionPart.wrap(3)));
|
440
230
|
}
|
441
231
|
|
442
|
-
function
|
443
|
-
return
|
444
|
-
}
|
445
|
-
|
446
|
-
function setBundleManager(BundleManager bundleManager) external restricted() {
|
447
|
-
require(address(_bundleManager) == address(0), "BundleManager is set");
|
448
|
-
_bundleManager = bundleManager;
|
232
|
+
function getBundleService() external view returns (IBundleService) {
|
233
|
+
return IBundleService(getRegistry().getServiceAddress(BUNDLE(), VersionPart.wrap(3)));
|
449
234
|
}
|
450
235
|
|
451
|
-
|
452
|
-
|
453
|
-
}
|
454
|
-
}
|
236
|
+
//--- internal view/pure functions --------------------------------------//
|
237
|
+
}
|