@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-eb13b47-989
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 +268 -7
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
 - package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +162 -147
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +610 -0
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +125 -113
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/{instance/policy/IPolicy.sol/IPolicyModule.json → components/IPoolComponent.sol/IPoolComponent.json} +124 -129
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +523 -77
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +505 -97
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +114 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +244 -1372
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2740 -949
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +930 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1283 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +755 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +432 -0
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +481 -0
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +563 -24
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +872 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +705 -50
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1261 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +508 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
 - package/contracts/components/BaseComponent.sol +86 -0
 - package/contracts/components/Distribution.sol +166 -0
 - package/contracts/components/IBaseComponent.sol +24 -0
 - package/contracts/components/IDistributionComponent.sol +43 -0
 - package/contracts/components/IPoolComponent.sol +62 -0
 - package/contracts/components/IProductComponent.sol +35 -0
 - package/contracts/components/Pool.sol +232 -25
 - package/contracts/components/Product.sol +254 -46
 - package/contracts/experiment/cloning/Cloner.sol +47 -0
 - package/contracts/instance/AccessManagedSimple.sol +122 -0
 - package/contracts/instance/AccessManagerSimple.sol +692 -0
 - package/contracts/instance/IAccessManagerSimple.sol +391 -0
 - package/contracts/instance/IInstance.sol +24 -21
 - package/contracts/instance/IInstanceService.sol +30 -0
 - package/contracts/instance/Instance.sol +422 -52
 - package/contracts/instance/InstanceAccessManager.sol +288 -0
 - package/contracts/instance/InstanceReader.sol +290 -0
 - package/contracts/instance/InstanceService.sol +138 -0
 - package/contracts/instance/InstanceServiceManager.sol +56 -0
 - package/contracts/instance/base/ComponentServiceBase.sol +49 -0
 - package/contracts/instance/base/IInstanceBase.sol +23 -0
 - package/contracts/instance/base/IKeyValueStore.sol +49 -0
 - package/contracts/instance/base/ILifecycle.sol +30 -0
 - package/contracts/instance/base/KeyValueStore.sol +172 -0
 - package/contracts/instance/base/Lifecycle.sol +100 -0
 - package/contracts/instance/module/IAccess.sol +38 -0
 - package/contracts/instance/module/IBundle.sol +19 -0
 - package/contracts/instance/module/IDistribution.sol +39 -0
 - package/contracts/instance/module/IPolicy.sol +45 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +43 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ComponentOwnerService.sol +317 -0
 - package/contracts/instance/service/IComponentOwnerService.sol +20 -0
 - package/contracts/instance/service/IDistributionService.sol +12 -0
 - package/contracts/instance/service/IPoolService.sol +37 -0
 - package/contracts/instance/service/IProductService.sol +107 -0
 - package/contracts/registry/ChainNft.sol +129 -62
 - package/contracts/registry/IRegistry.sol +68 -45
 - package/contracts/registry/IRegistryService.sol +35 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +411 -125
 - package/contracts/registry/RegistryService.sol +444 -0
 - package/contracts/registry/RegistryServiceManager.sol +64 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +21 -0
 - package/contracts/shared/INftOwnable.sol +22 -0
 - package/contracts/shared/IRegisterable.sol +17 -0
 - package/contracts/shared/IService.sol +15 -0
 - package/contracts/shared/IVersionable.sol +96 -0
 - package/contracts/shared/NftOwnable.sol +136 -0
 - package/contracts/shared/ProxyManager.sol +94 -0
 - package/contracts/shared/Registerable.sol +89 -0
 - package/contracts/shared/RegisterableUpgradable.sol +16 -0
 - package/contracts/shared/Service.sol +54 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +147 -0
 - package/contracts/test/TestFee.sol +25 -0
 - package/contracts/test/TestRegisterable.sol +18 -0
 - package/contracts/test/TestRoleId.sol +14 -0
 - package/contracts/test/TestService.sol +24 -0
 - package/contracts/test/TestToken.sol +26 -0
 - package/contracts/test/TestVersion.sol +44 -0
 - package/contracts/test/TestVersionable.sol +17 -0
 - package/contracts/test/Usdc.sol +26 -0
 - package/contracts/types/AddressSet.sol +58 -0
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +44 -20
 - package/contracts/types/Key32.sol +50 -0
 - package/contracts/types/NftId.sol +22 -1
 - package/contracts/types/NftIdSet.sol +60 -0
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +60 -15
 - package/contracts/types/Referral.sol +85 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +82 -0
 - package/contracts/types/StateId.sol +14 -4
 - package/contracts/types/Timestamp.sol +29 -4
 - package/contracts/types/UFixed.sol +138 -23
 - package/contracts/types/Version.sol +107 -0
 - package/package.json +12 -5
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
 - package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
 - package/contracts/components/Component.sol +0 -77
 - package/contracts/components/IPool.sol +0 -15
 - package/contracts/components/IProduct.sol +0 -16
 - package/contracts/experiment/statemachine/README.md +0 -112
 - package/contracts/instance/access/Access.sol +0 -165
 - package/contracts/instance/access/IAccess.sol +0 -63
 - package/contracts/instance/component/ComponentModule.sol +0 -274
 - package/contracts/instance/component/IComponent.sol +0 -74
 - package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
 - package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
 - package/contracts/instance/policy/IPolicy.sol +0 -50
 - package/contracts/instance/policy/PolicyModule.sol +0 -114
 - package/contracts/instance/pool/IPoolModule.sol +0 -23
 - package/contracts/instance/pool/PoolModule.sol +0 -81
 - package/contracts/instance/product/IProductService.sol +0 -36
 - package/contracts/instance/product/ProductService.sol +0 -136
 - package/contracts/instance/treasury/ITreasury.sol +0 -91
 - package/contracts/instance/treasury/TokenHandler.sol +0 -24
 - package/contracts/instance/treasury/TreasuryModule.sol +0 -168
 - package/contracts/registry/IChainNft.sol +0 -21
 
| 
         @@ -0,0 +1,274 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "Registerable",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/shared/Registerable.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "ErrorAlreadyLinked",
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 21 
     | 
    
         
            +
                },
         
     | 
| 
      
 22 
     | 
    
         
            +
                {
         
     | 
| 
      
 23 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "ErrorContractNotRegistered",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "ErrorNotOwner",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorRegisterableNotRegistry",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "name": "ErrorRegistryAddressZero",
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
                {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 73 
     | 
    
         
            +
                    {
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 76 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 77 
     | 
    
         
            +
                    }
         
     | 
| 
      
 78 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorRegistryNotInitialized",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 96 
     | 
    
         
            +
                },
         
     | 
| 
      
 97 
     | 
    
         
            +
                {
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 100 
     | 
    
         
            +
                    {
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 103 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 104 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 105 
     | 
    
         
            +
                    }
         
     | 
| 
      
 106 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 107 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 109 
     | 
    
         
            +
                },
         
     | 
| 
      
 110 
     | 
    
         
            +
                {
         
     | 
| 
      
 111 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 114 
     | 
    
         
            +
                    {
         
     | 
| 
      
 115 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 118 
     | 
    
         
            +
                    }
         
     | 
| 
      
 119 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 121 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 122 
     | 
    
         
            +
                },
         
     | 
| 
      
 123 
     | 
    
         
            +
                {
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 125 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 127 
     | 
    
         
            +
                    {
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 129 
     | 
    
         
            +
                        {
         
     | 
| 
      
 130 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 131 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 132 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 133 
     | 
    
         
            +
                        },
         
     | 
| 
      
 134 
     | 
    
         
            +
                        {
         
     | 
| 
      
 135 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 136 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 137 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 138 
     | 
    
         
            +
                        },
         
     | 
| 
      
 139 
     | 
    
         
            +
                        {
         
     | 
| 
      
 140 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 141 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 142 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 143 
     | 
    
         
            +
                        },
         
     | 
| 
      
 144 
     | 
    
         
            +
                        {
         
     | 
| 
      
 145 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 146 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 147 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 148 
     | 
    
         
            +
                        },
         
     | 
| 
      
 149 
     | 
    
         
            +
                        {
         
     | 
| 
      
 150 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 151 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 152 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 153 
     | 
    
         
            +
                        },
         
     | 
| 
      
 154 
     | 
    
         
            +
                        {
         
     | 
| 
      
 155 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 156 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 157 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 158 
     | 
    
         
            +
                        },
         
     | 
| 
      
 159 
     | 
    
         
            +
                        {
         
     | 
| 
      
 160 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 161 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 162 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 163 
     | 
    
         
            +
                        }
         
     | 
| 
      
 164 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 165 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 166 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 167 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 168 
     | 
    
         
            +
                    },
         
     | 
| 
      
 169 
     | 
    
         
            +
                    {
         
     | 
| 
      
 170 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 173 
     | 
    
         
            +
                    }
         
     | 
| 
      
 174 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 177 
     | 
    
         
            +
                },
         
     | 
| 
      
 178 
     | 
    
         
            +
                {
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 182 
     | 
    
         
            +
                    {
         
     | 
| 
      
 183 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 184 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 186 
     | 
    
         
            +
                    }
         
     | 
| 
      
 187 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 188 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 190 
     | 
    
         
            +
                },
         
     | 
| 
      
 191 
     | 
    
         
            +
                {
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 194 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 195 
     | 
    
         
            +
                    {
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 199 
     | 
    
         
            +
                    }
         
     | 
| 
      
 200 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 201 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 202 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 203 
     | 
    
         
            +
                },
         
     | 
| 
      
 204 
     | 
    
         
            +
                {
         
     | 
| 
      
 205 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 208 
     | 
    
         
            +
                    {
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 212 
     | 
    
         
            +
                    }
         
     | 
| 
      
 213 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 214 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 215 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 216 
     | 
    
         
            +
                },
         
     | 
| 
      
 217 
     | 
    
         
            +
                {
         
     | 
| 
      
 218 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 219 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 220 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 223 
     | 
    
         
            +
                },
         
     | 
| 
      
 224 
     | 
    
         
            +
                {
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 226 
     | 
    
         
            +
                    {
         
     | 
| 
      
 227 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 228 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 230 
     | 
    
         
            +
                    }
         
     | 
| 
      
 231 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 232 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 233 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 234 
     | 
    
         
            +
                    {
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 236 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 237 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 238 
     | 
    
         
            +
                    }
         
     | 
| 
      
 239 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 240 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 241 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 242 
     | 
    
         
            +
                }
         
     | 
| 
      
 243 
     | 
    
         
            +
              ],
         
     | 
| 
      
 244 
     | 
    
         
            +
              "bytecode": "0x608060405234801561001057600080fd5b506301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055600280546001600160a01b031916331790556108358061006e6000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c80631eff4b221161005b5780631eff4b22146100e45780635ab1bd5314610119578063644c45e01461013e578063893d20e81461016957600080fd5b806301ffc9a7146100825780630fec111c146100c4578063138461e0146100da575b600080fd5b6100af610090366004610633565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100cc610171565b6040516100bb9291906106aa565b6100e26102f3565b005b61010b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016100bb565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100bb565b600154600160a01b90046001600160601b03166040516001600160601b0390911681526020016100bb565b610126610515565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806101f46001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161023c610515565b6001600160a01b0316815260200182600101805461025990610751565b80601f016020809104026020016040519081016040528092919081815260200182805461028590610751565b80156102d25780601f106102a7576101008083540402835291602001916102d2565b820191906000526020600020905b8154815290600101906020018083116102b557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610355573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610379919061078b565b156103c0576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166103e95760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610432573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610456919061078b565b61047e576040516372657a5160e01b81526001600160a01b03821660048201526024016103b7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156104c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec91906107ad565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561057a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059e919061078b565b1561062357600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e91906107d6565b905090565b506002546001600160a01b031690565b60006020828403121561064557600080fd5b81356001600160e01b03198116811461065d57600080fd5b9392505050565b6000815180845260005b8181101561068a5760208185018101518683018201520161066e565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516106ee60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610734610120840182610664565b905082810360208401526107488185610664565b95945050505050565b600181811c9082168061076557607f821691505b60208210810361078557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561079d57600080fd5b8151801515811461065d57600080fd5b6000602082840312156107bf57600080fd5b81516001600160601b038116811461065d57600080fd5b6000602082840312156107e857600080fd5b81516001600160a01b038116811461065d57600080fdfea264697066735822122054832a2d2d39e3de98665b421620b2ab92d43db458b9cd93026a76540cdaec2c64736f6c63430008140033",
         
     | 
| 
      
 245 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80631eff4b221161005b5780631eff4b22146100e45780635ab1bd5314610119578063644c45e01461013e578063893d20e81461016957600080fd5b806301ffc9a7146100825780630fec111c146100c4578063138461e0146100da575b600080fd5b6100af610090366004610633565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100cc610171565b6040516100bb9291906106aa565b6100e26102f3565b005b61010b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016100bb565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100bb565b600154600160a01b90046001600160601b03166040516001600160601b0390911681526020016100bb565b610126610515565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806101f46001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161023c610515565b6001600160a01b0316815260200182600101805461025990610751565b80601f016020809104026020016040519081016040528092919081815260200182805461028590610751565b80156102d25780601f106102a7576101008083540402835291602001916102d2565b820191906000526020600020905b8154815290600101906020018083116102b557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610355573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610379919061078b565b156103c0576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166103e95760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610432573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610456919061078b565b61047e576040516372657a5160e01b81526001600160a01b03821660048201526024016103b7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156104c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec91906107ad565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561057a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059e919061078b565b1561062357600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e91906107d6565b905090565b506002546001600160a01b031690565b60006020828403121561064557600080fd5b81356001600160e01b03198116811461065d57600080fd5b9392505050565b6000815180845260005b8181101561068a5760208185018101518683018201520161066e565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516106ee60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610734610120840182610664565b905082810360208401526107488185610664565b95945050505050565b600181811c9082168061076557607f821691505b60208210810361078557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561079d57600080fd5b8151801515811461065d57600080fd5b6000602082840312156107bf57600080fd5b81516001600160601b038116811461065d57600080fd5b6000602082840312156107e857600080fd5b81516001600160a01b038116811461065d57600080fdfea264697066735822122054832a2d2d39e3de98665b421620b2ab92d43db458b9cd93026a76540cdaec2c64736f6c63430008140033",
         
     | 
| 
      
 246 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 247 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 249 
     | 
    
         
            +
                    {
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "start": 905
         
     | 
| 
      
 252 
     | 
    
         
            +
                    },
         
     | 
| 
      
 253 
     | 
    
         
            +
                    {
         
     | 
| 
      
 254 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 255 
     | 
    
         
            +
                      "start": 1454
         
     | 
| 
      
 256 
     | 
    
         
            +
                    }
         
     | 
| 
      
 257 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 258 
     | 
    
         
            +
                }
         
     | 
| 
      
 259 
     | 
    
         
            +
              },
         
     | 
| 
      
 260 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 261 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 263 
     | 
    
         
            +
                    {
         
     | 
| 
      
 264 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "start": 795
         
     | 
| 
      
 266 
     | 
    
         
            +
                    },
         
     | 
| 
      
 267 
     | 
    
         
            +
                    {
         
     | 
| 
      
 268 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 269 
     | 
    
         
            +
                      "start": 1344
         
     | 
| 
      
 270 
     | 
    
         
            +
                    }
         
     | 
| 
      
 271 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 272 
     | 
    
         
            +
                }
         
     | 
| 
      
 273 
     | 
    
         
            +
              }
         
     | 
| 
      
 274 
     | 
    
         
            +
            }
         
     |