@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e922e07-736
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 +136 -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 +879 -236
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +164 -159
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +689 -30
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +838 -58
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +524 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +950 -281
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +568 -188
 - 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/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1912 -421
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +194 -165
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +901 -1127
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +211 -144
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +126 -159
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +420 -305
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +297 -112
 - 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/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +189 -177
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - 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 +2 -2
 - 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 +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1096 -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 +754 -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 +1221 -213
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +436 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +633 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +150 -207
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +727 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +540 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +37 -251
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +47 -414
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1021 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +689 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +209 -321
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +296 -95
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +218 -499
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +299 -98
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +242 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +158 -215
 - 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 +256 -226
 - 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 +202 -318
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -141
 - 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 +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
 - 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/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
 - 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 +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +31 -183
 - 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 +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +127 -170
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - 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/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 +2 -2
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +148 -227
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - 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 +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
 - 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 +1 -1
 - 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 +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
 - 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 +2 -2
 - 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/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/contracts/components/Component.sol +221 -0
 - package/contracts/components/Distribution.sol +200 -79
 - package/contracts/components/IComponent.sol +68 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +126 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +288 -152
 - package/contracts/components/Product.sol +124 -119
 - package/contracts/instance/BundleManager.sol +125 -0
 - package/contracts/instance/Cloneable.sol +46 -0
 - package/contracts/instance/IInstance.sol +56 -5
 - package/contracts/instance/IInstanceService.sol +33 -4
 - package/contracts/instance/Instance.sol +109 -261
 - package/contracts/instance/InstanceAccessManager.sol +87 -78
 - package/contracts/instance/InstanceReader.sol +12 -25
 - package/contracts/instance/InstanceService.sol +401 -104
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/ObjectManager.sol +84 -0
 - package/contracts/instance/base/ComponentService.sol +134 -0
 - package/contracts/instance/module/IAccess.sol +27 -18
 - package/contracts/instance/module/IBundle.sol +2 -1
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +30 -3
 - package/contracts/instance/module/ISetup.sol +12 -10
 - package/contracts/instance/service/ApplicationService.sol +349 -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 +390 -28
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +55 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +86 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +6 -23
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +394 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +38 -123
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +133 -448
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +1 -1
 - package/contracts/registry/IRegistry.sol +39 -19
 - package/contracts/registry/IRegistryService.sol +30 -13
 - package/contracts/registry/Registry.sol +236 -216
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +96 -171
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +322 -0
 - package/contracts/registry/TokenRegistry.sol +22 -17
 - package/contracts/shared/ERC165.sol +14 -12
 - 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 +4 -1
 - package/contracts/shared/IVersionable.sol +4 -47
 - package/contracts/shared/NftOwnable.sol +66 -80
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +100 -25
 - package/contracts/shared/Registerable.sol +16 -32
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +25 -22
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +9 -5
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +19 -14
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/Timestamp.sol +12 -13
 - package/package.json +3 -3
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
 - 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/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 -1132
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
 - 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/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
 - package/contracts/components/BaseComponent.sol +0 -91
 - package/contracts/components/IBaseComponent.sol +0 -25
 - package/contracts/experiment/cloning/Cloner.sol +0 -47
 - 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 -115
 - package/contracts/instance/AccessManagerSimple.sol +0 -692
 - package/contracts/instance/IAccessManagerSimple.sol +0 -391
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -124
 - package/contracts/instance/base/IInstanceBase.sol +0 -23
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -317
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -20
 - package/contracts/shared/RegisterableUpgradable.sol +0 -16
 
| 
         @@ -0,0 +1,129 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "IPolicyHolder",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/shared/IPolicyHolder.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "policyId",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "NumberId",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "getBeneficiary",
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 21 
     | 
    
         
            +
                    {
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 23 
     | 
    
         
            +
                      "name": "beneficiary",
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 25 
     | 
    
         
            +
                    }
         
     | 
| 
      
 26 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 29 
     | 
    
         
            +
                },
         
     | 
| 
      
 30 
     | 
    
         
            +
                {
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 32 
     | 
    
         
            +
                    {
         
     | 
| 
      
 33 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 34 
     | 
    
         
            +
                      "name": "operator",
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 36 
     | 
    
         
            +
                    },
         
     | 
| 
      
 37 
     | 
    
         
            +
                    {
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 39 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 40 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 41 
     | 
    
         
            +
                    },
         
     | 
| 
      
 42 
     | 
    
         
            +
                    {
         
     | 
| 
      
 43 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 44 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 45 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 46 
     | 
    
         
            +
                    },
         
     | 
| 
      
 47 
     | 
    
         
            +
                    {
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 50 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 51 
     | 
    
         
            +
                    }
         
     | 
| 
      
 52 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "name": "onERC721Received",
         
     | 
| 
      
 54 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 55 
     | 
    
         
            +
                    {
         
     | 
| 
      
 56 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 59 
     | 
    
         
            +
                    }
         
     | 
| 
      
 60 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 63 
     | 
    
         
            +
                },
         
     | 
| 
      
 64 
     | 
    
         
            +
                {
         
     | 
| 
      
 65 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 66 
     | 
    
         
            +
                    {
         
     | 
| 
      
 67 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 70 
     | 
    
         
            +
                    },
         
     | 
| 
      
 71 
     | 
    
         
            +
                    {
         
     | 
| 
      
 72 
     | 
    
         
            +
                      "internalType": "NumberId",
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "name": "payoutId",
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 75 
     | 
    
         
            +
                    },
         
     | 
| 
      
 76 
     | 
    
         
            +
                    {
         
     | 
| 
      
 77 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 78 
     | 
    
         
            +
                      "name": "beneficiary",
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 80 
     | 
    
         
            +
                    },
         
     | 
| 
      
 81 
     | 
    
         
            +
                    {
         
     | 
| 
      
 82 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 83 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 85 
     | 
    
         
            +
                    }
         
     | 
| 
      
 86 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 87 
     | 
    
         
            +
                  "name": "payoutExecutedCallback",
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 94 
     | 
    
         
            +
                    {
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    }
         
     | 
| 
      
 99 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "name": "policyCreatedCallback",
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 102 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 104 
     | 
    
         
            +
                },
         
     | 
| 
      
 105 
     | 
    
         
            +
                {
         
     | 
| 
      
 106 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 107 
     | 
    
         
            +
                    {
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 109 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 111 
     | 
    
         
            +
                    }
         
     | 
| 
      
 112 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 114 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 115 
     | 
    
         
            +
                    {
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 119 
     | 
    
         
            +
                    }
         
     | 
| 
      
 120 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 121 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 122 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 123 
     | 
    
         
            +
                }
         
     | 
| 
      
 124 
     | 
    
         
            +
              ],
         
     | 
| 
      
 125 
     | 
    
         
            +
              "bytecode": "0x",
         
     | 
| 
      
 126 
     | 
    
         
            +
              "deployedBytecode": "0x",
         
     | 
| 
      
 127 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 128 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
      
 129 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -5,18 +5,13 @@ 
     | 
|
| 
       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,50 +22,34 @@ 
     | 
|
| 
       27 
22 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       28 
23 
     | 
    
         
             
                    }
         
     | 
| 
       29 
24 
     | 
    
         
             
                  ],
         
     | 
| 
       30 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 25 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
       31 
26 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       32 
27 
     | 
    
         
             
                },
         
     | 
| 
       33 
28 
     | 
    
         
             
                {
         
     | 
| 
       34 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       37 
     | 
    
         
            -
                      "name": "account",
         
     | 
| 
       38 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       39 
     | 
    
         
            -
                    }
         
     | 
| 
       40 
     | 
    
         
            -
                  ],
         
     | 
| 
       41 
     | 
    
         
            -
                  "name": "ErrorNotOwner",
         
     | 
| 
      
 29 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
       42 
31 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       43 
32 
     | 
    
         
             
                },
         
     | 
| 
       44 
33 
     | 
    
         
             
                {
         
     | 
| 
       45 
34 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       46 
35 
     | 
    
         
             
                    {
         
     | 
| 
       47 
36 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       48 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
       49 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       50 
39 
     | 
    
         
             
                    }
         
     | 
| 
       51 
40 
     | 
    
         
             
                  ],
         
     | 
| 
       52 
     | 
    
         
            -
                  "name": " 
     | 
| 
       53 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       54 
     | 
    
         
            -
                },
         
     | 
| 
       55 
     | 
    
         
            -
                {
         
     | 
| 
       56 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       57 
     | 
    
         
            -
                  "name": "ErrorRegistryAddressZero",
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
       58 
42 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       59 
43 
     | 
    
         
             
                },
         
     | 
| 
       60 
44 
     | 
    
         
             
                {
         
     | 
| 
       61 
45 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       62 
46 
     | 
    
         
             
                    {
         
     | 
| 
       63 
47 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       64 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
       65 
49 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       66 
50 
     | 
    
         
             
                    }
         
     | 
| 
       67 
51 
     | 
    
         
             
                  ],
         
     | 
| 
       68 
     | 
    
         
            -
                  "name": " 
     | 
| 
       69 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       70 
     | 
    
         
            -
                },
         
     | 
| 
       71 
     | 
    
         
            -
                {
         
     | 
| 
       72 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       73 
     | 
    
         
            -
                  "name": "ErrorRegistryNotInitialized",
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       74 
53 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       75 
54 
     | 
    
         
             
                },
         
     | 
| 
       76 
55 
     | 
    
         
             
                {
         
     | 
| 
         @@ -118,11 +97,6 @@ 
     | 
|
| 
       118 
97 
     | 
    
         
             
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       119 
98 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       120 
99 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       121 
     | 
    
         
            -
                    },
         
     | 
| 
       122 
     | 
    
         
            -
                    {
         
     | 
| 
       123 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       124 
     | 
    
         
            -
                      "name": "data",
         
     | 
| 
       125 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       126 
100 
     | 
    
         
             
                    }
         
     | 
| 
       127 
101 
     | 
    
         
             
                  ],
         
     | 
| 
       128 
102 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -167,6 +141,19 @@ 
     | 
|
| 
       167 
141 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       168 
142 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       169 
143 
     | 
    
         
             
                },
         
     | 
| 
      
 144 
     | 
    
         
            +
                {
         
     | 
| 
      
 145 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 147 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 148 
     | 
    
         
            +
                    {
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 151 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 152 
     | 
    
         
            +
                    }
         
     | 
| 
      
 153 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 155 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 156 
     | 
    
         
            +
                },
         
     | 
| 
       170 
157 
     | 
    
         
             
                {
         
     | 
| 
       171 
158 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       172 
159 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -1,45 +1,43 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
     | 
    
         
            -
              "contractName": " 
     | 
| 
       4 
     | 
    
         
            -
              "sourceName": "contracts/ 
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "IRegistryLinked",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/shared/IRegistryLinked.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
       7 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       8 
     | 
    
         
            -
                  "name": "getAfromB",
         
     | 
| 
       9 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       10 
8 
     | 
    
         
             
                    {
         
     | 
| 
       11 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       12 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       13 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       14 
12 
     | 
    
         
             
                    }
         
     | 
| 
       15 
13 
     | 
    
         
             
                  ],
         
     | 
| 
       16 
     | 
    
         
            -
                  " 
     | 
| 
       17 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
       18 
16 
     | 
    
         
             
                },
         
     | 
| 
       19 
17 
     | 
    
         
             
                {
         
     | 
| 
       20 
18 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       21 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
       22 
20 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       23 
21 
     | 
    
         
             
                    {
         
     | 
| 
       24 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 22 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
       25 
23 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       26 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 24 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       27 
25 
     | 
    
         
             
                    }
         
     | 
| 
       28 
26 
     | 
    
         
             
                  ],
         
     | 
| 
       29 
27 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       30 
28 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       31 
29 
     | 
    
         
             
                },
         
     | 
| 
       32 
30 
     | 
    
         
             
                {
         
     | 
| 
       33 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 32 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       34 
34 
     | 
    
         
             
                    {
         
     | 
| 
       35 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       36 
     | 
    
         
            -
                      "name": " 
     | 
| 
       37 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 35 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       38 
38 
     | 
    
         
             
                    }
         
     | 
| 
       39 
39 
     | 
    
         
             
                  ],
         
     | 
| 
       40 
     | 
    
         
            -
                  " 
     | 
| 
       41 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       42 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 40 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       43 
41 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       44 
42 
     | 
    
         
             
                }
         
     | 
| 
       45 
43 
     | 
    
         
             
              ],
         
     | 
| 
         @@ -7,16 +7,22 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
9 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       11 
11 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       12 
     | 
    
         
            -
                    } 
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "ErrorIServiceCallerUnknown",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       13 
19 
     | 
    
         
             
                    {
         
     | 
| 
       14 
20 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       15 
21 
     | 
    
         
             
                      "name": "nftId",
         
     | 
| 
       16 
22 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       17 
23 
     | 
    
         
             
                    }
         
     | 
| 
       18 
24 
     | 
    
         
             
                  ],
         
     | 
| 
       19 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 25 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
       20 
26 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       21 
27 
     | 
    
         
             
                },
         
     | 
| 
       22 
28 
     | 
    
         
             
                {
         
     | 
| 
         @@ -27,76 +33,48 @@ 
     | 
|
| 
       27 
33 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       28 
34 
     | 
    
         
             
                    }
         
     | 
| 
       29 
35 
     | 
    
         
             
                  ],
         
     | 
| 
       30 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 36 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
       31 
37 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       32 
38 
     | 
    
         
             
                },
         
     | 
| 
       33 
39 
     | 
    
         
             
                {
         
     | 
| 
       34 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       37 
     | 
    
         
            -
                      "name": "account",
         
     | 
| 
       38 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       39 
     | 
    
         
            -
                    }
         
     | 
| 
       40 
     | 
    
         
            -
                  ],
         
     | 
| 
       41 
     | 
    
         
            -
                  "name": "ErrorNotOwner",
         
     | 
| 
      
 40 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
       42 
42 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       43 
43 
     | 
    
         
             
                },
         
     | 
| 
       44 
44 
     | 
    
         
             
                {
         
     | 
| 
       45 
45 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       46 
46 
     | 
    
         
             
                    {
         
     | 
| 
       47 
47 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       48 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
       49 
49 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       50 
50 
     | 
    
         
             
                    }
         
     | 
| 
       51 
51 
     | 
    
         
             
                  ],
         
     | 
| 
       52 
     | 
    
         
            -
                  "name": " 
     | 
| 
       53 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       54 
     | 
    
         
            -
                },
         
     | 
| 
       55 
     | 
    
         
            -
                {
         
     | 
| 
       56 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       57 
     | 
    
         
            -
                  "name": "ErrorRegistryAddressZero",
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
       58 
53 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       59 
54 
     | 
    
         
             
                },
         
     | 
| 
       60 
55 
     | 
    
         
             
                {
         
     | 
| 
       61 
56 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       62 
57 
     | 
    
         
             
                    {
         
     | 
| 
       63 
58 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       64 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
       65 
60 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       66 
61 
     | 
    
         
             
                    }
         
     | 
| 
       67 
62 
     | 
    
         
             
                  ],
         
     | 
| 
       68 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       69 
64 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       70 
65 
     | 
    
         
             
                },
         
     | 
| 
       71 
66 
     | 
    
         
             
                {
         
     | 
| 
       72 
67 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       73 
     | 
    
         
            -
                  "name": " 
     | 
| 
       74 
     | 
    
         
            -
                  " 
     | 
| 
       75 
     | 
    
         
            -
                },
         
     | 
| 
       76 
     | 
    
         
            -
                {
         
     | 
| 
       77 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       78 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       79 
     | 
    
         
            -
                    {
         
     | 
| 
       80 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       81 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       82 
     | 
    
         
            -
                      "name": "version",
         
     | 
| 
       83 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       84 
     | 
    
         
            -
                    },
         
     | 
| 
       85 
     | 
    
         
            -
                    {
         
     | 
| 
       86 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       87 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       88 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       89 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       90 
     | 
    
         
            -
                    },
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "name": "getDomain",
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       91 
70 
     | 
    
         
             
                    {
         
     | 
| 
       92 
     | 
    
         
            -
                      " 
     | 
| 
       93 
     | 
    
         
            -
                      " 
     | 
| 
       94 
     | 
    
         
            -
                      " 
     | 
| 
       95 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 72 
     | 
    
         
            +
                      "name": "serviceDomain",
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       96 
74 
     | 
    
         
             
                    }
         
     | 
| 
       97 
75 
     | 
    
         
             
                  ],
         
     | 
| 
       98 
     | 
    
         
            -
                  " 
     | 
| 
       99 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 76 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       100 
78 
     | 
    
         
             
                },
         
     | 
| 
       101 
79 
     | 
    
         
             
                {
         
     | 
| 
       102 
80 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
         @@ -143,24 +121,6 @@ 
     | 
|
| 
       143 
121 
     | 
    
         
             
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       144 
122 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       145 
123 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       146 
     | 
    
         
            -
                    },
         
     | 
| 
       147 
     | 
    
         
            -
                    {
         
     | 
| 
       148 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       149 
     | 
    
         
            -
                      "name": "data",
         
     | 
| 
       150 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       151 
     | 
    
         
            -
                    }
         
     | 
| 
       152 
     | 
    
         
            -
                  ],
         
     | 
| 
       153 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       154 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       155 
     | 
    
         
            -
                },
         
     | 
| 
       156 
     | 
    
         
            -
                {
         
     | 
| 
       157 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       158 
     | 
    
         
            -
                  "name": "getInitializedVersion",
         
     | 
| 
       159 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       160 
     | 
    
         
            -
                    {
         
     | 
| 
       161 
     | 
    
         
            -
                      "internalType": "uint64",
         
     | 
| 
       162 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       163 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       164 
124 
     | 
    
         
             
                    }
         
     | 
| 
       165 
125 
     | 
    
         
             
                  ],
         
     | 
| 
       166 
126 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -179,19 +139,6 @@ 
     | 
|
| 
       179 
139 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       180 
140 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       181 
141 
     | 
    
         
             
                },
         
     | 
| 
       182 
     | 
    
         
            -
                {
         
     | 
| 
       183 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       184 
     | 
    
         
            -
                  "name": "getName",
         
     | 
| 
       185 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       186 
     | 
    
         
            -
                    {
         
     | 
| 
       187 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       188 
     | 
    
         
            -
                      "name": "name",
         
     | 
| 
       189 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       190 
     | 
    
         
            -
                    }
         
     | 
| 
       191 
     | 
    
         
            -
                  ],
         
     | 
| 
       192 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       193 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       194 
     | 
    
         
            -
                },
         
     | 
| 
       195 
142 
     | 
    
         
             
                {
         
     | 
| 
       196 
143 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       197 
144 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -233,31 +180,12 @@ 
     | 
|
| 
       233 
180 
     | 
    
         
             
                },
         
     | 
| 
       234 
181 
     | 
    
         
             
                {
         
     | 
| 
       235 
182 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       236 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 183 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
       237 
184 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       238 
185 
     | 
    
         
             
                    {
         
     | 
| 
       239 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 186 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       240 
187 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       241 
     | 
    
         
            -
                      "type": " 
     | 
| 
       242 
     | 
    
         
            -
                    }
         
     | 
| 
       243 
     | 
    
         
            -
                  ],
         
     | 
| 
       244 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       245 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       246 
     | 
    
         
            -
                },
         
     | 
| 
       247 
     | 
    
         
            -
                {
         
     | 
| 
       248 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       249 
     | 
    
         
            -
                    {
         
     | 
| 
       250 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       251 
     | 
    
         
            -
                      "name": "index",
         
     | 
| 
       252 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       253 
     | 
    
         
            -
                    }
         
     | 
| 
       254 
     | 
    
         
            -
                  ],
         
     | 
| 
       255 
     | 
    
         
            -
                  "name": "getVersion",
         
     | 
| 
       256 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       257 
     | 
    
         
            -
                    {
         
     | 
| 
       258 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       259 
     | 
    
         
            -
                      "name": "version",
         
     | 
| 
       260 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
      
 188 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       261 
189 
     | 
    
         
             
                    }
         
     | 
| 
       262 
190 
     | 
    
         
             
                  ],
         
     | 
| 
       263 
191 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -265,70 +193,19 @@ 
     | 
|
| 
       265 
193 
     | 
    
         
             
                },
         
     | 
| 
       266 
194 
     | 
    
         
             
                {
         
     | 
| 
       267 
195 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       268 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 196 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
       269 
197 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       270 
     | 
    
         
            -
                    {
         
     | 
| 
       271 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       272 
     | 
    
         
            -
                      "name": "numberOfVersions",
         
     | 
| 
       273 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       274 
     | 
    
         
            -
                    }
         
     | 
| 
       275 
     | 
    
         
            -
                  ],
         
     | 
| 
       276 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       277 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       278 
     | 
    
         
            -
                },
         
     | 
| 
       279 
     | 
    
         
            -
                {
         
     | 
| 
       280 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       281 
198 
     | 
    
         
             
                    {
         
     | 
| 
       282 
199 
     | 
    
         
             
                      "internalType": "Version",
         
     | 
| 
       283 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 200 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       284 
201 
     | 
    
         
             
                      "type": "uint24"
         
     | 
| 
       285 
202 
     | 
    
         
             
                    }
         
     | 
| 
       286 
203 
     | 
    
         
             
                  ],
         
     | 
| 
       287 
     | 
    
         
            -
                  " 
     | 
| 
       288 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       289 
     | 
    
         
            -
                    {
         
     | 
| 
       290 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       291 
     | 
    
         
            -
                        {
         
     | 
| 
       292 
     | 
    
         
            -
                          "internalType": "Version",
         
     | 
| 
       293 
     | 
    
         
            -
                          "name": "version",
         
     | 
| 
       294 
     | 
    
         
            -
                          "type": "uint24"
         
     | 
| 
       295 
     | 
    
         
            -
                        },
         
     | 
| 
       296 
     | 
    
         
            -
                        {
         
     | 
| 
       297 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       298 
     | 
    
         
            -
                          "name": "implementation",
         
     | 
| 
       299 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       300 
     | 
    
         
            -
                        },
         
     | 
| 
       301 
     | 
    
         
            -
                        {
         
     | 
| 
       302 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       303 
     | 
    
         
            -
                          "name": "activatedBy",
         
     | 
| 
       304 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       305 
     | 
    
         
            -
                        },
         
     | 
| 
       306 
     | 
    
         
            -
                        {
         
     | 
| 
       307 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       308 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       309 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       310 
     | 
    
         
            -
                        },
         
     | 
| 
       311 
     | 
    
         
            -
                        {
         
     | 
| 
       312 
     | 
    
         
            -
                          "internalType": "Blocknumber",
         
     | 
| 
       313 
     | 
    
         
            -
                          "name": "activatedIn",
         
     | 
| 
       314 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       315 
     | 
    
         
            -
                        }
         
     | 
| 
       316 
     | 
    
         
            -
                      ],
         
     | 
| 
       317 
     | 
    
         
            -
                      "internalType": "struct IVersionable.VersionInfo",
         
     | 
| 
       318 
     | 
    
         
            -
                      "name": "versionInfo",
         
     | 
| 
       319 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       320 
     | 
    
         
            -
                    }
         
     | 
| 
       321 
     | 
    
         
            -
                  ],
         
     | 
| 
       322 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
       323 
205 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       324 
206 
     | 
    
         
             
                },
         
     | 
| 
       325 
207 
     | 
    
         
             
                {
         
     | 
| 
       326 
208 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       327 
     | 
    
         
            -
                    {
         
     | 
| 
       328 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       329 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       330 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       331 
     | 
    
         
            -
                    },
         
     | 
| 
       332 
209 
     | 
    
         
             
                    {
         
     | 
| 
       333 
210 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       334 
211 
     | 
    
         
             
                      "name": "activatedBy",
         
     | 
| 
         @@ -340,30 +217,11 @@ 
     | 
|
| 
       340 
217 
     | 
    
         
             
                      "type": "bytes"
         
     | 
| 
       341 
218 
     | 
    
         
             
                    }
         
     | 
| 
       342 
219 
     | 
    
         
             
                  ],
         
     | 
| 
       343 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 220 
     | 
    
         
            +
                  "name": "initializeVersionable",
         
     | 
| 
       344 
221 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       345 
222 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       346 
223 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       347 
224 
     | 
    
         
             
                },
         
     | 
| 
       348 
     | 
    
         
            -
                {
         
     | 
| 
       349 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       350 
     | 
    
         
            -
                    {
         
     | 
| 
       351 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       352 
     | 
    
         
            -
                      "name": "version",
         
     | 
| 
       353 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       354 
     | 
    
         
            -
                    }
         
     | 
| 
       355 
     | 
    
         
            -
                  ],
         
     | 
| 
       356 
     | 
    
         
            -
                  "name": "isInitialized",
         
     | 
| 
       357 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       358 
     | 
    
         
            -
                    {
         
     | 
| 
       359 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       360 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       361 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       362 
     | 
    
         
            -
                    }
         
     | 
| 
       363 
     | 
    
         
            -
                  ],
         
     | 
| 
       364 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       365 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       366 
     | 
    
         
            -
                },
         
     | 
| 
       367 
225 
     | 
    
         
             
                {
         
     | 
| 
       368 
226 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       369 
227 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -392,23 +250,13 @@ 
     | 
|
| 
       392 
250 
     | 
    
         
             
                },
         
     | 
| 
       393 
251 
     | 
    
         
             
                {
         
     | 
| 
       394 
252 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       395 
     | 
    
         
            -
                    {
         
     | 
| 
       396 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       397 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       398 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       399 
     | 
    
         
            -
                    },
         
     | 
| 
       400 
     | 
    
         
            -
                    {
         
     | 
| 
       401 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       402 
     | 
    
         
            -
                      "name": "activatedBy",
         
     | 
| 
       403 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       404 
     | 
    
         
            -
                    },
         
     | 
| 
       405 
253 
     | 
    
         
             
                    {
         
     | 
| 
       406 
254 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
       407 
255 
     | 
    
         
             
                      "name": "upgradeData",
         
     | 
| 
       408 
256 
     | 
    
         
             
                      "type": "bytes"
         
     | 
| 
       409 
257 
     | 
    
         
             
                    }
         
     | 
| 
       410 
258 
     | 
    
         
             
                  ],
         
     | 
| 
       411 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 259 
     | 
    
         
            +
                  "name": "upgradeVersionable",
         
     | 
| 
       412 
260 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       413 
261 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       414 
262 
     | 
    
         
             
                  "type": "function"
         
     |