@etherisc/gif-next 0.0.2-eb1b869-461 → 0.0.2-eb98db7-932
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 +403 -8
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.json +683 -35
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +1346 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +284 -223
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +900 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +887 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +806 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +1140 -146
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +1056 -156
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1779 -774
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +498 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2514 -851
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1386 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1035 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +693 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +541 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +858 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +657 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1085 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +743 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1087 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +729 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +462 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +622 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +398 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +520 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +572 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +336 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +373 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1109 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +717 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +716 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +649 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +766 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +578 -29
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +879 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +651 -68
 - 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 +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1166 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{components/IPool.sol/IPoolComponent.json → shared/IService.sol/IService.json} +120 -117
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
 - 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 +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/shared/Service.sol/Service.json +414 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.json +510 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -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 +77 -2
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
 - package/contracts/components/Component.sol +211 -47
 - package/contracts/components/Distribution.sol +287 -0
 - package/contracts/components/IComponent.sol +54 -0
 - package/contracts/components/IDistributionComponent.sol +92 -0
 - package/contracts/components/IPoolComponent.sol +87 -0
 - package/contracts/components/IProductComponent.sol +39 -0
 - package/contracts/components/Pool.sol +229 -27
 - package/contracts/components/Product.sol +243 -47
 - package/contracts/instance/BundleManager.sol +125 -0
 - package/contracts/instance/Cloneable.sol +46 -0
 - package/contracts/instance/IInstance.sol +91 -24
 - package/contracts/instance/IInstanceService.sol +59 -0
 - package/contracts/instance/Instance.sol +270 -51
 - package/contracts/instance/InstanceAccessManager.sol +297 -0
 - package/contracts/instance/InstanceReader.sol +293 -0
 - package/contracts/instance/InstanceService.sol +476 -0
 - package/contracts/instance/InstanceServiceManager.sol +54 -0
 - package/contracts/instance/ObjectManager.sol +84 -0
 - package/contracts/instance/base/ComponentService.sol +134 -0
 - package/contracts/instance/base/IKeyValueStore.sol +49 -0
 - package/contracts/instance/base/ILifecycle.sol +30 -0
 - package/contracts/instance/base/KeyValueStore.sol +172 -0
 - package/contracts/instance/base/Lifecycle.sol +100 -0
 - package/contracts/instance/module/IAccess.sol +47 -0
 - package/contracts/instance/module/IBundle.sol +20 -0
 - package/contracts/instance/module/IDistribution.sol +40 -0
 - package/contracts/instance/module/IPolicy.sol +47 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +48 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ApplicationService.sol +268 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +298 -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 +346 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +51 -0
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +54 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +73 -0
 - package/contracts/instance/service/IPolicyService.sol +89 -0
 - package/contracts/instance/service/IPoolService.sol +20 -0
 - package/contracts/instance/service/IProductService.sol +40 -0
 - package/contracts/instance/service/PolicyService.sol +476 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +109 -0
 - package/contracts/instance/service/PoolServiceManager.sol +51 -0
 - package/contracts/instance/service/ProductService.sol +233 -0
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +129 -62
 - package/contracts/registry/IRegistry.sol +73 -41
 - package/contracts/registry/IRegistryService.sol +67 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +408 -126
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +283 -0
 - package/contracts/registry/RegistryServiceManager.sol +62 -0
 - package/contracts/registry/ReleaseManager.sol +322 -0
 - package/contracts/registry/TokenRegistry.sol +116 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +27 -0
 - package/contracts/shared/INftOwnable.sol +23 -0
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +15 -0
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +16 -0
 - package/contracts/shared/IVersionable.sol +53 -0
 - package/contracts/shared/NftOwnable.sol +120 -0
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +169 -0
 - package/contracts/shared/Registerable.sol +74 -0
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +58 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +59 -0
 - package/contracts/test/TestFee.sol +25 -0
 - package/contracts/test/TestRegisterable.sol +18 -0
 - package/contracts/test/TestRoleId.sol +14 -0
 - package/contracts/test/TestService.sol +25 -0
 - package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
 - package/contracts/test/TestVersion.sol +44 -0
 - package/contracts/test/TestVersionable.sol +17 -0
 - package/contracts/{mock → test}/Usdc.sol +1 -1
 - package/contracts/types/AddressSet.sol +58 -0
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +44 -20
 - package/contracts/types/Key32.sol +50 -0
 - package/contracts/types/NftId.sol +22 -1
 - package/contracts/types/NftIdSet.sol +62 -0
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +64 -15
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +85 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +90 -0
 - package/contracts/types/StateId.sol +18 -4
 - package/contracts/types/Timestamp.sol +29 -4
 - package/contracts/types/UFixed.sol +138 -23
 - package/contracts/types/Version.sol +107 -0
 - package/package.json +11 -5
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
 - 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/IB.sol/IB.json +0 -50
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
 - package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
 - package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
 - package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
 - package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
 - package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
 - package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
 - package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
 - package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
 - package/contracts/components/IPool.sol +0 -15
 - package/contracts/components/IProduct.sol +0 -16
 - 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/README.md +0 -112
 - 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/access/Access.sol +0 -165
 - package/contracts/instance/access/IAccess.sol +0 -63
 - package/contracts/instance/component/ComponentModule.sol +0 -274
 - package/contracts/instance/component/IComponent.sol +0 -74
 - package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
 - package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
 - package/contracts/instance/policy/IPolicy.sol +0 -50
 - package/contracts/instance/policy/PolicyModule.sol +0 -114
 - package/contracts/instance/pool/IPoolModule.sol +0 -23
 - package/contracts/instance/pool/PoolModule.sol +0 -81
 - package/contracts/instance/product/IProductService.sol +0 -36
 - package/contracts/instance/product/ProductService.sol +0 -136
 - package/contracts/instance/treasury/ITreasury.sol +0 -91
 - package/contracts/instance/treasury/TokenHandler.sol +0 -24
 - package/contracts/instance/treasury/TreasuryModule.sol +0 -168
 - package/contracts/mock/TestPool.sol +0 -16
 - package/contracts/mock/TestProduct.sol +0 -39
 - package/contracts/registry/IChainNft.sol +0 -21
 
| 
         @@ -4,38 +4,339 @@ 
     | 
|
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/components/Component.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
       7 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       8 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       9 
8 
     | 
    
         
             
                    {
         
     | 
| 
       10 
     | 
    
         
            -
                      " 
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "AddressEmptyCode",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "AddressInsufficientBalance",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 68 
     | 
    
         
            +
                    {
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 72 
     | 
    
         
            +
                    }
         
     | 
| 
      
 73 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "name": "ErrorComponentNotChainNft",
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
                {
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 79 
     | 
    
         
            +
                    {
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 82 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 83 
     | 
    
         
            +
                    },
         
     | 
| 
      
 84 
     | 
    
         
            +
                    {
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 88 
     | 
    
         
            +
                    }
         
     | 
| 
      
 89 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "name": "ErrorComponentNotInstance",
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 92 
     | 
    
         
            +
                },
         
     | 
| 
      
 93 
     | 
    
         
            +
                {
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 95 
     | 
    
         
            +
                    {
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 98 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 99 
     | 
    
         
            +
                    }
         
     | 
| 
      
 100 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "name": "ErrorComponentNotProductService",
         
     | 
| 
      
 102 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 103 
     | 
    
         
            +
                },
         
     | 
| 
      
 104 
     | 
    
         
            +
                {
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 106 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         
     | 
| 
      
 107 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 108 
     | 
    
         
            +
                },
         
     | 
| 
      
 109 
     | 
    
         
            +
                {
         
     | 
| 
      
 110 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 111 
     | 
    
         
            +
                    {
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 114 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 115 
     | 
    
         
            +
                    },
         
     | 
| 
      
 116 
     | 
    
         
            +
                    {
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "name": "requiredRoleIdNum",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 120 
     | 
    
         
            +
                    }
         
     | 
| 
      
 121 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 122 
     | 
    
         
            +
                  "name": "ErrorComponentUnauthorized",
         
     | 
| 
      
 123 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 124 
     | 
    
         
            +
                },
         
     | 
| 
      
 125 
     | 
    
         
            +
                {
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 127 
     | 
    
         
            +
                    {
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 130 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 131 
     | 
    
         
            +
                    }
         
     | 
| 
      
 132 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         
     | 
| 
      
 134 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 135 
     | 
    
         
            +
                },
         
     | 
| 
      
 136 
     | 
    
         
            +
                {
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressZero",
         
     | 
| 
      
 139 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 140 
     | 
    
         
            +
                },
         
     | 
| 
      
 141 
     | 
    
         
            +
                {
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 143 
     | 
    
         
            +
                    {
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 146 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 147 
     | 
    
         
            +
                    },
         
     | 
| 
      
 148 
     | 
    
         
            +
                    {
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 151 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 152 
     | 
    
         
            +
                    },
         
     | 
| 
      
 153 
     | 
    
         
            +
                    {
         
     | 
| 
       11 
154 
     | 
    
         
             
                      "internalType": "uint256",
         
     | 
| 
       12 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 155 
     | 
    
         
            +
                      "name": "allowance",
         
     | 
| 
       13 
156 
     | 
    
         
             
                      "type": "uint256"
         
     | 
| 
       14 
157 
     | 
    
         
             
                    },
         
     | 
| 
      
 158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "name": "balance",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 162 
     | 
    
         
            +
                    }
         
     | 
| 
      
 163 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 166 
     | 
    
         
            +
                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 169 
     | 
    
         
            +
                    {
         
     | 
| 
      
 170 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 173 
     | 
    
         
            +
                    }
         
     | 
| 
      
 174 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 177 
     | 
    
         
            +
                },
         
     | 
| 
      
 178 
     | 
    
         
            +
                {
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 180 
     | 
    
         
            +
                    {
         
     | 
| 
      
 181 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 183 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 184 
     | 
    
         
            +
                    }
         
     | 
| 
      
 185 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 186 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 187 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 188 
     | 
    
         
            +
                },
         
     | 
| 
      
 189 
     | 
    
         
            +
                {
         
     | 
| 
      
 190 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 191 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 193 
     | 
    
         
            +
                },
         
     | 
| 
      
 194 
     | 
    
         
            +
                {
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 196 
     | 
    
         
            +
                    {
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 200 
     | 
    
         
            +
                    }
         
     | 
| 
      
 201 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 202 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 204 
     | 
    
         
            +
                },
         
     | 
| 
      
 205 
     | 
    
         
            +
                {
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 207 
     | 
    
         
            +
                    {
         
     | 
| 
      
 208 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 211 
     | 
    
         
            +
                    }
         
     | 
| 
      
 212 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 213 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 214 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 215 
     | 
    
         
            +
                },
         
     | 
| 
      
 216 
     | 
    
         
            +
                {
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 218 
     | 
    
         
            +
                  "name": "FailedInnerCall",
         
     | 
| 
      
 219 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 220 
     | 
    
         
            +
                },
         
     | 
| 
      
 221 
     | 
    
         
            +
                {
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 223 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 224 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 225 
     | 
    
         
            +
                },
         
     | 
| 
      
 226 
     | 
    
         
            +
                {
         
     | 
| 
      
 227 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 228 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 229 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 230 
     | 
    
         
            +
                },
         
     | 
| 
      
 231 
     | 
    
         
            +
                {
         
     | 
| 
      
 232 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 233 
     | 
    
         
            +
                    {
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 236 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 237 
     | 
    
         
            +
                    }
         
     | 
| 
      
 238 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 239 
     | 
    
         
            +
                  "name": "SafeERC20FailedOperation",
         
     | 
| 
      
 240 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 241 
     | 
    
         
            +
                },
         
     | 
| 
      
 242 
     | 
    
         
            +
                {
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 244 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       15 
245 
     | 
    
         
             
                    {
         
     | 
| 
       16 
246 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       17 
247 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       18 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 248 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 249 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 250 
     | 
    
         
            +
                    }
         
     | 
| 
      
 251 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 252 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 253 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 254 
     | 
    
         
            +
                },
         
     | 
| 
      
 255 
     | 
    
         
            +
                {
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 257 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 258 
     | 
    
         
            +
                    {
         
     | 
| 
      
 259 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 260 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 261 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 262 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 263 
     | 
    
         
            +
                    }
         
     | 
| 
      
 264 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 265 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 266 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 267 
     | 
    
         
            +
                },
         
     | 
| 
      
 268 
     | 
    
         
            +
                {
         
     | 
| 
      
 269 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 271 
     | 
    
         
            +
                    {
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 274 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 275 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 276 
     | 
    
         
            +
                    }
         
     | 
| 
      
 277 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 278 
     | 
    
         
            +
                  "name": "LogComponentWalletAddressChanged",
         
     | 
| 
      
 279 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 280 
     | 
    
         
            +
                },
         
     | 
| 
      
 281 
     | 
    
         
            +
                {
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 284 
     | 
    
         
            +
                    {
         
     | 
| 
      
 285 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 286 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
       19 
288 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       20 
289 
     | 
    
         
             
                    },
         
     | 
| 
       21 
290 
     | 
    
         
             
                    {
         
     | 
| 
       22 
291 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       23 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       24 
     | 
    
         
            -
                      "name": " 
     | 
| 
       25 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 292 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 293 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 294 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 295 
     | 
    
         
            +
                    },
         
     | 
| 
      
 296 
     | 
    
         
            +
                    {
         
     | 
| 
      
 297 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 298 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 300 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       26 
301 
     | 
    
         
             
                    }
         
     | 
| 
       27 
302 
     | 
    
         
             
                  ],
         
     | 
| 
       28 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 303 
     | 
    
         
            +
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
       29 
304 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       30 
305 
     | 
    
         
             
                },
         
     | 
| 
       31 
306 
     | 
    
         
             
                {
         
     | 
| 
       32 
307 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       33 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 308 
     | 
    
         
            +
                  "name": "CONTRACT_LOCATION_V1",
         
     | 
| 
       34 
309 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       35 
310 
     | 
    
         
             
                    {
         
     | 
| 
       36 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       37 
     | 
    
         
            -
                      "name": " 
     | 
| 
       38 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 311 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 312 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 313 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 314 
     | 
    
         
            +
                    }
         
     | 
| 
      
 315 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 316 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 318 
     | 
    
         
            +
                },
         
     | 
| 
      
 319 
     | 
    
         
            +
                {
         
     | 
| 
      
 320 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 323 
     | 
    
         
            +
                    {
         
     | 
| 
      
 324 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 325 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 326 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 327 
     | 
    
         
            +
                    }
         
     | 
| 
      
 328 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 330 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 331 
     | 
    
         
            +
                },
         
     | 
| 
      
 332 
     | 
    
         
            +
                {
         
     | 
| 
      
 333 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 334 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 335 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 336 
     | 
    
         
            +
                    {
         
     | 
| 
      
 337 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 338 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 339 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
       39 
340 
     | 
    
         
             
                    }
         
     | 
| 
       40 
341 
     | 
    
         
             
                  ],
         
     | 
| 
       41 
342 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -43,17 +344,67 @@ 
     | 
|
| 
       43 
344 
     | 
    
         
             
                },
         
     | 
| 
       44 
345 
     | 
    
         
             
                {
         
     | 
| 
       45 
346 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       46 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 347 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
       47 
348 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       48 
349 
     | 
    
         
             
                    {
         
     | 
| 
       49 
350 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       50 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 351 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       51 
352 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       52 
353 
     | 
    
         
             
                    }
         
     | 
| 
       53 
354 
     | 
    
         
             
                  ],
         
     | 
| 
       54 
355 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       55 
356 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       56 
357 
     | 
    
         
             
                },
         
     | 
| 
      
 358 
     | 
    
         
            +
                {
         
     | 
| 
      
 359 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 360 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 361 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 362 
     | 
    
         
            +
                    {
         
     | 
| 
      
 363 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 364 
     | 
    
         
            +
                        {
         
     | 
| 
      
 365 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 366 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 367 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 368 
     | 
    
         
            +
                        },
         
     | 
| 
      
 369 
     | 
    
         
            +
                        {
         
     | 
| 
      
 370 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 371 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 372 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 373 
     | 
    
         
            +
                        },
         
     | 
| 
      
 374 
     | 
    
         
            +
                        {
         
     | 
| 
      
 375 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 376 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 377 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 378 
     | 
    
         
            +
                        },
         
     | 
| 
      
 379 
     | 
    
         
            +
                        {
         
     | 
| 
      
 380 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 381 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 382 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 383 
     | 
    
         
            +
                        },
         
     | 
| 
      
 384 
     | 
    
         
            +
                        {
         
     | 
| 
      
 385 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 386 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 387 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 388 
     | 
    
         
            +
                        },
         
     | 
| 
      
 389 
     | 
    
         
            +
                        {
         
     | 
| 
      
 390 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 391 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 392 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 393 
     | 
    
         
            +
                        },
         
     | 
| 
      
 394 
     | 
    
         
            +
                        {
         
     | 
| 
      
 395 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 396 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 397 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 398 
     | 
    
         
            +
                        }
         
     | 
| 
      
 399 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 400 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 401 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 402 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 403 
     | 
    
         
            +
                    }
         
     | 
| 
      
 404 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 405 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 406 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 407 
     | 
    
         
            +
                },
         
     | 
| 
       57 
408 
     | 
    
         
             
                {
         
     | 
| 
       58 
409 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       59 
410 
     | 
    
         
             
                  "name": "getInstance",
         
     | 
| 
         @@ -67,13 +418,52 @@ 
     | 
|
| 
       67 
418 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       68 
419 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       69 
420 
     | 
    
         
             
                },
         
     | 
| 
      
 421 
     | 
    
         
            +
                {
         
     | 
| 
      
 422 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "name": "getInstanceReader",
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 425 
     | 
    
         
            +
                    {
         
     | 
| 
      
 426 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 427 
     | 
    
         
            +
                      "name": "reader",
         
     | 
| 
      
 428 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 429 
     | 
    
         
            +
                    }
         
     | 
| 
      
 430 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 432 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 433 
     | 
    
         
            +
                },
         
     | 
| 
      
 434 
     | 
    
         
            +
                {
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "name": "getInstanceService",
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 438 
     | 
    
         
            +
                    {
         
     | 
| 
      
 439 
     | 
    
         
            +
                      "internalType": "contract IInstanceService",
         
     | 
| 
      
 440 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 441 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 442 
     | 
    
         
            +
                    }
         
     | 
| 
      
 443 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 444 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 445 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 446 
     | 
    
         
            +
                },
         
     | 
| 
      
 447 
     | 
    
         
            +
                {
         
     | 
| 
      
 448 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "name": "getName",
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 451 
     | 
    
         
            +
                    {
         
     | 
| 
      
 452 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 453 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 454 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 455 
     | 
    
         
            +
                    }
         
     | 
| 
      
 456 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 459 
     | 
    
         
            +
                },
         
     | 
| 
       70 
460 
     | 
    
         
             
                {
         
     | 
| 
       71 
461 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       72 
462 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
       73 
463 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       74 
464 
     | 
    
         
             
                    {
         
     | 
| 
       75 
465 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       76 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 466 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       77 
467 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       78 
468 
     | 
    
         
             
                    }
         
     | 
| 
       79 
469 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -86,7 +476,7 @@ 
     | 
|
| 
       86 
476 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       87 
477 
     | 
    
         
             
                    {
         
     | 
| 
       88 
478 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       89 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 479 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       90 
480 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       91 
481 
     | 
    
         
             
                    }
         
     | 
| 
       92 
482 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -95,11 +485,11 @@ 
     | 
|
| 
       95 
485 
     | 
    
         
             
                },
         
     | 
| 
       96 
486 
     | 
    
         
             
                {
         
     | 
| 
       97 
487 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       98 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 488 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
       99 
489 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       100 
490 
     | 
    
         
             
                    {
         
     | 
| 
       101 
491 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       102 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 492 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
       103 
493 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       104 
494 
     | 
    
         
             
                    }
         
     | 
| 
       105 
495 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -108,11 +498,11 @@ 
     | 
|
| 
       108 
498 
     | 
    
         
             
                },
         
     | 
| 
       109 
499 
     | 
    
         
             
                {
         
     | 
| 
       110 
500 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       111 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 501 
     | 
    
         
            +
                  "name": "getProductService",
         
     | 
| 
       112 
502 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       113 
503 
     | 
    
         
             
                    {
         
     | 
| 
       114 
     | 
    
         
            -
                      "internalType": "contract  
     | 
| 
       115 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 504 
     | 
    
         
            +
                      "internalType": "contract IProductService",
         
     | 
| 
      
 505 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       116 
506 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       117 
507 
     | 
    
         
             
                    }
         
     | 
| 
       118 
508 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -121,11 +511,11 @@ 
     | 
|
| 
       121 
511 
     | 
    
         
             
                },
         
     | 
| 
       122 
512 
     | 
    
         
             
                {
         
     | 
| 
       123 
513 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       124 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 514 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
       125 
515 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       126 
516 
     | 
    
         
             
                    {
         
     | 
| 
       127 
     | 
    
         
            -
                      "internalType": "contract  
     | 
| 
       128 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 517 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 518 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       129 
519 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       130 
520 
     | 
    
         
             
                    }
         
     | 
| 
       131 
521 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -134,14 +524,46 @@ 
     | 
|
| 
       134 
524 
     | 
    
         
             
                },
         
     | 
| 
       135 
525 
     | 
    
         
             
                {
         
     | 
| 
       136 
526 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       137 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 527 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
       138 
528 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
      
 529 
     | 
    
         
            +
                    {
         
     | 
| 
      
 530 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 531 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 532 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 533 
     | 
    
         
            +
                    }
         
     | 
| 
      
 534 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 535 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 536 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 537 
     | 
    
         
            +
                },
         
     | 
| 
      
 538 
     | 
    
         
            +
                {
         
     | 
| 
      
 539 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       139 
540 
     | 
    
         
             
                    {
         
     | 
| 
       140 
541 
     | 
    
         
             
                      "internalType": "ObjectType",
         
     | 
| 
       141 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 542 
     | 
    
         
            +
                      "name": "domain",
         
     | 
| 
       142 
543 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       143 
544 
     | 
    
         
             
                    }
         
     | 
| 
       144 
545 
     | 
    
         
             
                  ],
         
     | 
| 
      
 546 
     | 
    
         
            +
                  "name": "getServiceAddress",
         
     | 
| 
      
 547 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 548 
     | 
    
         
            +
                    {
         
     | 
| 
      
 549 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 550 
     | 
    
         
            +
                      "name": "service",
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 552 
     | 
    
         
            +
                    }
         
     | 
| 
      
 553 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 554 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 555 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 556 
     | 
    
         
            +
                },
         
     | 
| 
      
 557 
     | 
    
         
            +
                {
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 559 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
      
 560 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 561 
     | 
    
         
            +
                    {
         
     | 
| 
      
 562 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 563 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 564 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 565 
     | 
    
         
            +
                    }
         
     | 
| 
      
 566 
     | 
    
         
            +
                  ],
         
     | 
| 
       145 
567 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       146 
568 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       147 
569 
     | 
    
         
             
                },
         
     | 
| 
         @@ -158,27 +580,138 @@ 
     | 
|
| 
       158 
580 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       159 
581 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       160 
582 
     | 
    
         
             
                },
         
     | 
| 
      
 583 
     | 
    
         
            +
                {
         
     | 
| 
      
 584 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 585 
     | 
    
         
            +
                    {
         
     | 
| 
      
 586 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 587 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 588 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 589 
     | 
    
         
            +
                    },
         
     | 
| 
      
 590 
     | 
    
         
            +
                    {
         
     | 
| 
      
 591 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 592 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 593 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 594 
     | 
    
         
            +
                    },
         
     | 
| 
      
 595 
     | 
    
         
            +
                    {
         
     | 
| 
      
 596 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 597 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 598 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 599 
     | 
    
         
            +
                    },
         
     | 
| 
      
 600 
     | 
    
         
            +
                    {
         
     | 
| 
      
 601 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 602 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 604 
     | 
    
         
            +
                    },
         
     | 
| 
      
 605 
     | 
    
         
            +
                    {
         
     | 
| 
      
 606 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 607 
     | 
    
         
            +
                      "name": "componentType",
         
     | 
| 
      
 608 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 609 
     | 
    
         
            +
                    },
         
     | 
| 
      
 610 
     | 
    
         
            +
                    {
         
     | 
| 
      
 611 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 612 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 613 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 614 
     | 
    
         
            +
                    },
         
     | 
| 
      
 615 
     | 
    
         
            +
                    {
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 617 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 618 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 619 
     | 
    
         
            +
                    },
         
     | 
| 
      
 620 
     | 
    
         
            +
                    {
         
     | 
| 
      
 621 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 622 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 623 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 624 
     | 
    
         
            +
                    }
         
     | 
| 
      
 625 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 626 
     | 
    
         
            +
                  "name": "initializeComponent",
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 628 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 629 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 630 
     | 
    
         
            +
                },
         
     | 
| 
       161 
631 
     | 
    
         
             
                {
         
     | 
| 
       162 
632 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       163 
     | 
    
         
            -
                  "name": " 
     | 
| 
       164 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 633 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
      
 634 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 635 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 636 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 637 
     | 
    
         
            +
                },
         
     | 
| 
      
 638 
     | 
    
         
            +
                {
         
     | 
| 
      
 639 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 640 
     | 
    
         
            +
                    {
         
     | 
| 
      
 641 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 642 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 643 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 644 
     | 
    
         
            +
                    },
         
     | 
| 
      
 645 
     | 
    
         
            +
                    {
         
     | 
| 
      
 646 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 647 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 648 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 649 
     | 
    
         
            +
                    }
         
     | 
| 
      
 650 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 651 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 652 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 653 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 654 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 655 
     | 
    
         
            +
                },
         
     | 
| 
      
 656 
     | 
    
         
            +
                {
         
     | 
| 
      
 657 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 658 
     | 
    
         
            +
                    {
         
     | 
| 
      
 659 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 660 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 661 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 662 
     | 
    
         
            +
                    },
         
     | 
| 
      
 663 
     | 
    
         
            +
                    {
         
     | 
| 
      
 664 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 665 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 666 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 667 
     | 
    
         
            +
                    },
         
     | 
| 
      
 668 
     | 
    
         
            +
                    {
         
     | 
| 
      
 669 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 670 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 671 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 672 
     | 
    
         
            +
                    },
         
     | 
| 
       165 
673 
     | 
    
         
             
                    {
         
     | 
| 
       166 
674 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       167 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 675 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
       168 
676 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
      
 677 
     | 
    
         
            +
                    },
         
     | 
| 
      
 678 
     | 
    
         
            +
                    {
         
     | 
| 
      
 679 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 680 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 681 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 682 
     | 
    
         
            +
                    },
         
     | 
| 
      
 683 
     | 
    
         
            +
                    {
         
     | 
| 
      
 684 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 685 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 686 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
       169 
687 
     | 
    
         
             
                    }
         
     | 
| 
       170 
688 
     | 
    
         
             
                  ],
         
     | 
| 
       171 
     | 
    
         
            -
                  " 
     | 
| 
      
 689 
     | 
    
         
            +
                  "name": "initializeRegisterable",
         
     | 
| 
      
 690 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 691 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 692 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 693 
     | 
    
         
            +
                },
         
     | 
| 
      
 694 
     | 
    
         
            +
                {
         
     | 
| 
      
 695 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 696 
     | 
    
         
            +
                    {
         
     | 
| 
      
 697 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 698 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 699 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 700 
     | 
    
         
            +
                    }
         
     | 
| 
      
 701 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 702 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 703 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 704 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       172 
705 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       173 
706 
     | 
    
         
             
                },
         
     | 
| 
       174 
707 
     | 
    
         
             
                {
         
     | 
| 
       175 
708 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       176 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 709 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
       177 
710 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       178 
711 
     | 
    
         
             
                    {
         
     | 
| 
       179 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 712 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
       180 
713 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       181 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 714 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       182 
715 
     | 
    
         
             
                    }
         
     | 
| 
       183 
716 
     | 
    
         
             
                  ],
         
     | 
| 
       184 
717 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -186,14 +719,129 @@ 
     | 
|
| 
       186 
719 
     | 
    
         
             
                },
         
     | 
| 
       187 
720 
     | 
    
         
             
                {
         
     | 
| 
       188 
721 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       189 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 722 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
       190 
723 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
      
 724 
     | 
    
         
            +
                    {
         
     | 
| 
      
 725 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 727 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 728 
     | 
    
         
            +
                    }
         
     | 
| 
      
 729 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 730 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 731 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 732 
     | 
    
         
            +
                },
         
     | 
| 
      
 733 
     | 
    
         
            +
                {
         
     | 
| 
      
 734 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 735 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 736 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 737 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 738 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 739 
     | 
    
         
            +
                },
         
     | 
| 
      
 740 
     | 
    
         
            +
                {
         
     | 
| 
      
 741 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 742 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 743 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 744 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 745 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 746 
     | 
    
         
            +
                },
         
     | 
| 
      
 747 
     | 
    
         
            +
                {
         
     | 
| 
      
 748 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 749 
     | 
    
         
            +
                    {
         
     | 
| 
      
 750 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 751 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 752 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 753 
     | 
    
         
            +
                    },
         
     | 
| 
      
 754 
     | 
    
         
            +
                    {
         
     | 
| 
      
 755 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 756 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 757 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 758 
     | 
    
         
            +
                    },
         
     | 
| 
      
 759 
     | 
    
         
            +
                    {
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 761 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 762 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 763 
     | 
    
         
            +
                    }
         
     | 
| 
      
 764 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 765 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
      
 766 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 767 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 768 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 769 
     | 
    
         
            +
                },
         
     | 
| 
      
 770 
     | 
    
         
            +
                {
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 772 
     | 
    
         
            +
                    {
         
     | 
| 
      
 773 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 774 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 775 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 776 
     | 
    
         
            +
                    }
         
     | 
| 
      
 777 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 778 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 779 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 780 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 781 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 782 
     | 
    
         
            +
                },
         
     | 
| 
      
 783 
     | 
    
         
            +
                {
         
     | 
| 
      
 784 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 785 
     | 
    
         
            +
                    {
         
     | 
| 
      
 786 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 787 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 788 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 789 
     | 
    
         
            +
                    }
         
     | 
| 
      
 790 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 791 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 792 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 794 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 795 
     | 
    
         
            +
                },
         
     | 
| 
      
 796 
     | 
    
         
            +
                {
         
     | 
| 
      
 797 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       191 
798 
     | 
    
         
             
                    {
         
     | 
| 
       192 
799 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       193 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 800 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
       194 
801 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       195 
802 
     | 
    
         
             
                    }
         
     | 
| 
       196 
803 
     | 
    
         
             
                  ],
         
     | 
| 
      
 804 
     | 
    
         
            +
                  "name": "setProductNftId",
         
     | 
| 
      
 805 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 806 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 808 
     | 
    
         
            +
                },
         
     | 
| 
      
 809 
     | 
    
         
            +
                {
         
     | 
| 
      
 810 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 811 
     | 
    
         
            +
                    {
         
     | 
| 
      
 812 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 813 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 814 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 815 
     | 
    
         
            +
                    }
         
     | 
| 
      
 816 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 817 
     | 
    
         
            +
                  "name": "setWallet",
         
     | 
| 
      
 818 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 820 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 821 
     | 
    
         
            +
                },
         
     | 
| 
      
 822 
     | 
    
         
            +
                {
         
     | 
| 
      
 823 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 824 
     | 
    
         
            +
                    {
         
     | 
| 
      
 825 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 826 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 827 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 828 
     | 
    
         
            +
                    }
         
     | 
| 
      
 829 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 830 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 831 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 832 
     | 
    
         
            +
                    {
         
     | 
| 
      
 833 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 834 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 835 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 836 
     | 
    
         
            +
                    }
         
     | 
| 
      
 837 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 838 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 839 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 840 
     | 
    
         
            +
                },
         
     | 
| 
      
 841 
     | 
    
         
            +
                {
         
     | 
| 
      
 842 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
      
 844 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
       197 
845 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       198 
846 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       199 
847 
     | 
    
         
             
                }
         
     |