@etherisc/gif-next 0.0.2-e6d2794-419 → 0.0.2-e79d227-681
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +58 -9
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +105 -65
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +2 -2
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +67 -11
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +60 -32
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +40 -3
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +19 -0
- package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +4 -0
- package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +1196 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +68 -5
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +188 -369
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +82 -22
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +141 -314
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +323 -223
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +140 -104
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +132 -115
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +172 -31
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1429 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +502 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1979 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +470 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1430 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1177 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1606 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2281 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +808 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +104 -36
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +56 -91
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +130 -130
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +180 -140
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +59 -86
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +697 -146
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +121 -250
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +99 -87
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +340 -263
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +810 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +46 -5
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ObjectManager.sol/ObjectManager.json → ObjectSet.sol/ObjectSet.json} +6 -6
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.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/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +138 -332
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +84 -24
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +107 -103
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +43 -9
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +114 -300
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +147 -191
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +119 -83
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +160 -383
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +114 -22
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +430 -204
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +160 -92
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +244 -25
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +118 -168
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +422 -215
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +126 -366
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +569 -403
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +139 -87
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +124 -181
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +89 -89
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +168 -319
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +82 -22
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +311 -187
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +139 -103
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +68 -7
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +176 -6
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +344 -120
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +114 -85
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +155 -116
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/product/{IProductService.sol/IProductService.json → IRiskService.sol/IRiskService.json} +31 -2
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +447 -317
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +138 -94
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +218 -307
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +117 -117
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +166 -317
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +638 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +718 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +346 -22
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +42 -146
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +573 -80
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +298 -145
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +94 -284
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +91 -75
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +47 -6
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1067 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +66 -8
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +2 -2
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +73 -274
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +606 -258
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +168 -106
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +47 -112
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +488 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +66 -77
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +541 -19
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +96 -103
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +36 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +36 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +16 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +15 -47
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +29 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +29 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +106 -303
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +42 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/{NftIdSetManager.sol/NftIdSetManager.json → NftIdSet.sol/NftIdSet.json} +4 -4
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +22 -57
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +19 -141
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +58 -89
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +47 -112
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +697 -25
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +395 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +111 -114
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +29 -21
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +73 -93
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +190 -379
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +46 -5
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +118 -99
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +6 -11
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +87 -165
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +95 -79
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +177 -131
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +59 -23
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +61 -8
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +28 -4
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +7 -2
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +19 -19
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +99 -5
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +50 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +15 -2
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +23 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +9 -3
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +52 -2
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +21 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +3 -3
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/authorization/AccessAdmin.sol +83 -58
- package/contracts/authorization/Authorization.sol +111 -40
- package/contracts/authorization/IAccess.sol +1 -0
- package/contracts/authorization/IAccessAdmin.sol +4 -3
- package/contracts/authorization/IAuthorization.sol +13 -7
- package/contracts/authorization/IServiceAuthorization.sol +3 -1
- package/contracts/authorization/ReleaseAccessManager.sol +38 -0
- package/contracts/authorization/ServiceAuthorization.sol +26 -10
- package/contracts/distribution/BasicDistribution.sol +8 -18
- package/contracts/distribution/BasicDistributionAuthorization.sol +6 -2
- package/contracts/distribution/Distribution.sol +33 -32
- package/contracts/distribution/DistributionService.sol +142 -90
- package/contracts/distribution/DistributionServiceManager.sol +8 -11
- package/contracts/distribution/IDistributionComponent.sol +9 -5
- package/contracts/distribution/IDistributionService.sol +23 -8
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +86 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +431 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +44 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +58 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +108 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +345 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +20 -34
- package/contracts/instance/IInstanceService.sol +11 -29
- package/contracts/instance/Instance.sol +44 -57
- package/contracts/instance/InstanceAdmin.sol +48 -36
- package/contracts/instance/InstanceAuthorizationV3.sol +50 -35
- package/contracts/instance/InstanceReader.sol +199 -25
- package/contracts/instance/InstanceService.sol +96 -115
- package/contracts/instance/InstanceServiceManager.sol +8 -13
- package/contracts/instance/InstanceStore.sol +12 -1
- package/contracts/instance/RiskSet.sol +119 -0
- package/contracts/instance/base/ObjectLifecycle.sol +9 -4
- package/contracts/instance/base/ObjectSet.sol +78 -0
- package/contracts/instance/module/IBundle.sol +1 -1
- package/contracts/instance/module/IComponents.sol +11 -13
- package/contracts/instance/module/IDistribution.sol +0 -1
- package/contracts/instance/module/IPolicy.sol +26 -25
- package/contracts/instance/module/IRisk.sol +1 -0
- package/contracts/mock/Dip.sol +1 -1
- package/contracts/oracle/BasicOracle.sol +0 -1
- package/contracts/oracle/IOracleComponent.sol +2 -1
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +21 -22
- package/contracts/oracle/OracleService.sol +112 -81
- package/contracts/oracle/OracleServiceManager.sol +8 -11
- package/contracts/pool/BasicPool.sol +38 -27
- package/contracts/pool/BasicPoolAuthorization.sol +22 -3
- package/contracts/pool/BundleService.sol +228 -101
- package/contracts/pool/BundleServiceManager.sol +8 -11
- package/contracts/pool/IBundleService.sol +33 -17
- package/contracts/pool/IPoolComponent.sol +20 -10
- package/contracts/pool/IPoolService.sol +53 -50
- package/contracts/pool/Pool.sol +150 -116
- package/contracts/pool/PoolService.sol +335 -175
- package/contracts/pool/PoolServiceManager.sol +6 -9
- package/contracts/product/ApplicationService.sol +82 -77
- package/contracts/product/ApplicationServiceManager.sol +6 -6
- package/contracts/product/BasicProduct.sol +11 -44
- package/contracts/product/BasicProductAuthorization.sol +2 -0
- package/contracts/product/ClaimService.sol +318 -146
- package/contracts/product/ClaimServiceManager.sol +6 -6
- package/contracts/product/IApplicationService.sol +6 -2
- package/contracts/product/IClaimService.sol +31 -7
- package/contracts/product/IPolicyService.sol +46 -34
- package/contracts/product/IPricingService.sol +10 -10
- package/contracts/product/IProductComponent.sol +24 -4
- package/contracts/product/{IProductService.sol → IRiskService.sol} +1 -1
- package/contracts/product/PolicyService.sol +515 -257
- package/contracts/product/PolicyServiceManager.sol +6 -9
- package/contracts/product/PricingService.sol +54 -54
- package/contracts/product/PricingServiceManager.sol +5 -8
- package/contracts/product/Product.sol +126 -91
- package/contracts/product/{ProductService.sol → RiskService.sol} +27 -44
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +68 -38
- package/contracts/registry/IRegistry.sol +71 -19
- package/contracts/registry/IRegistryService.sol +3 -10
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +362 -215
- package/contracts/registry/RegistryAdmin.sol +161 -75
- package/contracts/registry/RegistryService.sol +39 -64
- package/contracts/registry/RegistryServiceManager.sol +4 -4
- package/contracts/registry/ReleaseLifecycle.sol +6 -3
- package/contracts/registry/ReleaseRegistry.sol +485 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +22 -47
- package/contracts/registry/TokenRegistry.sol +2 -2
- package/contracts/shared/Component.sol +54 -118
- package/contracts/shared/ComponentService.sol +399 -174
- package/contracts/shared/ComponentServiceManager.sol +10 -7
- package/contracts/shared/ComponentVerifyingService.sol +28 -17
- package/contracts/shared/ContractLib.sol +224 -0
- package/contracts/shared/IComponent.sol +10 -13
- package/contracts/shared/IComponentService.sol +50 -22
- package/contracts/shared/IInstanceLinkedComponent.sol +8 -17
- package/contracts/shared/ILifecycle.sol +3 -1
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IPolicyHolder.sol +12 -22
- package/contracts/shared/IRegisterable.sol +11 -0
- package/contracts/shared/IService.sol +1 -1
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +3 -3
- package/contracts/shared/InstanceLinkedComponent.sol +82 -28
- package/contracts/shared/KeyValueStore.sol +1 -1
- package/contracts/shared/Lifecycle.sol +15 -4
- package/contracts/shared/{NftIdSetManager.sol → NftIdSet.sol} +1 -1
- package/contracts/shared/NftOwnable.sol +29 -9
- package/contracts/shared/PolicyHolder.sol +17 -57
- package/contracts/shared/Registerable.sol +19 -11
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +23 -22
- package/contracts/shared/TokenHandler.sol +358 -27
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +12 -7
- package/contracts/staking/IStakingService.sol +12 -8
- package/contracts/staking/StakeManagerLib.sol +18 -25
- package/contracts/staking/Staking.sol +54 -62
- package/contracts/staking/StakingManager.sol +10 -12
- package/contracts/staking/StakingReader.sol +23 -20
- package/contracts/staking/StakingService.sol +65 -36
- package/contracts/staking/StakingServiceManager.sol +4 -4
- package/contracts/staking/StakingStore.sol +12 -22
- package/contracts/staking/TargetManagerLib.sol +7 -3
- package/contracts/type/Amount.sol +27 -5
- package/contracts/type/Blocknumber.sol +7 -1
- package/contracts/type/ClaimId.sol +6 -1
- package/contracts/type/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/type/NftId.sol +7 -0
- package/contracts/type/ObjectType.sol +21 -18
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/Referral.sol +1 -0
- package/contracts/type/RiskId.sol +30 -4
- package/contracts/type/RoleId.sol +0 -12
- package/contracts/type/Seconds.sol +21 -1
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/Timestamp.sol +11 -1
- package/contracts/type/UFixed.sol +33 -10
- package/contracts/type/Version.sol +3 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +71 -38
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +2 -2
- package/package.json +6 -5
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +0 -4
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +0 -290
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +0 -4
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +0 -390
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -703
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -708
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -702
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -1159
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -617
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/contracts/authorization/IModuleAuthorization.sol +0 -21
- package/contracts/authorization/ModuleAuthorization.sol +0 -78
- package/contracts/instance/BundleManager.sol +0 -126
- package/contracts/instance/base/ObjectManager.sol +0 -79
- package/contracts/product/ProductServiceManager.sol +0 -42
- package/contracts/registry/ReleaseManager.sol +0 -487
- package/contracts/shared/InitializableCustom.sol +0 -177
- /package/contracts/{shared → upgradeability}/IVersionable.sol +0 -0
@@ -3,42 +3,75 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
|
5
5
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
6
|
-
|
7
|
-
import {
|
6
|
+
import {AccessManaged} from "@openzeppelin/contracts/access/manager/AccessManaged.sol";
|
7
|
+
import {Initializable} from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
|
8
8
|
|
9
9
|
import {NftId, NftIdLib} from "../type/NftId.sol";
|
10
|
-
import {VersionPart} from "../type/Version.sol";
|
11
|
-
import {ObjectType, PROTOCOL, REGISTRY,
|
10
|
+
import {VersionPart, VersionPartLib} from "../type/Version.sol";
|
11
|
+
import {ObjectType, ObjectTypeLib, PROTOCOL, REGISTRY, SERVICE, INSTANCE, STAKE, STAKING, PRODUCT, DISTRIBUTION, DISTRIBUTOR, ORACLE, POOL, POLICY, BUNDLE} from "../type/ObjectType.sol";
|
12
12
|
|
13
13
|
import {ChainNft} from "./ChainNft.sol";
|
14
14
|
import {IRegistry} from "./IRegistry.sol";
|
15
15
|
import {IRegisterable} from "../shared/IRegisterable.sol";
|
16
|
-
import {
|
16
|
+
import {IStaking} from "../staking/IStaking.sol";
|
17
|
+
import {ReleaseRegistry} from "./ReleaseRegistry.sol";
|
17
18
|
import {TokenRegistry} from "./TokenRegistry.sol";
|
18
19
|
import {RegistryAdmin} from "./RegistryAdmin.sol";
|
19
20
|
|
20
|
-
|
21
|
+
/// @dev IMPORTANT
|
21
22
|
// Each NFT minted by registry is accosiated with:
|
22
23
|
// 1) NFT owner
|
23
24
|
// 2) registred contract OR object stored in registered (parent) contract
|
24
|
-
//
|
25
|
-
// 1) IService address by
|
26
|
-
// 2)
|
27
|
-
// 3)
|
28
|
-
// 4)
|
29
|
-
|
25
|
+
// Five registration flows:
|
26
|
+
// 1) registerService() -> registers IService address by ReleaseRegistry (ReleaseRegistry is set at deployment time)
|
27
|
+
// 2) register() -> registers IRegisterable address by IService (INSTANCE, PRODUCT, POOL, DISTRIBUTION, ORACLE)
|
28
|
+
// 3) -> registers object by IService (POLICY, BUNDLE, STAKE)
|
29
|
+
// 4) registerWithCustomType() -> registers IRegisterable address with custom type by IService
|
30
|
+
// 5) registerRegistry() -> registers IRegistry address (from different chain) by GifAdmin. Works ONLY on mainnet.
|
31
|
+
// Note: getters by address MUST not be used with this address (will return 0 or data related to different object or even revert)
|
32
|
+
|
33
|
+
/// @dev Chain Registry contract implementing IRegistry.
|
34
|
+
/// IRegistry for method details.
|
30
35
|
contract Registry is
|
31
|
-
|
36
|
+
Initializable,
|
37
|
+
AccessManaged,
|
32
38
|
IRegistry
|
33
39
|
{
|
34
|
-
|
40
|
+
/// @dev Protocol NFT ID
|
41
|
+
NftId public immutable PROTOCOL_NFT_ID;
|
42
|
+
|
43
|
+
/// @dev Gobal registry NFT ID
|
44
|
+
NftId public immutable GLOBAL_REGISTRY_NFT_ID;
|
45
|
+
|
46
|
+
/// @dev Gobal registry address on mainnet.
|
47
|
+
address public immutable GLOBAL_REGISTRY_ADDRESS;
|
48
|
+
|
49
|
+
/// @dev Registry NFT ID
|
50
|
+
NftId public immutable REGISTRY_NFT_ID;
|
51
|
+
|
52
|
+
/// @dev Deployer address that authorizes the initializer of this contract.
|
53
|
+
address public immutable DEPLOYER;
|
54
|
+
|
55
|
+
/// @dev Registry admin contract for this registry.
|
56
|
+
RegistryAdmin public immutable ADMIN;
|
57
|
+
|
58
|
+
/// @dev Chain NFT contract that keeps track of the ownership of all registered objects.
|
59
|
+
ChainNft public immutable CHAIN_NFT;
|
60
|
+
|
61
|
+
address public constant NFT_LOCK_ADDRESS = address(0x1);
|
35
62
|
uint256 public constant REGISTRY_TOKEN_SEQUENCE_ID = 2;
|
36
63
|
uint256 public constant STAKING_TOKEN_SEQUENCE_ID = 3;
|
37
64
|
string public constant EMPTY_URI = "";
|
38
65
|
|
66
|
+
/// @dev keep track of different registries on different chains
|
67
|
+
mapping(uint256 chainId => NftId registryNftId) private _registryNftIdByChainId;
|
68
|
+
uint256[] private _chainId;
|
69
|
+
|
70
|
+
/// @dev keep track of object info and address reverse lookup
|
39
71
|
mapping(NftId nftId => ObjectInfo info) private _info;
|
40
72
|
mapping(address object => NftId nftId) private _nftIdByAddress;
|
41
73
|
|
74
|
+
/// @dev keep track of service addresses by version and domain
|
42
75
|
mapping(VersionPart version => mapping(ObjectType serviceDomain => address)) private _service;
|
43
76
|
|
44
77
|
mapping(ObjectType objectType => bool) private _coreTypes;
|
@@ -49,143 +82,194 @@ contract Registry is
|
|
49
82
|
mapping(ObjectType objectType => mapping(
|
50
83
|
ObjectType parentType => bool)) private _coreObjectCombinations;
|
51
84
|
|
52
|
-
|
53
|
-
ChainNft public immutable _chainNft;
|
54
|
-
|
55
|
-
NftId public immutable _protocolNftId;
|
56
|
-
NftId public immutable _registryNftId;
|
57
|
-
NftId public _stakingNftId;
|
58
|
-
|
59
|
-
address public _tokenRegistryAddress;
|
60
|
-
address public _stakingAddress;
|
61
|
-
ReleaseManager public _releaseManager;
|
62
|
-
|
63
|
-
// TODO
|
64
|
-
// 1). Registry and ReleaseManager must be treated as whole single entity.
|
65
|
-
// But current limitations of EVM does not allow it -> require it to be splitted
|
66
|
-
// 2). Keep onlyReleaseManager modifier
|
67
|
-
// 3). Delete onlyRegistryService in favor of restricted
|
68
|
-
// 4). (For GlobalRegistry ONLY) make registerChainRegistry() restricted to GIF_ADMIN_ROLE
|
69
|
-
modifier onlyRegistryService() {
|
70
|
-
if(!_releaseManager.isActiveRegistryService(msg.sender)) {
|
71
|
-
revert ErrorRegistryCallerNotRegistryService();
|
72
|
-
}
|
73
|
-
_;
|
74
|
-
}
|
85
|
+
NftId private _stakingNftId;
|
75
86
|
|
87
|
+
ReleaseRegistry private _releaseRegistry;
|
88
|
+
address private _tokenRegistryAddress;
|
89
|
+
address private _stakingAddress;
|
76
90
|
|
77
|
-
modifier
|
78
|
-
if(msg.sender !=
|
79
|
-
revert
|
91
|
+
modifier onlyDeployer() {
|
92
|
+
if (msg.sender != DEPLOYER) {
|
93
|
+
revert ErrorRegistryCallerNotDeployer();
|
80
94
|
}
|
81
95
|
_;
|
82
96
|
}
|
83
97
|
|
84
|
-
|
85
|
-
constructor(
|
86
|
-
|
98
|
+
// TODO when create2 strategy is added to ignition:
|
99
|
+
// 1. move globalRegistry arg out from constructor into initialize()
|
100
|
+
// 2. add testRegistry_deployChainRegistryAtGlobalRegistryAddress
|
101
|
+
/// @dev Creates the registry contract and populates it with the protocol and registry objects.
|
102
|
+
/// Internally deploys the ChainNft contract.
|
103
|
+
constructor(RegistryAdmin admin, address globalRegistry)
|
104
|
+
AccessManaged(admin.authority())
|
87
105
|
{
|
88
|
-
|
106
|
+
DEPLOYER = msg.sender;
|
107
|
+
ADMIN = admin;
|
108
|
+
GLOBAL_REGISTRY_ADDRESS = _getGlobalRegistryAddress(globalRegistry);
|
109
|
+
|
89
110
|
// deploy NFT
|
90
|
-
|
111
|
+
CHAIN_NFT = new ChainNft(address(this));
|
112
|
+
GLOBAL_REGISTRY_NFT_ID = NftIdLib.toNftId(
|
113
|
+
CHAIN_NFT.GLOBAL_REGISTRY_ID());
|
91
114
|
|
92
115
|
// initial registry setup
|
93
|
-
|
94
|
-
|
116
|
+
PROTOCOL_NFT_ID = _registerProtocol();
|
117
|
+
REGISTRY_NFT_ID = _registerRegistry();
|
95
118
|
|
96
119
|
// set object types and object parent relations
|
97
120
|
_setupValidCoreTypesAndCombinations();
|
98
121
|
}
|
99
122
|
|
100
123
|
|
101
|
-
/// @dev
|
102
|
-
/// MUST be called by release
|
124
|
+
/// @dev Wires release registry, token registry and staking contract to this registry.
|
125
|
+
/// MUST be called by release registry.
|
103
126
|
function initialize(
|
104
|
-
address
|
127
|
+
address releaseRegistry,
|
105
128
|
address tokenRegistry,
|
106
129
|
address staking
|
107
130
|
)
|
108
131
|
external
|
109
132
|
initializer()
|
133
|
+
onlyDeployer()
|
110
134
|
{
|
111
|
-
|
135
|
+
// store links to supporting contracts
|
136
|
+
_releaseRegistry = ReleaseRegistry(releaseRegistry);
|
112
137
|
_tokenRegistryAddress = tokenRegistry;
|
113
138
|
_stakingAddress = staking;
|
114
139
|
|
140
|
+
// register staking contract
|
115
141
|
_stakingNftId = _registerStaking();
|
116
142
|
}
|
117
143
|
|
144
|
+
/// @inheritdoc IRegistry
|
145
|
+
function registerRegistry(
|
146
|
+
NftId nftId,
|
147
|
+
uint256 chainId,
|
148
|
+
address registryAddress
|
149
|
+
)
|
150
|
+
external
|
151
|
+
restricted()
|
152
|
+
{
|
153
|
+
// registration of chain registries only allowed on mainnet
|
154
|
+
if (block.chainid != 1) {
|
155
|
+
revert ErrorRegistryNotOnMainnet(block.chainid);
|
156
|
+
}
|
157
|
+
|
158
|
+
// registry chain id is not zero
|
159
|
+
if(chainId == 0) {
|
160
|
+
revert ErrorRegistryChainRegistryChainIdZero(nftId);
|
161
|
+
}
|
162
|
+
|
163
|
+
// registry address is not zero
|
164
|
+
if (registryAddress == address(0)) {
|
165
|
+
revert ErrorRegistryChainRegistryAddressZero(nftId, chainId);
|
166
|
+
}
|
167
|
+
|
168
|
+
// registry nft id matches registry chain id
|
169
|
+
uint256 expectedRegistryId = CHAIN_NFT.calculateTokenId(REGISTRY_TOKEN_SEQUENCE_ID, chainId);
|
170
|
+
if (nftId != NftIdLib.toNftId(expectedRegistryId)) {
|
171
|
+
revert ErrorRegistryChainRegistryNftIdInvalid(nftId, chainId);
|
172
|
+
}
|
173
|
+
|
174
|
+
emit LogChainRegistryRegistration(nftId, chainId, registryAddress);
|
175
|
+
|
176
|
+
_registerRegistryForNft(
|
177
|
+
chainId,
|
178
|
+
ObjectInfo({
|
179
|
+
nftId: nftId,
|
180
|
+
parentNftId: REGISTRY_NFT_ID,
|
181
|
+
objectType: REGISTRY(),
|
182
|
+
isInterceptor: false,
|
183
|
+
objectAddress: registryAddress,
|
184
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
185
|
+
data: ""
|
186
|
+
}),
|
187
|
+
false); // do not update address lookup for objects on a different chain
|
188
|
+
}
|
189
|
+
|
190
|
+
// TODO limit service owner to registry admin?
|
191
|
+
/// @inheritdoc IRegistry
|
118
192
|
function registerService(
|
119
193
|
ObjectInfo memory info,
|
120
194
|
VersionPart version,
|
121
195
|
ObjectType domain
|
122
196
|
)
|
123
197
|
external
|
124
|
-
|
198
|
+
restricted()
|
125
199
|
returns(NftId nftId)
|
126
200
|
{
|
201
|
+
// service address is defined
|
127
202
|
address service = info.objectAddress;
|
128
|
-
/* must be guaranteed by release manager
|
129
203
|
if(service == address(0)) {
|
130
|
-
revert();
|
204
|
+
revert ErrorRegistryServiceAddressZero();
|
131
205
|
}
|
132
206
|
|
207
|
+
// version is defined
|
133
208
|
if(version.eqz()) {
|
134
|
-
revert();
|
209
|
+
revert ErrorRegistryServiceVersionZero(service);
|
210
|
+
}
|
211
|
+
// service domain is defined
|
212
|
+
if(domain.eqz()) {
|
213
|
+
revert ErrorRegistryServiceDomainZero(service, version);
|
135
214
|
}
|
136
215
|
|
216
|
+
// service has proper type
|
137
217
|
if(info.objectType != SERVICE()) {
|
138
|
-
revert();
|
218
|
+
revert ErrorRegistryNotService(service, info.objectType);
|
139
219
|
}
|
140
|
-
if(info.parentType != REGISTRY()) {
|
141
|
-
revert();
|
142
|
-
}
|
143
|
-
info.initialOwner == NFT_LOCK_ADDRESS <- if services are access managed
|
144
|
-
*/
|
145
220
|
|
146
|
-
|
147
|
-
|
221
|
+
// service parent has registry type
|
222
|
+
if(info.parentNftId != REGISTRY_NFT_ID) {
|
223
|
+
revert ErrorRegistryServiceParentNotRegistry(service, version, info.parentNftId);
|
148
224
|
}
|
149
225
|
|
150
|
-
|
151
|
-
|
226
|
+
// service has not already been registered
|
227
|
+
if(_service[version][domain] != address(0)) {
|
228
|
+
revert ErrorRegistryServiceDomainAlreadyRegistered(service, version, domain);
|
152
229
|
}
|
153
|
-
|
154
|
-
_service[version][domain] = service;
|
155
230
|
|
156
|
-
|
231
|
+
_service[version][domain] = service;
|
157
232
|
|
158
233
|
emit LogServiceRegistration(version, domain);
|
234
|
+
|
235
|
+
nftId = _register(info);
|
159
236
|
}
|
160
237
|
|
238
|
+
|
239
|
+
/// @inheritdoc IRegistry
|
161
240
|
function register(ObjectInfo memory info)
|
162
241
|
external
|
163
|
-
|
242
|
+
restricted()
|
164
243
|
returns(NftId nftId)
|
165
244
|
{
|
245
|
+
address objectAddress = info.objectAddress;
|
166
246
|
ObjectType objectType = info.objectType;
|
247
|
+
|
248
|
+
// this indidirectly enforces that the parent is registered
|
249
|
+
// parentType would be zero for a non-registered parent which is never a valid type combination
|
167
250
|
ObjectType parentType = _info[info.parentNftId].objectType;
|
168
251
|
|
169
|
-
//
|
170
|
-
if(
|
171
|
-
{
|
252
|
+
// check type combinations for core objects
|
253
|
+
if(objectAddress == address(0)) {
|
172
254
|
if(_coreObjectCombinations[objectType][parentType] == false) {
|
173
|
-
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
255
|
+
revert ErrorRegistryTypesCombinationInvalid(objectAddress, objectType, parentType);
|
174
256
|
}
|
175
257
|
}
|
176
|
-
|
177
|
-
{
|
258
|
+
// check type combinations for contract objects
|
259
|
+
else {
|
178
260
|
if(_coreContractCombinations[objectType][parentType] == false) {
|
179
|
-
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
261
|
+
revert ErrorRegistryTypesCombinationInvalid(objectAddress, objectType, parentType);
|
180
262
|
}
|
181
263
|
}
|
182
264
|
|
183
265
|
nftId = _register(info);
|
184
266
|
}
|
185
267
|
|
268
|
+
|
269
|
+
/// @inheritdoc IRegistry
|
186
270
|
function registerWithCustomType(ObjectInfo memory info)
|
187
271
|
external
|
188
|
-
|
272
|
+
restricted()
|
189
273
|
returns(NftId nftId)
|
190
274
|
{
|
191
275
|
ObjectType objectType = info.objectType;
|
@@ -196,64 +280,94 @@ contract Registry is
|
|
196
280
|
}
|
197
281
|
|
198
282
|
if(
|
283
|
+
objectType == ObjectTypeLib.zero() ||
|
284
|
+
parentType == ObjectTypeLib.zero() ||
|
199
285
|
parentType == PROTOCOL() ||
|
200
|
-
parentType == REGISTRY() ||
|
201
286
|
parentType == SERVICE()
|
202
287
|
) {
|
203
|
-
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
288
|
+
revert ErrorRegistryTypesCombinationInvalid(info.objectAddress, objectType, parentType);
|
204
289
|
}
|
205
290
|
|
206
|
-
_register(info);
|
291
|
+
nftId = _register(info);
|
207
292
|
}
|
208
293
|
|
209
294
|
|
210
295
|
/// @dev earliest GIF major version
|
211
296
|
function getInitialVersion() external view returns (VersionPart) {
|
212
|
-
return
|
297
|
+
return VersionPartLib.toVersionPart(_releaseRegistry.INITIAL_GIF_VERSION());
|
213
298
|
}
|
214
299
|
|
215
300
|
/// @dev next GIF release version to be released
|
216
301
|
function getNextVersion() external view returns (VersionPart) {
|
217
|
-
return
|
302
|
+
return _releaseRegistry.getNextVersion();
|
218
303
|
}
|
219
304
|
|
220
305
|
/// @dev latest active GIF release version
|
221
306
|
function getLatestVersion() external view returns (VersionPart) {
|
222
|
-
return
|
307
|
+
return _releaseRegistry.getLatestVersion();
|
223
308
|
}
|
224
309
|
|
225
310
|
function getReleaseInfo(VersionPart version) external view returns (ReleaseInfo memory) {
|
226
|
-
return
|
311
|
+
return _releaseRegistry.getReleaseInfo(version);
|
312
|
+
}
|
313
|
+
|
314
|
+
function chainIds() public view returns (uint256) {
|
315
|
+
return _chainId.length;
|
316
|
+
}
|
317
|
+
|
318
|
+
function getChainId(uint256 idx) public view returns (uint256) {
|
319
|
+
return _chainId[idx];
|
320
|
+
}
|
321
|
+
|
322
|
+
function getRegistryNftId(uint256 chainId) public view returns (NftId nftId) {
|
323
|
+
return _registryNftIdByChainId[chainId];
|
227
324
|
}
|
228
325
|
|
229
326
|
function getObjectCount() external view returns (uint256) {
|
230
|
-
return
|
327
|
+
return CHAIN_NFT.totalSupply();
|
231
328
|
}
|
232
329
|
|
233
330
|
function getNftId() external view returns (NftId nftId) {
|
234
|
-
return
|
331
|
+
return REGISTRY_NFT_ID;
|
235
332
|
}
|
236
333
|
|
237
334
|
function getProtocolNftId() external view returns (NftId nftId) {
|
238
|
-
return
|
335
|
+
return PROTOCOL_NFT_ID;
|
239
336
|
}
|
240
337
|
|
241
|
-
function
|
338
|
+
function getNftIdForAddress(address object) external view returns (NftId id) {
|
242
339
|
return _nftIdByAddress[object];
|
243
340
|
}
|
244
341
|
|
245
342
|
function ownerOf(NftId nftId) public view returns (address) {
|
246
|
-
return
|
343
|
+
return CHAIN_NFT.ownerOf(nftId.toInt());
|
344
|
+
}
|
345
|
+
|
346
|
+
function isOwnerOf(NftId nftId, address expectedOwner) public view returns (bool) {
|
347
|
+
return CHAIN_NFT.ownerOf(nftId.toInt()) == expectedOwner;
|
247
348
|
}
|
248
349
|
|
249
350
|
function ownerOf(address contractAddress) public view returns (address) {
|
250
|
-
return
|
351
|
+
return CHAIN_NFT.ownerOf(_nftIdByAddress[contractAddress].toInt());
|
251
352
|
}
|
252
353
|
|
253
354
|
function getObjectInfo(NftId nftId) external view returns (ObjectInfo memory) {
|
254
355
|
return _info[nftId];
|
255
356
|
}
|
256
357
|
|
358
|
+
function isObjectType(address contractAddress, ObjectType expectedObjectType) external view returns (bool) {
|
359
|
+
NftId nftId = _nftIdByAddress[contractAddress];
|
360
|
+
return isObjectType(nftId, expectedObjectType);
|
361
|
+
}
|
362
|
+
|
363
|
+
function isObjectType(NftId nftId, ObjectType expectedObjectType) public view returns (bool) {
|
364
|
+
return _info[nftId].objectType == expectedObjectType;
|
365
|
+
}
|
366
|
+
|
367
|
+
function getObjectAddress(NftId nftId) external view returns (address) {
|
368
|
+
return _info[nftId].objectAddress;
|
369
|
+
}
|
370
|
+
|
257
371
|
function getObjectInfo(address object) external view returns (ObjectInfo memory) {
|
258
372
|
return _info[_nftIdByAddress[object]];
|
259
373
|
}
|
@@ -277,12 +391,10 @@ contract Registry is
|
|
277
391
|
|
278
392
|
function isActiveRelease(VersionPart version) external view returns (bool)
|
279
393
|
{
|
280
|
-
return
|
394
|
+
return _releaseRegistry.isActiveRelease(version);
|
281
395
|
}
|
282
396
|
|
283
397
|
function getStakingAddress() external view returns (address staking) {
|
284
|
-
//return getObjectInfo(_stakingNftId).objectAddress;
|
285
|
-
//return _info[_stakingNftId].objectAddress;
|
286
398
|
return _stakingAddress;
|
287
399
|
}
|
288
400
|
|
@@ -298,20 +410,20 @@ contract Registry is
|
|
298
410
|
service = _service[releaseVersion][serviceDomain];
|
299
411
|
}
|
300
412
|
|
301
|
-
function
|
302
|
-
return address(
|
413
|
+
function getReleaseRegistryAddress() external view returns (address) {
|
414
|
+
return address(_releaseRegistry);
|
303
415
|
}
|
304
416
|
|
305
417
|
function getChainNftAddress() external view override returns (address) {
|
306
|
-
return address(
|
418
|
+
return address(CHAIN_NFT);
|
307
419
|
}
|
308
420
|
|
309
421
|
function getRegistryAdminAddress() external view returns (address) {
|
310
|
-
return address(
|
422
|
+
return address(ADMIN);
|
311
423
|
}
|
312
424
|
|
313
425
|
function getAuthority() external view returns (address) {
|
314
|
-
return
|
426
|
+
return ADMIN.authority();
|
315
427
|
}
|
316
428
|
|
317
429
|
function getOwner() public view returns (address owner) {
|
@@ -331,30 +443,37 @@ contract Registry is
|
|
331
443
|
// Internals
|
332
444
|
|
333
445
|
/// @dev registry protects only against tampering existing records, registering with invalid types pairs and 0 parent address
|
334
|
-
// TODO registration of precompile addresses
|
335
446
|
function _register(ObjectInfo memory info)
|
336
447
|
internal
|
337
448
|
returns(NftId nftId)
|
338
449
|
{
|
339
|
-
ObjectType objectType = info.objectType;
|
450
|
+
ObjectType objectType = info.objectType; // do not care here, never PROTOCOL(), REGISTRY()
|
340
451
|
bool isInterceptor = info.isInterceptor;
|
341
|
-
address objectAddress = info.objectAddress;
|
342
|
-
address owner = info.initialOwner;
|
452
|
+
address objectAddress = info.objectAddress; // do not care here, can be 0
|
453
|
+
address owner = info.initialOwner; // do not care here, can be 0, can be equal info.objectAddress
|
343
454
|
|
344
|
-
NftId parentNftId = info.parentNftId;
|
455
|
+
NftId parentNftId = info.parentNftId; // do not care here, can not be 0
|
345
456
|
ObjectInfo memory parentInfo = _info[parentNftId];
|
346
|
-
|
347
|
-
address parentAddress = parentInfo.objectAddress;
|
457
|
+
address parentAddress = parentInfo.objectAddress; // can be 0
|
348
458
|
|
349
459
|
// parent is contract -> need to check? -> check before minting
|
350
460
|
// special case: staking: to protocol possible as well
|
351
|
-
// special case: global registry nft as parent when not on mainnet -> global registry address is 0
|
352
|
-
// special case: when parentNftId ==
|
353
|
-
// special case: when parentNftId ==
|
354
|
-
|
461
|
+
// NO LONGER TRUE: special case: global registry nft as parent when not on mainnet -> global registry address is 0
|
462
|
+
// special case: when parentNftId == CHAIN_NFT.mint(), check for zero parent address before mint
|
463
|
+
// special case: when parentNftId == CHAIN_NFT.mint() && objectAddress == initialOwner
|
464
|
+
// Parent can have 0 address in case of STAKE for PROTOCOL / CUSTOM_TYPE for POLICY
|
465
|
+
// But it MUST be registered -> parentType != 0 && parentNftId != 0
|
466
|
+
/*if(objectType != STAKE()) {
|
355
467
|
if(parentAddress == address(0)) {
|
356
468
|
revert ErrorRegistryParentAddressZero();
|
357
469
|
}
|
470
|
+
}*/
|
471
|
+
|
472
|
+
// global registry is never parent when not on mainnet
|
473
|
+
if(block.chainid != 1) {
|
474
|
+
if(parentNftId == GLOBAL_REGISTRY_NFT_ID) {
|
475
|
+
revert ErrorRegistryGlobalRegistryAsParent(objectAddress, objectType);
|
476
|
+
}
|
358
477
|
}
|
359
478
|
|
360
479
|
address interceptorAddress = _getInterceptor(
|
@@ -364,23 +483,17 @@ contract Registry is
|
|
364
483
|
parentInfo.isInterceptor,
|
365
484
|
parentAddress);
|
366
485
|
|
367
|
-
uint256 tokenId =
|
486
|
+
uint256 tokenId = CHAIN_NFT.getNextTokenId();
|
368
487
|
nftId = NftIdLib.toNftId(tokenId);
|
369
488
|
info.nftId = nftId;
|
370
|
-
_info[nftId] = info;
|
371
|
-
|
372
|
-
if(objectAddress > address(0)) {
|
373
|
-
if(_nftIdByAddress[objectAddress].gtz()) {
|
374
|
-
revert ErrorRegistryContractAlreadyRegistered(objectAddress);
|
375
|
-
}
|
376
489
|
|
377
|
-
|
378
|
-
|
490
|
+
_info[nftId] = info;
|
491
|
+
_setAddressForNftId(nftId, objectAddress);
|
379
492
|
|
380
493
|
emit LogRegistration(nftId, parentNftId, objectType, isInterceptor, objectAddress, owner);
|
381
494
|
|
382
495
|
// calls nft receiver(1) and interceptor(2)
|
383
|
-
uint256 mintedTokenId =
|
496
|
+
uint256 mintedTokenId = CHAIN_NFT.mint(
|
384
497
|
owner,
|
385
498
|
interceptorAddress,
|
386
499
|
EMPTY_URI);
|
@@ -429,111 +542,155 @@ contract Registry is
|
|
429
542
|
private
|
430
543
|
returns (NftId protocolNftId)
|
431
544
|
{
|
432
|
-
uint256 protocolId =
|
545
|
+
uint256 protocolId = CHAIN_NFT.PROTOCOL_NFT_ID();
|
433
546
|
protocolNftId = NftIdLib.toNftId(protocolId);
|
434
547
|
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
_chainNft.mint(NFT_LOCK_ADDRESS, protocolId);
|
548
|
+
_registerForNft(
|
549
|
+
ObjectInfo({
|
550
|
+
nftId: protocolNftId,
|
551
|
+
parentNftId: NftIdLib.zero(),
|
552
|
+
objectType: PROTOCOL(),
|
553
|
+
isInterceptor: false,
|
554
|
+
objectAddress: address(0),
|
555
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
556
|
+
data: ""}),
|
557
|
+
true);
|
446
558
|
}
|
447
559
|
|
448
|
-
/// @dev registry
|
449
|
-
/// might also register the global registry when not on mainnet
|
560
|
+
/// @dev register this registry
|
450
561
|
function _registerRegistry()
|
451
|
-
|
562
|
+
internal
|
563
|
+
virtual
|
452
564
|
returns (NftId registryNftId)
|
453
565
|
{
|
454
|
-
|
455
|
-
registryNftId =
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
566
|
+
// initial assignment
|
567
|
+
registryNftId = GLOBAL_REGISTRY_NFT_ID;
|
568
|
+
|
569
|
+
// register global registry
|
570
|
+
_registerRegistryForNft(
|
571
|
+
1, // mainnet chain id
|
572
|
+
ObjectInfo({
|
573
|
+
nftId: GLOBAL_REGISTRY_NFT_ID,
|
574
|
+
parentNftId: PROTOCOL_NFT_ID,
|
575
|
+
objectType: REGISTRY(),
|
576
|
+
isInterceptor: false,
|
577
|
+
objectAddress: GLOBAL_REGISTRY_ADDRESS,
|
578
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
579
|
+
data: ""}),
|
580
|
+
block.chainid == 1);// update address lookup for global registry only on mainnet
|
581
|
+
|
582
|
+
// if not on mainnet: register this registry with global registry as parent
|
583
|
+
if (block.chainid != 1) {
|
584
|
+
|
585
|
+
// modify registry nft id to local registry when not on mainnet
|
586
|
+
registryNftId = NftIdLib.toNftId(
|
587
|
+
CHAIN_NFT.calculateTokenId(REGISTRY_TOKEN_SEQUENCE_ID));
|
588
|
+
|
589
|
+
_registerRegistryForNft(
|
590
|
+
block.chainid,
|
591
|
+
ObjectInfo({
|
592
|
+
nftId: registryNftId,
|
593
|
+
parentNftId: GLOBAL_REGISTRY_NFT_ID,
|
594
|
+
objectType: REGISTRY(),
|
595
|
+
isInterceptor: false,
|
596
|
+
objectAddress: address(this),
|
597
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
598
|
+
data: ""}),
|
599
|
+
true);
|
462
600
|
}
|
463
|
-
|
464
|
-
|
465
|
-
|
601
|
+
}
|
602
|
+
|
603
|
+
/// @dev staking registration
|
604
|
+
function _registerRegistryForNft(
|
605
|
+
uint256 chainId,
|
606
|
+
ObjectInfo memory info,
|
607
|
+
bool updateAddressLookup
|
608
|
+
)
|
609
|
+
private
|
610
|
+
{
|
611
|
+
if (!_registryNftIdByChainId[chainId].eqz()) {
|
612
|
+
revert ErrorRegistryChainRegistryAlreadyRegistered(info.nftId, chainId);
|
466
613
|
}
|
467
614
|
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
objectType: REGISTRY(),
|
472
|
-
isInterceptor: false,
|
473
|
-
objectAddress: address(this),
|
474
|
-
initialOwner: NFT_LOCK_ADDRESS,
|
475
|
-
data: ""
|
476
|
-
});
|
615
|
+
// update registry lookup variables
|
616
|
+
_registryNftIdByChainId[chainId] = info.nftId;
|
617
|
+
_chainId.push(chainId);
|
477
618
|
|
478
|
-
|
479
|
-
|
619
|
+
// register the registry info
|
620
|
+
_registerForNft(
|
621
|
+
info,
|
622
|
+
updateAddressLookup);
|
480
623
|
}
|
481
624
|
|
482
|
-
/// @dev
|
483
|
-
function _registerGlobalRegistry()
|
484
|
-
private
|
485
|
-
{
|
486
|
-
uint256 globalRegistryId = _chainNft.GLOBAL_REGISTRY_ID();
|
487
|
-
NftId globalRegistryNftId = NftIdLib.toNftId(globalRegistryId);
|
488
|
-
|
489
|
-
_info[globalRegistryNftId] = ObjectInfo({
|
490
|
-
nftId: globalRegistryNftId,
|
491
|
-
parentNftId: NftIdLib.toNftId(_chainNft.PROTOCOL_NFT_ID()),
|
492
|
-
objectType: REGISTRY(),
|
493
|
-
isInterceptor: false,
|
494
|
-
objectAddress: address(0),
|
495
|
-
initialOwner: NFT_LOCK_ADDRESS,
|
496
|
-
data: ""
|
497
|
-
});
|
498
|
-
|
499
|
-
_chainNft.mint(NFT_LOCK_ADDRESS, globalRegistryId);
|
500
|
-
}
|
501
|
-
// depends on _registryNftId and _stakingAddress
|
625
|
+
/// @dev staking registration
|
502
626
|
function _registerStaking()
|
503
627
|
private
|
504
628
|
returns (NftId stakingNftId)
|
505
629
|
{
|
506
630
|
address stakingOwner = IRegisterable(_stakingAddress).getOwner();
|
507
|
-
uint256 stakingId =
|
631
|
+
uint256 stakingId = CHAIN_NFT.calculateTokenId(STAKING_TOKEN_SEQUENCE_ID);
|
508
632
|
stakingNftId = NftIdLib.toNftId(stakingId);
|
509
633
|
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
634
|
+
_registerForNft(
|
635
|
+
ObjectInfo({
|
636
|
+
nftId: stakingNftId,
|
637
|
+
parentNftId: REGISTRY_NFT_ID,
|
638
|
+
objectType: STAKING(),
|
639
|
+
isInterceptor: false,
|
640
|
+
objectAddress: _stakingAddress,
|
641
|
+
initialOwner: stakingOwner,
|
642
|
+
data: ""}),
|
643
|
+
true);
|
644
|
+
|
645
|
+
IStaking(_stakingAddress).initializeTokenHandler();
|
646
|
+
}
|
647
|
+
|
648
|
+
/// @dev Register the provided object info for the specified NFT ID.
|
649
|
+
function _registerForNft(
|
650
|
+
ObjectInfo memory info,
|
651
|
+
bool updateAddressLookup
|
652
|
+
)
|
653
|
+
internal
|
654
|
+
{
|
655
|
+
_info[info.nftId] = info;
|
656
|
+
|
657
|
+
if (updateAddressLookup) {
|
658
|
+
_setAddressForNftId(info.nftId, info.objectAddress);
|
659
|
+
}
|
660
|
+
|
661
|
+
// calls nft receiver
|
662
|
+
CHAIN_NFT.mint(info.initialOwner, info.nftId.toInt());
|
663
|
+
}
|
664
|
+
|
665
|
+
function _setAddressForNftId(NftId nftId, address objectAddress)
|
666
|
+
internal
|
667
|
+
{
|
668
|
+
if (objectAddress != address(0)) {
|
669
|
+
if (_nftIdByAddress[objectAddress].gtz()) {
|
670
|
+
revert ErrorRegistryContractAlreadyRegistered(objectAddress);
|
671
|
+
}
|
672
|
+
|
673
|
+
_nftIdByAddress[objectAddress] = nftId;
|
674
|
+
}
|
675
|
+
}
|
519
676
|
|
520
|
-
|
521
|
-
|
522
|
-
|
677
|
+
function _getGlobalRegistryAddress(address globalRegistry) internal view returns (address) {
|
678
|
+
if (block.chainid == 1) {
|
679
|
+
return address(this);
|
680
|
+
} else {
|
681
|
+
return globalRegistry;
|
682
|
+
}
|
523
683
|
}
|
524
684
|
|
525
685
|
/// @dev defines which object - parent types relations are allowed to register
|
526
|
-
|
527
|
-
//
|
528
|
-
// 2) DO NOT use object type (e.g. POLCY, BUNDLE, STAKE) as parent type
|
529
|
-
// 3) DO NOT use REGISTRY as object type
|
530
|
-
// 2) DO NOT use PROTOCOL and "ObjectTypeLib.zero"
|
686
|
+
/// EACH object type MUST have only one parent type across ALL mappings
|
687
|
+
// the only EXCEPTION is STAKE, can have any number of parent types
|
531
688
|
function _setupValidCoreTypesAndCombinations()
|
532
|
-
private
|
689
|
+
private
|
533
690
|
{
|
691
|
+
_coreTypes[PROTOCOL()] = true;
|
534
692
|
_coreTypes[REGISTRY()] = true;
|
535
693
|
_coreTypes[SERVICE()] = true;
|
536
|
-
_coreTypes[TOKEN()] = true;
|
537
694
|
_coreTypes[INSTANCE()] = true;
|
538
695
|
_coreTypes[PRODUCT()] = true;
|
539
696
|
_coreTypes[POOL()] = true;
|
@@ -545,30 +702,20 @@ contract Registry is
|
|
545
702
|
_coreTypes[STAKING()] = true;
|
546
703
|
_coreTypes[STAKE()] = true;
|
547
704
|
|
548
|
-
|
549
|
-
if(registryId == _chainNft.GLOBAL_REGISTRY_ID()) {
|
550
|
-
// we are global registry
|
551
|
-
// object is registry from different chain
|
552
|
-
// parent is global registry, this contract
|
553
|
-
_coreContractCombinations[REGISTRY()][REGISTRY()] = true; // only for global regstry
|
554
|
-
//_coreObjectCombinations[REGISTRY()][REGISTRY()] = true;
|
555
|
-
} else {
|
556
|
-
// we are not global registry
|
557
|
-
// object is local registry, this contract
|
558
|
-
// parent is global registry, object with 0 address or registry from mainnet???
|
559
|
-
}
|
560
|
-
_coreContractCombinations[STAKING()][REGISTRY()] = true; // only for chain staking contract
|
561
|
-
_coreContractCombinations[TOKEN()][REGISTRY()] = true;
|
562
|
-
//_coreContractCombinations[SERVICE()][REGISTRY()] = true;// do not need it here -> registerService() registers exactly this combination
|
705
|
+
// types combinations allowed to use with register() function ONLY
|
563
706
|
_coreContractCombinations[INSTANCE()][REGISTRY()] = true;
|
564
707
|
|
708
|
+
// components with instance parent
|
565
709
|
_coreContractCombinations[PRODUCT()][INSTANCE()] = true;
|
566
|
-
_coreContractCombinations[DISTRIBUTION()][INSTANCE()] = true;
|
567
|
-
_coreContractCombinations[ORACLE()][INSTANCE()] = true;
|
568
|
-
_coreContractCombinations[POOL()][INSTANCE()] = true;
|
569
710
|
|
570
|
-
|
711
|
+
// components with product parent
|
712
|
+
_coreContractCombinations[DISTRIBUTION()][PRODUCT()] = true;
|
713
|
+
_coreContractCombinations[ORACLE()][PRODUCT()] = true;
|
714
|
+
_coreContractCombinations[POOL()][PRODUCT()] = true;
|
715
|
+
|
716
|
+
// objects with component parents
|
571
717
|
_coreObjectCombinations[POLICY()][PRODUCT()] = true;
|
718
|
+
_coreObjectCombinations[DISTRIBUTOR()][DISTRIBUTION()] = true;
|
572
719
|
_coreObjectCombinations[BUNDLE()][POOL()] = true;
|
573
720
|
|
574
721
|
// staking
|