@etherisc/gif-next 0.0.2-f7b8c9f-518 → 0.0.2-f7c17b4-297
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +243 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +774 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +928 -175
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → components/IComponent.sol/IComponent.json} +153 -174
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +701 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +797 -76
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +567 -34
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +995 -260
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +710 -157
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1451 -1206
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ComponentServiceBase.sol/ComponentServiceBase.json → IInstanceService.sol/IInstanceService.json} +199 -182
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2088 -1373
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1391 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1035 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +693 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{InstanceBase.sol/InstanceBase.json → ComponentService.sol/ComponentService.json} +192 -195
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +37 -245
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +858 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +657 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1085 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +743 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +473 -168
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +677 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IApplicationService.sol/IApplicationService.json} +200 -204
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +622 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +398 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +197 -163
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +572 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +30 -255
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +41 -419
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1109 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +717 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +227 -264
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +649 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +233 -535
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +47 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +236 -63
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +312 -178
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +210 -212
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +424 -255
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +324 -122
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +69 -57
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/IService.sol/IService.json} +51 -47
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/IService.sol/IService.json → shared/Service.sol/Service.json} +147 -154
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +141 -215
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -174
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +4 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +38 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +221 -0
- package/contracts/components/Distribution.sol +214 -61
- package/contracts/components/IComponent.sol +68 -0
- package/contracts/components/IDistributionComponent.sol +59 -5
- package/contracts/components/IPoolComponent.sol +126 -39
- package/contracts/components/IProductComponent.sol +12 -9
- package/contracts/components/Pool.sol +290 -158
- package/contracts/components/Product.sol +134 -140
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +84 -46
- package/contracts/instance/IInstanceService.sol +59 -0
- package/contracts/instance/Instance.sol +273 -69
- package/contracts/instance/InstanceAccessManager.sol +297 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +490 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +13 -14
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +49 -38
- package/contracts/instance/base/Lifecycle.sol +1 -1
- package/contracts/instance/module/IAccess.sol +47 -0
- package/contracts/instance/module/IBundle.sol +21 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +48 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +48 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +269 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +299 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +244 -21
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +83 -0
- package/contracts/instance/service/IBundleService.sol +55 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +54 -1
- package/contracts/instance/service/IPolicyService.sol +90 -0
- package/contracts/instance/service/IPoolService.sol +7 -24
- package/contracts/instance/service/IProductService.sol +9 -76
- package/contracts/instance/service/PolicyService.sol +476 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +77 -117
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +156 -433
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +41 -26
- package/contracts/registry/IRegistry.sol +51 -25
- package/contracts/registry/IRegistryService.sol +54 -16
- package/contracts/registry/Registry.sol +279 -306
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +162 -247
- package/contracts/registry/RegistryServiceManager.sol +30 -11
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ERC165.sol +15 -9
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +67 -83
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +101 -26
- package/contracts/shared/Registerable.sol +17 -32
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +58 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
- package/contracts/shared/Versionable.sol +5 -93
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +6 -7
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +3 -3
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +39 -14
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RoleId.sol +66 -9
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +5 -1
- package/contracts/types/Timestamp.sol +16 -13
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +4 -1
- package/package.json +6 -5
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -301
- 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/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.json +0 -10
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -271
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -271
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -164
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -638
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -638
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -794
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.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/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -557
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -716
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -744
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -79
- 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/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -89
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -44
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -71
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -95
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -84
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
- package/contracts/instance/service/ComponentOwnerService.sol +0 -275
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/registry/IChainNft.sol +0 -22
- package/contracts/test/TestDistribution.sol +0 -22
- package/contracts/test/TestPool.sol +0 -27
- package/contracts/test/TestProduct.sol +0 -74
- package/contracts/types/ReferralId.sol +0 -48
@@ -1,22 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"_format": "hh-sol-artifact-1",
|
3
|
-
"contractName": "
|
4
|
-
"sourceName": "contracts/
|
3
|
+
"contractName": "IService",
|
4
|
+
"sourceName": "contracts/shared/IService.sol",
|
5
5
|
"abi": [
|
6
6
|
{
|
7
7
|
"inputs": [
|
8
|
-
{
|
9
|
-
"internalType": "address",
|
10
|
-
"name": "registry",
|
11
|
-
"type": "address"
|
12
|
-
},
|
13
8
|
{
|
14
9
|
"internalType": "NftId",
|
15
10
|
"name": "nftId",
|
16
11
|
"type": "uint96"
|
17
12
|
}
|
18
13
|
],
|
19
|
-
"name": "
|
14
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
20
15
|
"type": "error"
|
21
16
|
},
|
22
17
|
{
|
@@ -27,7 +22,12 @@
|
|
27
22
|
"type": "address"
|
28
23
|
}
|
29
24
|
],
|
30
|
-
"name": "
|
25
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
26
|
+
"type": "error"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"inputs": [],
|
30
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
31
31
|
"type": "error"
|
32
32
|
},
|
33
33
|
{
|
@@ -38,7 +38,7 @@
|
|
38
38
|
"type": "address"
|
39
39
|
}
|
40
40
|
],
|
41
|
-
"name": "
|
41
|
+
"name": "ErrorNftOwnableNotOwner",
|
42
42
|
"type": "error"
|
43
43
|
},
|
44
44
|
{
|
@@ -54,24 +54,16 @@
|
|
54
54
|
},
|
55
55
|
{
|
56
56
|
"inputs": [],
|
57
|
-
"name": "
|
58
|
-
"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"inputs": [
|
57
|
+
"name": "getDomain",
|
58
|
+
"outputs": [
|
62
59
|
{
|
63
|
-
"internalType": "
|
64
|
-
"name": "
|
65
|
-
"type": "
|
60
|
+
"internalType": "ObjectType",
|
61
|
+
"name": "serviceDomain",
|
62
|
+
"type": "uint8"
|
66
63
|
}
|
67
64
|
],
|
68
|
-
"
|
69
|
-
"type": "
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"inputs": [],
|
73
|
-
"name": "ErrorRegistryNotInitialized",
|
74
|
-
"type": "error"
|
65
|
+
"stateMutability": "pure",
|
66
|
+
"type": "function"
|
75
67
|
},
|
76
68
|
{
|
77
69
|
"inputs": [],
|
@@ -118,11 +110,6 @@
|
|
118
110
|
"internalType": "struct IRegistry.ObjectInfo",
|
119
111
|
"name": "",
|
120
112
|
"type": "tuple"
|
121
|
-
},
|
122
|
-
{
|
123
|
-
"internalType": "bytes",
|
124
|
-
"name": "data",
|
125
|
-
"type": "bytes"
|
126
113
|
}
|
127
114
|
],
|
128
115
|
"stateMutability": "view",
|
@@ -130,12 +117,12 @@
|
|
130
117
|
},
|
131
118
|
{
|
132
119
|
"inputs": [],
|
133
|
-
"name": "
|
120
|
+
"name": "getMajorVersion",
|
134
121
|
"outputs": [
|
135
122
|
{
|
136
|
-
"internalType": "
|
137
|
-
"name": "
|
138
|
-
"type": "
|
123
|
+
"internalType": "VersionPart",
|
124
|
+
"name": "majorVersion",
|
125
|
+
"type": "uint8"
|
139
126
|
}
|
140
127
|
],
|
141
128
|
"stateMutability": "view",
|
@@ -182,11 +169,11 @@
|
|
182
169
|
},
|
183
170
|
{
|
184
171
|
"inputs": [],
|
185
|
-
"name": "
|
172
|
+
"name": "getRegistryAddress",
|
186
173
|
"outputs": [
|
187
174
|
{
|
188
|
-
"internalType": "
|
189
|
-
"name": "
|
175
|
+
"internalType": "address",
|
176
|
+
"name": "",
|
190
177
|
"type": "address"
|
191
178
|
}
|
192
179
|
],
|
@@ -195,27 +182,38 @@
|
|
195
182
|
},
|
196
183
|
{
|
197
184
|
"inputs": [],
|
198
|
-
"name": "
|
185
|
+
"name": "getVersion",
|
199
186
|
"outputs": [
|
200
187
|
{
|
201
|
-
"internalType": "
|
202
|
-
"name": "
|
203
|
-
"type": "
|
188
|
+
"internalType": "Version",
|
189
|
+
"name": "",
|
190
|
+
"type": "uint24"
|
204
191
|
}
|
205
192
|
],
|
206
|
-
"stateMutability": "
|
193
|
+
"stateMutability": "pure",
|
207
194
|
"type": "function"
|
208
195
|
},
|
209
196
|
{
|
210
|
-
"inputs": [
|
211
|
-
|
197
|
+
"inputs": [
|
198
|
+
{
|
199
|
+
"internalType": "address",
|
200
|
+
"name": "activatedBy",
|
201
|
+
"type": "address"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"internalType": "bytes",
|
205
|
+
"name": "activationData",
|
206
|
+
"type": "bytes"
|
207
|
+
}
|
208
|
+
],
|
209
|
+
"name": "initializeVersionable",
|
212
210
|
"outputs": [],
|
213
211
|
"stateMutability": "nonpayable",
|
214
212
|
"type": "function"
|
215
213
|
},
|
216
214
|
{
|
217
215
|
"inputs": [],
|
218
|
-
"name": "
|
216
|
+
"name": "linkToRegisteredNftId",
|
219
217
|
"outputs": [],
|
220
218
|
"stateMutability": "nonpayable",
|
221
219
|
"type": "function"
|
@@ -240,8 +238,14 @@
|
|
240
238
|
"type": "function"
|
241
239
|
},
|
242
240
|
{
|
243
|
-
"inputs": [
|
244
|
-
|
241
|
+
"inputs": [
|
242
|
+
{
|
243
|
+
"internalType": "bytes",
|
244
|
+
"name": "upgradeData",
|
245
|
+
"type": "bytes"
|
246
|
+
}
|
247
|
+
],
|
248
|
+
"name": "upgradeVersionable",
|
245
249
|
"outputs": [],
|
246
250
|
"stateMutability": "nonpayable",
|
247
251
|
"type": "function"
|
@@ -3,44 +3,6 @@
|
|
3
3
|
"contractName": "IVersionable",
|
4
4
|
"sourceName": "contracts/shared/IVersionable.sol",
|
5
5
|
"abi": [
|
6
|
-
{
|
7
|
-
"anonymous": false,
|
8
|
-
"inputs": [
|
9
|
-
{
|
10
|
-
"indexed": false,
|
11
|
-
"internalType": "Version",
|
12
|
-
"name": "version",
|
13
|
-
"type": "uint24"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"indexed": false,
|
17
|
-
"internalType": "address",
|
18
|
-
"name": "implementation",
|
19
|
-
"type": "address"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"indexed": false,
|
23
|
-
"internalType": "address",
|
24
|
-
"name": "activatedBy",
|
25
|
-
"type": "address"
|
26
|
-
}
|
27
|
-
],
|
28
|
-
"name": "LogVersionableInitialized",
|
29
|
-
"type": "event"
|
30
|
-
},
|
31
|
-
{
|
32
|
-
"inputs": [],
|
33
|
-
"name": "getInitializedVersion",
|
34
|
-
"outputs": [
|
35
|
-
{
|
36
|
-
"internalType": "uint64",
|
37
|
-
"name": "",
|
38
|
-
"type": "uint64"
|
39
|
-
}
|
40
|
-
],
|
41
|
-
"stateMutability": "view",
|
42
|
-
"type": "function"
|
43
|
-
},
|
44
6
|
{
|
45
7
|
"inputs": [],
|
46
8
|
"name": "getVersion",
|
@@ -54,91 +16,8 @@
|
|
54
16
|
"stateMutability": "pure",
|
55
17
|
"type": "function"
|
56
18
|
},
|
57
|
-
{
|
58
|
-
"inputs": [
|
59
|
-
{
|
60
|
-
"internalType": "uint256",
|
61
|
-
"name": "index",
|
62
|
-
"type": "uint256"
|
63
|
-
}
|
64
|
-
],
|
65
|
-
"name": "getVersion",
|
66
|
-
"outputs": [
|
67
|
-
{
|
68
|
-
"internalType": "Version",
|
69
|
-
"name": "version",
|
70
|
-
"type": "uint24"
|
71
|
-
}
|
72
|
-
],
|
73
|
-
"stateMutability": "view",
|
74
|
-
"type": "function"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"inputs": [],
|
78
|
-
"name": "getVersionCount",
|
79
|
-
"outputs": [
|
80
|
-
{
|
81
|
-
"internalType": "uint256",
|
82
|
-
"name": "numberOfVersions",
|
83
|
-
"type": "uint256"
|
84
|
-
}
|
85
|
-
],
|
86
|
-
"stateMutability": "view",
|
87
|
-
"type": "function"
|
88
|
-
},
|
89
|
-
{
|
90
|
-
"inputs": [
|
91
|
-
{
|
92
|
-
"internalType": "Version",
|
93
|
-
"name": "version",
|
94
|
-
"type": "uint24"
|
95
|
-
}
|
96
|
-
],
|
97
|
-
"name": "getVersionInfo",
|
98
|
-
"outputs": [
|
99
|
-
{
|
100
|
-
"components": [
|
101
|
-
{
|
102
|
-
"internalType": "Version",
|
103
|
-
"name": "version",
|
104
|
-
"type": "uint24"
|
105
|
-
},
|
106
|
-
{
|
107
|
-
"internalType": "address",
|
108
|
-
"name": "implementation",
|
109
|
-
"type": "address"
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"internalType": "address",
|
113
|
-
"name": "activatedBy",
|
114
|
-
"type": "address"
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"internalType": "Timestamp",
|
118
|
-
"name": "activatedAt",
|
119
|
-
"type": "uint40"
|
120
|
-
},
|
121
|
-
{
|
122
|
-
"internalType": "Blocknumber",
|
123
|
-
"name": "activatedIn",
|
124
|
-
"type": "uint32"
|
125
|
-
}
|
126
|
-
],
|
127
|
-
"internalType": "struct IVersionable.VersionInfo",
|
128
|
-
"name": "versionInfo",
|
129
|
-
"type": "tuple"
|
130
|
-
}
|
131
|
-
],
|
132
|
-
"stateMutability": "view",
|
133
|
-
"type": "function"
|
134
|
-
},
|
135
19
|
{
|
136
20
|
"inputs": [
|
137
|
-
{
|
138
|
-
"internalType": "address",
|
139
|
-
"name": "implementation",
|
140
|
-
"type": "address"
|
141
|
-
},
|
142
21
|
{
|
143
22
|
"internalType": "address",
|
144
23
|
"name": "activatedBy",
|
@@ -150,49 +29,20 @@
|
|
150
29
|
"type": "bytes"
|
151
30
|
}
|
152
31
|
],
|
153
|
-
"name": "
|
32
|
+
"name": "initializeVersionable",
|
154
33
|
"outputs": [],
|
155
34
|
"stateMutability": "nonpayable",
|
156
35
|
"type": "function"
|
157
36
|
},
|
158
37
|
{
|
159
38
|
"inputs": [
|
160
|
-
{
|
161
|
-
"internalType": "Version",
|
162
|
-
"name": "version",
|
163
|
-
"type": "uint24"
|
164
|
-
}
|
165
|
-
],
|
166
|
-
"name": "isInitialized",
|
167
|
-
"outputs": [
|
168
|
-
{
|
169
|
-
"internalType": "bool",
|
170
|
-
"name": "",
|
171
|
-
"type": "bool"
|
172
|
-
}
|
173
|
-
],
|
174
|
-
"stateMutability": "view",
|
175
|
-
"type": "function"
|
176
|
-
},
|
177
|
-
{
|
178
|
-
"inputs": [
|
179
|
-
{
|
180
|
-
"internalType": "address",
|
181
|
-
"name": "implementation",
|
182
|
-
"type": "address"
|
183
|
-
},
|
184
|
-
{
|
185
|
-
"internalType": "address",
|
186
|
-
"name": "activatedBy",
|
187
|
-
"type": "address"
|
188
|
-
},
|
189
39
|
{
|
190
40
|
"internalType": "bytes",
|
191
41
|
"name": "upgradeData",
|
192
42
|
"type": "bytes"
|
193
43
|
}
|
194
44
|
],
|
195
|
-
"name": "
|
45
|
+
"name": "upgradeVersionable",
|
196
46
|
"outputs": [],
|
197
47
|
"stateMutability": "nonpayable",
|
198
48
|
"type": "function"
|
@@ -3,25 +3,15 @@
|
|
3
3
|
"contractName": "NftOwnable",
|
4
4
|
"sourceName": "contracts/shared/NftOwnable.sol",
|
5
5
|
"abi": [
|
6
|
-
{
|
7
|
-
"inputs": [],
|
8
|
-
"stateMutability": "nonpayable",
|
9
|
-
"type": "constructor"
|
10
|
-
},
|
11
6
|
{
|
12
7
|
"inputs": [
|
13
|
-
{
|
14
|
-
"internalType": "address",
|
15
|
-
"name": "registry",
|
16
|
-
"type": "address"
|
17
|
-
},
|
18
8
|
{
|
19
9
|
"internalType": "NftId",
|
20
10
|
"name": "nftId",
|
21
11
|
"type": "uint96"
|
22
12
|
}
|
23
13
|
],
|
24
|
-
"name": "
|
14
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
25
15
|
"type": "error"
|
26
16
|
},
|
27
17
|
{
|
@@ -32,7 +22,12 @@
|
|
32
22
|
"type": "address"
|
33
23
|
}
|
34
24
|
],
|
35
|
-
"name": "
|
25
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
26
|
+
"type": "error"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"inputs": [],
|
30
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
36
31
|
"type": "error"
|
37
32
|
},
|
38
33
|
{
|
@@ -43,7 +38,7 @@
|
|
43
38
|
"type": "address"
|
44
39
|
}
|
45
40
|
],
|
46
|
-
"name": "
|
41
|
+
"name": "ErrorNftOwnableNotOwner",
|
47
42
|
"type": "error"
|
48
43
|
},
|
49
44
|
{
|
@@ -59,24 +54,39 @@
|
|
59
54
|
},
|
60
55
|
{
|
61
56
|
"inputs": [],
|
62
|
-
"name": "
|
57
|
+
"name": "InvalidInitialization",
|
63
58
|
"type": "error"
|
64
59
|
},
|
65
60
|
{
|
61
|
+
"inputs": [],
|
62
|
+
"name": "NotInitializing",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"anonymous": false,
|
66
67
|
"inputs": [
|
67
68
|
{
|
68
|
-
"
|
69
|
-
"
|
70
|
-
"
|
69
|
+
"indexed": false,
|
70
|
+
"internalType": "uint64",
|
71
|
+
"name": "version",
|
72
|
+
"type": "uint64"
|
71
73
|
}
|
72
74
|
],
|
73
|
-
"name": "
|
74
|
-
"type": "
|
75
|
+
"name": "Initialized",
|
76
|
+
"type": "event"
|
75
77
|
},
|
76
78
|
{
|
77
79
|
"inputs": [],
|
78
|
-
"name": "
|
79
|
-
"
|
80
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
81
|
+
"outputs": [
|
82
|
+
{
|
83
|
+
"internalType": "bytes32",
|
84
|
+
"name": "",
|
85
|
+
"type": "bytes32"
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"stateMutability": "view",
|
89
|
+
"type": "function"
|
80
90
|
},
|
81
91
|
{
|
82
92
|
"inputs": [],
|
@@ -117,26 +127,109 @@
|
|
117
127
|
"stateMutability": "view",
|
118
128
|
"type": "function"
|
119
129
|
},
|
130
|
+
{
|
131
|
+
"inputs": [],
|
132
|
+
"name": "getRegistryAddress",
|
133
|
+
"outputs": [
|
134
|
+
{
|
135
|
+
"internalType": "address",
|
136
|
+
"name": "",
|
137
|
+
"type": "address"
|
138
|
+
}
|
139
|
+
],
|
140
|
+
"stateMutability": "view",
|
141
|
+
"type": "function"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"inputs": [],
|
145
|
+
"name": "initializeERC165",
|
146
|
+
"outputs": [],
|
147
|
+
"stateMutability": "nonpayable",
|
148
|
+
"type": "function"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"inputs": [
|
152
|
+
{
|
153
|
+
"internalType": "address",
|
154
|
+
"name": "initialOwner",
|
155
|
+
"type": "address"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"internalType": "address",
|
159
|
+
"name": "registryAddress",
|
160
|
+
"type": "address"
|
161
|
+
}
|
162
|
+
],
|
163
|
+
"name": "initializeNftOwnable",
|
164
|
+
"outputs": [],
|
165
|
+
"stateMutability": "nonpayable",
|
166
|
+
"type": "function"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"inputs": [
|
170
|
+
{
|
171
|
+
"internalType": "address",
|
172
|
+
"name": "registryAddress",
|
173
|
+
"type": "address"
|
174
|
+
}
|
175
|
+
],
|
176
|
+
"name": "initializeRegistryLinked",
|
177
|
+
"outputs": [],
|
178
|
+
"stateMutability": "nonpayable",
|
179
|
+
"type": "function"
|
180
|
+
},
|
120
181
|
{
|
121
182
|
"inputs": [],
|
122
183
|
"name": "linkToRegisteredNftId",
|
123
184
|
"outputs": [],
|
124
185
|
"stateMutability": "nonpayable",
|
125
186
|
"type": "function"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"inputs": [
|
190
|
+
{
|
191
|
+
"internalType": "bytes4",
|
192
|
+
"name": "interfaceId",
|
193
|
+
"type": "bytes4"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"name": "registerInterface",
|
197
|
+
"outputs": [],
|
198
|
+
"stateMutability": "nonpayable",
|
199
|
+
"type": "function"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"inputs": [
|
203
|
+
{
|
204
|
+
"internalType": "bytes4",
|
205
|
+
"name": "interfaceId",
|
206
|
+
"type": "bytes4"
|
207
|
+
}
|
208
|
+
],
|
209
|
+
"name": "supportsInterface",
|
210
|
+
"outputs": [
|
211
|
+
{
|
212
|
+
"internalType": "bool",
|
213
|
+
"name": "",
|
214
|
+
"type": "bool"
|
215
|
+
}
|
216
|
+
],
|
217
|
+
"stateMutability": "view",
|
218
|
+
"type": "function"
|
126
219
|
}
|
127
220
|
],
|
128
|
-
"bytecode": "
|
129
|
-
"deployedBytecode": "
|
221
|
+
"bytecode": "0x608060405234801561001057600080fd5b50610893806100206000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c8063644c45e011610071578063644c45e01461013a578063675393bf14610162578063893d20e814610175578063ada9652e1461017d578063f21de1e814610115578063f7c34ee0146101a057600080fd5b806301ffc9a7146100ae578063138461e0146100f0578063214cdb80146100fa57806336fc697e1461010d5780635ab1bd5314610115575b600080fd5b6100db6100bc366004610739565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100f86101b3565b005b6100f8610108366004610739565b6103ba565b6100f86103e7565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100e7565b60008051602061083e833981519152546040516001600160601b0390911681526020016100e7565b6100f861017036600461077f565b61042d565b61012261053b565b61019260008051602061083e83398151915281565b6040519081526020016100e7565b6100f86101ae36600461079c565b610672565b600060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024691906107d5565b156102775780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061028a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906107d5565b61031e5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161026e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906107f7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103c26106e9565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103ef6106e9565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6104356106e9565b806001600160a01b03163b60000361046b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156104e5575060408051601f3d908101601f191682019092526104e2918101906107d5565b60015b61050d5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b806105365760405163fdeac91f60e01b81526001600160a01b038316600482015260240161026e565b505b50565b60008060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cf91906107d5565b1561065c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610632573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106569190610820565b91505090565b54600160601b90046001600160a01b0316919050565b61067a6106e9565b6106838161042d565b61068b6103e7565b6001600160a01b0382166106b25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661073757604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074b57600080fd5b81356001600160e01b03198116811461076357600080fd5b9392505050565b6001600160a01b038116811461053857600080fd5b60006020828403121561079157600080fd5b81356107638161076a565b600080604083850312156107af57600080fd5b82356107ba8161076a565b915060208301356107ca8161076a565b809150509250929050565b6000602082840312156107e757600080fd5b8151801515811461076357600080fd5b60006020828403121561080957600080fd5b81516001600160601b038116811461076357600080fd5b60006020828403121561083257600080fd5b81516107638161076a56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122092b16b6f4e227e9a950a62f029f552d7213663232584623b9685a4036b123d9c64736f6c63430008140033",
|
222
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063644c45e011610071578063644c45e01461013a578063675393bf14610162578063893d20e814610175578063ada9652e1461017d578063f21de1e814610115578063f7c34ee0146101a057600080fd5b806301ffc9a7146100ae578063138461e0146100f0578063214cdb80146100fa57806336fc697e1461010d5780635ab1bd5314610115575b600080fd5b6100db6100bc366004610739565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100f86101b3565b005b6100f8610108366004610739565b6103ba565b6100f86103e7565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100e7565b60008051602061083e833981519152546040516001600160601b0390911681526020016100e7565b6100f861017036600461077f565b61042d565b61012261053b565b61019260008051602061083e83398151915281565b6040519081526020016100e7565b6100f86101ae36600461079c565b610672565b600060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024691906107d5565b156102775780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061028a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906107d5565b61031e5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161026e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906107f7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103c26106e9565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103ef6106e9565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6104356106e9565b806001600160a01b03163b60000361046b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156104e5575060408051601f3d908101601f191682019092526104e2918101906107d5565b60015b61050d5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b806105365760405163fdeac91f60e01b81526001600160a01b038316600482015260240161026e565b505b50565b60008060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cf91906107d5565b1561065c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610632573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106569190610820565b91505090565b54600160601b90046001600160a01b0316919050565b61067a6106e9565b6106838161042d565b61068b6103e7565b6001600160a01b0382166106b25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661073757604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074b57600080fd5b81356001600160e01b03198116811461076357600080fd5b9392505050565b6001600160a01b038116811461053857600080fd5b60006020828403121561079157600080fd5b81356107638161076a565b600080604083850312156107af57600080fd5b82356107ba8161076a565b915060208301356107ca8161076a565b809150509250929050565b6000602082840312156107e757600080fd5b8151801515811461076357600080fd5b60006020828403121561080957600080fd5b81516001600160601b038116811461076357600080fd5b60006020828403121561083257600080fd5b81516107638161076a56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122092b16b6f4e227e9a950a62f029f552d7213663232584623b9685a4036b123d9c64736f6c63430008140033",
|
130
223
|
"linkReferences": {
|
131
224
|
"contracts/types/NftId.sol": {
|
132
225
|
"NftIdLib": [
|
133
226
|
{
|
134
227
|
"length": 20,
|
135
|
-
"start":
|
228
|
+
"start": 520
|
136
229
|
},
|
137
230
|
{
|
138
231
|
"length": 20,
|
139
|
-
"start":
|
232
|
+
"start": 1425
|
140
233
|
}
|
141
234
|
]
|
142
235
|
}
|
@@ -146,11 +239,11 @@
|
|
146
239
|
"NftIdLib": [
|
147
240
|
{
|
148
241
|
"length": 20,
|
149
|
-
"start":
|
242
|
+
"start": 488
|
150
243
|
},
|
151
244
|
{
|
152
245
|
"length": 20,
|
153
|
-
"start":
|
246
|
+
"start": 1393
|
154
247
|
}
|
155
248
|
]
|
156
249
|
}
|