@etherisc/gif-next 0.0.2-f11de3a-698 → 0.0.2-f12cf4d-104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -7
- 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/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- 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 +136 -360
- 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 +99 -315
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +206 -292
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +125 -117
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +89 -115
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +78 -62
- 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 +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +2 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +53 -31
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +31 -86
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +72 -123
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +166 -139
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +57 -97
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +447 -87
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +96 -245
- 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 +337 -138
- 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 +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +2 -2
- 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/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +111 -335
- 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 +77 -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 +87 -303
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +107 -159
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +99 -83
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +107 -323
- 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 +215 -256
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +130 -110
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +84 -47
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +98 -135
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +271 -199
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +106 -333
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +369 -386
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +112 -100
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +92 -168
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +90 -86
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +149 -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 +34 -0
- 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 +267 -141
- 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 +136 -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 +365 -349
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +119 -99
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +215 -309
- 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 +147 -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 +310 -34
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +114 -35
- 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 +516 -95
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +296 -143
- 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 +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +131 -223
- 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 +424 -277
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +137 -115
- 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 +111 -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 +388 -19
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +77 -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 +1 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -22
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +87 -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 +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- 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 +63 -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 +169 -128
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +54 -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 +32 -8
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- 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 +2 -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/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
- 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 +60 -4
- 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 +26 -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 +2 -2
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +15 -2
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +71 -70
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/contracts/authorization/AccessAdmin.sol +64 -59
- 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 +2 -1
- package/contracts/distribution/Distribution.sol +7 -17
- package/contracts/distribution/DistributionService.sol +85 -67
- package/contracts/distribution/DistributionServiceManager.sol +6 -6
- package/contracts/distribution/IDistributionComponent.sol +1 -1
- package/contracts/distribution/IDistributionService.sol +9 -5
- 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/IInstance.sol +10 -30
- package/contracts/instance/IInstanceService.sol +2 -23
- package/contracts/instance/Instance.sol +29 -51
- package/contracts/instance/InstanceAdmin.sol +43 -32
- package/contracts/instance/InstanceAuthorizationV3.sol +11 -21
- package/contracts/instance/InstanceReader.sol +107 -25
- package/contracts/instance/InstanceService.sol +75 -104
- package/contracts/instance/InstanceServiceManager.sol +6 -7
- package/contracts/instance/InstanceStore.sol +11 -1
- package/contracts/instance/base/ObjectLifecycle.sol +9 -4
- package/contracts/instance/module/IComponents.sol +10 -6
- package/contracts/instance/module/IPolicy.sol +26 -25
- package/contracts/oracle/BasicOracle.sol +0 -1
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +6 -16
- package/contracts/oracle/OracleService.sol +56 -42
- package/contracts/oracle/OracleServiceManager.sol +6 -6
- package/contracts/pool/BasicPool.sol +35 -26
- package/contracts/pool/BasicPoolAuthorization.sol +13 -3
- package/contracts/pool/BundleService.sol +112 -69
- package/contracts/pool/BundleServiceManager.sol +6 -6
- package/contracts/pool/IBundleService.sol +16 -9
- package/contracts/pool/IPoolComponent.sol +19 -15
- package/contracts/pool/IPoolService.sol +62 -39
- package/contracts/pool/Pool.sol +145 -128
- package/contracts/pool/PoolService.sol +283 -189
- package/contracts/pool/PoolServiceManager.sol +4 -4
- package/contracts/product/ApplicationService.sol +59 -30
- package/contracts/product/ApplicationServiceManager.sol +4 -4
- package/contracts/product/BasicProduct.sol +9 -12
- package/contracts/product/BasicProductAuthorization.sol +0 -1
- package/contracts/product/ClaimService.sol +315 -118
- package/contracts/product/ClaimServiceManager.sol +4 -4
- package/contracts/product/IApplicationService.sol +1 -0
- package/contracts/product/IClaimService.sol +31 -7
- package/contracts/product/IPolicyService.sol +34 -36
- package/contracts/product/IPricingService.sol +10 -10
- package/contracts/product/IProductComponent.sol +23 -4
- package/contracts/product/{IProductService.sol → IRiskService.sol} +1 -1
- package/contracts/product/PolicyService.sol +383 -217
- package/contracts/product/PolicyServiceManager.sol +4 -4
- package/contracts/product/PricingService.sol +54 -54
- package/contracts/product/PricingServiceManager.sol +3 -3
- package/contracts/product/Product.sol +110 -89
- package/contracts/product/{ProductService.sol → RiskService.sol} +7 -10
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +68 -38
- package/contracts/registry/IRegistry.sol +57 -18
- package/contracts/registry/IRegistryService.sol +5 -12
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +350 -201
- package/contracts/registry/RegistryAdmin.sol +151 -54
- package/contracts/registry/RegistryService.sol +35 -46
- package/contracts/registry/RegistryServiceManager.sol +2 -2
- package/contracts/registry/ReleaseLifecycle.sol +6 -3
- package/contracts/registry/ReleaseRegistry.sol +204 -204
- package/contracts/registry/ServiceAuthorizationV3.sol +26 -23
- package/contracts/shared/Component.sol +63 -114
- package/contracts/shared/ComponentService.sol +296 -168
- package/contracts/shared/ComponentServiceManager.sol +8 -5
- package/contracts/shared/ComponentVerifyingService.sol +28 -17
- package/contracts/shared/ContractLib.sol +54 -0
- package/contracts/shared/IComponent.sol +10 -13
- package/contracts/shared/IComponentService.sol +38 -16
- package/contracts/shared/IInstanceLinkedComponent.sol +7 -22
- 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/InitializableERC165.sol +2 -2
- package/contracts/shared/InstanceLinkedComponent.sol +71 -38
- package/contracts/shared/KeyValueStore.sol +1 -1
- package/contracts/shared/Lifecycle.sol +15 -4
- package/contracts/shared/NftOwnable.sol +27 -7
- package/contracts/shared/PolicyHolder.sol +15 -52
- package/contracts/shared/Registerable.sol +19 -11
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +20 -18
- package/contracts/shared/TokenHandler.sol +366 -27
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +11 -5
- package/contracts/staking/IStakingService.sol +0 -3
- package/contracts/staking/StakeManagerLib.sol +18 -25
- package/contracts/staking/Staking.sol +39 -50
- package/contracts/staking/StakingManager.sol +8 -6
- package/contracts/staking/StakingReader.sol +12 -5
- package/contracts/staking/StakingService.sol +77 -35
- package/contracts/staking/StakingServiceManager.sol +2 -2
- package/contracts/staking/TargetManagerLib.sol +7 -3
- package/contracts/type/Amount.sol +15 -0
- package/contracts/type/ClaimId.sol +6 -1
- package/contracts/type/NftId.sol +1 -0
- package/contracts/type/ObjectType.sol +16 -11
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/RiskId.sol +16 -2
- package/contracts/type/RoleId.sol +0 -12
- package/contracts/type/Seconds.sol +8 -0
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/UFixed.sol +4 -0
- package/contracts/upgradeability/ProxyManager.sol +68 -34
- package/contracts/upgradeability/Versionable.sol +2 -2
- package/package.json +4 -3
- 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/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/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
- package/contracts/authorization/IModuleAuthorization.sol +0 -21
- package/contracts/authorization/ModuleAuthorization.sol +0 -78
- package/contracts/product/ProductServiceManager.sol +0 -39
- package/contracts/shared/InitializableCustom.sol +0 -177
@@ -3,44 +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, SERVICE, INSTANCE, STAKE, STAKING, PRODUCT, DISTRIBUTION, DISTRIBUTOR, ORACLE, POOL, POLICY, BUNDLE} from "../type/ObjectType.sol";
|
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 {IStaking} from "../staking/IStaking.sol";
|
16
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
|
-
|
30
|
-
|
31
|
-
|
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.
|
32
35
|
contract Registry is
|
33
|
-
|
36
|
+
Initializable,
|
37
|
+
AccessManaged,
|
34
38
|
IRegistry
|
35
39
|
{
|
36
|
-
|
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);
|
37
62
|
uint256 public constant REGISTRY_TOKEN_SEQUENCE_ID = 2;
|
38
63
|
uint256 public constant STAKING_TOKEN_SEQUENCE_ID = 3;
|
39
64
|
string public constant EMPTY_URI = "";
|
40
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
|
41
71
|
mapping(NftId nftId => ObjectInfo info) private _info;
|
42
72
|
mapping(address object => NftId nftId) private _nftIdByAddress;
|
43
73
|
|
74
|
+
/// @dev keep track of service addresses by version and domain
|
44
75
|
mapping(VersionPart version => mapping(ObjectType serviceDomain => address)) private _service;
|
45
76
|
|
46
77
|
mapping(ObjectType objectType => bool) private _coreTypes;
|
@@ -51,57 +82,46 @@ contract Registry is
|
|
51
82
|
mapping(ObjectType objectType => mapping(
|
52
83
|
ObjectType parentType => bool)) private _coreObjectCombinations;
|
53
84
|
|
54
|
-
|
55
|
-
ChainNft public immutable _chainNft;
|
56
|
-
|
57
|
-
NftId public immutable _protocolNftId;
|
58
|
-
NftId public immutable _registryNftId;
|
59
|
-
NftId public _stakingNftId;
|
60
|
-
|
61
|
-
address public _tokenRegistryAddress;
|
62
|
-
address public _stakingAddress;
|
63
|
-
ReleaseRegistry public _releaseRegistry;
|
64
|
-
|
65
|
-
// TODO
|
66
|
-
// 1). Registry and ReleaseRegistry must be treated as whole single entity.
|
67
|
-
// But current limitations of EVM does not allow it -> require it to be splitted
|
68
|
-
// 2). Keep onlyReleaseRegistry modifier
|
69
|
-
// 3). Delete onlyRegistryService in favor of restricted
|
70
|
-
// 4). (For GlobalRegistry ONLY) make registerChainRegistry() restricted to GIF_ADMIN_ROLE
|
71
|
-
modifier onlyRegistryService() {
|
72
|
-
if(!_releaseRegistry.isActiveRegistryService(msg.sender)) {
|
73
|
-
revert ErrorRegistryCallerNotRegistryService();
|
74
|
-
}
|
75
|
-
_;
|
76
|
-
}
|
85
|
+
NftId private _stakingNftId;
|
77
86
|
|
87
|
+
ReleaseRegistry private _releaseRegistry;
|
88
|
+
address private _tokenRegistryAddress;
|
89
|
+
address private _stakingAddress;
|
78
90
|
|
79
|
-
modifier
|
80
|
-
if(msg.sender !=
|
81
|
-
revert
|
91
|
+
modifier onlyDeployer() {
|
92
|
+
if (msg.sender != DEPLOYER) {
|
93
|
+
revert ErrorRegistryCallerNotDeployer();
|
82
94
|
}
|
83
95
|
_;
|
84
96
|
}
|
85
97
|
|
98
|
+
// TODO when create2 strategy is added to ignition:
|
99
|
+
// 1. move globalRegistry arg out from constructor into initialize()
|
100
|
+
// 2. add testRegistry_deployChainRegistryAtGlobalRegistryAddress
|
86
101
|
/// @dev Creates the registry contract and populates it with the protocol and registry objects.
|
87
102
|
/// Internally deploys the ChainNft contract.
|
88
|
-
constructor(RegistryAdmin admin)
|
89
|
-
|
103
|
+
constructor(RegistryAdmin admin, address globalRegistry)
|
104
|
+
AccessManaged(admin.authority())
|
90
105
|
{
|
91
|
-
|
106
|
+
DEPLOYER = msg.sender;
|
107
|
+
ADMIN = admin;
|
108
|
+
GLOBAL_REGISTRY_ADDRESS = _getGlobalRegistryAddress(globalRegistry);
|
109
|
+
|
92
110
|
// deploy NFT
|
93
|
-
|
111
|
+
CHAIN_NFT = new ChainNft(address(this));
|
112
|
+
GLOBAL_REGISTRY_NFT_ID = NftIdLib.toNftId(
|
113
|
+
CHAIN_NFT.GLOBAL_REGISTRY_ID());
|
94
114
|
|
95
115
|
// initial registry setup
|
96
|
-
|
97
|
-
|
116
|
+
PROTOCOL_NFT_ID = _registerProtocol();
|
117
|
+
REGISTRY_NFT_ID = _registerRegistry();
|
98
118
|
|
99
119
|
// set object types and object parent relations
|
100
120
|
_setupValidCoreTypesAndCombinations();
|
101
121
|
}
|
102
122
|
|
103
123
|
|
104
|
-
/// @dev Wires release registry and
|
124
|
+
/// @dev Wires release registry, token registry and staking contract to this registry.
|
105
125
|
/// MUST be called by release registry.
|
106
126
|
function initialize(
|
107
127
|
address releaseRegistry,
|
@@ -110,40 +130,64 @@ contract Registry is
|
|
110
130
|
)
|
111
131
|
external
|
112
132
|
initializer()
|
133
|
+
onlyDeployer()
|
113
134
|
{
|
135
|
+
// store links to supporting contracts
|
114
136
|
_releaseRegistry = ReleaseRegistry(releaseRegistry);
|
115
137
|
_tokenRegistryAddress = tokenRegistry;
|
116
138
|
_stakingAddress = staking;
|
117
139
|
|
140
|
+
// register staking contract
|
118
141
|
_stakingNftId = _registerStaking();
|
119
142
|
}
|
120
143
|
|
121
144
|
/// @inheritdoc IRegistry
|
122
|
-
function
|
145
|
+
function registerRegistry(
|
146
|
+
NftId nftId,
|
147
|
+
uint256 chainId,
|
148
|
+
address registryAddress
|
149
|
+
)
|
123
150
|
external
|
124
|
-
|
125
|
-
returns(NftId nftId)
|
151
|
+
restricted()
|
126
152
|
{
|
127
|
-
|
128
|
-
|
153
|
+
// registration of chain registries only allowed on mainnet
|
154
|
+
if (block.chainid != 1) {
|
155
|
+
revert ErrorRegistryNotOnMainnet(block.chainid);
|
156
|
+
}
|
129
157
|
|
130
|
-
//
|
131
|
-
if(
|
132
|
-
|
133
|
-
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
134
|
-
}
|
158
|
+
// registry chain id is not zero
|
159
|
+
if(chainId == 0) {
|
160
|
+
revert ErrorRegistryChainRegistryChainIdZero(nftId);
|
135
161
|
}
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
}
|
162
|
+
|
163
|
+
// registry address is not zero
|
164
|
+
if (registryAddress == address(0)) {
|
165
|
+
revert ErrorRegistryChainRegistryAddressZero(nftId, chainId);
|
141
166
|
}
|
142
167
|
|
143
|
-
|
144
|
-
|
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
|
+
}
|
145
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
|
+
}
|
146
189
|
|
190
|
+
// TODO limit service owner to registry admin?
|
147
191
|
/// @inheritdoc IRegistry
|
148
192
|
function registerService(
|
149
193
|
ObjectInfo memory info,
|
@@ -151,51 +195,81 @@ contract Registry is
|
|
151
195
|
ObjectType domain
|
152
196
|
)
|
153
197
|
external
|
154
|
-
|
198
|
+
restricted()
|
155
199
|
returns(NftId nftId)
|
156
200
|
{
|
157
|
-
//
|
201
|
+
// service address is defined
|
158
202
|
address service = info.objectAddress;
|
159
203
|
if(service == address(0)) {
|
160
204
|
revert ErrorRegistryServiceAddressZero();
|
161
205
|
}
|
162
206
|
|
163
|
-
//
|
207
|
+
// version is defined
|
164
208
|
if(version.eqz()) {
|
165
|
-
revert ErrorRegistryServiceVersionZero();
|
209
|
+
revert ErrorRegistryServiceVersionZero(service);
|
166
210
|
}
|
167
|
-
|
168
|
-
// check domain is defined
|
211
|
+
// service domain is defined
|
169
212
|
if(domain.eqz()) {
|
170
|
-
revert
|
171
|
-
}
|
172
|
-
|
173
|
-
// check contract has not already been registered
|
174
|
-
if(_service[version][domain] != address(0)) {
|
175
|
-
revert ErrorRegistryDomainAlreadyRegistered(service, version, domain);
|
213
|
+
revert ErrorRegistryServiceDomainZero(service, version);
|
176
214
|
}
|
177
215
|
|
178
|
-
//
|
216
|
+
// service has proper type
|
179
217
|
if(info.objectType != SERVICE()) {
|
180
218
|
revert ErrorRegistryNotService(service, info.objectType);
|
181
219
|
}
|
182
220
|
|
183
|
-
//
|
184
|
-
if(info.parentNftId !=
|
185
|
-
revert ErrorRegistryServiceParentNotRegistry(info.parentNftId);
|
186
|
-
}
|
221
|
+
// service parent has registry type
|
222
|
+
if(info.parentNftId != REGISTRY_NFT_ID) {
|
223
|
+
revert ErrorRegistryServiceParentNotRegistry(service, version, info.parentNftId);
|
224
|
+
}
|
225
|
+
|
226
|
+
// service has not already been registered
|
227
|
+
if(_service[version][domain] != address(0)) {
|
228
|
+
revert ErrorRegistryServiceDomainAlreadyRegistered(service, version, domain);
|
229
|
+
}
|
187
230
|
|
188
231
|
_service[version][domain] = service;
|
189
|
-
nftId = _register(info);
|
190
232
|
|
191
233
|
emit LogServiceRegistration(version, domain);
|
234
|
+
|
235
|
+
nftId = _register(info);
|
236
|
+
}
|
237
|
+
|
238
|
+
|
239
|
+
/// @inheritdoc IRegistry
|
240
|
+
function register(ObjectInfo memory info)
|
241
|
+
external
|
242
|
+
restricted()
|
243
|
+
returns(NftId nftId)
|
244
|
+
{
|
245
|
+
address objectAddress = info.objectAddress;
|
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
|
250
|
+
ObjectType parentType = _info[info.parentNftId].objectType;
|
251
|
+
|
252
|
+
// check type combinations for core objects
|
253
|
+
if(objectAddress == address(0)) {
|
254
|
+
if(_coreObjectCombinations[objectType][parentType] == false) {
|
255
|
+
revert ErrorRegistryTypesCombinationInvalid(objectAddress, objectType, parentType);
|
256
|
+
}
|
257
|
+
}
|
258
|
+
// check type combinations for contract objects
|
259
|
+
else {
|
260
|
+
if(_coreContractCombinations[objectType][parentType] == false) {
|
261
|
+
revert ErrorRegistryTypesCombinationInvalid(objectAddress, objectType, parentType);
|
262
|
+
}
|
263
|
+
}
|
264
|
+
|
265
|
+
nftId = _register(info);
|
192
266
|
}
|
193
267
|
|
194
268
|
|
195
269
|
/// @inheritdoc IRegistry
|
196
270
|
function registerWithCustomType(ObjectInfo memory info)
|
197
271
|
external
|
198
|
-
|
272
|
+
restricted()
|
199
273
|
returns(NftId nftId)
|
200
274
|
{
|
201
275
|
ObjectType objectType = info.objectType;
|
@@ -206,19 +280,21 @@ contract Registry is
|
|
206
280
|
}
|
207
281
|
|
208
282
|
if(
|
283
|
+
objectType == ObjectTypeLib.zero() ||
|
284
|
+
parentType == ObjectTypeLib.zero() ||
|
209
285
|
parentType == PROTOCOL() ||
|
210
286
|
parentType == SERVICE()
|
211
287
|
) {
|
212
|
-
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
288
|
+
revert ErrorRegistryTypesCombinationInvalid(info.objectAddress, objectType, parentType);
|
213
289
|
}
|
214
290
|
|
215
|
-
_register(info);
|
291
|
+
nftId = _register(info);
|
216
292
|
}
|
217
293
|
|
218
294
|
|
219
295
|
/// @dev earliest GIF major version
|
220
296
|
function getInitialVersion() external view returns (VersionPart) {
|
221
|
-
return _releaseRegistry.
|
297
|
+
return VersionPartLib.toVersionPart(_releaseRegistry.INITIAL_GIF_VERSION());
|
222
298
|
}
|
223
299
|
|
224
300
|
/// @dev next GIF release version to be released
|
@@ -235,34 +311,63 @@ contract Registry is
|
|
235
311
|
return _releaseRegistry.getReleaseInfo(version);
|
236
312
|
}
|
237
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];
|
324
|
+
}
|
325
|
+
|
238
326
|
function getObjectCount() external view returns (uint256) {
|
239
|
-
return
|
327
|
+
return CHAIN_NFT.totalSupply();
|
240
328
|
}
|
241
329
|
|
242
330
|
function getNftId() external view returns (NftId nftId) {
|
243
|
-
return
|
331
|
+
return REGISTRY_NFT_ID;
|
244
332
|
}
|
245
333
|
|
246
334
|
function getProtocolNftId() external view returns (NftId nftId) {
|
247
|
-
return
|
335
|
+
return PROTOCOL_NFT_ID;
|
248
336
|
}
|
249
337
|
|
250
|
-
function
|
338
|
+
function getNftIdForAddress(address object) external view returns (NftId id) {
|
251
339
|
return _nftIdByAddress[object];
|
252
340
|
}
|
253
341
|
|
254
342
|
function ownerOf(NftId nftId) public view returns (address) {
|
255
|
-
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;
|
256
348
|
}
|
257
349
|
|
258
350
|
function ownerOf(address contractAddress) public view returns (address) {
|
259
|
-
return
|
351
|
+
return CHAIN_NFT.ownerOf(_nftIdByAddress[contractAddress].toInt());
|
260
352
|
}
|
261
353
|
|
262
354
|
function getObjectInfo(NftId nftId) external view returns (ObjectInfo memory) {
|
263
355
|
return _info[nftId];
|
264
356
|
}
|
265
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
|
+
|
266
371
|
function getObjectInfo(address object) external view returns (ObjectInfo memory) {
|
267
372
|
return _info[_nftIdByAddress[object]];
|
268
373
|
}
|
@@ -290,8 +395,6 @@ contract Registry is
|
|
290
395
|
}
|
291
396
|
|
292
397
|
function getStakingAddress() external view returns (address staking) {
|
293
|
-
//return getObjectInfo(_stakingNftId).objectAddress;
|
294
|
-
//return _info[_stakingNftId].objectAddress;
|
295
398
|
return _stakingAddress;
|
296
399
|
}
|
297
400
|
|
@@ -312,15 +415,15 @@ contract Registry is
|
|
312
415
|
}
|
313
416
|
|
314
417
|
function getChainNftAddress() external view override returns (address) {
|
315
|
-
return address(
|
418
|
+
return address(CHAIN_NFT);
|
316
419
|
}
|
317
420
|
|
318
421
|
function getRegistryAdminAddress() external view returns (address) {
|
319
|
-
return address(
|
422
|
+
return address(ADMIN);
|
320
423
|
}
|
321
424
|
|
322
425
|
function getAuthority() external view returns (address) {
|
323
|
-
return
|
426
|
+
return ADMIN.authority();
|
324
427
|
}
|
325
428
|
|
326
429
|
function getOwner() public view returns (address owner) {
|
@@ -344,25 +447,33 @@ contract Registry is
|
|
344
447
|
internal
|
345
448
|
returns(NftId nftId)
|
346
449
|
{
|
347
|
-
ObjectType objectType = info.objectType;
|
450
|
+
ObjectType objectType = info.objectType; // do not care here, never PROTOCOL(), REGISTRY()
|
348
451
|
bool isInterceptor = info.isInterceptor;
|
349
|
-
address objectAddress = info.objectAddress;
|
350
|
-
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
|
351
454
|
|
352
|
-
NftId parentNftId = info.parentNftId;
|
455
|
+
NftId parentNftId = info.parentNftId; // do not care here, can not be 0
|
353
456
|
ObjectInfo memory parentInfo = _info[parentNftId];
|
354
|
-
|
355
|
-
address parentAddress = parentInfo.objectAddress;
|
457
|
+
address parentAddress = parentInfo.objectAddress; // can be 0
|
356
458
|
|
357
459
|
// parent is contract -> need to check? -> check before minting
|
358
460
|
// special case: staking: to protocol possible as well
|
359
|
-
// special case: global registry nft as parent when not on mainnet -> global registry address is 0
|
360
|
-
// special case: when parentNftId ==
|
361
|
-
// special case: when parentNftId ==
|
362
|
-
|
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()) {
|
363
467
|
if(parentAddress == address(0)) {
|
364
468
|
revert ErrorRegistryParentAddressZero();
|
365
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
|
+
}
|
366
477
|
}
|
367
478
|
|
368
479
|
address interceptorAddress = _getInterceptor(
|
@@ -372,23 +483,17 @@ contract Registry is
|
|
372
483
|
parentInfo.isInterceptor,
|
373
484
|
parentAddress);
|
374
485
|
|
375
|
-
uint256 tokenId =
|
486
|
+
uint256 tokenId = CHAIN_NFT.getNextTokenId();
|
376
487
|
nftId = NftIdLib.toNftId(tokenId);
|
377
488
|
info.nftId = nftId;
|
378
|
-
_info[nftId] = info;
|
379
|
-
|
380
|
-
if(objectAddress > address(0)) {
|
381
|
-
if(_nftIdByAddress[objectAddress].gtz()) {
|
382
|
-
revert ErrorRegistryContractAlreadyRegistered(objectAddress);
|
383
|
-
}
|
384
489
|
|
385
|
-
|
386
|
-
|
490
|
+
_info[nftId] = info;
|
491
|
+
_setAddressForNftId(nftId, objectAddress);
|
387
492
|
|
388
493
|
emit LogRegistration(nftId, parentNftId, objectType, isInterceptor, objectAddress, owner);
|
389
494
|
|
390
495
|
// calls nft receiver(1) and interceptor(2)
|
391
|
-
uint256 mintedTokenId =
|
496
|
+
uint256 mintedTokenId = CHAIN_NFT.mint(
|
392
497
|
owner,
|
393
498
|
interceptorAddress,
|
394
499
|
EMPTY_URI);
|
@@ -437,105 +542,153 @@ contract Registry is
|
|
437
542
|
private
|
438
543
|
returns (NftId protocolNftId)
|
439
544
|
{
|
440
|
-
uint256 protocolId =
|
545
|
+
uint256 protocolId = CHAIN_NFT.PROTOCOL_NFT_ID();
|
441
546
|
protocolNftId = NftIdLib.toNftId(protocolId);
|
442
547
|
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
_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);
|
454
558
|
}
|
455
559
|
|
456
|
-
/// @dev registry
|
457
|
-
/// might also register the global registry when not on mainnet
|
560
|
+
/// @dev register this registry
|
458
561
|
function _registerRegistry()
|
459
|
-
|
562
|
+
internal
|
563
|
+
virtual
|
460
564
|
returns (NftId registryNftId)
|
461
565
|
{
|
462
|
-
|
463
|
-
registryNftId =
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
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);
|
470
600
|
}
|
471
|
-
|
472
|
-
|
473
|
-
|
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);
|
474
613
|
}
|
475
614
|
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
objectType: REGISTRY(),
|
480
|
-
isInterceptor: false,
|
481
|
-
objectAddress: address(this),
|
482
|
-
initialOwner: NFT_LOCK_ADDRESS,
|
483
|
-
data: ""
|
484
|
-
});
|
615
|
+
// update registry lookup variables
|
616
|
+
_registryNftIdByChainId[chainId] = info.nftId;
|
617
|
+
_chainId.push(chainId);
|
485
618
|
|
486
|
-
|
487
|
-
|
619
|
+
// register the registry info
|
620
|
+
_registerForNft(
|
621
|
+
info,
|
622
|
+
updateAddressLookup);
|
488
623
|
}
|
489
624
|
|
490
|
-
/// @dev
|
491
|
-
function _registerGlobalRegistry()
|
492
|
-
private
|
493
|
-
{
|
494
|
-
uint256 globalRegistryId = _chainNft.GLOBAL_REGISTRY_ID();
|
495
|
-
NftId globalRegistryNftId = NftIdLib.toNftId(globalRegistryId);
|
496
|
-
|
497
|
-
_info[globalRegistryNftId] = ObjectInfo({
|
498
|
-
nftId: globalRegistryNftId,
|
499
|
-
parentNftId: NftIdLib.toNftId(_chainNft.PROTOCOL_NFT_ID()),
|
500
|
-
objectType: REGISTRY(),
|
501
|
-
isInterceptor: false,
|
502
|
-
objectAddress: address(0),
|
503
|
-
initialOwner: NFT_LOCK_ADDRESS,
|
504
|
-
data: ""
|
505
|
-
});
|
506
|
-
|
507
|
-
_chainNft.mint(NFT_LOCK_ADDRESS, globalRegistryId);
|
508
|
-
}
|
509
|
-
// depends on _registryNftId and _stakingAddress
|
625
|
+
/// @dev staking registration
|
510
626
|
function _registerStaking()
|
511
627
|
private
|
512
628
|
returns (NftId stakingNftId)
|
513
629
|
{
|
514
630
|
address stakingOwner = IRegisterable(_stakingAddress).getOwner();
|
515
|
-
uint256 stakingId =
|
631
|
+
uint256 stakingId = CHAIN_NFT.calculateTokenId(STAKING_TOKEN_SEQUENCE_ID);
|
516
632
|
stakingNftId = NftIdLib.toNftId(stakingId);
|
517
633
|
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
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
|
+
}
|
527
672
|
|
528
|
-
|
673
|
+
_nftIdByAddress[objectAddress] = nftId;
|
674
|
+
}
|
675
|
+
}
|
529
676
|
|
530
|
-
|
531
|
-
|
677
|
+
function _getGlobalRegistryAddress(address globalRegistry) internal view returns (address) {
|
678
|
+
if (block.chainid == 1) {
|
679
|
+
return address(this);
|
680
|
+
} else {
|
681
|
+
return globalRegistry;
|
682
|
+
}
|
532
683
|
}
|
533
684
|
|
534
685
|
/// @dev defines which object - parent types relations are allowed to register
|
535
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
|
536
688
|
function _setupValidCoreTypesAndCombinations()
|
537
|
-
private
|
689
|
+
private
|
538
690
|
{
|
691
|
+
_coreTypes[PROTOCOL()] = true;
|
539
692
|
_coreTypes[REGISTRY()] = true;
|
540
693
|
_coreTypes[SERVICE()] = true;
|
541
694
|
_coreTypes[INSTANCE()] = true;
|
@@ -549,24 +702,20 @@ contract Registry is
|
|
549
702
|
_coreTypes[STAKING()] = true;
|
550
703
|
_coreTypes[STAKE()] = true;
|
551
704
|
|
552
|
-
//
|
553
|
-
if(block.chainid == 1) {
|
554
|
-
_coreContractCombinations[REGISTRY()][REGISTRY()] = true;
|
555
|
-
}
|
556
|
-
|
557
|
-
// contracts with registry parent
|
558
|
-
_coreContractCombinations[STAKING()][REGISTRY()] = true; // only for chain staking contract
|
705
|
+
// types combinations allowed to use with register() function ONLY
|
559
706
|
_coreContractCombinations[INSTANCE()][REGISTRY()] = true;
|
560
707
|
|
561
708
|
// components with instance parent
|
562
709
|
_coreContractCombinations[PRODUCT()][INSTANCE()] = true;
|
563
|
-
_coreContractCombinations[DISTRIBUTION()][INSTANCE()] = true;
|
564
|
-
_coreContractCombinations[ORACLE()][INSTANCE()] = true;
|
565
|
-
_coreContractCombinations[POOL()][INSTANCE()] = true;
|
566
710
|
|
567
|
-
//
|
568
|
-
|
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
|
569
717
|
_coreObjectCombinations[POLICY()][PRODUCT()] = true;
|
718
|
+
_coreObjectCombinations[DISTRIBUTOR()][DISTRIBUTION()] = true;
|
570
719
|
_coreObjectCombinations[BUNDLE()][POOL()] = true;
|
571
720
|
|
572
721
|
// staking
|