@etherisc/gif-next 0.0.2-f2b0fa2-473 → 0.0.2-f4f92b3-338
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 +67 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +656 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +329 -90
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +171 -158
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +496 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +568 -2
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +596 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +360 -118
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +342 -147
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
- 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/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1657 -28
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +162 -18
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +232 -632
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +231 -114
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +182 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +328 -67
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +72 -23
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +138 -16
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1102 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +449 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +772 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IBundleService.sol/IBundleService.json} +295 -46
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -18
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +766 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -82
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +25 -245
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1227 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +505 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +806 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +856 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +437 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +339 -59
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +220 -111
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +301 -188
- 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 +69 -130
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +51 -91
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +394 -0
- 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 +2 -2
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -5
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +13 -18
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +19 -6
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +19 -6
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -11
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +26 -18
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +19 -11
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +44 -36
- 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 +2 -2
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- 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/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- 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/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/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +222 -0
- package/contracts/components/Distribution.sol +33 -55
- package/contracts/components/IComponent.sol +43 -0
- package/contracts/components/IDistributionComponent.sol +5 -1
- package/contracts/components/IPoolComponent.sol +11 -3
- package/contracts/components/IProductComponent.sol +7 -3
- package/contracts/components/Pool.sol +65 -83
- package/contracts/components/Product.sol +70 -109
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +54 -10
- package/contracts/instance/IInstanceService.sol +24 -1
- package/contracts/instance/Instance.sol +76 -243
- package/contracts/instance/InstanceAccessManager.sol +88 -78
- package/contracts/instance/InstanceReader.sol +34 -21
- package/contracts/instance/InstanceService.sol +311 -51
- package/contracts/instance/InstanceServiceManager.sol +10 -12
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/module/IAccess.sol +27 -17
- package/contracts/instance/module/IBundle.sol +1 -0
- package/contracts/instance/module/ISetup.sol +3 -0
- package/contracts/instance/service/BundleService.sol +293 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +106 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +6 -23
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +538 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +109 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +232 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +47 -6
- package/contracts/registry/IRegistryService.sol +44 -14
- package/contracts/registry/Registry.sol +243 -214
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +81 -258
- package/contracts/registry/RegistryServiceManager.sol +20 -22
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +112 -0
- package/contracts/shared/ERC165.sol +6 -2
- package/contracts/shared/IRegisterable.sol +1 -3
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/NftOwnable.sol +7 -4
- package/contracts/shared/ProxyManager.sol +1 -1
- package/contracts/shared/Registerable.sol +11 -14
- package/contracts/shared/Service.sol +14 -8
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +14 -6
- package/contracts/types/StateId.sol +4 -0
- package/contracts/types/Version.sol +4 -1
- package/package.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -314
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -267
- 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 -1119
- 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 -86
- package/contracts/components/IBaseComponent.sol +0 -24
- package/contracts/instance/AccessManagedSimple.sol +0 -114
- package/contracts/instance/AccessManagerSimple.sol +0 -682
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- 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
    
        package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json
    CHANGED
    
    | @@ -3,6 +3,204 @@ | |
| 3 3 | 
             
              "contractName": "IDistributionComponent",
         | 
| 4 4 | 
             
              "sourceName": "contracts/components/IDistributionComponent.sol",
         | 
| 5 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": "NftId",
         | 
| 26 | 
            +
                      "name": "instanceNftId",
         | 
| 27 | 
            +
                      "type": "uint96"
         | 
| 28 | 
            +
                    },
         | 
| 29 | 
            +
                    {
         | 
| 30 | 
            +
                      "internalType": "address",
         | 
| 31 | 
            +
                      "name": "instance",
         | 
| 32 | 
            +
                      "type": "address"
         | 
| 33 | 
            +
                    }
         | 
| 34 | 
            +
                  ],
         | 
| 35 | 
            +
                  "name": "ErrorComponentNotInstance",
         | 
| 36 | 
            +
                  "type": "error"
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                {
         | 
| 39 | 
            +
                  "inputs": [
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                      "internalType": "address",
         | 
| 42 | 
            +
                      "name": "caller",
         | 
| 43 | 
            +
                      "type": "address"
         | 
| 44 | 
            +
                    }
         | 
| 45 | 
            +
                  ],
         | 
| 46 | 
            +
                  "name": "ErrorComponentNotProductService",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [],
         | 
| 51 | 
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         | 
| 52 | 
            +
                  "type": "error"
         | 
| 53 | 
            +
                },
         | 
| 54 | 
            +
                {
         | 
| 55 | 
            +
                  "inputs": [
         | 
| 56 | 
            +
                    {
         | 
| 57 | 
            +
                      "internalType": "address",
         | 
| 58 | 
            +
                      "name": "caller",
         | 
| 59 | 
            +
                      "type": "address"
         | 
| 60 | 
            +
                    },
         | 
| 61 | 
            +
                    {
         | 
| 62 | 
            +
                      "internalType": "uint64",
         | 
| 63 | 
            +
                      "name": "requiredRoleIdNum",
         | 
| 64 | 
            +
                      "type": "uint64"
         | 
| 65 | 
            +
                    }
         | 
| 66 | 
            +
                  ],
         | 
| 67 | 
            +
                  "name": "ErrorComponentUnauthorized",
         | 
| 68 | 
            +
                  "type": "error"
         | 
| 69 | 
            +
                },
         | 
| 70 | 
            +
                {
         | 
| 71 | 
            +
                  "inputs": [
         | 
| 72 | 
            +
                    {
         | 
| 73 | 
            +
                      "internalType": "address",
         | 
| 74 | 
            +
                      "name": "newWallet",
         | 
| 75 | 
            +
                      "type": "address"
         | 
| 76 | 
            +
                    }
         | 
| 77 | 
            +
                  ],
         | 
| 78 | 
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 79 | 
            +
                  "type": "error"
         | 
| 80 | 
            +
                },
         | 
| 81 | 
            +
                {
         | 
| 82 | 
            +
                  "inputs": [],
         | 
| 83 | 
            +
                  "name": "ErrorComponentWalletAddressZero",
         | 
| 84 | 
            +
                  "type": "error"
         | 
| 85 | 
            +
                },
         | 
| 86 | 
            +
                {
         | 
| 87 | 
            +
                  "inputs": [
         | 
| 88 | 
            +
                    {
         | 
| 89 | 
            +
                      "internalType": "address",
         | 
| 90 | 
            +
                      "name": "oldWallet",
         | 
| 91 | 
            +
                      "type": "address"
         | 
| 92 | 
            +
                    },
         | 
| 93 | 
            +
                    {
         | 
| 94 | 
            +
                      "internalType": "address",
         | 
| 95 | 
            +
                      "name": "newWallet",
         | 
| 96 | 
            +
                      "type": "address"
         | 
| 97 | 
            +
                    },
         | 
| 98 | 
            +
                    {
         | 
| 99 | 
            +
                      "internalType": "uint256",
         | 
| 100 | 
            +
                      "name": "allowance",
         | 
| 101 | 
            +
                      "type": "uint256"
         | 
| 102 | 
            +
                    },
         | 
| 103 | 
            +
                    {
         | 
| 104 | 
            +
                      "internalType": "uint256",
         | 
| 105 | 
            +
                      "name": "balance",
         | 
| 106 | 
            +
                      "type": "uint256"
         | 
| 107 | 
            +
                    }
         | 
| 108 | 
            +
                  ],
         | 
| 109 | 
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 110 | 
            +
                  "type": "error"
         | 
| 111 | 
            +
                },
         | 
| 112 | 
            +
                {
         | 
| 113 | 
            +
                  "inputs": [
         | 
| 114 | 
            +
                    {
         | 
| 115 | 
            +
                      "internalType": "address",
         | 
| 116 | 
            +
                      "name": "contractAddress",
         | 
| 117 | 
            +
                      "type": "address"
         | 
| 118 | 
            +
                    }
         | 
| 119 | 
            +
                  ],
         | 
| 120 | 
            +
                  "name": "ErrorContractNotRegistered",
         | 
| 121 | 
            +
                  "type": "error"
         | 
| 122 | 
            +
                },
         | 
| 123 | 
            +
                {
         | 
| 124 | 
            +
                  "inputs": [
         | 
| 125 | 
            +
                    {
         | 
| 126 | 
            +
                      "internalType": "address",
         | 
| 127 | 
            +
                      "name": "account",
         | 
| 128 | 
            +
                      "type": "address"
         | 
| 129 | 
            +
                    }
         | 
| 130 | 
            +
                  ],
         | 
| 131 | 
            +
                  "name": "ErrorNotOwner",
         | 
| 132 | 
            +
                  "type": "error"
         | 
| 133 | 
            +
                },
         | 
| 134 | 
            +
                {
         | 
| 135 | 
            +
                  "inputs": [
         | 
| 136 | 
            +
                    {
         | 
| 137 | 
            +
                      "internalType": "address",
         | 
| 138 | 
            +
                      "name": "registryAddress",
         | 
| 139 | 
            +
                      "type": "address"
         | 
| 140 | 
            +
                    }
         | 
| 141 | 
            +
                  ],
         | 
| 142 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 143 | 
            +
                  "type": "error"
         | 
| 144 | 
            +
                },
         | 
| 145 | 
            +
                {
         | 
| 146 | 
            +
                  "inputs": [],
         | 
| 147 | 
            +
                  "name": "ErrorRegistryAddressZero",
         | 
| 148 | 
            +
                  "type": "error"
         | 
| 149 | 
            +
                },
         | 
| 150 | 
            +
                {
         | 
| 151 | 
            +
                  "inputs": [
         | 
| 152 | 
            +
                    {
         | 
| 153 | 
            +
                      "internalType": "address",
         | 
| 154 | 
            +
                      "name": "registry",
         | 
| 155 | 
            +
                      "type": "address"
         | 
| 156 | 
            +
                    }
         | 
| 157 | 
            +
                  ],
         | 
| 158 | 
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         | 
| 159 | 
            +
                  "type": "error"
         | 
| 160 | 
            +
                },
         | 
| 161 | 
            +
                {
         | 
| 162 | 
            +
                  "inputs": [],
         | 
| 163 | 
            +
                  "name": "ErrorRegistryNotInitialized",
         | 
| 164 | 
            +
                  "type": "error"
         | 
| 165 | 
            +
                },
         | 
| 166 | 
            +
                {
         | 
| 167 | 
            +
                  "anonymous": false,
         | 
| 168 | 
            +
                  "inputs": [
         | 
| 169 | 
            +
                    {
         | 
| 170 | 
            +
                      "indexed": false,
         | 
| 171 | 
            +
                      "internalType": "address",
         | 
| 172 | 
            +
                      "name": "newWallet",
         | 
| 173 | 
            +
                      "type": "address"
         | 
| 174 | 
            +
                    }
         | 
| 175 | 
            +
                  ],
         | 
| 176 | 
            +
                  "name": "LogComponentWalletAddressChanged",
         | 
| 177 | 
            +
                  "type": "event"
         | 
| 178 | 
            +
                },
         | 
| 179 | 
            +
                {
         | 
| 180 | 
            +
                  "anonymous": false,
         | 
| 181 | 
            +
                  "inputs": [
         | 
| 182 | 
            +
                    {
         | 
| 183 | 
            +
                      "indexed": false,
         | 
| 184 | 
            +
                      "internalType": "address",
         | 
| 185 | 
            +
                      "name": "from",
         | 
| 186 | 
            +
                      "type": "address"
         | 
| 187 | 
            +
                    },
         | 
| 188 | 
            +
                    {
         | 
| 189 | 
            +
                      "indexed": false,
         | 
| 190 | 
            +
                      "internalType": "address",
         | 
| 191 | 
            +
                      "name": "to",
         | 
| 192 | 
            +
                      "type": "address"
         | 
| 193 | 
            +
                    },
         | 
| 194 | 
            +
                    {
         | 
| 195 | 
            +
                      "indexed": false,
         | 
| 196 | 
            +
                      "internalType": "uint256",
         | 
| 197 | 
            +
                      "name": "amount",
         | 
| 198 | 
            +
                      "type": "uint256"
         | 
| 199 | 
            +
                    }
         | 
| 200 | 
            +
                  ],
         | 
| 201 | 
            +
                  "name": "LogComponentWalletTokensTransferred",
         | 
| 202 | 
            +
                  "type": "event"
         | 
| 203 | 
            +
                },
         | 
| 6 204 | 
             
                {
         | 
| 7 205 | 
             
                  "inputs": [
         | 
| 8 206 | 
             
                    {
         | 
| @@ -51,6 +249,238 @@ | |
| 51 249 | 
             
                  "stateMutability": "view",
         | 
| 52 250 | 
             
                  "type": "function"
         | 
| 53 251 | 
             
                },
         | 
| 252 | 
            +
                {
         | 
| 253 | 
            +
                  "inputs": [],
         | 
| 254 | 
            +
                  "name": "getInitialInfo",
         | 
| 255 | 
            +
                  "outputs": [
         | 
| 256 | 
            +
                    {
         | 
| 257 | 
            +
                      "components": [
         | 
| 258 | 
            +
                        {
         | 
| 259 | 
            +
                          "internalType": "NftId",
         | 
| 260 | 
            +
                          "name": "nftId",
         | 
| 261 | 
            +
                          "type": "uint96"
         | 
| 262 | 
            +
                        },
         | 
| 263 | 
            +
                        {
         | 
| 264 | 
            +
                          "internalType": "NftId",
         | 
| 265 | 
            +
                          "name": "parentNftId",
         | 
| 266 | 
            +
                          "type": "uint96"
         | 
| 267 | 
            +
                        },
         | 
| 268 | 
            +
                        {
         | 
| 269 | 
            +
                          "internalType": "ObjectType",
         | 
| 270 | 
            +
                          "name": "objectType",
         | 
| 271 | 
            +
                          "type": "uint8"
         | 
| 272 | 
            +
                        },
         | 
| 273 | 
            +
                        {
         | 
| 274 | 
            +
                          "internalType": "bool",
         | 
| 275 | 
            +
                          "name": "isInterceptor",
         | 
| 276 | 
            +
                          "type": "bool"
         | 
| 277 | 
            +
                        },
         | 
| 278 | 
            +
                        {
         | 
| 279 | 
            +
                          "internalType": "address",
         | 
| 280 | 
            +
                          "name": "objectAddress",
         | 
| 281 | 
            +
                          "type": "address"
         | 
| 282 | 
            +
                        },
         | 
| 283 | 
            +
                        {
         | 
| 284 | 
            +
                          "internalType": "address",
         | 
| 285 | 
            +
                          "name": "initialOwner",
         | 
| 286 | 
            +
                          "type": "address"
         | 
| 287 | 
            +
                        },
         | 
| 288 | 
            +
                        {
         | 
| 289 | 
            +
                          "internalType": "bytes",
         | 
| 290 | 
            +
                          "name": "data",
         | 
| 291 | 
            +
                          "type": "bytes"
         | 
| 292 | 
            +
                        }
         | 
| 293 | 
            +
                      ],
         | 
| 294 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 295 | 
            +
                      "name": "",
         | 
| 296 | 
            +
                      "type": "tuple"
         | 
| 297 | 
            +
                    }
         | 
| 298 | 
            +
                  ],
         | 
| 299 | 
            +
                  "stateMutability": "view",
         | 
| 300 | 
            +
                  "type": "function"
         | 
| 301 | 
            +
                },
         | 
| 302 | 
            +
                {
         | 
| 303 | 
            +
                  "inputs": [],
         | 
| 304 | 
            +
                  "name": "getInstance",
         | 
| 305 | 
            +
                  "outputs": [
         | 
| 306 | 
            +
                    {
         | 
| 307 | 
            +
                      "internalType": "contract IInstance",
         | 
| 308 | 
            +
                      "name": "instance",
         | 
| 309 | 
            +
                      "type": "address"
         | 
| 310 | 
            +
                    }
         | 
| 311 | 
            +
                  ],
         | 
| 312 | 
            +
                  "stateMutability": "view",
         | 
| 313 | 
            +
                  "type": "function"
         | 
| 314 | 
            +
                },
         | 
| 315 | 
            +
                {
         | 
| 316 | 
            +
                  "inputs": [],
         | 
| 317 | 
            +
                  "name": "getInstanceService",
         | 
| 318 | 
            +
                  "outputs": [
         | 
| 319 | 
            +
                    {
         | 
| 320 | 
            +
                      "internalType": "contract IInstanceService",
         | 
| 321 | 
            +
                      "name": "",
         | 
| 322 | 
            +
                      "type": "address"
         | 
| 323 | 
            +
                    }
         | 
| 324 | 
            +
                  ],
         | 
| 325 | 
            +
                  "stateMutability": "view",
         | 
| 326 | 
            +
                  "type": "function"
         | 
| 327 | 
            +
                },
         | 
| 328 | 
            +
                {
         | 
| 329 | 
            +
                  "inputs": [],
         | 
| 330 | 
            +
                  "name": "getName",
         | 
| 331 | 
            +
                  "outputs": [
         | 
| 332 | 
            +
                    {
         | 
| 333 | 
            +
                      "internalType": "string",
         | 
| 334 | 
            +
                      "name": "name",
         | 
| 335 | 
            +
                      "type": "string"
         | 
| 336 | 
            +
                    }
         | 
| 337 | 
            +
                  ],
         | 
| 338 | 
            +
                  "stateMutability": "view",
         | 
| 339 | 
            +
                  "type": "function"
         | 
| 340 | 
            +
                },
         | 
| 341 | 
            +
                {
         | 
| 342 | 
            +
                  "inputs": [],
         | 
| 343 | 
            +
                  "name": "getNftId",
         | 
| 344 | 
            +
                  "outputs": [
         | 
| 345 | 
            +
                    {
         | 
| 346 | 
            +
                      "internalType": "NftId",
         | 
| 347 | 
            +
                      "name": "",
         | 
| 348 | 
            +
                      "type": "uint96"
         | 
| 349 | 
            +
                    }
         | 
| 350 | 
            +
                  ],
         | 
| 351 | 
            +
                  "stateMutability": "view",
         | 
| 352 | 
            +
                  "type": "function"
         | 
| 353 | 
            +
                },
         | 
| 354 | 
            +
                {
         | 
| 355 | 
            +
                  "inputs": [],
         | 
| 356 | 
            +
                  "name": "getOwner",
         | 
| 357 | 
            +
                  "outputs": [
         | 
| 358 | 
            +
                    {
         | 
| 359 | 
            +
                      "internalType": "address",
         | 
| 360 | 
            +
                      "name": "",
         | 
| 361 | 
            +
                      "type": "address"
         | 
| 362 | 
            +
                    }
         | 
| 363 | 
            +
                  ],
         | 
| 364 | 
            +
                  "stateMutability": "view",
         | 
| 365 | 
            +
                  "type": "function"
         | 
| 366 | 
            +
                },
         | 
| 367 | 
            +
                {
         | 
| 368 | 
            +
                  "inputs": [],
         | 
| 369 | 
            +
                  "name": "getProductNftId",
         | 
| 370 | 
            +
                  "outputs": [
         | 
| 371 | 
            +
                    {
         | 
| 372 | 
            +
                      "internalType": "NftId",
         | 
| 373 | 
            +
                      "name": "productNftId",
         | 
| 374 | 
            +
                      "type": "uint96"
         | 
| 375 | 
            +
                    }
         | 
| 376 | 
            +
                  ],
         | 
| 377 | 
            +
                  "stateMutability": "view",
         | 
| 378 | 
            +
                  "type": "function"
         | 
| 379 | 
            +
                },
         | 
| 380 | 
            +
                {
         | 
| 381 | 
            +
                  "inputs": [],
         | 
| 382 | 
            +
                  "name": "getProductService",
         | 
| 383 | 
            +
                  "outputs": [
         | 
| 384 | 
            +
                    {
         | 
| 385 | 
            +
                      "internalType": "contract IProductService",
         | 
| 386 | 
            +
                      "name": "",
         | 
| 387 | 
            +
                      "type": "address"
         | 
| 388 | 
            +
                    }
         | 
| 389 | 
            +
                  ],
         | 
| 390 | 
            +
                  "stateMutability": "view",
         | 
| 391 | 
            +
                  "type": "function"
         | 
| 392 | 
            +
                },
         | 
| 393 | 
            +
                {
         | 
| 394 | 
            +
                  "inputs": [],
         | 
| 395 | 
            +
                  "name": "getRegistry",
         | 
| 396 | 
            +
                  "outputs": [
         | 
| 397 | 
            +
                    {
         | 
| 398 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 399 | 
            +
                      "name": "",
         | 
| 400 | 
            +
                      "type": "address"
         | 
| 401 | 
            +
                    }
         | 
| 402 | 
            +
                  ],
         | 
| 403 | 
            +
                  "stateMutability": "view",
         | 
| 404 | 
            +
                  "type": "function"
         | 
| 405 | 
            +
                },
         | 
| 406 | 
            +
                {
         | 
| 407 | 
            +
                  "inputs": [],
         | 
| 408 | 
            +
                  "name": "getSetupInfo",
         | 
| 409 | 
            +
                  "outputs": [
         | 
| 410 | 
            +
                    {
         | 
| 411 | 
            +
                      "components": [
         | 
| 412 | 
            +
                        {
         | 
| 413 | 
            +
                          "internalType": "NftId",
         | 
| 414 | 
            +
                          "name": "productNftId",
         | 
| 415 | 
            +
                          "type": "uint96"
         | 
| 416 | 
            +
                        },
         | 
| 417 | 
            +
                        {
         | 
| 418 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 419 | 
            +
                          "name": "tokenHandler",
         | 
| 420 | 
            +
                          "type": "address"
         | 
| 421 | 
            +
                        },
         | 
| 422 | 
            +
                        {
         | 
| 423 | 
            +
                          "components": [
         | 
| 424 | 
            +
                            {
         | 
| 425 | 
            +
                              "internalType": "UFixed",
         | 
| 426 | 
            +
                              "name": "fractionalFee",
         | 
| 427 | 
            +
                              "type": "uint256"
         | 
| 428 | 
            +
                            },
         | 
| 429 | 
            +
                            {
         | 
| 430 | 
            +
                              "internalType": "uint256",
         | 
| 431 | 
            +
                              "name": "fixedFee",
         | 
| 432 | 
            +
                              "type": "uint256"
         | 
| 433 | 
            +
                            }
         | 
| 434 | 
            +
                          ],
         | 
| 435 | 
            +
                          "internalType": "struct Fee",
         | 
| 436 | 
            +
                          "name": "distributionFee",
         | 
| 437 | 
            +
                          "type": "tuple"
         | 
| 438 | 
            +
                        },
         | 
| 439 | 
            +
                        {
         | 
| 440 | 
            +
                          "internalType": "bool",
         | 
| 441 | 
            +
                          "name": "isIntercepting",
         | 
| 442 | 
            +
                          "type": "bool"
         | 
| 443 | 
            +
                        },
         | 
| 444 | 
            +
                        {
         | 
| 445 | 
            +
                          "internalType": "address",
         | 
| 446 | 
            +
                          "name": "wallet",
         | 
| 447 | 
            +
                          "type": "address"
         | 
| 448 | 
            +
                        }
         | 
| 449 | 
            +
                      ],
         | 
| 450 | 
            +
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| 451 | 
            +
                      "name": "setupInfo",
         | 
| 452 | 
            +
                      "type": "tuple"
         | 
| 453 | 
            +
                    }
         | 
| 454 | 
            +
                  ],
         | 
| 455 | 
            +
                  "stateMutability": "view",
         | 
| 456 | 
            +
                  "type": "function"
         | 
| 457 | 
            +
                },
         | 
| 458 | 
            +
                {
         | 
| 459 | 
            +
                  "inputs": [],
         | 
| 460 | 
            +
                  "name": "getToken",
         | 
| 461 | 
            +
                  "outputs": [
         | 
| 462 | 
            +
                    {
         | 
| 463 | 
            +
                      "internalType": "contract IERC20Metadata",
         | 
| 464 | 
            +
                      "name": "token",
         | 
| 465 | 
            +
                      "type": "address"
         | 
| 466 | 
            +
                    }
         | 
| 467 | 
            +
                  ],
         | 
| 468 | 
            +
                  "stateMutability": "view",
         | 
| 469 | 
            +
                  "type": "function"
         | 
| 470 | 
            +
                },
         | 
| 471 | 
            +
                {
         | 
| 472 | 
            +
                  "inputs": [],
         | 
| 473 | 
            +
                  "name": "getWallet",
         | 
| 474 | 
            +
                  "outputs": [
         | 
| 475 | 
            +
                    {
         | 
| 476 | 
            +
                      "internalType": "address",
         | 
| 477 | 
            +
                      "name": "walletAddress",
         | 
| 478 | 
            +
                      "type": "address"
         | 
| 479 | 
            +
                    }
         | 
| 480 | 
            +
                  ],
         | 
| 481 | 
            +
                  "stateMutability": "view",
         | 
| 482 | 
            +
                  "type": "function"
         | 
| 483 | 
            +
                },
         | 
| 54 484 | 
             
                {
         | 
| 55 485 | 
             
                  "inputs": [],
         | 
| 56 486 | 
             
                  "name": "isVerifying",
         | 
| @@ -64,6 +494,20 @@ | |
| 64 494 | 
             
                  "stateMutability": "view",
         | 
| 65 495 | 
             
                  "type": "function"
         | 
| 66 496 | 
             
                },
         | 
| 497 | 
            +
                {
         | 
| 498 | 
            +
                  "inputs": [],
         | 
| 499 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 500 | 
            +
                  "outputs": [],
         | 
| 501 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 502 | 
            +
                  "type": "function"
         | 
| 503 | 
            +
                },
         | 
| 504 | 
            +
                {
         | 
| 505 | 
            +
                  "inputs": [],
         | 
| 506 | 
            +
                  "name": "lock",
         | 
| 507 | 
            +
                  "outputs": [],
         | 
| 508 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 509 | 
            +
                  "type": "function"
         | 
| 510 | 
            +
                },
         | 
| 67 511 | 
             
                {
         | 
| 68 512 | 
             
                  "inputs": [
         | 
| 69 513 | 
             
                    {
         | 
| @@ -143,6 +587,58 @@ | |
| 143 587 | 
             
                  "outputs": [],
         | 
| 144 588 | 
             
                  "stateMutability": "nonpayable",
         | 
| 145 589 | 
             
                  "type": "function"
         | 
| 590 | 
            +
                },
         | 
| 591 | 
            +
                {
         | 
| 592 | 
            +
                  "inputs": [
         | 
| 593 | 
            +
                    {
         | 
| 594 | 
            +
                      "internalType": "NftId",
         | 
| 595 | 
            +
                      "name": "productNftId",
         | 
| 596 | 
            +
                      "type": "uint96"
         | 
| 597 | 
            +
                    }
         | 
| 598 | 
            +
                  ],
         | 
| 599 | 
            +
                  "name": "setProductNftId",
         | 
| 600 | 
            +
                  "outputs": [],
         | 
| 601 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 602 | 
            +
                  "type": "function"
         | 
| 603 | 
            +
                },
         | 
| 604 | 
            +
                {
         | 
| 605 | 
            +
                  "inputs": [
         | 
| 606 | 
            +
                    {
         | 
| 607 | 
            +
                      "internalType": "address",
         | 
| 608 | 
            +
                      "name": "walletAddress",
         | 
| 609 | 
            +
                      "type": "address"
         | 
| 610 | 
            +
                    }
         | 
| 611 | 
            +
                  ],
         | 
| 612 | 
            +
                  "name": "setWallet",
         | 
| 613 | 
            +
                  "outputs": [],
         | 
| 614 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 615 | 
            +
                  "type": "function"
         | 
| 616 | 
            +
                },
         | 
| 617 | 
            +
                {
         | 
| 618 | 
            +
                  "inputs": [
         | 
| 619 | 
            +
                    {
         | 
| 620 | 
            +
                      "internalType": "bytes4",
         | 
| 621 | 
            +
                      "name": "interfaceId",
         | 
| 622 | 
            +
                      "type": "bytes4"
         | 
| 623 | 
            +
                    }
         | 
| 624 | 
            +
                  ],
         | 
| 625 | 
            +
                  "name": "supportsInterface",
         | 
| 626 | 
            +
                  "outputs": [
         | 
| 627 | 
            +
                    {
         | 
| 628 | 
            +
                      "internalType": "bool",
         | 
| 629 | 
            +
                      "name": "",
         | 
| 630 | 
            +
                      "type": "bool"
         | 
| 631 | 
            +
                    }
         | 
| 632 | 
            +
                  ],
         | 
| 633 | 
            +
                  "stateMutability": "view",
         | 
| 634 | 
            +
                  "type": "function"
         | 
| 635 | 
            +
                },
         | 
| 636 | 
            +
                {
         | 
| 637 | 
            +
                  "inputs": [],
         | 
| 638 | 
            +
                  "name": "unlock",
         | 
| 639 | 
            +
                  "outputs": [],
         | 
| 640 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 641 | 
            +
                  "type": "function"
         | 
| 146 642 | 
             
                }
         | 
| 147 643 | 
             
              ],
         | 
| 148 644 | 
             
              "bytecode": "0x",
         |