@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e9a637d-547
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -2
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +842 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +941 -230
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +295 -132
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +825 -231
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +638 -190
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +346 -704
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +342 -168
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +405 -3100
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +609 -178
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +148 -247
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +536 -259
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +335 -98
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2677 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +247 -180
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1039 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1341 -259
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +440 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +217 -208
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +437 -154
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -251
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +305 -92
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +284 -502
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +304 -99
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +261 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +275 -226
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +200 -335
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -141
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +86 -172
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +191 -163
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/components/Component.sol +253 -0
 - package/contracts/components/Distribution.sol +200 -79
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +88 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +221 -160
 - package/contracts/components/Product.sol +128 -119
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +127 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +43 -24
 - package/contracts/instance/IInstanceService.sol +59 -5
 - package/contracts/instance/Instance.sol +125 -369
 - package/contracts/instance/InstanceAccessManager.sol +428 -176
 - package/contracts/instance/InstanceReader.sol +21 -34
 - package/contracts/instance/InstanceService.sol +466 -128
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/InstanceStore.sol +219 -0
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/KeyValueStore.sol +13 -5
 - package/contracts/instance/base/Lifecycle.sol +11 -2
 - package/contracts/instance/module/IAccess.sol +36 -20
 - package/contracts/instance/module/IBundle.sol +8 -5
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +30 -3
 - package/contracts/instance/module/ISetup.sol +9 -20
 - package/contracts/instance/service/ApplicationService.sol +351 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +431 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +151 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +382 -33
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +93 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +87 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +79 -17
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +362 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +217 -108
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +114 -453
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +9 -1
 - package/contracts/registry/IRegistry.sol +41 -19
 - package/contracts/registry/IRegistryService.sol +31 -13
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +245 -222
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +97 -173
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +324 -0
 - package/contracts/registry/TokenRegistry.sol +22 -17
 - package/contracts/shared/ERC165.sol +14 -12
 - package/contracts/shared/INftOwnable.sol +11 -10
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +4 -6
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +5 -4
 - package/contracts/shared/IVersionable.sol +4 -47
 - package/contracts/shared/NftOwnable.sol +66 -80
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +100 -25
 - package/contracts/shared/Registerable.sol +16 -32
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +41 -24
 - package/contracts/shared/TokenHandler.sol +11 -5
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/Amount.sol +60 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +10 -5
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +26 -19
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +1 -0
 - package/contracts/types/Timestamp.sol +13 -13
 - package/contracts/types/UFixed.sol +1 -0
 - package/contracts/types/Version.sol +1 -0
 - package/package.json +3 -3
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
 - package/contracts/components/BaseComponent.sol +0 -91
 - package/contracts/components/IBaseComponent.sol +0 -25
 - package/contracts/experiment/cloning/Cloner.sol +0 -47
 - package/contracts/experiment/errors/Require.sol +0 -38
 - package/contracts/experiment/errors/Revert.sol +0 -44
 - package/contracts/experiment/inheritance/A.sol +0 -53
 - package/contracts/experiment/inheritance/B.sol +0 -28
 - package/contracts/experiment/inheritance/C.sol +0 -34
 - package/contracts/experiment/inheritance/IA.sol +0 -13
 - package/contracts/experiment/inheritance/IB.sol +0 -10
 - package/contracts/experiment/inheritance/IC.sol +0 -12
 - package/contracts/experiment/statemachine/Dummy.sol +0 -27
 - package/contracts/experiment/statemachine/ISM.sol +0 -25
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/AccessManagedSimple.sol +0 -115
 - package/contracts/instance/AccessManagerSimple.sol +0 -692
 - package/contracts/instance/IAccessManagerSimple.sol +0 -391
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -124
 - package/contracts/instance/base/IInstanceBase.sol +0 -23
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -317
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -20
 - package/contracts/shared/RegisterableUpgradable.sol +0 -16
 
| 
         @@ -1,97 +1,167 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
     | 
    
         
            -
              "contractName": " 
     | 
| 
       4 
     | 
    
         
            -
              "sourceName": "contracts/ 
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "IComponent",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/components/IComponent.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
9 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 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",
         
     | 
| 
       11 
22 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       12 
23 
     | 
    
         
             
                    },
         
     | 
| 
       13 
24 
     | 
    
         
             
                    {
         
     | 
| 
       14 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       15 
     | 
    
         
            -
                      "name": " 
     | 
| 
       16 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
       17 
28 
     | 
    
         
             
                    }
         
     | 
| 
       18 
29 
     | 
    
         
             
                  ],
         
     | 
| 
       19 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
       20 
31 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       21 
32 
     | 
    
         
             
                },
         
     | 
| 
       22 
33 
     | 
    
         
             
                {
         
     | 
| 
       23 
34 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       24 
35 
     | 
    
         
             
                    {
         
     | 
| 
       25 
36 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       26 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       27 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       28 
39 
     | 
    
         
             
                    }
         
     | 
| 
       29 
40 
     | 
    
         
             
                  ],
         
     | 
| 
       30 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
       31 
42 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       32 
43 
     | 
    
         
             
                },
         
     | 
| 
       33 
44 
     | 
    
         
             
                {
         
     | 
| 
       34 
45 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       35 
46 
     | 
    
         
             
                    {
         
     | 
| 
       36 
47 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       37 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       38 
49 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       39 
50 
     | 
    
         
             
                    }
         
     | 
| 
       40 
51 
     | 
    
         
             
                  ],
         
     | 
| 
       41 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorComponentNotChainNft",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorComponentNotInstance",
         
     | 
| 
       42 
64 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       43 
65 
     | 
    
         
             
                },
         
     | 
| 
       44 
66 
     | 
    
         
             
                {
         
     | 
| 
       45 
67 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       46 
68 
     | 
    
         
             
                    {
         
     | 
| 
       47 
69 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       48 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 70 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       49 
71 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       50 
72 
     | 
    
         
             
                    }
         
     | 
| 
       51 
73 
     | 
    
         
             
                  ],
         
     | 
| 
       52 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 74 
     | 
    
         
            +
                  "name": "ErrorComponentNotProductService",
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
                {
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressZero",
         
     | 
| 
       53 
90 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       54 
91 
     | 
    
         
             
                },
         
     | 
| 
       55 
92 
     | 
    
         
             
                {
         
     | 
| 
       56 
93 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       57 
94 
     | 
    
         
             
                    {
         
     | 
| 
       58 
95 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       59 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 96 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
       60 
97 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    },
         
     | 
| 
      
 99 
     | 
    
         
            +
                    {
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 103 
     | 
    
         
            +
                    },
         
     | 
| 
      
 104 
     | 
    
         
            +
                    {
         
     | 
| 
      
 105 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "name": "allowance",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 108 
     | 
    
         
            +
                    },
         
     | 
| 
      
 109 
     | 
    
         
            +
                    {
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "name": "balance",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       61 
113 
     | 
    
         
             
                    }
         
     | 
| 
       62 
114 
     | 
    
         
             
                  ],
         
     | 
| 
       63 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 115 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         
     | 
| 
       64 
116 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       65 
117 
     | 
    
         
             
                },
         
     | 
| 
       66 
118 
     | 
    
         
             
                {
         
     | 
| 
       67 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       68 
     | 
    
         
            -
             
     | 
| 
      
 119 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 120 
     | 
    
         
            +
                    {
         
     | 
| 
      
 121 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 124 
     | 
    
         
            +
                    }
         
     | 
| 
      
 125 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
       69 
127 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       70 
128 
     | 
    
         
             
                },
         
     | 
| 
       71 
129 
     | 
    
         
             
                {
         
     | 
| 
       72 
130 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       73 
131 
     | 
    
         
             
                    {
         
     | 
| 
       74 
132 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       75 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 133 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
       76 
134 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       77 
135 
     | 
    
         
             
                    }
         
     | 
| 
       78 
136 
     | 
    
         
             
                  ],
         
     | 
| 
       79 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 137 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
       80 
138 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       81 
139 
     | 
    
         
             
                },
         
     | 
| 
       82 
140 
     | 
    
         
             
                {
         
     | 
| 
       83 
141 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       84 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 142 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
       85 
143 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       86 
144 
     | 
    
         
             
                },
         
     | 
| 
       87 
145 
     | 
    
         
             
                {
         
     | 
| 
       88 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       89 
     | 
    
         
            -
             
     | 
| 
      
 146 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 151 
     | 
    
         
            +
                    }
         
     | 
| 
      
 152 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
       90 
154 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       91 
155 
     | 
    
         
             
                },
         
     | 
| 
       92 
156 
     | 
    
         
             
                {
         
     | 
| 
       93 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
      
 157 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 162 
     | 
    
         
            +
                    }
         
     | 
| 
      
 163 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       95 
165 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       96 
166 
     | 
    
         
             
                },
         
     | 
| 
       97 
167 
     | 
    
         
             
                {
         
     | 
| 
         @@ -99,12 +169,12 @@ 
     | 
|
| 
       99 
169 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       100 
170 
     | 
    
         
             
                    {
         
     | 
| 
       101 
171 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       102 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       103 
     | 
    
         
            -
                      "name": " 
     | 
| 
       104 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 172 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       105 
175 
     | 
    
         
             
                    }
         
     | 
| 
       106 
176 
     | 
    
         
             
                  ],
         
     | 
| 
       107 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 177 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
       108 
178 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       109 
179 
     | 
    
         
             
                },
         
     | 
| 
       110 
180 
     | 
    
         
             
                {
         
     | 
| 
         @@ -112,34 +182,103 @@ 
     | 
|
| 
       112 
182 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       113 
183 
     | 
    
         
             
                    {
         
     | 
| 
       114 
184 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       115 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       116 
     | 
    
         
            -
                      "name": " 
     | 
| 
       117 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 185 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       118 
188 
     | 
    
         
             
                    },
         
     | 
| 
       119 
189 
     | 
    
         
             
                    {
         
     | 
| 
       120 
190 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       121 
191 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       122 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 192 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 193 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 194 
     | 
    
         
            +
                    }
         
     | 
| 
      
 195 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "name": "LogComponentWalletAddressChanged",
         
     | 
| 
      
 197 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 198 
     | 
    
         
            +
                },
         
     | 
| 
      
 199 
     | 
    
         
            +
                {
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 201 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 202 
     | 
    
         
            +
                    {
         
     | 
| 
      
 203 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 204 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 205 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
       123 
206 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       124 
207 
     | 
    
         
             
                    },
         
     | 
| 
       125 
208 
     | 
    
         
             
                    {
         
     | 
| 
       126 
209 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       127 
210 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       128 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 211 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
       129 
212 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 213 
     | 
    
         
            +
                    },
         
     | 
| 
      
 214 
     | 
    
         
            +
                    {
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 218 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       130 
219 
     | 
    
         
             
                    }
         
     | 
| 
       131 
220 
     | 
    
         
             
                  ],
         
     | 
| 
       132 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 221 
     | 
    
         
            +
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
       133 
222 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       134 
223 
     | 
    
         
             
                },
         
     | 
| 
       135 
224 
     | 
    
         
             
                {
         
     | 
| 
       136 
225 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       137 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 226 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
       138 
227 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       139 
228 
     | 
    
         
             
                    {
         
     | 
| 
       140 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 229 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       141 
230 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       142 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 231 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 232 
     | 
    
         
            +
                    }
         
     | 
| 
      
 233 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 234 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 236 
     | 
    
         
            +
                },
         
     | 
| 
      
 237 
     | 
    
         
            +
                {
         
     | 
| 
      
 238 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 239 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
      
 240 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 241 
     | 
    
         
            +
                    {
         
     | 
| 
      
 242 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 243 
     | 
    
         
            +
                        {
         
     | 
| 
      
 244 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 245 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 246 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 247 
     | 
    
         
            +
                        },
         
     | 
| 
      
 248 
     | 
    
         
            +
                        {
         
     | 
| 
      
 249 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 250 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 251 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 252 
     | 
    
         
            +
                        },
         
     | 
| 
      
 253 
     | 
    
         
            +
                        {
         
     | 
| 
      
 254 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 255 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 256 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 257 
     | 
    
         
            +
                        },
         
     | 
| 
      
 258 
     | 
    
         
            +
                        {
         
     | 
| 
      
 259 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 260 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 261 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 262 
     | 
    
         
            +
                        },
         
     | 
| 
      
 263 
     | 
    
         
            +
                        {
         
     | 
| 
      
 264 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 265 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 266 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 267 
     | 
    
         
            +
                        },
         
     | 
| 
      
 268 
     | 
    
         
            +
                        {
         
     | 
| 
      
 269 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 270 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 271 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 272 
     | 
    
         
            +
                        },
         
     | 
| 
      
 273 
     | 
    
         
            +
                        {
         
     | 
| 
      
 274 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 275 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 276 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 277 
     | 
    
         
            +
                        }
         
     | 
| 
      
 278 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 280 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 281 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
       143 
282 
     | 
    
         
             
                    }
         
     | 
| 
       144 
283 
     | 
    
         
             
                  ],
         
     | 
| 
       145 
284 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -190,11 +329,19 @@ 
     | 
|
| 
       190 
329 
     | 
    
         
             
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       191 
330 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       192 
331 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       193 
     | 
    
         
            -
                    } 
     | 
| 
      
 332 
     | 
    
         
            +
                    }
         
     | 
| 
      
 333 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 334 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 335 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 336 
     | 
    
         
            +
                },
         
     | 
| 
      
 337 
     | 
    
         
            +
                {
         
     | 
| 
      
 338 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 339 
     | 
    
         
            +
                  "name": "getInstance",
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       194 
341 
     | 
    
         
             
                    {
         
     | 
| 
       195 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       196 
     | 
    
         
            -
                      "name": " 
     | 
| 
       197 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 342 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 343 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 344 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       198 
345 
     | 
    
         
             
                    }
         
     | 
| 
       199 
346 
     | 
    
         
             
                  ],
         
     | 
| 
       200 
347 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -202,12 +349,12 @@ 
     | 
|
| 
       202 
349 
     | 
    
         
             
                },
         
     | 
| 
       203 
350 
     | 
    
         
             
                {
         
     | 
| 
       204 
351 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       205 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 352 
     | 
    
         
            +
                  "name": "getName",
         
     | 
| 
       206 
353 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       207 
354 
     | 
    
         
             
                    {
         
     | 
| 
       208 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       209 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       210 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 355 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 356 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 357 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       211 
358 
     | 
    
         
             
                    }
         
     | 
| 
       212 
359 
     | 
    
         
             
                  ],
         
     | 
| 
       213 
360 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -239,6 +386,19 @@ 
     | 
|
| 
       239 
386 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       240 
387 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       241 
388 
     | 
    
         
             
                },
         
     | 
| 
      
 389 
     | 
    
         
            +
                {
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 391 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
      
 392 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 393 
     | 
    
         
            +
                    {
         
     | 
| 
      
 394 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 395 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 396 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 397 
     | 
    
         
            +
                    }
         
     | 
| 
      
 398 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 399 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 400 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 401 
     | 
    
         
            +
                },
         
     | 
| 
       242 
402 
     | 
    
         
             
                {
         
     | 
| 
       243 
403 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       244 
404 
     | 
    
         
             
                  "name": "getRegistry",
         
     | 
| 
         @@ -254,31 +414,38 @@ 
     | 
|
| 
       254 
414 
     | 
    
         
             
                },
         
     | 
| 
       255 
415 
     | 
    
         
             
                {
         
     | 
| 
       256 
416 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       257 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 417 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
       258 
418 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       259 
419 
     | 
    
         
             
                    {
         
     | 
| 
       260 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 420 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       261 
421 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       262 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 422 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       263 
423 
     | 
    
         
             
                    }
         
     | 
| 
       264 
424 
     | 
    
         
             
                  ],
         
     | 
| 
       265 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 425 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       266 
426 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       267 
427 
     | 
    
         
             
                },
         
     | 
| 
       268 
428 
     | 
    
         
             
                {
         
     | 
| 
       269 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 430 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       270 
432 
     | 
    
         
             
                    {
         
     | 
| 
       271 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       272 
     | 
    
         
            -
                      "name": " 
     | 
| 
       273 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 433 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 434 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 435 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       274 
436 
     | 
    
         
             
                    }
         
     | 
| 
       275 
437 
     | 
    
         
             
                  ],
         
     | 
| 
       276 
     | 
    
         
            -
                  " 
     | 
| 
      
 438 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 439 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 440 
     | 
    
         
            +
                },
         
     | 
| 
      
 441 
     | 
    
         
            +
                {
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 443 
     | 
    
         
            +
                  "name": "getWallet",
         
     | 
| 
       277 
444 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       278 
445 
     | 
    
         
             
                    {
         
     | 
| 
       279 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       280 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       281 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 446 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 448 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       282 
449 
     | 
    
         
             
                    }
         
     | 
| 
       283 
450 
     | 
    
         
             
                  ],
         
     | 
| 
       284 
451 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -286,82 +453,81 @@ 
     | 
|
| 
       286 
453 
     | 
    
         
             
                },
         
     | 
| 
       287 
454 
     | 
    
         
             
                {
         
     | 
| 
       288 
455 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       289 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 456 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
       290 
457 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       291 
458 
     | 
    
         
             
                    {
         
     | 
| 
       292 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 459 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
       293 
460 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       294 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 461 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       295 
462 
     | 
    
         
             
                    }
         
     | 
| 
       296 
463 
     | 
    
         
             
                  ],
         
     | 
| 
       297 
464 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       298 
465 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       299 
466 
     | 
    
         
             
                },
         
     | 
| 
       300 
467 
     | 
    
         
             
                {
         
     | 
| 
       301 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 469 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       302 
471 
     | 
    
         
             
                    {
         
     | 
| 
       303 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       304 
     | 
    
         
            -
                      "name": " 
     | 
| 
       305 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 472 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 473 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 474 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       306 
475 
     | 
    
         
             
                    }
         
     | 
| 
       307 
476 
     | 
    
         
             
                  ],
         
     | 
| 
       308 
     | 
    
         
            -
                  " 
     | 
| 
       309 
     | 
    
         
            -
                  " 
     | 
| 
      
 477 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 478 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 479 
     | 
    
         
            +
                },
         
     | 
| 
      
 480 
     | 
    
         
            +
                {
         
     | 
| 
      
 481 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 482 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 483 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 484 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 485 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 486 
     | 
    
         
            +
                },
         
     | 
| 
      
 487 
     | 
    
         
            +
                {
         
     | 
| 
      
 488 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 489 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 490 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 491 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 492 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 493 
     | 
    
         
            +
                },
         
     | 
| 
      
 494 
     | 
    
         
            +
                {
         
     | 
| 
      
 495 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       310 
496 
     | 
    
         
             
                    {
         
     | 
| 
       311 
     | 
    
         
            -
                      " 
     | 
| 
       312 
     | 
    
         
            -
             
     | 
| 
       313 
     | 
    
         
            -
             
     | 
| 
       314 
     | 
    
         
            -
             
     | 
| 
       315 
     | 
    
         
            -
             
     | 
| 
       316 
     | 
    
         
            -
             
     | 
| 
       317 
     | 
    
         
            -
             
     | 
| 
       318 
     | 
    
         
            -
             
     | 
| 
       319 
     | 
    
         
            -
                          "name": "implementation",
         
     | 
| 
       320 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       321 
     | 
    
         
            -
                        },
         
     | 
| 
       322 
     | 
    
         
            -
                        {
         
     | 
| 
       323 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       324 
     | 
    
         
            -
                          "name": "activatedBy",
         
     | 
| 
       325 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       326 
     | 
    
         
            -
                        },
         
     | 
| 
       327 
     | 
    
         
            -
                        {
         
     | 
| 
       328 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       329 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       330 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       331 
     | 
    
         
            -
                        },
         
     | 
| 
       332 
     | 
    
         
            -
                        {
         
     | 
| 
       333 
     | 
    
         
            -
                          "internalType": "Blocknumber",
         
     | 
| 
       334 
     | 
    
         
            -
                          "name": "activatedIn",
         
     | 
| 
       335 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       336 
     | 
    
         
            -
                        }
         
     | 
| 
       337 
     | 
    
         
            -
                      ],
         
     | 
| 
       338 
     | 
    
         
            -
                      "internalType": "struct IVersionable.VersionInfo",
         
     | 
| 
       339 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       340 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 497 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 498 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 499 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 500 
     | 
    
         
            +
                    },
         
     | 
| 
      
 501 
     | 
    
         
            +
                    {
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 503 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 504 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       341 
505 
     | 
    
         
             
                    }
         
     | 
| 
       342 
506 
     | 
    
         
             
                  ],
         
     | 
| 
       343 
     | 
    
         
            -
                  " 
     | 
| 
      
 507 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 508 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 509 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       344 
510 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       345 
511 
     | 
    
         
             
                },
         
     | 
| 
       346 
512 
     | 
    
         
             
                {
         
     | 
| 
       347 
513 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       348 
514 
     | 
    
         
             
                    {
         
     | 
| 
       349 
515 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       350 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 516 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
       351 
517 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       352 
518 
     | 
    
         
             
                    },
         
     | 
| 
       353 
519 
     | 
    
         
             
                    {
         
     | 
| 
       354 
520 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       355 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 521 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
       356 
522 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       357 
523 
     | 
    
         
             
                    },
         
     | 
| 
       358 
524 
     | 
    
         
             
                    {
         
     | 
| 
       359 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       360 
     | 
    
         
            -
                      "name": " 
     | 
| 
       361 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 525 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       362 
528 
     | 
    
         
             
                    }
         
     | 
| 
       363 
529 
     | 
    
         
             
                  ],
         
     | 
| 
       364 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 530 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
       365 
531 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       366 
532 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       367 
533 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -369,25 +535,38 @@ 
     | 
|
| 
       369 
535 
     | 
    
         
             
                {
         
     | 
| 
       370 
536 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       371 
537 
     | 
    
         
             
                    {
         
     | 
| 
       372 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       373 
     | 
    
         
            -
                      "name": " 
     | 
| 
       374 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 538 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 539 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       375 
541 
     | 
    
         
             
                    }
         
     | 
| 
       376 
542 
     | 
    
         
             
                  ],
         
     | 
| 
       377 
     | 
    
         
            -
                  "name": " 
     | 
| 
       378 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 543 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 545 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 546 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 547 
     | 
    
         
            +
                },
         
     | 
| 
      
 548 
     | 
    
         
            +
                {
         
     | 
| 
      
 549 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       379 
550 
     | 
    
         
             
                    {
         
     | 
| 
       380 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       381 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       382 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 551 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 552 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 553 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       383 
554 
     | 
    
         
             
                    }
         
     | 
| 
       384 
555 
     | 
    
         
             
                  ],
         
     | 
| 
       385 
     | 
    
         
            -
                  " 
     | 
| 
      
 556 
     | 
    
         
            +
                  "name": "setProductNftId",
         
     | 
| 
      
 557 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
       386 
559 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       387 
560 
     | 
    
         
             
                },
         
     | 
| 
       388 
561 
     | 
    
         
             
                {
         
     | 
| 
       389 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       390 
     | 
    
         
            -
             
     | 
| 
      
 562 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 563 
     | 
    
         
            +
                    {
         
     | 
| 
      
 564 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 565 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 566 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 567 
     | 
    
         
            +
                    }
         
     | 
| 
      
 568 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 569 
     | 
    
         
            +
                  "name": "setWallet",
         
     | 
| 
       391 
570 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       392 
571 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       393 
572 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -412,24 +591,8 @@ 
     | 
|
| 
       412 
591 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       413 
592 
     | 
    
         
             
                },
         
     | 
| 
       414 
593 
     | 
    
         
             
                {
         
     | 
| 
       415 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       416 
     | 
    
         
            -
             
     | 
| 
       417 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       418 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       419 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       420 
     | 
    
         
            -
                    },
         
     | 
| 
       421 
     | 
    
         
            -
                    {
         
     | 
| 
       422 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       423 
     | 
    
         
            -
                      "name": "activatedBy",
         
     | 
| 
       424 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       425 
     | 
    
         
            -
                    },
         
     | 
| 
       426 
     | 
    
         
            -
                    {
         
     | 
| 
       427 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       428 
     | 
    
         
            -
                      "name": "data",
         
     | 
| 
       429 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       430 
     | 
    
         
            -
                    }
         
     | 
| 
       431 
     | 
    
         
            -
                  ],
         
     | 
| 
       432 
     | 
    
         
            -
                  "name": "upgrade",
         
     | 
| 
      
 594 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 595 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
       433 
596 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       434 
597 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       435 
598 
     | 
    
         
             
                  "type": "function"
         
     |