@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e9a637d-547
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 +65 -2
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +842 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +941 -230
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +295 -132
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +825 -231
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +638 -190
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +346 -704
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +342 -168
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +405 -3100
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +609 -178
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +148 -247
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +536 -259
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +335 -98
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2677 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -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} +247 -180
 - 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 +40 -10
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
 - 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 +1039 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1341 -259
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +440 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -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} +217 -208
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +437 -154
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -251
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +305 -92
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +284 -502
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +304 -99
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +261 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +275 -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 +200 -335
 - 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 +559 -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 +86 -172
 - 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 +191 -163
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
 - 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 +6 -6
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
 - 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/TestVersion.sol/TestVersion.json +2 -2
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -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/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
 - 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/Fee.sol/FeeLib.json +40 -9
 - 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 +17 -4
 - 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/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/components/Component.sol +253 -0
 - package/contracts/components/Distribution.sol +200 -79
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +88 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +221 -160
 - package/contracts/components/Product.sol +128 -119
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +127 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +43 -24
 - package/contracts/instance/IInstanceService.sol +59 -5
 - package/contracts/instance/Instance.sol +125 -369
 - package/contracts/instance/InstanceAccessManager.sol +428 -176
 - package/contracts/instance/InstanceReader.sol +21 -34
 - package/contracts/instance/InstanceService.sol +466 -128
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/InstanceStore.sol +219 -0
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/KeyValueStore.sol +13 -5
 - package/contracts/instance/base/Lifecycle.sol +11 -2
 - package/contracts/instance/module/IAccess.sol +36 -20
 - package/contracts/instance/module/IBundle.sol +8 -5
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +30 -3
 - package/contracts/instance/module/ISetup.sol +9 -20
 - package/contracts/instance/service/ApplicationService.sol +351 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +431 -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 +382 -33
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +93 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +87 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +79 -17
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +362 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +217 -108
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +114 -453
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +9 -1
 - package/contracts/registry/IRegistry.sol +41 -19
 - package/contracts/registry/IRegistryService.sol +31 -13
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +245 -222
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +97 -173
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +324 -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 +5 -4
 - 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 +41 -24
 - package/contracts/shared/TokenHandler.sol +11 -5
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/Amount.sol +60 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +10 -5
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +26 -19
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +1 -0
 - package/contracts/types/Timestamp.sol +13 -13
 - package/contracts/types/UFixed.sol +1 -0
 - package/contracts/types/Version.sol +1 -0
 - 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
 
| 
         @@ -1,114 +1,178 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
     | 
    
         
            -
              "contractName": " 
     | 
| 
       4 
     | 
    
         
            -
              "sourceName": "contracts/instance/base/ 
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "ComponentService",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/instance/base/ComponentService.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
       11 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       12 
12 
     | 
    
         
             
                    }
         
     | 
| 
       13 
13 
     | 
    
         
             
                  ],
         
     | 
| 
       14 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
       15 
15 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       16 
16 
     | 
    
         
             
                },
         
     | 
| 
       17 
17 
     | 
    
         
             
                {
         
     | 
| 
       18 
18 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       19 
19 
     | 
    
         
             
                    {
         
     | 
| 
       20 
20 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       21 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       22 
22 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       23 
23 
     | 
    
         
             
                    },
         
     | 
| 
       24 
24 
     | 
    
         
             
                    {
         
     | 
| 
       25 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       26 
     | 
    
         
            -
                      "name": " 
     | 
| 
       27 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
       28 
28 
     | 
    
         
             
                    }
         
     | 
| 
       29 
29 
     | 
    
         
             
                  ],
         
     | 
| 
       30 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
       31 
31 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       32 
32 
     | 
    
         
             
                },
         
     | 
| 
       33 
33 
     | 
    
         
             
                {
         
     | 
| 
       34 
34 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       35 
35 
     | 
    
         
             
                    {
         
     | 
| 
       36 
36 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       37 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       38 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       39 
39 
     | 
    
         
             
                    }
         
     | 
| 
       40 
40 
     | 
    
         
             
                  ],
         
     | 
| 
       41 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
       42 
42 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       43 
43 
     | 
    
         
             
                },
         
     | 
| 
       44 
44 
     | 
    
         
             
                {
         
     | 
| 
       45 
45 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       46 
46 
     | 
    
         
             
                    {
         
     | 
| 
       47 
47 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       48 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
       49 
49 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       50 
50 
     | 
    
         
             
                    }
         
     | 
| 
       51 
51 
     | 
    
         
             
                  ],
         
     | 
| 
       52 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorComponentServiceComponentLocked",
         
     | 
| 
       53 
53 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       54 
54 
     | 
    
         
             
                },
         
     | 
| 
       55 
55 
     | 
    
         
             
                {
         
     | 
| 
       56 
56 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    },
         
     | 
| 
      
 62 
     | 
    
         
            +
                    {
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "name": "requiredRole",
         
     | 
| 
      
 65 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 66 
     | 
    
         
            +
                    },
         
     | 
| 
       57 
67 
     | 
    
         
             
                    {
         
     | 
| 
       58 
68 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       59 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "sender",
         
     | 
| 
       60 
70 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       61 
71 
     | 
    
         
             
                    }
         
     | 
| 
       62 
72 
     | 
    
         
             
                  ],
         
     | 
| 
       63 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 73 
     | 
    
         
            +
                  "name": "ErrorComponentServiceExpectedRoleMissing",
         
     | 
| 
       64 
74 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       65 
75 
     | 
    
         
             
                },
         
     | 
| 
       66 
76 
     | 
    
         
             
                {
         
     | 
| 
       67 
77 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       68 
78 
     | 
    
         
             
                    {
         
     | 
| 
       69 
79 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       70 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
       71 
81 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    },
         
     | 
| 
      
 83 
     | 
    
         
            +
                    {
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "name": "requiredType",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 87 
     | 
    
         
            +
                    },
         
     | 
| 
      
 88 
     | 
    
         
            +
                    {
         
     | 
| 
      
 89 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "name": "componentType",
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       72 
92 
     | 
    
         
             
                    }
         
     | 
| 
       73 
93 
     | 
    
         
             
                  ],
         
     | 
| 
       74 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 94 
     | 
    
         
            +
                  "name": "ErrorComponentServiceInvalidType",
         
     | 
| 
       75 
95 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       76 
96 
     | 
    
         
             
                },
         
     | 
| 
       77 
97 
     | 
    
         
             
                {
         
     | 
| 
       78 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       79 
     | 
    
         
            -
             
     | 
| 
      
 98 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 99 
     | 
    
         
            +
                    {
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 103 
     | 
    
         
            +
                    }
         
     | 
| 
      
 104 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "name": "ErrorComponentServiceNotComponent",
         
     | 
| 
       80 
106 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       81 
107 
     | 
    
         
             
                },
         
     | 
| 
       82 
108 
     | 
    
         
             
                {
         
     | 
| 
       83 
109 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       84 
110 
     | 
    
         
             
                    {
         
     | 
| 
       85 
111 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       86 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    },
         
     | 
| 
      
 115 
     | 
    
         
            +
                    {
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 119 
     | 
    
         
            +
                    },
         
     | 
| 
      
 120 
     | 
    
         
            +
                    {
         
     | 
| 
      
 121 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "name": "sender",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 124 
     | 
    
         
            +
                    }
         
     | 
| 
      
 125 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "name": "ErrorComponentServiceSenderNotOwner",
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 128 
     | 
    
         
            +
                },
         
     | 
| 
      
 129 
     | 
    
         
            +
                {
         
     | 
| 
      
 130 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 131 
     | 
    
         
            +
                    {
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 133 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 135 
     | 
    
         
            +
                    }
         
     | 
| 
      
 136 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 139 
     | 
    
         
            +
                },
         
     | 
| 
      
 140 
     | 
    
         
            +
                {
         
     | 
| 
      
 141 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 142 
     | 
    
         
            +
                    {
         
     | 
| 
      
 143 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
       87 
145 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       88 
146 
     | 
    
         
             
                    }
         
     | 
| 
       89 
147 
     | 
    
         
             
                  ],
         
     | 
| 
       90 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 148 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
       91 
149 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       92 
150 
     | 
    
         
             
                },
         
     | 
| 
       93 
151 
     | 
    
         
             
                {
         
     | 
| 
       94 
152 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       95 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
       96 
154 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       97 
155 
     | 
    
         
             
                },
         
     | 
| 
       98 
156 
     | 
    
         
             
                {
         
     | 
| 
       99 
157 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       100 
158 
     | 
    
         
             
                    {
         
     | 
| 
       101 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       102 
     | 
    
         
            -
                      "name": " 
     | 
| 
       103 
     | 
    
         
            -
                      "type": " 
     | 
| 
       104 
     | 
    
         
            -
                    } 
     | 
| 
      
 159 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 162 
     | 
    
         
            +
                    }
         
     | 
| 
      
 163 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 166 
     | 
    
         
            +
                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       105 
169 
     | 
    
         
             
                    {
         
     | 
| 
       106 
170 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       107 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 171 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
       108 
172 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       109 
173 
     | 
    
         
             
                    }
         
     | 
| 
       110 
174 
     | 
    
         
             
                  ],
         
     | 
| 
       111 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 175 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       112 
176 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       113 
177 
     | 
    
         
             
                },
         
     | 
| 
       114 
178 
     | 
    
         
             
                {
         
     | 
| 
         @@ -126,12 +190,12 @@ 
     | 
|
| 
       126 
190 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       127 
191 
     | 
    
         
             
                    {
         
     | 
| 
       128 
192 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       129 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       130 
     | 
    
         
            -
                      "name": " 
     | 
| 
       131 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 193 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 194 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 195 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       132 
196 
     | 
    
         
             
                    }
         
     | 
| 
       133 
197 
     | 
    
         
             
                  ],
         
     | 
| 
       134 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 198 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
       135 
199 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       136 
200 
     | 
    
         
             
                },
         
     | 
| 
       137 
201 
     | 
    
         
             
                {
         
     | 
| 
         @@ -139,26 +203,27 @@ 
     | 
|
| 
       139 
203 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       140 
204 
     | 
    
         
             
                    {
         
     | 
| 
       141 
205 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       142 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 206 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
       143 
207 
     | 
    
         
             
                      "name": "version",
         
     | 
| 
       144 
     | 
    
         
            -
                      "type": " 
     | 
| 
       145 
     | 
    
         
            -
                    },
         
     | 
| 
       146 
     | 
    
         
            -
                    {
         
     | 
| 
       147 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       148 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       149 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       150 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       151 
     | 
    
         
            -
                    },
         
     | 
| 
       152 
     | 
    
         
            -
                    {
         
     | 
| 
       153 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       154 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       155 
     | 
    
         
            -
                      "name": "activatedBy",
         
     | 
| 
       156 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
      
 208 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       157 
209 
     | 
    
         
             
                    }
         
     | 
| 
       158 
210 
     | 
    
         
             
                  ],
         
     | 
| 
       159 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 211 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
       160 
212 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       161 
213 
     | 
    
         
             
                },
         
     | 
| 
      
 214 
     | 
    
         
            +
                {
         
     | 
| 
      
 215 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 218 
     | 
    
         
            +
                    {
         
     | 
| 
      
 219 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 220 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 221 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 222 
     | 
    
         
            +
                    }
         
     | 
| 
      
 223 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 224 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 226 
     | 
    
         
            +
                },
         
     | 
| 
       162 
227 
     | 
    
         
             
                {
         
     | 
| 
       163 
228 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       164 
229 
     | 
    
         
             
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
         @@ -172,6 +237,32 @@ 
     | 
|
| 
       172 
237 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       173 
238 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       174 
239 
     | 
    
         
             
                },
         
     | 
| 
      
 240 
     | 
    
         
            +
                {
         
     | 
| 
      
 241 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 244 
     | 
    
         
            +
                    {
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 248 
     | 
    
         
            +
                    }
         
     | 
| 
      
 249 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 250 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 251 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 252 
     | 
    
         
            +
                },
         
     | 
| 
      
 253 
     | 
    
         
            +
                {
         
     | 
| 
      
 254 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "name": "getDomain",
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 257 
     | 
    
         
            +
                    {
         
     | 
| 
      
 258 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 259 
     | 
    
         
            +
                      "name": "serviceDomain",
         
     | 
| 
      
 260 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 261 
     | 
    
         
            +
                    }
         
     | 
| 
      
 262 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 263 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 264 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 265 
     | 
    
         
            +
                },
         
     | 
| 
       175 
266 
     | 
    
         
             
                {
         
     | 
| 
       176 
267 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       177 
268 
     | 
    
         
             
                  "name": "getInitialInfo",
         
     | 
| 
         @@ -215,26 +306,8 @@ 
     | 
|
| 
       215 
306 
     | 
    
         
             
                        }
         
     | 
| 
       216 
307 
     | 
    
         
             
                      ],
         
     | 
| 
       217 
308 
     | 
    
         
             
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       218 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 309 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
       219 
310 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       220 
     | 
    
         
            -
                    },
         
     | 
| 
       221 
     | 
    
         
            -
                    {
         
     | 
| 
       222 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       223 
     | 
    
         
            -
                      "name": "data",
         
     | 
| 
       224 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       225 
     | 
    
         
            -
                    }
         
     | 
| 
       226 
     | 
    
         
            -
                  ],
         
     | 
| 
       227 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       228 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       229 
     | 
    
         
            -
                },
         
     | 
| 
       230 
     | 
    
         
            -
                {
         
     | 
| 
       231 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       232 
     | 
    
         
            -
                  "name": "getInitializedVersion",
         
     | 
| 
       233 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       234 
     | 
    
         
            -
                    {
         
     | 
| 
       235 
     | 
    
         
            -
                      "internalType": "uint64",
         
     | 
| 
       236 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       237 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       238 
311 
     | 
    
         
             
                    }
         
     | 
| 
       239 
312 
     | 
    
         
             
                  ],
         
     | 
| 
       240 
313 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -255,12 +328,12 @@ 
     | 
|
| 
       255 
328 
     | 
    
         
             
                },
         
     | 
| 
       256 
329 
     | 
    
         
             
                {
         
     | 
| 
       257 
330 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       258 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 331 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
       259 
332 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       260 
333 
     | 
    
         
             
                    {
         
     | 
| 
       261 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       262 
     | 
    
         
            -
                      "name": " 
     | 
| 
       263 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 334 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 335 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 336 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       264 
337 
     | 
    
         
             
                    }
         
     | 
| 
       265 
338 
     | 
    
         
             
                  ],
         
     | 
| 
       266 
339 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -268,25 +341,12 @@ 
     | 
|
| 
       268 
341 
     | 
    
         
             
                },
         
     | 
| 
       269 
342 
     | 
    
         
             
                {
         
     | 
| 
       270 
343 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       271 
     | 
    
         
            -
                  "name": " 
     | 
| 
       272 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       273 
     | 
    
         
            -
                    {
         
     | 
| 
       274 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       275 
     | 
    
         
            -
                      "name": "name",
         
     | 
| 
       276 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       277 
     | 
    
         
            -
                    }
         
     | 
| 
       278 
     | 
    
         
            -
                  ],
         
     | 
| 
       279 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       280 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       281 
     | 
    
         
            -
                },
         
     | 
| 
       282 
     | 
    
         
            -
                {
         
     | 
| 
       283 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       284 
     | 
    
         
            -
                  "name": "getNftId",
         
     | 
| 
      
 344 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
       285 
345 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       286 
346 
     | 
    
         
             
                    {
         
     | 
| 
       287 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 347 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       288 
348 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       289 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 349 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       290 
350 
     | 
    
         
             
                    }
         
     | 
| 
       291 
351 
     | 
    
         
             
                  ],
         
     | 
| 
       292 
352 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -294,10 +354,10 @@ 
     | 
|
| 
       294 
354 
     | 
    
         
             
                },
         
     | 
| 
       295 
355 
     | 
    
         
             
                {
         
     | 
| 
       296 
356 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       297 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 357 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
       298 
358 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       299 
359 
     | 
    
         
             
                    {
         
     | 
| 
       300 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 360 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
       301 
361 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       302 
362 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       303 
363 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -307,10 +367,10 @@ 
     | 
|
| 
       307 
367 
     | 
    
         
             
                },
         
     | 
| 
       308 
368 
     | 
    
         
             
                {
         
     | 
| 
       309 
369 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       310 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 370 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
       311 
371 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       312 
372 
     | 
    
         
             
                    {
         
     | 
| 
       313 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 373 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       314 
374 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       315 
375 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       316 
376 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -344,103 +404,101 @@ 
     | 
|
| 
       344 
404 
     | 
    
         
             
                  "stateMutability": "pure",
         
     | 
| 
       345 
405 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       346 
406 
     | 
    
         
             
                },
         
     | 
| 
      
 407 
     | 
    
         
            +
                {
         
     | 
| 
      
 408 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 409 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 411 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 412 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 413 
     | 
    
         
            +
                },
         
     | 
| 
       347 
414 
     | 
    
         
             
                {
         
     | 
| 
       348 
415 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       349 
416 
     | 
    
         
             
                    {
         
     | 
| 
       350 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       351 
     | 
    
         
            -
                      "name": " 
     | 
| 
       352 
     | 
    
         
            -
                      "type": " 
     | 
| 
       353 
     | 
    
         
            -
                    }
         
     | 
| 
       354 
     | 
    
         
            -
                  ],
         
     | 
| 
       355 
     | 
    
         
            -
                  "name": "getVersion",
         
     | 
| 
       356 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 417 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 418 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 420 
     | 
    
         
            +
                    },
         
     | 
| 
       357 
421 
     | 
    
         
             
                    {
         
     | 
| 
       358 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       359 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       360 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 422 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 423 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 424 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       361 
425 
     | 
    
         
             
                    }
         
     | 
| 
       362 
426 
     | 
    
         
             
                  ],
         
     | 
| 
       363 
     | 
    
         
            -
                  " 
     | 
| 
      
 427 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       364 
430 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       365 
431 
     | 
    
         
             
                },
         
     | 
| 
       366 
432 
     | 
    
         
             
                {
         
     | 
| 
       367 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       368 
     | 
    
         
            -
                  "name": "getVersionCount",
         
     | 
| 
       369 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 433 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       370 
434 
     | 
    
         
             
                    {
         
     | 
| 
       371 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       372 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       373 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 435 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 436 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 437 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 438 
     | 
    
         
            +
                    },
         
     | 
| 
      
 439 
     | 
    
         
            +
                    {
         
     | 
| 
      
 440 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 441 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 442 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 443 
     | 
    
         
            +
                    },
         
     | 
| 
      
 444 
     | 
    
         
            +
                    {
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 448 
     | 
    
         
            +
                    },
         
     | 
| 
      
 449 
     | 
    
         
            +
                    {
         
     | 
| 
      
 450 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 451 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 452 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 453 
     | 
    
         
            +
                    },
         
     | 
| 
      
 454 
     | 
    
         
            +
                    {
         
     | 
| 
      
 455 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 456 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 457 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 458 
     | 
    
         
            +
                    },
         
     | 
| 
      
 459 
     | 
    
         
            +
                    {
         
     | 
| 
      
 460 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 461 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 462 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
       374 
463 
     | 
    
         
             
                    }
         
     | 
| 
       375 
464 
     | 
    
         
             
                  ],
         
     | 
| 
       376 
     | 
    
         
            -
                  " 
     | 
| 
      
 465 
     | 
    
         
            +
                  "name": "initializeRegisterable",
         
     | 
| 
      
 466 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 467 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       377 
468 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       378 
469 
     | 
    
         
             
                },
         
     | 
| 
       379 
470 
     | 
    
         
             
                {
         
     | 
| 
       380 
471 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       381 
472 
     | 
    
         
             
                    {
         
     | 
| 
       382 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       383 
     | 
    
         
            -
                      "name": " 
     | 
| 
       384 
     | 
    
         
            -
                      "type": " 
     | 
| 
       385 
     | 
    
         
            -
                    }
         
     | 
| 
       386 
     | 
    
         
            -
                  ],
         
     | 
| 
       387 
     | 
    
         
            -
                  "name": "getVersionInfo",
         
     | 
| 
       388 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       389 
     | 
    
         
            -
                    {
         
     | 
| 
       390 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       391 
     | 
    
         
            -
                        {
         
     | 
| 
       392 
     | 
    
         
            -
                          "internalType": "Version",
         
     | 
| 
       393 
     | 
    
         
            -
                          "name": "version",
         
     | 
| 
       394 
     | 
    
         
            -
                          "type": "uint24"
         
     | 
| 
       395 
     | 
    
         
            -
                        },
         
     | 
| 
       396 
     | 
    
         
            -
                        {
         
     | 
| 
       397 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       398 
     | 
    
         
            -
                          "name": "implementation",
         
     | 
| 
       399 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       400 
     | 
    
         
            -
                        },
         
     | 
| 
       401 
     | 
    
         
            -
                        {
         
     | 
| 
       402 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       403 
     | 
    
         
            -
                          "name": "activatedBy",
         
     | 
| 
       404 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       405 
     | 
    
         
            -
                        },
         
     | 
| 
       406 
     | 
    
         
            -
                        {
         
     | 
| 
       407 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       408 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       409 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       410 
     | 
    
         
            -
                        },
         
     | 
| 
       411 
     | 
    
         
            -
                        {
         
     | 
| 
       412 
     | 
    
         
            -
                          "internalType": "Blocknumber",
         
     | 
| 
       413 
     | 
    
         
            -
                          "name": "activatedIn",
         
     | 
| 
       414 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       415 
     | 
    
         
            -
                        }
         
     | 
| 
       416 
     | 
    
         
            -
                      ],
         
     | 
| 
       417 
     | 
    
         
            -
                      "internalType": "struct IVersionable.VersionInfo",
         
     | 
| 
       418 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       419 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 473 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 474 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 475 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       420 
476 
     | 
    
         
             
                    }
         
     | 
| 
       421 
477 
     | 
    
         
             
                  ],
         
     | 
| 
       422 
     | 
    
         
            -
                  " 
     | 
| 
      
 478 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 479 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 480 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       423 
481 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       424 
482 
     | 
    
         
             
                },
         
     | 
| 
       425 
483 
     | 
    
         
             
                {
         
     | 
| 
       426 
484 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       427 
485 
     | 
    
         
             
                    {
         
     | 
| 
       428 
486 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       429 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 487 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
       430 
488 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       431 
489 
     | 
    
         
             
                    },
         
     | 
| 
       432 
490 
     | 
    
         
             
                    {
         
     | 
| 
       433 
491 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       434 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 492 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
       435 
493 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       436 
494 
     | 
    
         
             
                    },
         
     | 
| 
       437 
495 
     | 
    
         
             
                    {
         
     | 
| 
       438 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       439 
     | 
    
         
            -
                      "name": " 
     | 
| 
       440 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 496 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 497 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 498 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       441 
499 
     | 
    
         
             
                    }
         
     | 
| 
       442 
500 
     | 
    
         
             
                  ],
         
     | 
| 
       443 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 501 
     | 
    
         
            +
                  "name": "initializeService",
         
     | 
| 
       444 
502 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       445 
503 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       446 
504 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -448,17 +506,29 @@ 
     | 
|
| 
       448 
506 
     | 
    
         
             
                {
         
     | 
| 
       449 
507 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       450 
508 
     | 
    
         
             
                    {
         
     | 
| 
       451 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       452 
     | 
    
         
            -
                      "name": " 
     | 
| 
       453 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 509 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 510 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 511 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 512 
     | 
    
         
            +
                    },
         
     | 
| 
      
 513 
     | 
    
         
            +
                    {
         
     | 
| 
      
 514 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 515 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 516 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
       454 
517 
     | 
    
         
             
                    }
         
     | 
| 
       455 
518 
     | 
    
         
             
                  ],
         
     | 
| 
       456 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 519 
     | 
    
         
            +
                  "name": "initializeVersionable",
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 522 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 523 
     | 
    
         
            +
                },
         
     | 
| 
      
 524 
     | 
    
         
            +
                {
         
     | 
| 
      
 525 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 526 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
       457 
527 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       458 
528 
     | 
    
         
             
                    {
         
     | 
| 
       459 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 529 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
       460 
530 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       461 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 531 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       462 
532 
     | 
    
         
             
                    }
         
     | 
| 
       463 
533 
     | 
    
         
             
                  ],
         
     | 
| 
       464 
534 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -474,19 +544,26 @@ 
     | 
|
| 
       474 
544 
     | 
    
         
             
                {
         
     | 
| 
       475 
545 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       476 
546 
     | 
    
         
             
                    {
         
     | 
| 
       477 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       478 
     | 
    
         
            -
                      "name": " 
     | 
| 
       479 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 547 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 549 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       480 
550 
     | 
    
         
             
                    }
         
     | 
| 
       481 
551 
     | 
    
         
             
                  ],
         
     | 
| 
       482 
     | 
    
         
            -
                  "name": " 
     | 
| 
       483 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 552 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 553 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 554 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 555 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 556 
     | 
    
         
            +
                },
         
     | 
| 
      
 557 
     | 
    
         
            +
                {
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       484 
559 
     | 
    
         
             
                    {
         
     | 
| 
       485 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       486 
     | 
    
         
            -
                      "name": " 
     | 
| 
       487 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 560 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 561 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 562 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       488 
563 
     | 
    
         
             
                    }
         
     | 
| 
       489 
564 
     | 
    
         
             
                  ],
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 566 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
       490 
567 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       491 
568 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       492 
569 
     | 
    
         
             
                },
         
     | 
| 
         @@ -511,23 +588,13 @@ 
     | 
|
| 
       511 
588 
     | 
    
         
             
                },
         
     | 
| 
       512 
589 
     | 
    
         
             
                {
         
     | 
| 
       513 
590 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       514 
     | 
    
         
            -
                    {
         
     | 
| 
       515 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       516 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       517 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       518 
     | 
    
         
            -
                    },
         
     | 
| 
       519 
     | 
    
         
            -
                    {
         
     | 
| 
       520 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       521 
     | 
    
         
            -
                      "name": "activatedBy",
         
     | 
| 
       522 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       523 
     | 
    
         
            -
                    },
         
     | 
| 
       524 
591 
     | 
    
         
             
                    {
         
     | 
| 
       525 
592 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
       526 
593 
     | 
    
         
             
                      "name": "data",
         
     | 
| 
       527 
594 
     | 
    
         
             
                      "type": "bytes"
         
     | 
| 
       528 
595 
     | 
    
         
             
                    }
         
     | 
| 
       529 
596 
     | 
    
         
             
                  ],
         
     | 
| 
       530 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 597 
     | 
    
         
            +
                  "name": "upgradeVersionable",
         
     | 
| 
       531 
598 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       532 
599 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       533 
600 
     | 
    
         
             
                  "type": "function"
         
     |