@etherisc/gif-next 0.0.2-ce8407f-016 → 0.0.2-ce8fb44-591
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 +197 -16
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1248 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/{instance/IAccessManagerSimple.sol/IAccessManagerSimple.json → authorization/IAccessAdmin.sol/IAccessAdmin.json} +499 -549
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1191 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1394 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +900 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +843 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +643 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +416 -3032
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1621 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1049 -192
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1073 -30
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3591 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → base/Cloneable.sol/Cloneable.json} +38 -2
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +30 -112
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
- 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 +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1063 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +703 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +959 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1269 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +512 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +966 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/IService.sol/IService.json → product/IProductService.sol/IProductService.json} +145 -166
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1257 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +60 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +357 -59
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +557 -179
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +509 -164
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1741 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +698 -259
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +368 -123
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1159 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +784 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +718 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +34 -30
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +15 -35
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/IService.sol/IService.json} +134 -29
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +996 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +78 -87
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +115 -29
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +330 -62
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +132 -53
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/Service.sol/Service.json} +203 -164
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2237 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/DistributorType.sol/DistributorTypeLib.json +5 -5
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Key32.sol/Key32Lib.json +3 -3
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/RiskId.sol/RiskIdLib.json +5 -5
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +498 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Version.sol/VersionLib.json +3 -3
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/authorization/AccessAdmin.sol +588 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +218 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +136 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +149 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
- package/contracts/distribution/Distribution.sol +283 -0
- package/contracts/distribution/DistributionService.sol +302 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +48 -0
- package/contracts/distribution/IDistributionService.sol +85 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +81 -1
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +185 -323
- package/contracts/instance/InstanceAdmin.sol +266 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
- package/contracts/instance/InstanceReader.sol +227 -57
- package/contracts/instance/InstanceService.sol +421 -23
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +276 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +106 -0
- package/contracts/instance/base/ObjectManager.sol +79 -0
- package/contracts/instance/module/IAccess.sol +30 -22
- package/contracts/instance/module/IBundle.sol +8 -7
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +7 -4
- package/contracts/instance/module/IPolicy.sol +56 -17
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/TestToken.sol → mock/Dip.sol} +5 -5
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +157 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BasicPool.sol +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +49 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +52 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +311 -0
- package/contracts/pool/PoolService.sol +452 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +82 -0
- package/contracts/product/BasicProductAuthorization.sol +40 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +39 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +392 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +55 -25
- package/contracts/registry/IRegistry.sol +77 -29
- package/contracts/registry/IRegistryService.sol +56 -16
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +412 -325
- package/contracts/registry/RegistryAdmin.sol +365 -0
- package/contracts/registry/RegistryService.sol +162 -265
- package/contracts/registry/RegistryServiceManager.sol +27 -17
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseManager.sol +487 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +581 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +16 -10
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +50 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +20 -14
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
- package/contracts/shared/INftOwnable.sol +13 -12
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/IVersionable.sol +5 -48
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +151 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +60 -89
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +132 -27
- package/contracts/shared/Registerable.sol +27 -41
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +83 -0
- package/contracts/shared/TokenHandler.sol +39 -8
- package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
- package/contracts/shared/Versionable.sol +5 -93
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +153 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +513 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +411 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +615 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/{types → type}/DistributorType.sol +2 -2
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/NftId.sol +21 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +275 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +5 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +38 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +23 -14
- package/contracts/type/UFixed.sol +332 -0
- package/contracts/{types → type}/Version.sol +6 -2
- package/package.json +11 -7
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1119
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -917
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -736
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -457
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -10
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagedSimple.sol +0 -114
- package/contracts/instance/AccessManagerSimple.sol +0 -682
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/InstanceAccessManager.sol +0 -288
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/KeyValueStore.sol +0 -188
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/base/ServiceBase.sol +0 -44
- package/contracts/instance/module/ISetup.sol +0 -41
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/registry/IChainNft.sol +0 -22
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/test/Usdc.sol +0 -26
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -56
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -152
- package/contracts/types/RoleId.sol +0 -75
- package/contracts/types/UFixed.sol +0 -209
- /package/contracts/{types → type}/Key32.sol +0 -0
@@ -1,188 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.20;
|
3
|
-
|
4
|
-
import {Blocknumber, blockBlocknumber, zeroBlocknumber} from "../../types/Blocknumber.sol";
|
5
|
-
import {Key32, KeyId, Key32Lib} from "../../types/Key32.sol";
|
6
|
-
import {NftId} from "../../types/NftId.sol";
|
7
|
-
import {ObjectType} from "../../types/ObjectType.sol";
|
8
|
-
import {StateId, ACTIVE} from "../../types/StateId.sol";
|
9
|
-
import {Timestamp, TimestampLib} from "../../types/Timestamp.sol";
|
10
|
-
|
11
|
-
import {Lifecycle} from "./Lifecycle.sol";
|
12
|
-
import {IKeyValueStore} from "./IKeyValueStore.sol";
|
13
|
-
|
14
|
-
contract KeyValueStore is Lifecycle, IKeyValueStore {
|
15
|
-
|
16
|
-
mapping(Key32 key32 => Value value) private _value;
|
17
|
-
address private _owner;
|
18
|
-
|
19
|
-
modifier onlyOwner() {
|
20
|
-
require(
|
21
|
-
msg.sender == _owner,
|
22
|
-
"ERROR:KVS-001:NOT_OWNER");
|
23
|
-
_;
|
24
|
-
}
|
25
|
-
|
26
|
-
constructor() {
|
27
|
-
_owner = msg.sender;
|
28
|
-
}
|
29
|
-
|
30
|
-
function create(
|
31
|
-
Key32 key32,
|
32
|
-
bytes memory data
|
33
|
-
)
|
34
|
-
public
|
35
|
-
onlyOwner
|
36
|
-
{
|
37
|
-
_create(key32, data);
|
38
|
-
}
|
39
|
-
|
40
|
-
function _create(
|
41
|
-
Key32 key32,
|
42
|
-
bytes memory data
|
43
|
-
)
|
44
|
-
internal
|
45
|
-
{
|
46
|
-
ObjectType objectType = key32.toObjectType();
|
47
|
-
require(objectType.gtz(), "ERROR:KVS-010:TYPE_UNDEFINED");
|
48
|
-
|
49
|
-
Metadata storage metadata = _value[key32].metadata;
|
50
|
-
require(metadata.state.eqz(), "ERROR:KVS-012:ALREADY_CREATED");
|
51
|
-
|
52
|
-
address createdBy = msg.sender;
|
53
|
-
Blocknumber blocknumber = blockBlocknumber();
|
54
|
-
StateId initialState = hasLifecycle(objectType) ? getInitialState(objectType) : ACTIVE();
|
55
|
-
|
56
|
-
// set metadata
|
57
|
-
metadata.objectType = objectType;
|
58
|
-
metadata.state = initialState;
|
59
|
-
metadata.updatedBy = createdBy;
|
60
|
-
metadata.updatedIn = blocknumber;
|
61
|
-
metadata.createdIn = blocknumber;
|
62
|
-
|
63
|
-
// set data
|
64
|
-
_value[key32].data = data;
|
65
|
-
|
66
|
-
// solhint-disable-next-line avoid-tx-origin
|
67
|
-
emit LogInfoCreated(key32.toObjectType(), key32.toKeyId(), initialState, createdBy, tx.origin);
|
68
|
-
}
|
69
|
-
|
70
|
-
function update(
|
71
|
-
Key32 key32,
|
72
|
-
bytes memory data,
|
73
|
-
StateId state
|
74
|
-
)
|
75
|
-
public
|
76
|
-
onlyOwner
|
77
|
-
{
|
78
|
-
_update(key32, data, state);
|
79
|
-
}
|
80
|
-
|
81
|
-
function _update(
|
82
|
-
Key32 key32,
|
83
|
-
bytes memory data,
|
84
|
-
StateId state
|
85
|
-
)
|
86
|
-
internal
|
87
|
-
{
|
88
|
-
require(state.gtz(), "ERROR:KVS-020:STATE_UNDEFINED");
|
89
|
-
Metadata storage metadata = _value[key32].metadata;
|
90
|
-
StateId stateOld = metadata.state;
|
91
|
-
require(stateOld.gtz(), "ERROR:KVS-021:NOT_EXISTING");
|
92
|
-
|
93
|
-
// update data
|
94
|
-
_value[key32].data = data;
|
95
|
-
|
96
|
-
// update metadata (and state)
|
97
|
-
address updatedBy = msg.sender;
|
98
|
-
Blocknumber lastUpdatedIn = metadata.updatedIn;
|
99
|
-
metadata.state = state;
|
100
|
-
metadata.updatedBy = updatedBy;
|
101
|
-
metadata.updatedIn = blockBlocknumber();
|
102
|
-
|
103
|
-
// create log entries
|
104
|
-
// solhint-disable avoid-tx-origin
|
105
|
-
emit LogStateUpdated(key32.toObjectType(), key32.toKeyId(), state, stateOld, updatedBy, tx.origin, lastUpdatedIn);
|
106
|
-
emit LogInfoUpdated(key32.toObjectType(), key32.toKeyId(), state, updatedBy, tx.origin, lastUpdatedIn);
|
107
|
-
// solhing-enable
|
108
|
-
}
|
109
|
-
|
110
|
-
function updateData(Key32 key32, bytes memory data)
|
111
|
-
public
|
112
|
-
onlyOwner
|
113
|
-
{
|
114
|
-
_updateData(key32, data);
|
115
|
-
}
|
116
|
-
|
117
|
-
function _updateData(Key32 key32, bytes memory data)
|
118
|
-
internal
|
119
|
-
{
|
120
|
-
Metadata storage metadata = _value[key32].metadata;
|
121
|
-
StateId state = metadata.state;
|
122
|
-
require(state.gtz(), "ERROR:KVS-030:NOT_EXISTING");
|
123
|
-
|
124
|
-
// update data
|
125
|
-
_value[key32].data = data;
|
126
|
-
|
127
|
-
// update metadata
|
128
|
-
address updatedBy = msg.sender;
|
129
|
-
Blocknumber lastUpdatedIn = metadata.updatedIn;
|
130
|
-
metadata.updatedBy = updatedBy;
|
131
|
-
metadata.updatedIn = blockBlocknumber();
|
132
|
-
|
133
|
-
// create log entry
|
134
|
-
// solhint-disable-next-line avoid-tx-origin
|
135
|
-
emit LogInfoUpdated(key32.toObjectType(), key32.toKeyId(), state, updatedBy, tx.origin, lastUpdatedIn);
|
136
|
-
}
|
137
|
-
|
138
|
-
function updateState(Key32 key32, StateId state)
|
139
|
-
public
|
140
|
-
onlyOwner
|
141
|
-
{
|
142
|
-
_updateState(key32, state);
|
143
|
-
}
|
144
|
-
|
145
|
-
function _updateState(Key32 key32, StateId state)
|
146
|
-
internal
|
147
|
-
{
|
148
|
-
require(state.gtz(), "ERROR:KVS-040:STATE_UNDEFINED");
|
149
|
-
Metadata storage metadata = _value[key32].metadata;
|
150
|
-
StateId stateOld = metadata.state;
|
151
|
-
require(stateOld.gtz(), "ERROR:KVS-041:NOT_EXISTING");
|
152
|
-
|
153
|
-
// update metadata (and state)
|
154
|
-
address updatedBy = msg.sender;
|
155
|
-
Blocknumber lastUpdatedIn = metadata.updatedIn;
|
156
|
-
metadata.state = state;
|
157
|
-
metadata.updatedBy = updatedBy;
|
158
|
-
metadata.updatedIn = blockBlocknumber();
|
159
|
-
|
160
|
-
// create log entry
|
161
|
-
// solhint-disable-next-line avoid-tx-origin
|
162
|
-
emit LogStateUpdated(key32.toObjectType(), key32.toKeyId(), state, stateOld, updatedBy, tx.origin, lastUpdatedIn);
|
163
|
-
}
|
164
|
-
|
165
|
-
function exists(Key32 key32) public view returns (bool) {
|
166
|
-
return _value[key32].metadata.state.gtz();
|
167
|
-
}
|
168
|
-
|
169
|
-
function get(Key32 key32) public view returns (Value memory value) {
|
170
|
-
return _value[key32];
|
171
|
-
}
|
172
|
-
|
173
|
-
function getMetadata(Key32 key32) public view returns (Metadata memory metadata) {
|
174
|
-
return _value[key32].metadata;
|
175
|
-
}
|
176
|
-
|
177
|
-
function getData(Key32 key32) public view returns (bytes memory data) {
|
178
|
-
return _value[key32].data;
|
179
|
-
}
|
180
|
-
|
181
|
-
function getState(Key32 key32) public view returns (StateId state) {
|
182
|
-
return _value[key32].metadata.state;
|
183
|
-
}
|
184
|
-
|
185
|
-
function toKey32(ObjectType objectType, KeyId id) external pure override returns(Key32) {
|
186
|
-
return Key32Lib.toKey32(objectType, id);
|
187
|
-
}
|
188
|
-
}
|
@@ -1,100 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.20;
|
3
|
-
|
4
|
-
import {NftId} from "../../types/NftId.sol";
|
5
|
-
import {ObjectType, COMPONENT, BUNDLE, POLICY, RISK} from "../../types/ObjectType.sol";
|
6
|
-
import {StateId, ACTIVE, PAUSED, ARCHIVED, CLOSED, APPLIED, UNDERWRITTEN, REVOKED, DECLINED} from "../../types/StateId.sol";
|
7
|
-
import {ILifecycle} from "./ILifecycle.sol";
|
8
|
-
|
9
|
-
contract Lifecycle is ILifecycle {
|
10
|
-
mapping(ObjectType objectType => StateId initialState)
|
11
|
-
private _initialState;
|
12
|
-
|
13
|
-
mapping(ObjectType objectType => mapping(StateId stateFrom => mapping(StateId stateTo => bool isValid)))
|
14
|
-
private _isValidTransition;
|
15
|
-
|
16
|
-
constructor() {
|
17
|
-
_setupBundleLifecycle();
|
18
|
-
_setupComponentLifecycle();
|
19
|
-
_setupPolicyLifecycle();
|
20
|
-
_setupRiskLifecycle();
|
21
|
-
}
|
22
|
-
|
23
|
-
function hasLifecycle(
|
24
|
-
ObjectType objectType
|
25
|
-
)
|
26
|
-
public
|
27
|
-
view
|
28
|
-
override
|
29
|
-
returns (bool)
|
30
|
-
{
|
31
|
-
return _initialState[objectType].gtz();
|
32
|
-
}
|
33
|
-
|
34
|
-
function getInitialState(
|
35
|
-
ObjectType objectType
|
36
|
-
)
|
37
|
-
public
|
38
|
-
view
|
39
|
-
returns (StateId)
|
40
|
-
{
|
41
|
-
return _initialState[objectType];
|
42
|
-
}
|
43
|
-
|
44
|
-
function checkTransition(
|
45
|
-
ObjectType objectType,
|
46
|
-
StateId fromId,
|
47
|
-
StateId toId
|
48
|
-
)
|
49
|
-
public
|
50
|
-
view
|
51
|
-
{
|
52
|
-
// return if no life cycle support
|
53
|
-
if (_initialState[objectType].eqz()) {
|
54
|
-
return;
|
55
|
-
}
|
56
|
-
|
57
|
-
// enforce valid state transition
|
58
|
-
if (!_isValidTransition[objectType][fromId][toId]) {
|
59
|
-
revert ErrorInvalidStateTransition(objectType, fromId, toId);
|
60
|
-
}
|
61
|
-
}
|
62
|
-
|
63
|
-
function isValidTransition(
|
64
|
-
ObjectType objectType,
|
65
|
-
StateId fromId,
|
66
|
-
StateId toId
|
67
|
-
) public view returns (bool) {
|
68
|
-
return _isValidTransition[objectType][fromId][toId];
|
69
|
-
}
|
70
|
-
|
71
|
-
function _setupComponentLifecycle() internal {
|
72
|
-
_initialState[COMPONENT()] = ACTIVE();
|
73
|
-
_isValidTransition[COMPONENT()][ACTIVE()][PAUSED()] = true;
|
74
|
-
_isValidTransition[COMPONENT()][PAUSED()][ACTIVE()] = true;
|
75
|
-
_isValidTransition[COMPONENT()][PAUSED()][ARCHIVED()] = true;
|
76
|
-
}
|
77
|
-
|
78
|
-
function _setupBundleLifecycle() internal {
|
79
|
-
_initialState[BUNDLE()] = ACTIVE();
|
80
|
-
_isValidTransition[BUNDLE()][ACTIVE()][PAUSED()] = true;
|
81
|
-
_isValidTransition[BUNDLE()][PAUSED()][ACTIVE()] = true;
|
82
|
-
_isValidTransition[BUNDLE()][PAUSED()][CLOSED()] = true;
|
83
|
-
}
|
84
|
-
|
85
|
-
function _setupPolicyLifecycle() internal {
|
86
|
-
_initialState[POLICY()] = APPLIED();
|
87
|
-
_isValidTransition[POLICY()][APPLIED()][REVOKED()] = true;
|
88
|
-
_isValidTransition[POLICY()][APPLIED()][DECLINED()] = true;
|
89
|
-
_isValidTransition[POLICY()][APPLIED()][UNDERWRITTEN()] = true;
|
90
|
-
_isValidTransition[POLICY()][UNDERWRITTEN()][ACTIVE()] = true;
|
91
|
-
_isValidTransition[POLICY()][ACTIVE()][CLOSED()] = true;
|
92
|
-
}
|
93
|
-
|
94
|
-
function _setupRiskLifecycle() internal {
|
95
|
-
_initialState[RISK()] = ACTIVE();
|
96
|
-
_isValidTransition[RISK()][ACTIVE()][PAUSED()] = true;
|
97
|
-
_isValidTransition[RISK()][PAUSED()][ACTIVE()] = true;
|
98
|
-
_isValidTransition[RISK()][PAUSED()][ARCHIVED()] = true;
|
99
|
-
}
|
100
|
-
}
|
@@ -1,44 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {NftId, zeroNftId} from "../../types/NftId.sol";
|
5
|
-
import {ObjectType, SERVICE} from "../../types/ObjectType.sol";
|
6
|
-
import {Version, VersionPart, VersionLib} from "../../types/Version.sol";
|
7
|
-
|
8
|
-
import {Registerable} from "../../shared/Registerable.sol";
|
9
|
-
import {IRegistry} from "../../registry/IRegistry.sol";
|
10
|
-
import {IVersionable} from "../../shared/IVersionable.sol";
|
11
|
-
import {Versionable} from "../../shared/Versionable.sol";
|
12
|
-
|
13
|
-
import {IService} from "./IService.sol";
|
14
|
-
|
15
|
-
abstract contract ServiceBase is
|
16
|
-
Registerable,
|
17
|
-
Versionable,
|
18
|
-
IService
|
19
|
-
{
|
20
|
-
function getName() public pure virtual override returns(string memory name);
|
21
|
-
|
22
|
-
function getMajorVersion() public view virtual override returns(VersionPart majorVersion) {
|
23
|
-
return getVersion().toMajorPart();
|
24
|
-
}
|
25
|
-
|
26
|
-
// from Versionable
|
27
|
-
function getVersion()
|
28
|
-
public
|
29
|
-
pure
|
30
|
-
virtual override (IVersionable, Versionable)
|
31
|
-
returns(Version)
|
32
|
-
{
|
33
|
-
return VersionLib.toVersion(3,0,0);
|
34
|
-
}
|
35
|
-
|
36
|
-
function _initializeServiceBase(address registry, NftId registryNftId, address initialOwner)
|
37
|
-
internal
|
38
|
-
//onlyInitializing //TODO uncomment when "fully" upgradeable
|
39
|
-
{// service must provide its name and version upon registration
|
40
|
-
bytes memory data = abi.encode(getName(), getMajorVersion());
|
41
|
-
_initializeRegisterable(registry, registryNftId, SERVICE(), false, initialOwner, data);
|
42
|
-
_registerInterface(type(IService).interfaceId);
|
43
|
-
}
|
44
|
-
}
|
@@ -1,41 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.20;
|
3
|
-
|
4
|
-
import {IERC20Metadata} from "@openzeppelin5/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
|
-
|
6
|
-
import {Fee} from "../../types/Fee.sol";
|
7
|
-
import {NftId} from "../../types/NftId.sol";
|
8
|
-
import {TokenHandler} from "../../shared/TokenHandler.sol";
|
9
|
-
|
10
|
-
interface ISetup {
|
11
|
-
struct ProductSetupInfo {
|
12
|
-
IERC20Metadata token;
|
13
|
-
TokenHandler tokenHandler;
|
14
|
-
NftId distributionNftId;
|
15
|
-
NftId poolNftId;
|
16
|
-
Fee distributionFee; // default distribution fee (no referral id)
|
17
|
-
Fee productFee; // product fee on net premium
|
18
|
-
Fee processingFee; // product fee on payout amounts
|
19
|
-
Fee poolFee; // pool fee on net premium
|
20
|
-
Fee stakingFee; // pool fee on staked capital from investor
|
21
|
-
Fee performanceFee; // pool fee on profits from capital investors
|
22
|
-
}
|
23
|
-
|
24
|
-
struct DistributionSetupInfo {
|
25
|
-
NftId productNftId;
|
26
|
-
TokenHandler tokenHandler;
|
27
|
-
Fee distributionFee; // default distribution fee (no referral id)
|
28
|
-
bool isIntercepting; // intercepts nft transfers (for distributors)
|
29
|
-
address wallet;
|
30
|
-
}
|
31
|
-
|
32
|
-
struct PoolSetupInfo {
|
33
|
-
NftId productNftId;
|
34
|
-
TokenHandler tokenHandler;
|
35
|
-
Fee poolFee; // pool fee on net premium
|
36
|
-
Fee stakingFee; // pool fee on staked capital from investor
|
37
|
-
Fee performanceFee; // pool fee on profits from capital investors
|
38
|
-
bool isIntercepting; // intercepts nft transfers (for bundles)
|
39
|
-
address wallet;
|
40
|
-
}
|
41
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.20;
|
3
|
-
|
4
|
-
import {IERC20Metadata} from "@openzeppelin5/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
|
-
|
6
|
-
import {Fee} from "../../types/Fee.sol";
|
7
|
-
import {NftId} from "../../types/NftId.sol";
|
8
|
-
import {TokenHandler} from "../../shared/TokenHandler.sol";
|
9
|
-
|
10
|
-
interface ITreasury {
|
11
|
-
struct TreasuryInfo {
|
12
|
-
IERC20Metadata token;
|
13
|
-
TokenHandler tokenHandler;
|
14
|
-
NftId distributionNftId;
|
15
|
-
NftId poolNftId;
|
16
|
-
Fee distributionFee; // default distribution fee (no referral id)
|
17
|
-
Fee productFee; // product fee on net premium
|
18
|
-
Fee processingFee; // product fee on payout amounts
|
19
|
-
Fee poolFee; // pool fee on net premium
|
20
|
-
Fee stakingFee; // pool fee on staked capital from investor
|
21
|
-
Fee performanceFee; // pool fee on profits from capital investors
|
22
|
-
}
|
23
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.20;
|
3
|
-
|
4
|
-
import {IERC721Enumerable} from "@openzeppelin5/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
|
5
|
-
|
6
|
-
interface IChainNft is IERC721Enumerable {
|
7
|
-
function mint(
|
8
|
-
address to,
|
9
|
-
address interceptor,
|
10
|
-
string memory uri
|
11
|
-
) external returns (uint256 tokenId);
|
12
|
-
|
13
|
-
function burn(uint256 tokenId) external;
|
14
|
-
|
15
|
-
function setURI(uint256 tokenId, string memory uri) external;
|
16
|
-
|
17
|
-
function exists(uint256 tokenId) external view returns (bool);
|
18
|
-
|
19
|
-
function totalMinted() external view returns (uint256);
|
20
|
-
|
21
|
-
function getRegistryAddress() external view returns (address registry);
|
22
|
-
}
|
@@ -1,72 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.20;
|
3
|
-
|
4
|
-
library ContractDeployerLib {
|
5
|
-
|
6
|
-
event LogContractDeployed(address contractAddress);
|
7
|
-
|
8
|
-
error ErrorCreationCodeHashMismatch(bytes32 expectedHash, bytes32 actualHash);
|
9
|
-
|
10
|
-
/// @dev deploys a new contract using the provided creation code
|
11
|
-
function deploy(
|
12
|
-
bytes memory creationCode,
|
13
|
-
bytes32 expectedCreationCodeHash
|
14
|
-
)
|
15
|
-
public
|
16
|
-
returns (address contractAdress)
|
17
|
-
{
|
18
|
-
// check against expected hash, if provided
|
19
|
-
if (expectedCreationCodeHash != bytes32(0)) {
|
20
|
-
bytes32 creationCodeHash = getHash(creationCode);
|
21
|
-
if (creationCodeHash != expectedCreationCodeHash) {
|
22
|
-
revert ErrorCreationCodeHashMismatch(expectedCreationCodeHash, creationCodeHash);
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
// solhint-disable no-inline-assembly
|
27
|
-
assembly {
|
28
|
-
contractAdress := create(0, add(creationCode, 0x20), mload(creationCode))
|
29
|
-
|
30
|
-
if iszero(extcodesize(contractAdress)) {
|
31
|
-
revert(0, 0)
|
32
|
-
}
|
33
|
-
}
|
34
|
-
// solhint enable
|
35
|
-
|
36
|
-
emit LogContractDeployed(contractAdress);
|
37
|
-
}
|
38
|
-
|
39
|
-
/// @dev gets the creation code for the new contract
|
40
|
-
// for terminology see eg https://www.rareskills.io/post/ethereum-contract-creation-code
|
41
|
-
function getCreationCode(
|
42
|
-
bytes memory byteCodeWithInitCode, // what you get with type(<Contract>).creationCode
|
43
|
-
bytes memory encodedConstructorArguments // what you get with
|
44
|
-
)
|
45
|
-
public
|
46
|
-
pure
|
47
|
-
returns (bytes memory creationCode)
|
48
|
-
{
|
49
|
-
return abi.encodePacked(byteCodeWithInitCode, encodedConstructorArguments);
|
50
|
-
}
|
51
|
-
|
52
|
-
|
53
|
-
function matchesWithHash(
|
54
|
-
bytes memory creationCode,
|
55
|
-
bytes32 expectedHash
|
56
|
-
)
|
57
|
-
public
|
58
|
-
pure
|
59
|
-
returns (bool isMatching)
|
60
|
-
{
|
61
|
-
return getHash(creationCode) == expectedHash;
|
62
|
-
}
|
63
|
-
|
64
|
-
|
65
|
-
function getHash(bytes memory creationCode)
|
66
|
-
public
|
67
|
-
pure
|
68
|
-
returns (bytes32 hash)
|
69
|
-
{
|
70
|
-
return keccak256(creationCode);
|
71
|
-
}
|
72
|
-
}
|
@@ -1,25 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {UFixed, UFixedMathLib} from "../types/UFixed.sol";
|
5
|
-
import {Fee, FeeLib} from "../types/Fee.sol";
|
6
|
-
|
7
|
-
contract TestFee {
|
8
|
-
|
9
|
-
function createFee(
|
10
|
-
uint256 fractionalValue,
|
11
|
-
int8 exponent,
|
12
|
-
uint256 fixedValue
|
13
|
-
)
|
14
|
-
external
|
15
|
-
pure
|
16
|
-
returns(Fee memory fee)
|
17
|
-
{
|
18
|
-
return FeeLib.toFee(UFixedMathLib.toUFixed(fractionalValue, exponent), fixedValue);
|
19
|
-
}
|
20
|
-
|
21
|
-
function getZeroFee() external pure returns(Fee memory fee) {
|
22
|
-
return FeeLib.zeroFee();
|
23
|
-
}
|
24
|
-
|
25
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {NftId} from "../../contracts/types/NftId.sol";
|
5
|
-
import {ObjectType, TOKEN} from "../../contracts/types/ObjectType.sol";
|
6
|
-
import {IRegistry} from "../../contracts/registry/IRegistry.sol";
|
7
|
-
import {Registerable} from "../../contracts/shared/Registerable.sol";
|
8
|
-
|
9
|
-
contract TestRegisterable is Registerable {
|
10
|
-
|
11
|
-
constructor(address registry, NftId registryNftId, ObjectType objectType, bool isInterceptor, address initialOwner)
|
12
|
-
//Registerable(registry, registryNftId)
|
13
|
-
// solhint-disable-next-line no-empty-blocks
|
14
|
-
{
|
15
|
-
bytes memory data = "";
|
16
|
-
_initializeRegisterable(registry, registryNftId, objectType, isInterceptor, initialOwner, data);
|
17
|
-
}
|
18
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {RoleId, RoleIdLib} from "../../contracts/types/RoleId.sol";
|
5
|
-
|
6
|
-
contract TestRoleId {
|
7
|
-
// function getRole(string memory roleName) external pure returns (RoleId) { return RoleIdLib.toRoleId(roleName); }
|
8
|
-
|
9
|
-
// function getProductOwnerRoleName() external pure returns (string memory) { return PRODUCT_OWNER_ROLE_NAME(); }
|
10
|
-
// function getProductOwnerRole() external pure returns (RoleId) { return PRODUCT_OWNER_ROLE(); }
|
11
|
-
|
12
|
-
// function getPoolOwnerRoleName() external pure returns (string memory) { return POOL_OWNER_ROLE_NAME(); }
|
13
|
-
// function getPoolOwnerRole() external pure returns (RoleId) { return POOL_OWNER_ROLE(); }
|
14
|
-
}
|
@@ -1,26 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {NftId} from "../../contracts/types/NftId.sol";
|
5
|
-
import {Version, VersionLib} from "../../contracts/types/Version.sol";
|
6
|
-
import {ServiceBase} from "../../contracts/instance/base/ServiceBase.sol";
|
7
|
-
|
8
|
-
import {IVersionable} from "../../contracts/shared/IVersionable.sol";
|
9
|
-
import {Versionable} from "../../contracts/shared/Versionable.sol";
|
10
|
-
|
11
|
-
//import {IService} from "../../contracts/instance/base/IService.sol";
|
12
|
-
|
13
|
-
contract TestService is ServiceBase {
|
14
|
-
|
15
|
-
string public constant NAME = "TestService";
|
16
|
-
|
17
|
-
constructor(address registry, NftId registryNftId, address initialOwner)
|
18
|
-
// solhint-disable-next-line no-empty-blocks
|
19
|
-
{
|
20
|
-
_initializeServiceBase(registry, registryNftId, initialOwner);
|
21
|
-
}
|
22
|
-
|
23
|
-
function getName() public pure override returns(string memory name) {
|
24
|
-
return NAME;
|
25
|
-
}
|
26
|
-
}
|
@@ -1,44 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {Version, VersionPart, VersionLib} from "../types/Version.sol";
|
5
|
-
|
6
|
-
contract TestVersion {
|
7
|
-
|
8
|
-
function createVersion(uint major, uint minor, uint patch) external pure returns(Version) {
|
9
|
-
return VersionLib.toVersion(major, minor, patch);
|
10
|
-
}
|
11
|
-
|
12
|
-
function createVersionPart(uint versionPart) external pure returns(VersionPart) {
|
13
|
-
return VersionLib.toVersionPart(uint8(versionPart));
|
14
|
-
}
|
15
|
-
|
16
|
-
function getVersionParts(Version version)
|
17
|
-
external
|
18
|
-
pure
|
19
|
-
returns(
|
20
|
-
VersionPart major,
|
21
|
-
VersionPart minor,
|
22
|
-
VersionPart patch
|
23
|
-
)
|
24
|
-
{
|
25
|
-
return version.toVersionParts();
|
26
|
-
}
|
27
|
-
|
28
|
-
function getMajorPart(Version version) external pure returns(VersionPart major) {
|
29
|
-
return version.toMajorPart();
|
30
|
-
}
|
31
|
-
|
32
|
-
function getZeroVersion() external pure returns(Version) {
|
33
|
-
return VersionLib.zeroVersion();
|
34
|
-
}
|
35
|
-
|
36
|
-
function isSameVersion(Version a, Version b) external pure returns(bool) {
|
37
|
-
return a == b;
|
38
|
-
}
|
39
|
-
|
40
|
-
function isLargerVersion(Version a, Version b) external pure returns(bool) {
|
41
|
-
return a > b;
|
42
|
-
}
|
43
|
-
|
44
|
-
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import {Version, VersionLib} from "../../contracts/types/Version.sol";
|
5
|
-
import {Versionable} from "../../contracts/shared/Versionable.sol";
|
6
|
-
|
7
|
-
contract TestVersionable is Versionable {
|
8
|
-
|
9
|
-
function getVersion()
|
10
|
-
public
|
11
|
-
pure
|
12
|
-
virtual override
|
13
|
-
returns(Version)
|
14
|
-
{
|
15
|
-
return VersionLib.toVersion(3,0,0);
|
16
|
-
}
|
17
|
-
}
|
package/contracts/test/Usdc.sol
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.19;
|
3
|
-
|
4
|
-
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
5
|
-
|
6
|
-
contract USDC is ERC20 {
|
7
|
-
|
8
|
-
// https://etherscan.io/token/0xc719d010b63e5bbf2c0551872cd5316ed26acd83#readContract
|
9
|
-
string public constant NAME = "USDC - DUMMY";
|
10
|
-
string public constant SYMBOL = "USDC";
|
11
|
-
uint8 public constant DECIMALS = 6;
|
12
|
-
uint256 public constant INITIAL_SUPPLY = 10**9 * 10**DECIMALS; // 1 Billion 1'000'000'000
|
13
|
-
// decimals == 18 (openzeppelin erc20 default)
|
14
|
-
constructor()
|
15
|
-
ERC20(NAME, SYMBOL)
|
16
|
-
{
|
17
|
-
_mint(
|
18
|
-
_msgSender(),
|
19
|
-
INITIAL_SUPPLY
|
20
|
-
);
|
21
|
-
}
|
22
|
-
|
23
|
-
function decimals() public pure override returns(uint8) {
|
24
|
-
return DECIMALS;
|
25
|
-
}
|
26
|
-
}
|