@etherisc/gif-next 0.0.2-7177fd8-761 → 0.0.2-71cf987-554
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 +5 -2
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +121 -70
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +124 -5
- 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 -37
- 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/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 +157 -273
- 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 +91 -239
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +188 -290
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +107 -123
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +78 -92
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +78 -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 +1538 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +470 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2072 -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 +1471 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1231 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1592 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2095 -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 +29 -84
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +56 -123
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +248 -164
- 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 +446 -81
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +85 -242
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +79 -87
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +335 -126
- 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 +131 -247
- 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 +66 -80
- 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 +79 -227
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +91 -159
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +75 -83
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +102 -235
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +82 -22
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +170 -226
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +114 -110
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +53 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +91 -77
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +232 -131
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +102 -222
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +300 -319
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +93 -97
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +71 -152
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +72 -84
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +136 -243
- 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 +280 -235
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +116 -112
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +29 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +161 -7
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +141 -16
- 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 +124 -97
- 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 +242 -295
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +107 -131
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +199 -309
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +96 -120
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +136 -243
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +622 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +694 -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 +289 -32
- 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 +495 -93
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +219 -166
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +78 -284
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +67 -75
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1696 -0
- 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 +377 -235
- 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 +68 -201
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +341 -324
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +122 -132
- 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 +92 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +55 -54
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +321 -19
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +66 -80
- 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 +79 -227
- 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 +288 -16
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +82 -55
- 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 +167 -270
- 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 +100 -97
- 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 +71 -165
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +71 -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 +55 -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 +130 -120
- package/contracts/authorization/AccessManagerCloneable.sol +67 -3
- package/contracts/authorization/Authorization.sol +111 -40
- package/contracts/authorization/IAccess.sol +1 -0
- package/contracts/authorization/IAccessAdmin.sol +4 -4
- package/contracts/authorization/IAuthorization.sol +13 -7
- package/contracts/authorization/IServiceAuthorization.sol +3 -1
- 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 +82 -50
- package/contracts/distribution/DistributionServiceManager.sol +6 -6
- package/contracts/distribution/IDistributionComponent.sol +1 -1
- package/contracts/distribution/IDistributionService.sol +8 -2
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +73 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +415 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +44 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
- package/contracts/instance/IInstance.sol +10 -30
- package/contracts/instance/IInstanceService.sol +0 -20
- package/contracts/instance/Instance.sol +29 -51
- package/contracts/instance/InstanceAdmin.sol +102 -73
- package/contracts/instance/InstanceAuthorizationV3.sol +11 -21
- package/contracts/instance/InstanceReader.sol +106 -19
- package/contracts/instance/InstanceService.sol +33 -88
- package/contracts/instance/InstanceServiceManager.sol +6 -7
- package/contracts/instance/InstanceStore.sol +11 -1
- package/contracts/instance/base/ObjectLifecycle.sol +7 -1
- package/contracts/instance/module/IComponents.sol +10 -5
- package/contracts/instance/module/IPolicy.sol +23 -23
- 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 +47 -34
- package/contracts/oracle/OracleServiceManager.sol +6 -6
- package/contracts/pool/BasicPool.sol +14 -26
- package/contracts/pool/BasicPoolAuthorization.sol +0 -1
- package/contracts/pool/BundleService.sol +92 -36
- package/contracts/pool/BundleServiceManager.sol +6 -6
- package/contracts/pool/IBundleService.sol +10 -0
- package/contracts/pool/IPoolComponent.sol +18 -8
- package/contracts/pool/IPoolService.sol +49 -29
- package/contracts/pool/Pool.sol +53 -46
- package/contracts/pool/PoolService.sol +156 -136
- package/contracts/pool/PoolServiceManager.sol +4 -4
- package/contracts/product/ApplicationService.sol +22 -13
- package/contracts/product/ApplicationServiceManager.sol +4 -4
- package/contracts/product/BasicProduct.sol +7 -6
- package/contracts/product/BasicProductAuthorization.sol +0 -1
- package/contracts/product/ClaimService.sol +310 -115
- package/contracts/product/ClaimServiceManager.sol +4 -4
- package/contracts/product/IClaimService.sol +30 -7
- package/contracts/product/IPolicyService.sol +16 -20
- package/contracts/product/IPricingService.sol +10 -10
- package/contracts/product/IProductComponent.sol +23 -4
- package/contracts/product/{IProductService.sol → IRiskService.sol} +1 -2
- package/contracts/product/PolicyService.sol +220 -129
- package/contracts/product/PolicyServiceManager.sol +4 -4
- package/contracts/product/PricingService.sol +49 -53
- package/contracts/product/PricingServiceManager.sol +3 -3
- package/contracts/product/Product.sol +108 -66
- 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 +342 -201
- package/contracts/registry/RegistryAdmin.sol +147 -179
- package/contracts/registry/RegistryService.sol +35 -46
- package/contracts/registry/RegistryServiceManager.sol +2 -2
- package/contracts/registry/ReleaseAdmin.sol +248 -0
- package/contracts/registry/ReleaseLifecycle.sol +6 -3
- package/contracts/registry/ReleaseRegistry.sol +223 -203
- package/contracts/registry/ServiceAuthorizationV3.sol +16 -22
- package/contracts/shared/Component.sol +36 -52
- package/contracts/shared/ComponentService.sol +245 -140
- package/contracts/shared/ComponentServiceManager.sol +8 -5
- package/contracts/shared/ComponentVerifyingService.sol +23 -14
- package/contracts/shared/ContractLib.sol +38 -0
- package/contracts/shared/IComponent.sol +6 -3
- package/contracts/shared/IComponentService.sol +25 -13
- package/contracts/shared/IInstanceLinkedComponent.sol +2 -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/InitializableERC165.sol +2 -2
- package/contracts/shared/InstanceLinkedComponent.sol +72 -31
- 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 -9
- package/contracts/shared/RegistryLinked.sol +3 -2
- package/contracts/shared/Service.sol +20 -18
- package/contracts/shared/TokenHandler.sol +99 -22
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +2 -1
- package/contracts/staking/IStakingService.sol +0 -3
- package/contracts/staking/StakeManagerLib.sol +18 -25
- package/contracts/staking/Staking.sol +13 -32
- package/contracts/staking/StakingManager.sol +8 -6
- package/contracts/staking/StakingReader.sol +12 -5
- package/contracts/staking/StakingService.sol +17 -17
- 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 +15 -1
- package/contracts/type/RoleId.sol +2 -11
- 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 +2 -1
- 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/artifacts/contracts/shared/TokenTransferLib.sol/TokenTransferLib.dbg.json +0 -4
- package/artifacts/contracts/shared/TokenTransferLib.sol/TokenTransferLib.json +0 -42
- 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
- package/contracts/shared/TokenTransferLib.sol +0 -60
@@ -7,14 +7,16 @@ import {AccessAdmin} from "../authorization/AccessAdmin.sol";
|
|
7
7
|
import {AccessManagerCloneable} from "../authorization/AccessManagerCloneable.sol";
|
8
8
|
import {IAccessAdmin} from "../authorization/IAccessAdmin.sol";
|
9
9
|
import {IAuthorization} from "../authorization/IAuthorization.sol";
|
10
|
-
import {
|
10
|
+
import {IInstanceLinkedComponent} from "../shared/IInstanceLinkedComponent.sol";
|
11
|
+
import {IAuthorization} from "../authorization/IAuthorization.sol";
|
11
12
|
import {IRegistry} from "../registry/IRegistry.sol";
|
12
13
|
import {IInstance} from "./IInstance.sol";
|
13
14
|
import {IService} from "../shared/IService.sol";
|
14
15
|
import {ObjectType, ObjectTypeLib, ALL, POOL, RELEASE} from "../type/ObjectType.sol";
|
15
|
-
import {RoleId, RoleIdLib, ADMIN_ROLE, PUBLIC_ROLE
|
16
|
+
import {RoleId, RoleIdLib, ADMIN_ROLE, PUBLIC_ROLE} from "../type/RoleId.sol";
|
16
17
|
import {Str, StrLib} from "../type/String.sol";
|
17
|
-
import {
|
18
|
+
import {TokenHandler} from "../shared/TokenHandler.sol";
|
19
|
+
import {VersionPart, VersionPartLib} from "../type/Version.sol";
|
18
20
|
|
19
21
|
|
20
22
|
contract InstanceAdmin is
|
@@ -27,8 +29,10 @@ contract InstanceAdmin is
|
|
27
29
|
|
28
30
|
uint64 public constant CUSTOM_ROLE_ID_MIN = 10000; // MUST be even
|
29
31
|
|
30
|
-
error
|
31
|
-
error
|
32
|
+
error ErrorInstanceAdminCallerNotInstanceOwner(address caller);
|
33
|
+
error ErrorInstanceAdminInstanceAlreadyLocked();
|
34
|
+
error ErrorInstanceAdminTargetNotRegistered(address target);
|
35
|
+
error ErrorInstanceAdminTargetAlreadyAuthorized(address target);
|
32
36
|
error ErrorInstanceAdminReleaseMismatch();
|
33
37
|
error ErrorInstanceAdminExpectedTargetMissing(string targetName);
|
34
38
|
|
@@ -36,65 +40,52 @@ contract InstanceAdmin is
|
|
36
40
|
IRegistry internal _registry;
|
37
41
|
uint64 _idNext;
|
38
42
|
|
39
|
-
|
43
|
+
IAuthorization _instanceAuthorization;
|
44
|
+
|
45
|
+
|
46
|
+
modifier onlyInstanceOwner() {
|
47
|
+
if(msg.sender != _registry.ownerOf(address(_instance))) {
|
48
|
+
revert ErrorInstanceAdminCallerNotInstanceOwner(msg.sender);
|
49
|
+
}
|
50
|
+
_;
|
51
|
+
}
|
40
52
|
|
41
53
|
/// @dev Only used for master instance admin.
|
42
54
|
/// Contracts created via constructor come with disabled initializers.
|
43
55
|
constructor(
|
44
|
-
|
45
|
-
)
|
46
|
-
|
47
|
-
{
|
48
|
-
_instanceAuthorization = instanceAuthorization;
|
49
|
-
}
|
50
|
-
|
51
|
-
/// @dev Initializes this instance admin with the provided instances authorization specification.
|
52
|
-
/// Internally the function creates an instance specific OpenZeppelin AccessManager that is used as the authority
|
53
|
-
/// for the inststance authorizatios.
|
54
|
-
/// Important: Initialization of this instance admin is only complete after calling function initializeInstance.
|
55
|
-
function initialize(
|
56
|
-
AccessManagerCloneable accessManager,
|
57
|
-
IModuleAuthorization instanceAuthorization
|
58
|
-
)
|
59
|
-
external
|
60
|
-
initializer()
|
61
|
-
{
|
62
|
-
// create new access manager for this instance admin
|
63
|
-
_initializeAuthority(address(accessManager));
|
64
|
-
|
65
|
-
// create basic instance independent setup
|
66
|
-
_createAdminAndPublicRoles();
|
67
|
-
|
68
|
-
// store instance authorization specification
|
69
|
-
_instanceAuthorization = IModuleAuthorization(instanceAuthorization);
|
70
|
-
}
|
56
|
+
address instanceAuthorization
|
57
|
+
) {
|
58
|
+
initialize(new AccessManagerCloneable());
|
71
59
|
|
72
|
-
|
73
|
-
internal
|
74
|
-
view
|
75
|
-
{
|
76
|
-
if (address(_registry) != address(0) && !_registry.isRegistered(target)) {
|
77
|
-
revert ErrorInstanceAdminNotRegistered(target);
|
78
|
-
}
|
60
|
+
_instanceAuthorization = IAuthorization(instanceAuthorization);
|
79
61
|
|
80
|
-
|
81
|
-
revert ErrorInstanceAdminAlreadyAuthorized(target);
|
82
|
-
}
|
62
|
+
_disableInitializers();
|
83
63
|
}
|
84
64
|
|
85
|
-
/// @dev Completes the initialization of this instance admin using the provided instance.
|
65
|
+
/// @dev Completes the initialization of this instance admin using the provided instance, registry and version.
|
66
|
+
/// Important: Initialization of instance admin is only complete after calling this function.
|
86
67
|
/// Important: The instance MUST be registered and all instance supporting contracts must be wired to this instance.
|
87
|
-
function
|
68
|
+
function completeSetup(
|
69
|
+
address instanceAddress,
|
70
|
+
address instanceAuthorization,
|
71
|
+
VersionPart releaseVersion
|
72
|
+
)
|
88
73
|
external
|
74
|
+
reinitializer(uint64(releaseVersion.toInt()))
|
75
|
+
onlyDeployer()
|
89
76
|
{
|
90
|
-
_checkTargetIsReadyForAuthorization(instanceAddress);
|
91
|
-
|
92
77
|
_idNext = CUSTOM_ROLE_ID_MIN;
|
93
78
|
_instance = IInstance(instanceAddress);
|
94
|
-
_registry = _instance.getRegistry();
|
79
|
+
_registry = IRegistry(_instance.getRegistry());
|
80
|
+
_instanceAuthorization = IAuthorization(instanceAuthorization);
|
81
|
+
|
82
|
+
AccessManagerCloneable accessManager = AccessManagerCloneable(authority());
|
83
|
+
accessManager.completeSetup(address(_registry), VersionPartLib.toVersionPart(type(uint8).max));
|
84
|
+
|
85
|
+
_checkTargetIsReadyForAuthorization(instanceAddress);
|
95
86
|
|
96
87
|
// check matching releases
|
97
|
-
if (_instanceAuthorization.getRelease() != _instance.
|
88
|
+
if (_instanceAuthorization.getRelease() != _instance.getRelease()) {
|
98
89
|
revert ErrorInstanceAdminReleaseMismatch();
|
99
90
|
}
|
100
91
|
|
@@ -102,50 +93,58 @@ contract InstanceAdmin is
|
|
102
93
|
_createRoles(_instanceAuthorization);
|
103
94
|
_createModuleTargetsWithRoles();
|
104
95
|
_createTargetAuthorizations(_instanceAuthorization);
|
105
|
-
|
106
|
-
// grant component owner roles to instance owner
|
107
|
-
_grantComponentOwnerRoles();
|
108
96
|
}
|
109
97
|
|
110
98
|
|
111
99
|
/// @dev Initializes the authorization for the specified component.
|
112
100
|
/// Important: The component MUST be registered.
|
113
101
|
function initializeComponentAuthorization(
|
114
|
-
|
115
|
-
IAuthorization authorization
|
102
|
+
IInstanceLinkedComponent component
|
116
103
|
)
|
117
104
|
external
|
118
105
|
{
|
119
|
-
|
106
|
+
// !!! TODO add caller restrictions?
|
107
|
+
|
108
|
+
_checkTargetIsReadyForAuthorization(address(component));
|
120
109
|
|
110
|
+
// get authorization specification
|
111
|
+
IAuthorization authorization = component.getAuthorization();
|
112
|
+
|
113
|
+
// create roles
|
121
114
|
_createRoles(authorization);
|
122
115
|
|
123
116
|
// create component target
|
124
117
|
_createTarget(
|
125
|
-
|
118
|
+
address(component),
|
126
119
|
authorization.getTargetName(),
|
127
120
|
true, // checkAuthority
|
128
121
|
false); // custom
|
129
122
|
|
123
|
+
_createTarget(
|
124
|
+
address(component.getTokenHandler()),
|
125
|
+
string(abi.encodePacked(authorization.getTargetName(), "TH")),
|
126
|
+
true,
|
127
|
+
false);
|
128
|
+
|
129
|
+
FunctionInfo[] memory functions = new FunctionInfo[](3);
|
130
|
+
functions[0] = toFunction(TokenHandler.collectTokens.selector, "collectTokens");
|
131
|
+
functions[1] = toFunction(TokenHandler.collectTokensToThreeRecipients.selector, "collectTokensToThreeRecipients");
|
132
|
+
functions[2] = toFunction(TokenHandler.distributeTokens.selector, "distributeTokens");
|
133
|
+
|
134
|
+
// FIXME: make this a bit nicer and work with IAuthorization. Use a specific role, not public - access to TokenHandler must be restricted
|
135
|
+
_authorizeTargetFunctions(
|
136
|
+
address(component.getTokenHandler()),
|
137
|
+
getPublicRole(),
|
138
|
+
functions);
|
139
|
+
|
130
140
|
_grantRoleToAccount(
|
131
141
|
authorization.getTargetRole(
|
132
|
-
authorization.
|
133
|
-
|
142
|
+
authorization.getMainTarget()),
|
143
|
+
address(component));
|
134
144
|
|
135
145
|
_createTargetAuthorizations(authorization);
|
136
146
|
}
|
137
147
|
|
138
|
-
|
139
|
-
function _grantComponentOwnerRoles()
|
140
|
-
internal
|
141
|
-
{
|
142
|
-
address instanceOwner = _registry.ownerOf(_instance.getNftId());
|
143
|
-
_grantRoleToAccount(DISTRIBUTION_OWNER_ROLE(), instanceOwner);
|
144
|
-
_grantRoleToAccount(ORACLE_OWNER_ROLE(), instanceOwner);
|
145
|
-
_grantRoleToAccount(POOL_OWNER_ROLE(), instanceOwner);
|
146
|
-
_grantRoleToAccount(PRODUCT_OWNER_ROLE(), instanceOwner);
|
147
|
-
}
|
148
|
-
|
149
148
|
/// @dev Creates a custom role
|
150
149
|
// TODO implement
|
151
150
|
// function createRole()
|
@@ -165,15 +164,42 @@ contract InstanceAdmin is
|
|
165
164
|
_grantRoleToAccount(roleId, account);
|
166
165
|
}
|
167
166
|
|
167
|
+
|
168
|
+
function setInstanceLocked(bool locked)
|
169
|
+
external
|
170
|
+
onlyInstanceOwner()
|
171
|
+
{
|
172
|
+
AccessManagerCloneable accessManager = AccessManagerCloneable(authority());
|
173
|
+
|
174
|
+
if(accessManager.isLocked() == locked) {
|
175
|
+
revert ErrorInstanceAdminInstanceAlreadyLocked();
|
176
|
+
}
|
177
|
+
accessManager.setLocked(locked);
|
178
|
+
}
|
179
|
+
|
168
180
|
/// @dev Returns the instance authorization specification used to set up this instance admin.
|
169
181
|
function getInstanceAuthorization()
|
170
182
|
external
|
171
183
|
view
|
172
|
-
returns (
|
184
|
+
returns (IAuthorization instanceAuthorizaion)
|
173
185
|
{
|
174
186
|
return _instanceAuthorization;
|
175
187
|
}
|
176
188
|
|
189
|
+
// ------------------- Internal functions ------------------- //
|
190
|
+
|
191
|
+
function _checkTargetIsReadyForAuthorization(address target)
|
192
|
+
internal
|
193
|
+
view
|
194
|
+
{
|
195
|
+
if (!_registry.isRegistered(target)) {
|
196
|
+
revert ErrorInstanceAdminTargetNotRegistered(target);
|
197
|
+
}
|
198
|
+
|
199
|
+
if (targetExists(target)) {
|
200
|
+
revert ErrorInstanceAdminTargetAlreadyAuthorized(target);
|
201
|
+
}
|
202
|
+
}
|
177
203
|
|
178
204
|
function _createRoles(IAuthorization authorization)
|
179
205
|
internal
|
@@ -184,9 +210,12 @@ contract InstanceAdmin is
|
|
184
210
|
|
185
211
|
for(uint256 i = 0; i < roles.length; i++) {
|
186
212
|
roleId = roles[i];
|
187
|
-
|
188
|
-
|
189
|
-
|
213
|
+
|
214
|
+
if (!roleExists(roleId)) {
|
215
|
+
_createRole(
|
216
|
+
roleId,
|
217
|
+
authorization.getRoleInfo(roleId));
|
218
|
+
}
|
190
219
|
}
|
191
220
|
}
|
192
221
|
|
@@ -5,46 +5,33 @@ import {
|
|
5
5
|
PRODUCT, ORACLE, POOL, INSTANCE, COMPONENT, DISTRIBUTION, APPLICATION, POLICY, CLAIM, BUNDLE
|
6
6
|
} from "../../contracts/type/ObjectType.sol";
|
7
7
|
|
8
|
-
import {
|
9
|
-
ADMIN_ROLE, DISTRIBUTION_OWNER_ROLE, ORACLE_OWNER_ROLE, POOL_OWNER_ROLE, PRODUCT_OWNER_ROLE
|
10
|
-
} from "../../contracts/type/RoleId.sol";
|
11
|
-
|
12
8
|
import {BundleSet} from "../instance/BundleSet.sol";
|
13
9
|
import {IAccess} from "../authorization/IAccess.sol";
|
14
10
|
import {Instance} from "../instance/Instance.sol";
|
15
11
|
import {InstanceAdmin} from "../instance/InstanceAdmin.sol";
|
16
12
|
import {InstanceStore} from "../instance/InstanceStore.sol";
|
17
|
-
import {
|
18
|
-
import {RoleId} from "../type/RoleId.sol";
|
19
|
-
import {VersionPart, VersionPartLib} from "../type/Version.sol";
|
13
|
+
import {Authorization} from "../authorization/Authorization.sol";
|
20
14
|
|
21
15
|
|
22
16
|
contract InstanceAuthorizationV3
|
23
|
-
is
|
17
|
+
is Authorization
|
24
18
|
{
|
25
19
|
|
20
|
+
string public constant INSTANCE_ROLE_NAME = "InstanceRole";
|
21
|
+
|
26
22
|
string public constant INSTANCE_TARGET_NAME = "Instance";
|
27
23
|
string public constant INSTANCE_STORE_TARGET_NAME = "InstanceStore";
|
28
24
|
string public constant INSTANCE_ADMIN_TARGET_NAME = "InstanceAdmin";
|
29
25
|
string public constant BUNDLE_SET_TARGET_NAME = "BundleSet";
|
30
26
|
|
31
|
-
|
32
|
-
string public constant DISTRIBUTION_OWNER_ROLE_NAME = "DistributionOwnerRole";
|
33
|
-
string public constant ORACLE_OWNER_ROLE_NAME = "OracleOwnerRole";
|
34
|
-
string public constant POOL_OWNER_ROLE_NAME = "PoolOwnerRole";
|
35
|
-
string public constant PRODUCT_OWNER_ROLE_NAME = "ProductOwnerRole";
|
36
|
-
|
37
|
-
constructor() ModuleAuthorization(INSTANCE_TARGET_NAME) {}
|
27
|
+
constructor() Authorization(INSTANCE_TARGET_NAME) {}
|
38
28
|
|
39
29
|
|
40
30
|
function _setupRoles()
|
41
31
|
internal
|
42
32
|
override
|
43
33
|
{
|
44
|
-
|
45
|
-
_addGifRole(ORACLE_OWNER_ROLE(), ORACLE_OWNER_ROLE_NAME);
|
46
|
-
_addGifRole(POOL_OWNER_ROLE(), POOL_OWNER_ROLE_NAME);
|
47
|
-
_addGifRole(PRODUCT_OWNER_ROLE(), PRODUCT_OWNER_ROLE_NAME);
|
34
|
+
// empty implementation
|
48
35
|
}
|
49
36
|
|
50
37
|
|
@@ -55,7 +42,7 @@ contract InstanceAuthorizationV3
|
|
55
42
|
// instance target
|
56
43
|
_addTargetWithRole(
|
57
44
|
INSTANCE_TARGET_NAME,
|
58
|
-
|
45
|
+
_toTargetRoleId(INSTANCE()),
|
59
46
|
INSTANCE_ROLE_NAME);
|
60
47
|
|
61
48
|
// instance supporting targets
|
@@ -85,6 +72,7 @@ contract InstanceAuthorizationV3
|
|
85
72
|
_setupInstanceAdminAuthorization();
|
86
73
|
_setupInstanceStoreAuthorization();
|
87
74
|
_setupBundleSetAuthorization();
|
75
|
+
|
88
76
|
}
|
89
77
|
|
90
78
|
|
@@ -120,7 +108,7 @@ contract InstanceAuthorizationV3
|
|
120
108
|
IAccess.FunctionInfo[] storage functions;
|
121
109
|
|
122
110
|
// authorize instance role
|
123
|
-
functions = _authorizeForTarget(INSTANCE_ADMIN_TARGET_NAME,
|
111
|
+
functions = _authorizeForTarget(INSTANCE_ADMIN_TARGET_NAME, _toTargetRoleId(INSTANCE()));
|
124
112
|
_authorize(functions, InstanceAdmin.grantRole.selector, "grantRole");
|
125
113
|
|
126
114
|
// authorize instance service role
|
@@ -191,6 +179,8 @@ contract InstanceAuthorizationV3
|
|
191
179
|
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(POLICY()));
|
192
180
|
_authorize(functions, InstanceStore.updatePolicy.selector, "updatePolicy");
|
193
181
|
_authorize(functions, InstanceStore.updatePolicyState.selector, "updatePolicyState");
|
182
|
+
_authorize(functions, InstanceStore.createPremium.selector, "createPremium");
|
183
|
+
_authorize(functions, InstanceStore.updatePremiumState.selector, "updatePremiumState");
|
194
184
|
|
195
185
|
// authorize claim service role
|
196
186
|
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(CLAIM()));
|
@@ -2,12 +2,12 @@
|
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
4
|
import {Amount} from "../type/Amount.sol";
|
5
|
-
import {ClaimId} from "../type/ClaimId.sol";
|
5
|
+
import {ClaimId, ClaimIdLib} from "../type/ClaimId.sol";
|
6
6
|
import {DistributorType} from "../type/DistributorType.sol";
|
7
7
|
import {Key32} from "../type/Key32.sol";
|
8
8
|
import {NftId} from "../type/NftId.sol";
|
9
|
-
import {COMPONENT, DISTRIBUTOR, DISTRIBUTION, PRODUCT, POLICY, POOL, BUNDLE} from "../type/ObjectType.sol";
|
10
|
-
import {PayoutId} from "../type/PayoutId.sol";
|
9
|
+
import {COMPONENT, DISTRIBUTOR, DISTRIBUTION, PREMIUM, PRODUCT, POLICY, POOL, BUNDLE} from "../type/ObjectType.sol";
|
10
|
+
import {PayoutId, PayoutIdLib} from "../type/PayoutId.sol";
|
11
11
|
import {ReferralId, ReferralStatus, ReferralLib, REFERRAL_OK, REFERRAL_ERROR_UNKNOWN, REFERRAL_ERROR_EXPIRED, REFERRAL_ERROR_EXHAUSTED} from "../type/Referral.sol";
|
12
12
|
import {RequestId} from "../type/RequestId.sol";
|
13
13
|
import {RiskId} from "../type/RiskId.sol";
|
@@ -26,6 +26,7 @@ import {IRisk} from "../instance/module/IRisk.sol";
|
|
26
26
|
import {TimestampLib} from "../type/Timestamp.sol";
|
27
27
|
|
28
28
|
import {InstanceStore} from "./InstanceStore.sol";
|
29
|
+
import {BundleSet} from "./BundleSet.sol";
|
29
30
|
|
30
31
|
|
31
32
|
contract InstanceReader {
|
@@ -37,6 +38,7 @@ contract InstanceReader {
|
|
37
38
|
|
38
39
|
IInstance internal _instance;
|
39
40
|
InstanceStore internal _store;
|
41
|
+
BundleSet internal _bundleSet;
|
40
42
|
|
41
43
|
/// @dev This initializer needs to be called from the instance itself.
|
42
44
|
function initialize() public {
|
@@ -56,6 +58,7 @@ contract InstanceReader {
|
|
56
58
|
_initialized = true;
|
57
59
|
_instance = IInstance(instanceAddress);
|
58
60
|
_store = _instance.getInstanceStore();
|
61
|
+
_bundleSet = _instance.getBundleSet();
|
59
62
|
}
|
60
63
|
|
61
64
|
|
@@ -80,6 +83,41 @@ contract InstanceReader {
|
|
80
83
|
return _store.getState(toPolicyKey(policyNftId));
|
81
84
|
}
|
82
85
|
|
86
|
+
function getPremiumInfo(NftId policyNftId)
|
87
|
+
public
|
88
|
+
view
|
89
|
+
returns (IPolicy.PremiumInfo memory info)
|
90
|
+
{
|
91
|
+
bytes memory data = _store.getData(toPremiumKey(policyNftId));
|
92
|
+
if (data.length > 0) {
|
93
|
+
return abi.decode(data, (IPolicy.PremiumInfo));
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
function getPremiumInfoState(NftId policyNftId)
|
98
|
+
public
|
99
|
+
view
|
100
|
+
returns (StateId state)
|
101
|
+
{
|
102
|
+
return _store.getState(toPremiumKey(policyNftId));
|
103
|
+
}
|
104
|
+
|
105
|
+
function activeBundles(NftId poolNftId)
|
106
|
+
public
|
107
|
+
view
|
108
|
+
returns (uint256 bundles)
|
109
|
+
{
|
110
|
+
return _bundleSet.activeBundles(poolNftId);
|
111
|
+
}
|
112
|
+
|
113
|
+
function getActiveBundleNftId(NftId poolNftId, uint256 idx)
|
114
|
+
public
|
115
|
+
view
|
116
|
+
returns (NftId bundleNftId)
|
117
|
+
{
|
118
|
+
return _bundleSet.getActiveBundleNftId(poolNftId, idx);
|
119
|
+
}
|
120
|
+
|
83
121
|
function getBundleState(NftId bundleNftId)
|
84
122
|
public
|
85
123
|
view
|
@@ -88,14 +126,8 @@ contract InstanceReader {
|
|
88
126
|
return _store.getState(toBundleKey(bundleNftId));
|
89
127
|
}
|
90
128
|
|
91
|
-
/// @dev
|
92
|
-
|
93
|
-
/// - policy exists
|
94
|
-
/// - has been activated
|
95
|
-
/// - is not yet closed
|
96
|
-
/// - has no open claims
|
97
|
-
/// - claim amount matches sum insured amount or is expired
|
98
|
-
function policyIsCloseable(NftId policyNftId)
|
129
|
+
/// @dev Returns true iff policy is active.
|
130
|
+
function policyIsActive(NftId policyNftId)
|
99
131
|
public
|
100
132
|
view
|
101
133
|
returns (bool isCloseable)
|
@@ -104,17 +136,27 @@ contract InstanceReader {
|
|
104
136
|
|
105
137
|
if (info.productNftId.eqz()) { return false; } // not closeable: policy does not exist (or does not belong to this instance)
|
106
138
|
if (info.activatedAt.eqz()) { return false; } // not closeable: not yet activated
|
107
|
-
if (info.
|
108
|
-
if (info.
|
139
|
+
if (info.activatedAt > TimestampLib.blockTimestamp()) { return false; } // not yet active
|
140
|
+
if (info.expiredAt <= TimestampLib.blockTimestamp()) { return false; } // already expired
|
141
|
+
|
142
|
+
return true;
|
143
|
+
}
|
109
144
|
|
110
|
-
|
111
|
-
|
145
|
+
function claims(NftId policyNftId)
|
146
|
+
public
|
147
|
+
view
|
148
|
+
returns (uint16 claims)
|
149
|
+
{
|
150
|
+
return getPolicyInfo(policyNftId).claimsCount;
|
151
|
+
}
|
112
152
|
|
113
|
-
// not closeable: not yet expired
|
114
|
-
if (TimestampLib.blockTimestamp() < info.expiredAt) { return false; }
|
115
153
|
|
116
|
-
|
117
|
-
|
154
|
+
function getClaimId(uint idx)
|
155
|
+
public
|
156
|
+
view
|
157
|
+
returns (ClaimId claimId)
|
158
|
+
{
|
159
|
+
return ClaimIdLib.toClaimId(idx + 1);
|
118
160
|
}
|
119
161
|
|
120
162
|
function getClaimInfo(NftId policyNftId, ClaimId claimId)
|
@@ -128,6 +170,7 @@ contract InstanceReader {
|
|
128
170
|
}
|
129
171
|
}
|
130
172
|
|
173
|
+
|
131
174
|
function getClaimState(NftId policyNftId, ClaimId claimId)
|
132
175
|
public
|
133
176
|
view
|
@@ -136,6 +179,34 @@ contract InstanceReader {
|
|
136
179
|
return _store.getState(claimId.toKey32(policyNftId));
|
137
180
|
}
|
138
181
|
|
182
|
+
|
183
|
+
function payouts(NftId policyNftId, ClaimId claimId)
|
184
|
+
public
|
185
|
+
view
|
186
|
+
returns (uint24 payouts)
|
187
|
+
{
|
188
|
+
return getClaimInfo(policyNftId, claimId).payoutsCount;
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
function getPayoutId(ClaimId claimId, uint24 idx)
|
193
|
+
public
|
194
|
+
view
|
195
|
+
returns (PayoutId payoutId)
|
196
|
+
{
|
197
|
+
return PayoutIdLib.toPayoutId(claimId, idx + 1);
|
198
|
+
}
|
199
|
+
|
200
|
+
|
201
|
+
function getRemainingClaimableAmount(NftId policyNftId)
|
202
|
+
public
|
203
|
+
view
|
204
|
+
returns (Amount remainingClaimableAmount)
|
205
|
+
{
|
206
|
+
IPolicy.PolicyInfo memory info = getPolicyInfo(policyNftId);
|
207
|
+
return info.sumInsuredAmount - info.claimAmount;
|
208
|
+
}
|
209
|
+
|
139
210
|
function getPayoutInfo(NftId policyNftId, PayoutId payoutId)
|
140
211
|
public
|
141
212
|
view
|
@@ -166,6 +237,19 @@ contract InstanceReader {
|
|
166
237
|
}
|
167
238
|
}
|
168
239
|
|
240
|
+
function getWallet(NftId componentNftId)
|
241
|
+
public
|
242
|
+
view
|
243
|
+
returns (address tokenHandler)
|
244
|
+
{
|
245
|
+
bytes memory data = _store.getData(toComponentKey(componentNftId));
|
246
|
+
|
247
|
+
if (data.length > 0) {
|
248
|
+
IComponents.ComponentInfo memory info = abi.decode(data, (IComponents.ComponentInfo));
|
249
|
+
return info.wallet;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
|
169
253
|
function getTokenHandler(NftId componentNftId)
|
170
254
|
public
|
171
255
|
view
|
@@ -364,6 +448,9 @@ contract InstanceReader {
|
|
364
448
|
return policyNftId.toKey32(POLICY());
|
365
449
|
}
|
366
450
|
|
451
|
+
function toPremiumKey(NftId policyNftId) public pure returns (Key32) {
|
452
|
+
return policyNftId.toKey32(PREMIUM());
|
453
|
+
}
|
367
454
|
|
368
455
|
function toDistributorKey(NftId distributorNftId) public pure returns (Key32) {
|
369
456
|
return distributorNftId.toKey32(DISTRIBUTOR());
|