@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
| @@ -3,6 +3,66 @@ | |
| 3 3 | 
             
              "contractName": "Distribution",
         | 
| 4 4 | 
             
              "sourceName": "contracts/components/Distribution.sol",
         | 
| 5 5 | 
             
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "address",
         | 
| 48 | 
            +
                      "name": "target",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "AddressEmptyCode",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "address",
         | 
| 59 | 
            +
                      "name": "account",
         | 
| 60 | 
            +
                      "type": "address"
         | 
| 61 | 
            +
                    }
         | 
| 62 | 
            +
                  ],
         | 
| 63 | 
            +
                  "name": "AddressInsufficientBalance",
         | 
| 64 | 
            +
                  "type": "error"
         | 
| 65 | 
            +
                },
         | 
| 6 66 | 
             
                {
         | 
| 7 67 | 
             
                  "inputs": [
         | 
| 8 68 | 
             
                    {
         | 
| @@ -12,64 +72,101 @@ | |
| 12 72 | 
             
                    },
         | 
| 13 73 | 
             
                    {
         | 
| 14 74 | 
             
                      "internalType": "NftId",
         | 
| 15 | 
            -
                      "name": " | 
| 75 | 
            +
                      "name": "nftId",
         | 
| 16 76 | 
             
                      "type": "uint96"
         | 
| 17 | 
            -
                    } | 
| 77 | 
            +
                    }
         | 
| 78 | 
            +
                  ],
         | 
| 79 | 
            +
                  "name": "ErrorAlreadyLinked",
         | 
| 80 | 
            +
                  "type": "error"
         | 
| 81 | 
            +
                },
         | 
| 82 | 
            +
                {
         | 
| 83 | 
            +
                  "inputs": [
         | 
| 18 84 | 
             
                    {
         | 
| 19 85 | 
             
                      "internalType": "NftId",
         | 
| 20 | 
            -
                      "name": " | 
| 86 | 
            +
                      "name": "instanceNftId",
         | 
| 21 87 | 
             
                      "type": "uint96"
         | 
| 22 88 | 
             
                    },
         | 
| 23 89 | 
             
                    {
         | 
| 24 90 | 
             
                      "internalType": "address",
         | 
| 25 | 
            -
                      "name": " | 
| 91 | 
            +
                      "name": "instance",
         | 
| 26 92 | 
             
                      "type": "address"
         | 
| 27 | 
            -
                    } | 
| 93 | 
            +
                    }
         | 
| 94 | 
            +
                  ],
         | 
| 95 | 
            +
                  "name": "ErrorComponentNotInstance",
         | 
| 96 | 
            +
                  "type": "error"
         | 
| 97 | 
            +
                },
         | 
| 98 | 
            +
                {
         | 
| 99 | 
            +
                  "inputs": [
         | 
| 28 100 | 
             
                    {
         | 
| 29 | 
            -
                      "internalType": " | 
| 30 | 
            -
                      "name": " | 
| 31 | 
            -
                      "type": " | 
| 32 | 
            -
                    } | 
| 101 | 
            +
                      "internalType": "address",
         | 
| 102 | 
            +
                      "name": "caller",
         | 
| 103 | 
            +
                      "type": "address"
         | 
| 104 | 
            +
                    }
         | 
| 105 | 
            +
                  ],
         | 
| 106 | 
            +
                  "name": "ErrorComponentNotProductService",
         | 
| 107 | 
            +
                  "type": "error"
         | 
| 108 | 
            +
                },
         | 
| 109 | 
            +
                {
         | 
| 110 | 
            +
                  "inputs": [],
         | 
| 111 | 
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         | 
| 112 | 
            +
                  "type": "error"
         | 
| 113 | 
            +
                },
         | 
| 114 | 
            +
                {
         | 
| 115 | 
            +
                  "inputs": [
         | 
| 33 116 | 
             
                    {
         | 
| 34 | 
            -
                      " | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 37 | 
            -
                          "name": "fractionalFee",
         | 
| 38 | 
            -
                          "type": "uint256"
         | 
| 39 | 
            -
                        },
         | 
| 40 | 
            -
                        {
         | 
| 41 | 
            -
                          "internalType": "uint256",
         | 
| 42 | 
            -
                          "name": "fixedFee",
         | 
| 43 | 
            -
                          "type": "uint256"
         | 
| 44 | 
            -
                        }
         | 
| 45 | 
            -
                      ],
         | 
| 46 | 
            -
                      "internalType": "struct Fee",
         | 
| 47 | 
            -
                      "name": "distributionFee",
         | 
| 48 | 
            -
                      "type": "tuple"
         | 
| 117 | 
            +
                      "internalType": "address",
         | 
| 118 | 
            +
                      "name": "caller",
         | 
| 119 | 
            +
                      "type": "address"
         | 
| 49 120 | 
             
                    },
         | 
| 121 | 
            +
                    {
         | 
| 122 | 
            +
                      "internalType": "uint64",
         | 
| 123 | 
            +
                      "name": "requiredRoleIdNum",
         | 
| 124 | 
            +
                      "type": "uint64"
         | 
| 125 | 
            +
                    }
         | 
| 126 | 
            +
                  ],
         | 
| 127 | 
            +
                  "name": "ErrorComponentUnauthorized",
         | 
| 128 | 
            +
                  "type": "error"
         | 
| 129 | 
            +
                },
         | 
| 130 | 
            +
                {
         | 
| 131 | 
            +
                  "inputs": [
         | 
| 50 132 | 
             
                    {
         | 
| 51 133 | 
             
                      "internalType": "address",
         | 
| 52 | 
            -
                      "name": " | 
| 134 | 
            +
                      "name": "newWallet",
         | 
| 53 135 | 
             
                      "type": "address"
         | 
| 54 136 | 
             
                    }
         | 
| 55 137 | 
             
                  ],
         | 
| 56 | 
            -
                  " | 
| 57 | 
            -
                  "type": " | 
| 138 | 
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 139 | 
            +
                  "type": "error"
         | 
| 140 | 
            +
                },
         | 
| 141 | 
            +
                {
         | 
| 142 | 
            +
                  "inputs": [],
         | 
| 143 | 
            +
                  "name": "ErrorComponentWalletAddressZero",
         | 
| 144 | 
            +
                  "type": "error"
         | 
| 58 145 | 
             
                },
         | 
| 59 146 | 
             
                {
         | 
| 60 147 | 
             
                  "inputs": [
         | 
| 61 148 | 
             
                    {
         | 
| 62 149 | 
             
                      "internalType": "address",
         | 
| 63 | 
            -
                      "name": " | 
| 150 | 
            +
                      "name": "oldWallet",
         | 
| 64 151 | 
             
                      "type": "address"
         | 
| 65 152 | 
             
                    },
         | 
| 66 153 | 
             
                    {
         | 
| 67 | 
            -
                      "internalType": " | 
| 68 | 
            -
                      "name": " | 
| 69 | 
            -
                      "type": " | 
| 154 | 
            +
                      "internalType": "address",
         | 
| 155 | 
            +
                      "name": "newWallet",
         | 
| 156 | 
            +
                      "type": "address"
         | 
| 157 | 
            +
                    },
         | 
| 158 | 
            +
                    {
         | 
| 159 | 
            +
                      "internalType": "uint256",
         | 
| 160 | 
            +
                      "name": "allowance",
         | 
| 161 | 
            +
                      "type": "uint256"
         | 
| 162 | 
            +
                    },
         | 
| 163 | 
            +
                    {
         | 
| 164 | 
            +
                      "internalType": "uint256",
         | 
| 165 | 
            +
                      "name": "balance",
         | 
| 166 | 
            +
                      "type": "uint256"
         | 
| 70 167 | 
             
                    }
         | 
| 71 168 | 
             
                  ],
         | 
| 72 | 
            -
                  "name": " | 
| 169 | 
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 73 170 | 
             
                  "type": "error"
         | 
| 74 171 | 
             
                },
         | 
| 75 172 | 
             
                {
         | 
| @@ -137,6 +234,11 @@ | |
| 137 234 | 
             
                  "name": "ErrorRegistryNotInitialized",
         | 
| 138 235 | 
             
                  "type": "error"
         | 
| 139 236 | 
             
                },
         | 
| 237 | 
            +
                {
         | 
| 238 | 
            +
                  "inputs": [],
         | 
| 239 | 
            +
                  "name": "FailedInnerCall",
         | 
| 240 | 
            +
                  "type": "error"
         | 
| 241 | 
            +
                },
         | 
| 140 242 | 
             
                {
         | 
| 141 243 | 
             
                  "inputs": [],
         | 
| 142 244 | 
             
                  "name": "InvalidInitialization",
         | 
| @@ -147,6 +249,30 @@ | |
| 147 249 | 
             
                  "name": "NotInitializing",
         | 
| 148 250 | 
             
                  "type": "error"
         | 
| 149 251 | 
             
                },
         | 
| 252 | 
            +
                {
         | 
| 253 | 
            +
                  "inputs": [
         | 
| 254 | 
            +
                    {
         | 
| 255 | 
            +
                      "internalType": "address",
         | 
| 256 | 
            +
                      "name": "token",
         | 
| 257 | 
            +
                      "type": "address"
         | 
| 258 | 
            +
                    }
         | 
| 259 | 
            +
                  ],
         | 
| 260 | 
            +
                  "name": "SafeERC20FailedOperation",
         | 
| 261 | 
            +
                  "type": "error"
         | 
| 262 | 
            +
                },
         | 
| 263 | 
            +
                {
         | 
| 264 | 
            +
                  "anonymous": false,
         | 
| 265 | 
            +
                  "inputs": [
         | 
| 266 | 
            +
                    {
         | 
| 267 | 
            +
                      "indexed": false,
         | 
| 268 | 
            +
                      "internalType": "address",
         | 
| 269 | 
            +
                      "name": "authority",
         | 
| 270 | 
            +
                      "type": "address"
         | 
| 271 | 
            +
                    }
         | 
| 272 | 
            +
                  ],
         | 
| 273 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 274 | 
            +
                  "type": "event"
         | 
| 275 | 
            +
                },
         | 
| 150 276 | 
             
                {
         | 
| 151 277 | 
             
                  "anonymous": false,
         | 
| 152 278 | 
             
                  "inputs": [
         | 
| @@ -160,6 +286,57 @@ | |
| 160 286 | 
             
                  "name": "Initialized",
         | 
| 161 287 | 
             
                  "type": "event"
         | 
| 162 288 | 
             
                },
         | 
| 289 | 
            +
                {
         | 
| 290 | 
            +
                  "anonymous": false,
         | 
| 291 | 
            +
                  "inputs": [
         | 
| 292 | 
            +
                    {
         | 
| 293 | 
            +
                      "indexed": false,
         | 
| 294 | 
            +
                      "internalType": "address",
         | 
| 295 | 
            +
                      "name": "newWallet",
         | 
| 296 | 
            +
                      "type": "address"
         | 
| 297 | 
            +
                    }
         | 
| 298 | 
            +
                  ],
         | 
| 299 | 
            +
                  "name": "LogComponentWalletAddressChanged",
         | 
| 300 | 
            +
                  "type": "event"
         | 
| 301 | 
            +
                },
         | 
| 302 | 
            +
                {
         | 
| 303 | 
            +
                  "anonymous": false,
         | 
| 304 | 
            +
                  "inputs": [
         | 
| 305 | 
            +
                    {
         | 
| 306 | 
            +
                      "indexed": false,
         | 
| 307 | 
            +
                      "internalType": "address",
         | 
| 308 | 
            +
                      "name": "from",
         | 
| 309 | 
            +
                      "type": "address"
         | 
| 310 | 
            +
                    },
         | 
| 311 | 
            +
                    {
         | 
| 312 | 
            +
                      "indexed": false,
         | 
| 313 | 
            +
                      "internalType": "address",
         | 
| 314 | 
            +
                      "name": "to",
         | 
| 315 | 
            +
                      "type": "address"
         | 
| 316 | 
            +
                    },
         | 
| 317 | 
            +
                    {
         | 
| 318 | 
            +
                      "indexed": false,
         | 
| 319 | 
            +
                      "internalType": "uint256",
         | 
| 320 | 
            +
                      "name": "amount",
         | 
| 321 | 
            +
                      "type": "uint256"
         | 
| 322 | 
            +
                    }
         | 
| 323 | 
            +
                  ],
         | 
| 324 | 
            +
                  "name": "LogComponentWalletTokensTransferred",
         | 
| 325 | 
            +
                  "type": "event"
         | 
| 326 | 
            +
                },
         | 
| 327 | 
            +
                {
         | 
| 328 | 
            +
                  "inputs": [],
         | 
| 329 | 
            +
                  "name": "CONTRACT_LOCATION_V1",
         | 
| 330 | 
            +
                  "outputs": [
         | 
| 331 | 
            +
                    {
         | 
| 332 | 
            +
                      "internalType": "bytes32",
         | 
| 333 | 
            +
                      "name": "",
         | 
| 334 | 
            +
                      "type": "bytes32"
         | 
| 335 | 
            +
                    }
         | 
| 336 | 
            +
                  ],
         | 
| 337 | 
            +
                  "stateMutability": "view",
         | 
| 338 | 
            +
                  "type": "function"
         | 
| 339 | 
            +
                },
         | 
| 163 340 | 
             
                {
         | 
| 164 341 | 
             
                  "inputs": [],
         | 
| 165 342 | 
             
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| @@ -173,6 +350,19 @@ | |
| 173 350 | 
             
                  "stateMutability": "view",
         | 
| 174 351 | 
             
                  "type": "function"
         | 
| 175 352 | 
             
                },
         | 
| 353 | 
            +
                {
         | 
| 354 | 
            +
                  "inputs": [],
         | 
| 355 | 
            +
                  "name": "authority",
         | 
| 356 | 
            +
                  "outputs": [
         | 
| 357 | 
            +
                    {
         | 
| 358 | 
            +
                      "internalType": "address",
         | 
| 359 | 
            +
                      "name": "",
         | 
| 360 | 
            +
                      "type": "address"
         | 
| 361 | 
            +
                    }
         | 
| 362 | 
            +
                  ],
         | 
| 363 | 
            +
                  "stateMutability": "view",
         | 
| 364 | 
            +
                  "type": "function"
         | 
| 365 | 
            +
                },
         | 
| 176 366 | 
             
                {
         | 
| 177 367 | 
             
                  "inputs": [
         | 
| 178 368 | 
             
                    {
         | 
| @@ -264,13 +454,21 @@ | |
| 264 454 | 
             
                        }
         | 
| 265 455 | 
             
                      ],
         | 
| 266 456 | 
             
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 267 | 
            -
                      "name": "",
         | 
| 457 | 
            +
                      "name": "info",
         | 
| 268 458 | 
             
                      "type": "tuple"
         | 
| 269 | 
            -
                    } | 
| 459 | 
            +
                    }
         | 
| 460 | 
            +
                  ],
         | 
| 461 | 
            +
                  "stateMutability": "view",
         | 
| 462 | 
            +
                  "type": "function"
         | 
| 463 | 
            +
                },
         | 
| 464 | 
            +
                {
         | 
| 465 | 
            +
                  "inputs": [],
         | 
| 466 | 
            +
                  "name": "getInitialOwner",
         | 
| 467 | 
            +
                  "outputs": [
         | 
| 270 468 | 
             
                    {
         | 
| 271 | 
            -
                      "internalType": " | 
| 469 | 
            +
                      "internalType": "address",
         | 
| 272 470 | 
             
                      "name": "",
         | 
| 273 | 
            -
                      "type": " | 
| 471 | 
            +
                      "type": "address"
         | 
| 274 472 | 
             
                    }
         | 
| 275 473 | 
             
                  ],
         | 
| 276 474 | 
             
                  "stateMutability": "view",
         | 
| @@ -289,6 +487,32 @@ | |
| 289 487 | 
             
                  "stateMutability": "view",
         | 
| 290 488 | 
             
                  "type": "function"
         | 
| 291 489 | 
             
                },
         | 
| 490 | 
            +
                {
         | 
| 491 | 
            +
                  "inputs": [],
         | 
| 492 | 
            +
                  "name": "getInstanceService",
         | 
| 493 | 
            +
                  "outputs": [
         | 
| 494 | 
            +
                    {
         | 
| 495 | 
            +
                      "internalType": "contract IInstanceService",
         | 
| 496 | 
            +
                      "name": "",
         | 
| 497 | 
            +
                      "type": "address"
         | 
| 498 | 
            +
                    }
         | 
| 499 | 
            +
                  ],
         | 
| 500 | 
            +
                  "stateMutability": "view",
         | 
| 501 | 
            +
                  "type": "function"
         | 
| 502 | 
            +
                },
         | 
| 503 | 
            +
                {
         | 
| 504 | 
            +
                  "inputs": [],
         | 
| 505 | 
            +
                  "name": "getName",
         | 
| 506 | 
            +
                  "outputs": [
         | 
| 507 | 
            +
                    {
         | 
| 508 | 
            +
                      "internalType": "string",
         | 
| 509 | 
            +
                      "name": "name",
         | 
| 510 | 
            +
                      "type": "string"
         | 
| 511 | 
            +
                    }
         | 
| 512 | 
            +
                  ],
         | 
| 513 | 
            +
                  "stateMutability": "view",
         | 
| 514 | 
            +
                  "type": "function"
         | 
| 515 | 
            +
                },
         | 
| 292 516 | 
             
                {
         | 
| 293 517 | 
             
                  "inputs": [],
         | 
| 294 518 | 
             
                  "name": "getNftId",
         | 
| @@ -328,6 +552,19 @@ | |
| 328 552 | 
             
                  "stateMutability": "view",
         | 
| 329 553 | 
             
                  "type": "function"
         | 
| 330 554 | 
             
                },
         | 
| 555 | 
            +
                {
         | 
| 556 | 
            +
                  "inputs": [],
         | 
| 557 | 
            +
                  "name": "getProductService",
         | 
| 558 | 
            +
                  "outputs": [
         | 
| 559 | 
            +
                    {
         | 
| 560 | 
            +
                      "internalType": "contract IProductService",
         | 
| 561 | 
            +
                      "name": "",
         | 
| 562 | 
            +
                      "type": "address"
         | 
| 563 | 
            +
                    }
         | 
| 564 | 
            +
                  ],
         | 
| 565 | 
            +
                  "stateMutability": "view",
         | 
| 566 | 
            +
                  "type": "function"
         | 
| 567 | 
            +
                },
         | 
| 331 568 | 
             
                {
         | 
| 332 569 | 
             
                  "inputs": [],
         | 
| 333 570 | 
             
                  "name": "getRegistry",
         | 
| @@ -419,6 +656,19 @@ | |
| 419 656 | 
             
                  "stateMutability": "view",
         | 
| 420 657 | 
             
                  "type": "function"
         | 
| 421 658 | 
             
                },
         | 
| 659 | 
            +
                {
         | 
| 660 | 
            +
                  "inputs": [],
         | 
| 661 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 662 | 
            +
                  "outputs": [
         | 
| 663 | 
            +
                    {
         | 
| 664 | 
            +
                      "internalType": "bytes4",
         | 
| 665 | 
            +
                      "name": "",
         | 
| 666 | 
            +
                      "type": "bytes4"
         | 
| 667 | 
            +
                    }
         | 
| 668 | 
            +
                  ],
         | 
| 669 | 
            +
                  "stateMutability": "view",
         | 
| 670 | 
            +
                  "type": "function"
         | 
| 671 | 
            +
                },
         | 
| 422 672 | 
             
                {
         | 
| 423 673 | 
             
                  "inputs": [],
         | 
| 424 674 | 
             
                  "name": "isVerifying",
         | 
| @@ -501,6 +751,19 @@ | |
| 501 751 | 
             
                  "stateMutability": "view",
         | 
| 502 752 | 
             
                  "type": "function"
         | 
| 503 753 | 
             
                },
         | 
| 754 | 
            +
                {
         | 
| 755 | 
            +
                  "inputs": [
         | 
| 756 | 
            +
                    {
         | 
| 757 | 
            +
                      "internalType": "address",
         | 
| 758 | 
            +
                      "name": "newAuthority",
         | 
| 759 | 
            +
                      "type": "address"
         | 
| 760 | 
            +
                    }
         | 
| 761 | 
            +
                  ],
         | 
| 762 | 
            +
                  "name": "setAuthority",
         | 
| 763 | 
            +
                  "outputs": [],
         | 
| 764 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 765 | 
            +
                  "type": "function"
         | 
| 766 | 
            +
                },
         | 
| 504 767 | 
             
                {
         | 
| 505 768 | 
             
                  "inputs": [
         | 
| 506 769 | 
             
                    {
         | 
| @@ -526,6 +789,32 @@ | |
| 526 789 | 
             
                  "stateMutability": "nonpayable",
         | 
| 527 790 | 
             
                  "type": "function"
         | 
| 528 791 | 
             
                },
         | 
| 792 | 
            +
                {
         | 
| 793 | 
            +
                  "inputs": [
         | 
| 794 | 
            +
                    {
         | 
| 795 | 
            +
                      "internalType": "NftId",
         | 
| 796 | 
            +
                      "name": "productNftId",
         | 
| 797 | 
            +
                      "type": "uint96"
         | 
| 798 | 
            +
                    }
         | 
| 799 | 
            +
                  ],
         | 
| 800 | 
            +
                  "name": "setProductNftId",
         | 
| 801 | 
            +
                  "outputs": [],
         | 
| 802 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 803 | 
            +
                  "type": "function"
         | 
| 804 | 
            +
                },
         | 
| 805 | 
            +
                {
         | 
| 806 | 
            +
                  "inputs": [
         | 
| 807 | 
            +
                    {
         | 
| 808 | 
            +
                      "internalType": "address",
         | 
| 809 | 
            +
                      "name": "newWallet",
         | 
| 810 | 
            +
                      "type": "address"
         | 
| 811 | 
            +
                    }
         | 
| 812 | 
            +
                  ],
         | 
| 813 | 
            +
                  "name": "setWallet",
         | 
| 814 | 
            +
                  "outputs": [],
         | 
| 815 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 816 | 
            +
                  "type": "function"
         | 
| 817 | 
            +
                },
         | 
| 529 818 | 
             
                {
         | 
| 530 819 | 
             
                  "inputs": [
         | 
| 531 820 | 
             
                    {
         | 
| @@ -553,58 +842,8 @@ | |
| 553 842 | 
             
                  "type": "function"
         | 
| 554 843 | 
             
                }
         | 
| 555 844 | 
             
              ],
         | 
| 556 | 
            -
              "bytecode": "0x60806040523480156200001157600080fd5b5060405162001c5638038062001c568339810160408190526200003491620006a1565b8686868660786301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1916600190811790915586600280546001600160a01b03191633179055604080516020810190915260008152620000ab88888686868662000371565b6000620000c06001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b038a1660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000110573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200013a91908101906200081f565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b81526342e19e5f60e01b6004820152919250906301ffc9a790602401602060405180830381865afa158015620001a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c8919062000905565b620001f45760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026e91906200092a565b600380546001600160a01b03199081166001600160a01b039384161790915560058054309083161790556006805490911688831617905560078054909116600160a01b6001600160601b038a160217905563593e597960e11b60009081526020527fe5ff73b5268559916713b465b9aafbfc723fb1444fb210a355c8977973af6095805460ff191660011790555050600a80548b151560ff199182161790915589516008556020808b015160095563c8ea96c560e01b600090815290527f358bf83baf6613c2def0011c88aae44093f6c2a350167255c9453fdf9640579480549091166001179055506200036495505050505050565b5050505050505062000aa5565b6200037d828762000442565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d010000000000000000000000000086151502178155905060018101620003fc8382620009d9565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b600280546001600160a01b0319166001600160a01b03841617905562000468816200046c565b5050565b6001546001600160a01b031615620004a75760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001eb565b6001600160a01b038116620004cf5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620005075760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001eb565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562000584575060408051601f3d908101601f19168201909252620005819181019062000905565b60015b620005ae5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001eb565b80620004685760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001eb565b50565b6001600160a01b0381168114620005d957600080fd5b8051620005ff81620005dc565b919050565b80516001600160601b0381168114620005ff57600080fd5b80518015158114620005ff57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156200066857620006686200062d565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200069957620006996200062d565b604052919050565b6000806000806000806000878903610100811215620006bf57600080fd5b8851620006cc81620005dc565b9750620006dc60208a0162000604565b9650620006ec60408a0162000604565b95506060890151620006fe81620005dc565b94506200070e60808a016200061c565b93506040609f19820112156200072357600080fd5b50604080519081016001600160401b03811182821017156200074957620007496200062d565b60405260a0890151815260c0890151602082015260e08901519092506200077081620005dc565b8091505092959891949750929550565b805160ff81168114620005ff57600080fd5b600082601f830112620007a457600080fd5b81516001600160401b03811115620007c057620007c06200062d565b6020620007d6601f8301601f191682016200066e565b8281528582848701011115620007eb57600080fd5b60005b838110156200080b578581018301518282018401528201620007ee565b506000928101909101919091529392505050565b6000602082840312156200083257600080fd5b81516001600160401b03808211156200084a57600080fd5b9083019060e082860312156200085f57600080fd5b6200086962000643565b620008748362000604565b8152620008846020840162000604565b6020820152620008976040840162000780565b6040820152620008aa606084016200061c565b6060820152620008bd60808401620005f2565b6080820152620008d060a08401620005f2565b60a082015260c083015182811115620008e857600080fd5b620008f68782860162000792565b60c08301525095945050505050565b6000602082840312156200091857600080fd5b62000923826200061c565b9392505050565b6000602082840312156200093d57600080fd5b81516200092381620005dc565b600181811c908216806200095f57607f821691505b6020821081036200098057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620009d457600081815260208120601f850160051c81016020861015620009af5750805b601f850160051c820191505b81811015620009d057828155600101620009bb565b5050505b505050565b81516001600160401b03811115620009f557620009f56200062d565b62000a0d8162000a0684546200094a565b8462000986565b602080601f83116001811462000a45576000841562000a2c5750858301515b600019600386901b1c1916600185901b178555620009d0565b600085815260208120601f198616915b8281101562000a765788860151825594840194600190910190840162000a55565b508582101562000a955787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6111a18062000ab56000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c8063644c45e0116100b8578063d16d0fe81161007c578063d16d0fe814610305578063de7b5d1414610318578063e214756714610329578063f7d39dea1461033d578063f80e207214610247578063f83d08ba1461035057600080fd5b8063644c45e01461026b57806387ef9ba014610283578063893d20e81461028e578063a69df4b514610296578063c200b8091461029e57600080fd5b80631eff4b22116100ff5780631eff4b22146101ee57806321df0da7146102235780633f52c0f6146102345780634cf30a84146102475780635ab1bd531461025a57600080fd5b806251884a1461013b57806301ffc9a71461016c5780630fec111c146101a957806313299604146101bf578063138461e0146101e4575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61019961017a366004610d89565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610163565b6101b1610358565b604051610163929190610e00565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610163565b6101ec6103df565b005b6102157f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610163565b6006546001600160a01b03166101cc565b6101ec610242366004610ede565b610601565b6101ec610255366004610f2d565b61066a565b6001546001600160a01b03166101cc565b600154600160a01b90046001600160601b031661014f565b600a5460ff16610199565b6101cc6106d2565b6101ec6107f0565b6102a661086d565b6040805182516001600160601b031681526020808401516001600160a01b0390811682840152848401518051948401949094529201516060808301919091528301511515608080830191909152909201511660a082015260c001610163565b610215610313366004610f2d565b610a73565b6007546001600160a01b03166101cc565b610199610337366004610f57565b50600090565b61021561034b366004610f2d565b610a88565b6101ec610b2a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290918061039c610ba7565b50600a546040805160085460208201526009548183015260ff90921615156060808401919091528151808403909101815260809092019052909590945092505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610441573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104659190610f82565b156104ac576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166104d55760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561051e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105429190610f82565b61056a576040516372657a5160e01b81526001600160a01b03821660048201526024016104a3565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156105b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d89190610fb4565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600a54604051631fa9607b60e11b81526101009091046001600160a01b031690633f52c0f690610635908490600401610fcf565b600060405180830381600087803b15801561064f57600080fd5b505af1158015610663573d6000803e3d6000fd5b5050505050565b600b546001600160a01b031633146106ce5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104a3565b5050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075b9190610f82565b156107e057600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156107b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107db9190611009565b905090565b506002546001600160a01b031690565b60006107fa6106d2565b90506001600160a01b0381161580159061081d5750336001600160a01b03821614155b1561083d5760405163700dd81160e01b81523360048201526024016104a3565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c90602401610635565b610875610d2d565b6001546040805163c4cade9d60e01b8152600160a01b9092046001600160601b03166004830152600060248301525173__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9163c4cade9d9160448083019260209291908290030181865af41580156108e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109089190610f82565b1561096c57506040805160a081018252600754600160a01b90046001600160601b03168152600060208083018290528351808501855260085481526009549181019190915292820192909252600a5460ff1615156060820152608081019190915290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa1580156109b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109da9190611009565b9050806001600160a01b0316639ad69c67610a056001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240160c060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190611026565b91505090565b6000610a7f82826110e8565b90505b92915050565b600080610a9361086d565b604081810151905163012ebd8360e21b81528151600482015260208201516024820152604481018690529192509073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610afc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b20919061110d565b5095945050505050565b6000610b346106d2565b90506001600160a01b03811615801590610b575750336001600160a01b03821614155b15610b775760405163700dd81160e01b81523360048201526024016104a3565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610635565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c2e6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c766106d2565b6001600160a01b03168152602001826001018054610c9390611131565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf90611131565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6040518060a0016040528060006001600160601b0316815260200160006001600160a01b03168152602001610d75604051806040016040528060008152602001600081525090565b815260006020820181905260409091015290565b600060208284031215610d9b57600080fd5b81356001600160e01b031981168114610db357600080fd5b9392505050565b6000815180845260005b81811015610de057602081850181015186830182015201610dc4565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610e4460a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610e8a610120840182610dba565b90508281036020840152610e9e8185610dba565b95945050505050565b6040805190810167ffffffffffffffff81118282101715610ed857634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610ef057600080fd5b610ef8610ea7565b82358152602083013560208201528091505092915050565b80356001600160c01b031981168114610f2857600080fd5b919050565b60008060408385031215610f4057600080fd5b610f4983610f10565b946020939093013593505050565b600060208284031215610f6957600080fd5b610a7f82610f10565b80518015158114610f2857600080fd5b600060208284031215610f9457600080fd5b610a7f82610f72565b80516001600160601b0381168114610f2857600080fd5b600060208284031215610fc657600080fd5b610a7f82610f9d565b815181526020808301519082015260408101610a82565b6001600160a01b0381168114610ffb57600080fd5b50565b8051610f2881610fe6565b60006020828403121561101b57600080fd5b8151610db381610fe6565b600081830360c081121561103957600080fd5b60405160a0810181811067ffffffffffffffff8211171561106a57634e487b7160e01b600052604160045260246000fd5b60405261107684610f9d565b8152602084015161108681610fe6565b60208201526040603f198301121561109d57600080fd5b6110a5610ea7565b915060408401518252606084015160208301528160408201526110ca60808501610f72565b60608201526110db60a08501610ffe565b6080820152949350505050565b8082028115828204841417610a8257634e487b7160e01b600052601160045260246000fd5b6000806040838503121561112057600080fd5b505080516020909101519092909150565b600181811c9082168061114557607f821691505b60208210810361116557634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122021ee7995ed7ba0e643cce54175a2c79dd9525de27d4539f5678db5e8b8467fe864736f6c63430008140033",
         | 
| 557 | 
            -
              "deployedBytecode": " | 
| 558 | 
            -
              "linkReferences": {
         | 
| 559 | 
            -
             | 
| 560 | 
            -
                  "FeeLib": [
         | 
| 561 | 
            -
                    {
         | 
| 562 | 
            -
                      "length": 20,
         | 
| 563 | 
            -
                      "start": 5496
         | 
| 564 | 
            -
                    }
         | 
| 565 | 
            -
                  ]
         | 
| 566 | 
            -
                },
         | 
| 567 | 
            -
                "contracts/types/NftId.sol": {
         | 
| 568 | 
            -
                  "NftIdLib": [
         | 
| 569 | 
            -
                    {
         | 
| 570 | 
            -
                      "length": 20,
         | 
| 571 | 
            -
                      "start": 3772
         | 
| 572 | 
            -
                    },
         | 
| 573 | 
            -
                    {
         | 
| 574 | 
            -
                      "length": 20,
         | 
| 575 | 
            -
                      "start": 4530
         | 
| 576 | 
            -
                    },
         | 
| 577 | 
            -
                    {
         | 
| 578 | 
            -
                      "length": 20,
         | 
| 579 | 
            -
                      "start": 4955
         | 
| 580 | 
            -
                    }
         | 
| 581 | 
            -
                  ]
         | 
| 582 | 
            -
                }
         | 
| 583 | 
            -
              },
         | 
| 584 | 
            -
              "deployedLinkReferences": {
         | 
| 585 | 
            -
                "contracts/types/Fee.sol": {
         | 
| 586 | 
            -
                  "FeeLib": [
         | 
| 587 | 
            -
                    {
         | 
| 588 | 
            -
                      "length": 20,
         | 
| 589 | 
            -
                      "start": 2755
         | 
| 590 | 
            -
                    }
         | 
| 591 | 
            -
                  ]
         | 
| 592 | 
            -
                },
         | 
| 593 | 
            -
                "contracts/types/NftId.sol": {
         | 
| 594 | 
            -
                  "NftIdLib": [
         | 
| 595 | 
            -
                    {
         | 
| 596 | 
            -
                      "length": 20,
         | 
| 597 | 
            -
                      "start": 1031
         | 
| 598 | 
            -
                    },
         | 
| 599 | 
            -
                    {
         | 
| 600 | 
            -
                      "length": 20,
         | 
| 601 | 
            -
                      "start": 1789
         | 
| 602 | 
            -
                    },
         | 
| 603 | 
            -
                    {
         | 
| 604 | 
            -
                      "length": 20,
         | 
| 605 | 
            -
                      "start": 2214
         | 
| 606 | 
            -
                    }
         | 
| 607 | 
            -
                  ]
         | 
| 608 | 
            -
                }
         | 
| 609 | 
            -
              }
         | 
| 845 | 
            +
              "bytecode": "0x",
         | 
| 846 | 
            +
              "deployedBytecode": "0x",
         | 
| 847 | 
            +
              "linkReferences": {},
         | 
| 848 | 
            +
              "deployedLinkReferences": {}
         | 
| 610 849 | 
             
            }
         |