@etherisc/gif-next 0.0.2-c83506f-943 → 0.0.2-c8625de-563
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +140 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +853 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1007 -228
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → components/IComponent.sol/IComponent.json} +203 -156
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +791 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +669 -31
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +654 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +834 -286
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +646 -154
- 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 +2192 -59
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +222 -145
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +895 -966
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +211 -144
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +197 -68
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +516 -184
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +344 -75
- 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} +203 -143
- 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/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +858 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +657 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1085 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +743 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +935 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +677 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +462 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +622 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → instance/service/IClaimService.sol/IClaimService.json} +138 -182
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +197 -163
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +572 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +30 -255
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +41 -419
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1109 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +717 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +716 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +649 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +766 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +354 -61
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +223 -216
- 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 +314 -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 +222 -317
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +304 -138
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +48 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +23 -186
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +119 -173
- 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/shared/Versionable.sol/Versionable.json +2 -152
- 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 +129 -51
- 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 +140 -230
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/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 +242 -0
- package/contracts/components/Distribution.sol +209 -67
- package/contracts/components/IComponent.sol +55 -0
- package/contracts/components/IDistributionComponent.sol +59 -2
- package/contracts/components/IPoolComponent.sol +54 -29
- package/contracts/components/IProductComponent.sol +7 -3
- package/contracts/components/Pool.sol +153 -158
- package/contracts/components/Product.sol +120 -132
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +74 -10
- package/contracts/instance/IInstanceService.sol +43 -1
- package/contracts/instance/Instance.sol +124 -269
- package/contracts/instance/InstanceAccessManager.sol +87 -78
- package/contracts/instance/InstanceReader.sol +34 -21
- package/contracts/instance/InstanceService.sol +425 -51
- package/contracts/instance/InstanceServiceManager.sol +11 -13
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/module/IAccess.sol +27 -18
- package/contracts/instance/module/IBundle.sol +1 -0
- package/contracts/instance/module/IPolicy.sol +4 -2
- package/contracts/instance/module/ISetup.sol +7 -3
- package/contracts/instance/service/ApplicationService.sol +268 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +298 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +277 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +54 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +53 -0
- package/contracts/instance/service/IPolicyService.sol +89 -0
- package/contracts/instance/service/IPoolService.sol +6 -23
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +474 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +109 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +233 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +50 -8
- package/contracts/registry/IRegistryService.sol +46 -14
- package/contracts/registry/Registry.sol +261 -220
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +110 -266
- package/contracts/registry/RegistryServiceManager.sol +24 -26
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ERC165.sol +14 -8
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +67 -83
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +14 -29
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +26 -22
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/ObjectType.sol +9 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/RoleId.sol +14 -6
- package/contracts/types/StateId.sol +4 -0
- package/contracts/types/Version.sol +4 -1
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -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
@@ -7,156 +7,215 @@
|
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
9
|
"internalType": "address",
|
10
|
-
"name": "
|
10
|
+
"name": "authority",
|
11
11
|
"type": "address"
|
12
|
-
}
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
13
19
|
{
|
14
|
-
"internalType": "
|
15
|
-
"name": "
|
16
|
-
"type": "
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
17
23
|
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
18
35
|
{
|
19
36
|
"internalType": "address",
|
20
|
-
"name": "
|
37
|
+
"name": "caller",
|
21
38
|
"type": "address"
|
22
|
-
}
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
23
46
|
{
|
24
|
-
"internalType": "
|
25
|
-
"name": "
|
26
|
-
"type": "
|
27
|
-
}
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "target",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "AddressEmptyCode",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
28
57
|
{
|
29
58
|
"internalType": "address",
|
30
|
-
"name": "
|
59
|
+
"name": "account",
|
31
60
|
"type": "address"
|
32
|
-
}
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "AddressInsufficientBalance",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
33
68
|
{
|
34
69
|
"internalType": "address",
|
35
|
-
"name": "
|
70
|
+
"name": "caller",
|
36
71
|
"type": "address"
|
37
|
-
}
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorComponentNotChainNft",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
38
79
|
{
|
39
|
-
"
|
40
|
-
|
41
|
-
|
42
|
-
"name": "fractionalFee",
|
43
|
-
"type": "uint256"
|
44
|
-
},
|
45
|
-
{
|
46
|
-
"internalType": "uint256",
|
47
|
-
"name": "fixedFee",
|
48
|
-
"type": "uint256"
|
49
|
-
}
|
50
|
-
],
|
51
|
-
"internalType": "struct Fee",
|
52
|
-
"name": "productFee",
|
53
|
-
"type": "tuple"
|
80
|
+
"internalType": "NftId",
|
81
|
+
"name": "instanceNftId",
|
82
|
+
"type": "uint96"
|
54
83
|
},
|
55
84
|
{
|
56
|
-
"
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
}
|
67
|
-
],
|
68
|
-
"internalType": "struct Fee",
|
69
|
-
"name": "processingFee",
|
70
|
-
"type": "tuple"
|
71
|
-
},
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "instance",
|
87
|
+
"type": "address"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "ErrorComponentNotInstance",
|
91
|
+
"type": "error"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [
|
72
95
|
{
|
73
96
|
"internalType": "address",
|
74
|
-
"name": "
|
97
|
+
"name": "caller",
|
75
98
|
"type": "address"
|
76
99
|
}
|
77
100
|
],
|
78
|
-
"
|
79
|
-
"type": "
|
101
|
+
"name": "ErrorComponentNotProductService",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [],
|
106
|
+
"name": "ErrorComponentProductNftAlreadySet",
|
107
|
+
"type": "error"
|
80
108
|
},
|
81
109
|
{
|
82
110
|
"inputs": [
|
83
111
|
{
|
84
112
|
"internalType": "address",
|
85
|
-
"name": "
|
113
|
+
"name": "caller",
|
86
114
|
"type": "address"
|
87
115
|
},
|
88
116
|
{
|
89
|
-
"internalType": "
|
90
|
-
"name": "
|
91
|
-
"type": "
|
117
|
+
"internalType": "uint64",
|
118
|
+
"name": "requiredRoleIdNum",
|
119
|
+
"type": "uint64"
|
92
120
|
}
|
93
121
|
],
|
94
|
-
"name": "
|
122
|
+
"name": "ErrorComponentUnauthorized",
|
95
123
|
"type": "error"
|
96
124
|
},
|
97
125
|
{
|
98
126
|
"inputs": [
|
99
127
|
{
|
100
128
|
"internalType": "address",
|
101
|
-
"name": "
|
129
|
+
"name": "newWallet",
|
102
130
|
"type": "address"
|
103
131
|
}
|
104
132
|
],
|
105
|
-
"name": "
|
133
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
134
|
+
"type": "error"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"inputs": [],
|
138
|
+
"name": "ErrorComponentWalletAddressZero",
|
106
139
|
"type": "error"
|
107
140
|
},
|
108
141
|
{
|
109
142
|
"inputs": [
|
110
143
|
{
|
111
144
|
"internalType": "address",
|
112
|
-
"name": "
|
145
|
+
"name": "oldWallet",
|
146
|
+
"type": "address"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"internalType": "address",
|
150
|
+
"name": "newWallet",
|
113
151
|
"type": "address"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"internalType": "uint256",
|
155
|
+
"name": "allowance",
|
156
|
+
"type": "uint256"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"internalType": "uint256",
|
160
|
+
"name": "balance",
|
161
|
+
"type": "uint256"
|
114
162
|
}
|
115
163
|
],
|
116
|
-
"name": "
|
164
|
+
"name": "ErrorComponentWalletAllowanceTooSmall",
|
117
165
|
"type": "error"
|
118
166
|
},
|
119
167
|
{
|
120
168
|
"inputs": [
|
121
169
|
{
|
122
|
-
"internalType": "
|
123
|
-
"name": "
|
124
|
-
"type": "
|
170
|
+
"internalType": "NftId",
|
171
|
+
"name": "nftId",
|
172
|
+
"type": "uint96"
|
125
173
|
}
|
126
174
|
],
|
127
|
-
"name": "
|
175
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
128
176
|
"type": "error"
|
129
177
|
},
|
130
178
|
{
|
131
179
|
"inputs": [
|
132
180
|
{
|
133
181
|
"internalType": "address",
|
134
|
-
"name": "
|
182
|
+
"name": "contractAddress",
|
135
183
|
"type": "address"
|
136
184
|
}
|
137
185
|
],
|
138
|
-
"name": "
|
186
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
139
187
|
"type": "error"
|
140
188
|
},
|
141
189
|
{
|
142
190
|
"inputs": [],
|
143
|
-
"name": "
|
191
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
144
192
|
"type": "error"
|
145
193
|
},
|
146
194
|
{
|
147
195
|
"inputs": [
|
148
196
|
{
|
149
197
|
"internalType": "address",
|
150
|
-
"name": "
|
198
|
+
"name": "account",
|
199
|
+
"type": "address"
|
200
|
+
}
|
201
|
+
],
|
202
|
+
"name": "ErrorNftOwnableNotOwner",
|
203
|
+
"type": "error"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"inputs": [
|
207
|
+
{
|
208
|
+
"internalType": "address",
|
209
|
+
"name": "registryAddress",
|
151
210
|
"type": "address"
|
152
211
|
}
|
153
212
|
],
|
154
|
-
"name": "
|
213
|
+
"name": "ErrorNotRegistry",
|
155
214
|
"type": "error"
|
156
215
|
},
|
157
216
|
{
|
158
217
|
"inputs": [],
|
159
|
-
"name": "
|
218
|
+
"name": "FailedInnerCall",
|
160
219
|
"type": "error"
|
161
220
|
},
|
162
221
|
{
|
@@ -169,6 +228,30 @@
|
|
169
228
|
"name": "NotInitializing",
|
170
229
|
"type": "error"
|
171
230
|
},
|
231
|
+
{
|
232
|
+
"inputs": [
|
233
|
+
{
|
234
|
+
"internalType": "address",
|
235
|
+
"name": "token",
|
236
|
+
"type": "address"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"name": "SafeERC20FailedOperation",
|
240
|
+
"type": "error"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"anonymous": false,
|
244
|
+
"inputs": [
|
245
|
+
{
|
246
|
+
"indexed": false,
|
247
|
+
"internalType": "address",
|
248
|
+
"name": "authority",
|
249
|
+
"type": "address"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"name": "AuthorityUpdated",
|
253
|
+
"type": "event"
|
254
|
+
},
|
172
255
|
{
|
173
256
|
"anonymous": false,
|
174
257
|
"inputs": [
|
@@ -182,6 +265,83 @@
|
|
182
265
|
"name": "Initialized",
|
183
266
|
"type": "event"
|
184
267
|
},
|
268
|
+
{
|
269
|
+
"anonymous": false,
|
270
|
+
"inputs": [
|
271
|
+
{
|
272
|
+
"indexed": false,
|
273
|
+
"internalType": "address",
|
274
|
+
"name": "newWallet",
|
275
|
+
"type": "address"
|
276
|
+
}
|
277
|
+
],
|
278
|
+
"name": "LogComponentWalletAddressChanged",
|
279
|
+
"type": "event"
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"anonymous": false,
|
283
|
+
"inputs": [
|
284
|
+
{
|
285
|
+
"indexed": false,
|
286
|
+
"internalType": "address",
|
287
|
+
"name": "from",
|
288
|
+
"type": "address"
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"indexed": false,
|
292
|
+
"internalType": "address",
|
293
|
+
"name": "to",
|
294
|
+
"type": "address"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"indexed": false,
|
298
|
+
"internalType": "uint256",
|
299
|
+
"name": "amount",
|
300
|
+
"type": "uint256"
|
301
|
+
}
|
302
|
+
],
|
303
|
+
"name": "LogComponentWalletTokensTransferred",
|
304
|
+
"type": "event"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"inputs": [],
|
308
|
+
"name": "CONTRACT_LOCATION_V1",
|
309
|
+
"outputs": [
|
310
|
+
{
|
311
|
+
"internalType": "bytes32",
|
312
|
+
"name": "",
|
313
|
+
"type": "bytes32"
|
314
|
+
}
|
315
|
+
],
|
316
|
+
"stateMutability": "view",
|
317
|
+
"type": "function"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"inputs": [],
|
321
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
322
|
+
"outputs": [
|
323
|
+
{
|
324
|
+
"internalType": "bytes32",
|
325
|
+
"name": "",
|
326
|
+
"type": "bytes32"
|
327
|
+
}
|
328
|
+
],
|
329
|
+
"stateMutability": "view",
|
330
|
+
"type": "function"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"inputs": [],
|
334
|
+
"name": "PRODUCT_STORAGE_LOCATION_V1",
|
335
|
+
"outputs": [
|
336
|
+
{
|
337
|
+
"internalType": "bytes32",
|
338
|
+
"name": "",
|
339
|
+
"type": "bytes32"
|
340
|
+
}
|
341
|
+
],
|
342
|
+
"stateMutability": "view",
|
343
|
+
"type": "function"
|
344
|
+
},
|
185
345
|
{
|
186
346
|
"inputs": [],
|
187
347
|
"name": "REGISTERABLE_LOCATION_V1",
|
@@ -195,6 +355,19 @@
|
|
195
355
|
"stateMutability": "view",
|
196
356
|
"type": "function"
|
197
357
|
},
|
358
|
+
{
|
359
|
+
"inputs": [],
|
360
|
+
"name": "authority",
|
361
|
+
"outputs": [
|
362
|
+
{
|
363
|
+
"internalType": "address",
|
364
|
+
"name": "",
|
365
|
+
"type": "address"
|
366
|
+
}
|
367
|
+
],
|
368
|
+
"stateMutability": "view",
|
369
|
+
"type": "function"
|
370
|
+
},
|
198
371
|
{
|
199
372
|
"inputs": [
|
200
373
|
{
|
@@ -251,15 +424,15 @@
|
|
251
424
|
"name": "applicationData",
|
252
425
|
"type": "bytes"
|
253
426
|
},
|
254
|
-
{
|
255
|
-
"internalType": "ReferralId",
|
256
|
-
"name": "referralId",
|
257
|
-
"type": "bytes8"
|
258
|
-
},
|
259
427
|
{
|
260
428
|
"internalType": "NftId",
|
261
429
|
"name": "bundleNftId",
|
262
430
|
"type": "uint96"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"internalType": "ReferralId",
|
434
|
+
"name": "referralId",
|
435
|
+
"type": "bytes8"
|
263
436
|
}
|
264
437
|
],
|
265
438
|
"name": "calculatePremium",
|
@@ -329,13 +502,8 @@
|
|
329
502
|
}
|
330
503
|
],
|
331
504
|
"internalType": "struct IRegistry.ObjectInfo",
|
332
|
-
"name": "",
|
505
|
+
"name": "info",
|
333
506
|
"type": "tuple"
|
334
|
-
},
|
335
|
-
{
|
336
|
-
"internalType": "bytes",
|
337
|
-
"name": "",
|
338
|
-
"type": "bytes"
|
339
507
|
}
|
340
508
|
],
|
341
509
|
"stateMutability": "view",
|
@@ -354,6 +522,45 @@
|
|
354
522
|
"stateMutability": "view",
|
355
523
|
"type": "function"
|
356
524
|
},
|
525
|
+
{
|
526
|
+
"inputs": [],
|
527
|
+
"name": "getInstanceReader",
|
528
|
+
"outputs": [
|
529
|
+
{
|
530
|
+
"internalType": "contract InstanceReader",
|
531
|
+
"name": "reader",
|
532
|
+
"type": "address"
|
533
|
+
}
|
534
|
+
],
|
535
|
+
"stateMutability": "view",
|
536
|
+
"type": "function"
|
537
|
+
},
|
538
|
+
{
|
539
|
+
"inputs": [],
|
540
|
+
"name": "getInstanceService",
|
541
|
+
"outputs": [
|
542
|
+
{
|
543
|
+
"internalType": "contract IInstanceService",
|
544
|
+
"name": "",
|
545
|
+
"type": "address"
|
546
|
+
}
|
547
|
+
],
|
548
|
+
"stateMutability": "view",
|
549
|
+
"type": "function"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"inputs": [],
|
553
|
+
"name": "getName",
|
554
|
+
"outputs": [
|
555
|
+
{
|
556
|
+
"internalType": "string",
|
557
|
+
"name": "name",
|
558
|
+
"type": "string"
|
559
|
+
}
|
560
|
+
],
|
561
|
+
"stateMutability": "view",
|
562
|
+
"type": "function"
|
563
|
+
},
|
357
564
|
{
|
358
565
|
"inputs": [],
|
359
566
|
"name": "getNftId",
|
@@ -406,6 +613,19 @@
|
|
406
613
|
"stateMutability": "view",
|
407
614
|
"type": "function"
|
408
615
|
},
|
616
|
+
{
|
617
|
+
"inputs": [],
|
618
|
+
"name": "getProductService",
|
619
|
+
"outputs": [
|
620
|
+
{
|
621
|
+
"internalType": "contract IProductService",
|
622
|
+
"name": "",
|
623
|
+
"type": "address"
|
624
|
+
}
|
625
|
+
],
|
626
|
+
"stateMutability": "view",
|
627
|
+
"type": "function"
|
628
|
+
},
|
409
629
|
{
|
410
630
|
"inputs": [],
|
411
631
|
"name": "getRegistry",
|
@@ -419,6 +639,38 @@
|
|
419
639
|
"stateMutability": "view",
|
420
640
|
"type": "function"
|
421
641
|
},
|
642
|
+
{
|
643
|
+
"inputs": [],
|
644
|
+
"name": "getRegistryAddress",
|
645
|
+
"outputs": [
|
646
|
+
{
|
647
|
+
"internalType": "address",
|
648
|
+
"name": "",
|
649
|
+
"type": "address"
|
650
|
+
}
|
651
|
+
],
|
652
|
+
"stateMutability": "view",
|
653
|
+
"type": "function"
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"inputs": [
|
657
|
+
{
|
658
|
+
"internalType": "ObjectType",
|
659
|
+
"name": "domain",
|
660
|
+
"type": "uint8"
|
661
|
+
}
|
662
|
+
],
|
663
|
+
"name": "getServiceAddress",
|
664
|
+
"outputs": [
|
665
|
+
{
|
666
|
+
"internalType": "address",
|
667
|
+
"name": "service",
|
668
|
+
"type": "address"
|
669
|
+
}
|
670
|
+
],
|
671
|
+
"stateMutability": "view",
|
672
|
+
"type": "function"
|
673
|
+
},
|
422
674
|
{
|
423
675
|
"inputs": [],
|
424
676
|
"name": "getSetupInfo",
|
@@ -546,6 +798,16 @@
|
|
546
798
|
"internalType": "struct Fee",
|
547
799
|
"name": "performanceFee",
|
548
800
|
"type": "tuple"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"internalType": "bool",
|
804
|
+
"name": "isIntercepting",
|
805
|
+
"type": "bool"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"internalType": "address",
|
809
|
+
"name": "wallet",
|
810
|
+
"type": "address"
|
549
811
|
}
|
550
812
|
],
|
551
813
|
"internalType": "struct ISetup.ProductSetupInfo",
|
@@ -583,21 +845,115 @@
|
|
583
845
|
"type": "function"
|
584
846
|
},
|
585
847
|
{
|
586
|
-
"inputs": [
|
587
|
-
|
848
|
+
"inputs": [
|
849
|
+
{
|
850
|
+
"internalType": "address",
|
851
|
+
"name": "registry",
|
852
|
+
"type": "address"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"internalType": "NftId",
|
856
|
+
"name": "instanceNftId",
|
857
|
+
"type": "uint96"
|
858
|
+
},
|
859
|
+
{
|
860
|
+
"internalType": "string",
|
861
|
+
"name": "name",
|
862
|
+
"type": "string"
|
863
|
+
},
|
864
|
+
{
|
865
|
+
"internalType": "address",
|
866
|
+
"name": "token",
|
867
|
+
"type": "address"
|
868
|
+
},
|
869
|
+
{
|
870
|
+
"internalType": "ObjectType",
|
871
|
+
"name": "componentType",
|
872
|
+
"type": "uint8"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"internalType": "bool",
|
876
|
+
"name": "isInterceptor",
|
877
|
+
"type": "bool"
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"internalType": "address",
|
881
|
+
"name": "initialOwner",
|
882
|
+
"type": "address"
|
883
|
+
},
|
884
|
+
{
|
885
|
+
"internalType": "bytes",
|
886
|
+
"name": "data",
|
887
|
+
"type": "bytes"
|
888
|
+
}
|
889
|
+
],
|
890
|
+
"name": "initializeComponent",
|
588
891
|
"outputs": [],
|
589
892
|
"stateMutability": "nonpayable",
|
590
893
|
"type": "function"
|
591
894
|
},
|
592
895
|
{
|
593
896
|
"inputs": [],
|
594
|
-
"name": "
|
897
|
+
"name": "initializeERC165",
|
595
898
|
"outputs": [],
|
596
899
|
"stateMutability": "nonpayable",
|
597
900
|
"type": "function"
|
598
901
|
},
|
599
902
|
{
|
600
903
|
"inputs": [
|
904
|
+
{
|
905
|
+
"internalType": "address",
|
906
|
+
"name": "initialOwner",
|
907
|
+
"type": "address"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"internalType": "address",
|
911
|
+
"name": "registryAddress",
|
912
|
+
"type": "address"
|
913
|
+
}
|
914
|
+
],
|
915
|
+
"name": "initializeNftOwnable",
|
916
|
+
"outputs": [],
|
917
|
+
"stateMutability": "nonpayable",
|
918
|
+
"type": "function"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"inputs": [
|
922
|
+
{
|
923
|
+
"internalType": "address",
|
924
|
+
"name": "registry",
|
925
|
+
"type": "address"
|
926
|
+
},
|
927
|
+
{
|
928
|
+
"internalType": "NftId",
|
929
|
+
"name": "instanceNftId",
|
930
|
+
"type": "uint96"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"internalType": "string",
|
934
|
+
"name": "name",
|
935
|
+
"type": "string"
|
936
|
+
},
|
937
|
+
{
|
938
|
+
"internalType": "address",
|
939
|
+
"name": "token",
|
940
|
+
"type": "address"
|
941
|
+
},
|
942
|
+
{
|
943
|
+
"internalType": "bool",
|
944
|
+
"name": "isInterceptor",
|
945
|
+
"type": "bool"
|
946
|
+
},
|
947
|
+
{
|
948
|
+
"internalType": "address",
|
949
|
+
"name": "pool",
|
950
|
+
"type": "address"
|
951
|
+
},
|
952
|
+
{
|
953
|
+
"internalType": "address",
|
954
|
+
"name": "distribution",
|
955
|
+
"type": "address"
|
956
|
+
},
|
601
957
|
{
|
602
958
|
"components": [
|
603
959
|
{
|
@@ -631,26 +987,94 @@
|
|
631
987
|
"internalType": "struct Fee",
|
632
988
|
"name": "processingFee",
|
633
989
|
"type": "tuple"
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"internalType": "address",
|
993
|
+
"name": "initialOwner",
|
994
|
+
"type": "address"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"internalType": "bytes",
|
998
|
+
"name": "data",
|
999
|
+
"type": "bytes"
|
634
1000
|
}
|
635
1001
|
],
|
636
|
-
"name": "
|
1002
|
+
"name": "initializeProduct",
|
637
1003
|
"outputs": [],
|
638
1004
|
"stateMutability": "nonpayable",
|
639
1005
|
"type": "function"
|
640
1006
|
},
|
641
1007
|
{
|
642
1008
|
"inputs": [
|
1009
|
+
{
|
1010
|
+
"internalType": "address",
|
1011
|
+
"name": "registryAddress",
|
1012
|
+
"type": "address"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
"internalType": "NftId",
|
1016
|
+
"name": "parentNftId",
|
1017
|
+
"type": "uint96"
|
1018
|
+
},
|
1019
|
+
{
|
1020
|
+
"internalType": "ObjectType",
|
1021
|
+
"name": "objectType",
|
1022
|
+
"type": "uint8"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"internalType": "bool",
|
1026
|
+
"name": "isInterceptor",
|
1027
|
+
"type": "bool"
|
1028
|
+
},
|
1029
|
+
{
|
1030
|
+
"internalType": "address",
|
1031
|
+
"name": "initialOwner",
|
1032
|
+
"type": "address"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"internalType": "bytes",
|
1036
|
+
"name": "data",
|
1037
|
+
"type": "bytes"
|
1038
|
+
}
|
1039
|
+
],
|
1040
|
+
"name": "initializeRegisterable",
|
1041
|
+
"outputs": [],
|
1042
|
+
"stateMutability": "nonpayable",
|
1043
|
+
"type": "function"
|
1044
|
+
},
|
1045
|
+
{
|
1046
|
+
"inputs": [
|
1047
|
+
{
|
1048
|
+
"internalType": "address",
|
1049
|
+
"name": "registryAddress",
|
1050
|
+
"type": "address"
|
1051
|
+
}
|
1052
|
+
],
|
1053
|
+
"name": "initializeRegistryLinked",
|
1054
|
+
"outputs": [],
|
1055
|
+
"stateMutability": "nonpayable",
|
1056
|
+
"type": "function"
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"inputs": [],
|
1060
|
+
"name": "isConsumingScheduledOp",
|
1061
|
+
"outputs": [
|
643
1062
|
{
|
644
1063
|
"internalType": "bytes4",
|
645
|
-
"name": "
|
1064
|
+
"name": "",
|
646
1065
|
"type": "bytes4"
|
647
1066
|
}
|
648
1067
|
],
|
649
|
-
"
|
1068
|
+
"stateMutability": "view",
|
1069
|
+
"type": "function"
|
1070
|
+
},
|
1071
|
+
{
|
1072
|
+
"inputs": [],
|
1073
|
+
"name": "isNftInterceptor",
|
650
1074
|
"outputs": [
|
651
1075
|
{
|
652
1076
|
"internalType": "bool",
|
653
|
-
"name": "",
|
1077
|
+
"name": "isInterceptor",
|
654
1078
|
"type": "bool"
|
655
1079
|
}
|
656
1080
|
],
|
@@ -659,96 +1083,164 @@
|
|
659
1083
|
},
|
660
1084
|
{
|
661
1085
|
"inputs": [],
|
662
|
-
"name": "
|
1086
|
+
"name": "linkToRegisteredNftId",
|
663
1087
|
"outputs": [],
|
664
1088
|
"stateMutability": "nonpayable",
|
665
1089
|
"type": "function"
|
666
|
-
}
|
667
|
-
|
668
|
-
"bytecode": "0x60806040523480156200001157600080fd5b50604051620028813803806200288183398101604081905262000034916200086a565b8888600089606e6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff191660011790558a86600280546001600160a01b03191633179055604080516020810190915260008152620000aa888886868686620004e8565b6000620000bf6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b038a1660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156200010f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620001399190810190620009d4565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b81526342e19e5f60e01b6004820152919250906301ffc9a790602401602060405180830381865afa158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c7919062000aba565b620001f35760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000247573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026d919062000adf565b600380546001600160a01b03199081166001600160a01b039384161790915560058054309083161790556006805490911688831617905560078054909116600160a01b6001600160601b038a160217905563593e597960e11b60009081526020527fe5ff73b5268559916713b465b9aafbfc723fb1444fb210a355c8977973af6095805460ff191660011790555050600980546001600160a01b038e81166001600160a01b031992831617909255600a80548e841692169190911790558a51600b556020808c0151600c558a51600d558a0151600e556001541696506200035695505050505050565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa158015620003a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c6919062000aff565b600f80546001600160601b0319166001600160601b0392909216919091179055620003f96001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa15801562000443573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000469919062000aff565b600f80546001600160601b03929092166c0100000000000000000000000002600160601b600160c01b0319909216919091179055633ad74e8160e01b60009081526020527f6d6f21c9f977ce279ee1b58c3ce3ac0b612bbc5256f6c821ab515558c7e6a0a8805460ff1916600117905550505050505050505062000c78565b620004f48287620005b9565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000573838262000bac565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b600280546001600160a01b0319166001600160a01b038416179055620005df81620005e3565b5050565b6001546001600160a01b0316156200061e5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001ea565b6001600160a01b038116620006465760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036200067e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001ea565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015620006fb575060408051601f3d908101601f19168201909252620006f89181019062000aba565b60015b620007255760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001ea565b80620005df5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001ea565b50565b6001600160a01b03811681146200075057600080fd5b8051620007768162000753565b919050565b80516001600160601b03811681146200077657600080fd5b805180151581146200077657600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620007df57620007df620007a4565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620008105762000810620007a4565b604052919050565b6000604082840312156200082b57600080fd5b604080519081016001600160401b0381118282101715620008505762000850620007a4565b604052825181526020928301519281019290925250919050565b60008060008060008060008060006101608a8c0312156200088a57600080fd5b8951620008978162000753565b9850620008a760208b016200077b565b975060408a0151620008b98162000753565b9650620008c960608b0162000793565b955060808a0151620008db8162000753565b60a08b0151909550620008ee8162000753565b9350620008ff8b60c08c0162000818565b9250620009118b6101008c0162000818565b91506101408a0151620009248162000753565b809150509295985092959850929598565b805160ff811681146200077657600080fd5b600082601f8301126200095957600080fd5b81516001600160401b03811115620009755762000975620007a4565b60206200098b601f8301601f19168201620007e5565b8281528582848701011115620009a057600080fd5b60005b83811015620009c0578581018301518282018401528201620009a3565b506000928101909101919091529392505050565b600060208284031215620009e757600080fd5b81516001600160401b0380821115620009ff57600080fd5b9083019060e0828603121562000a1457600080fd5b62000a1e620007ba565b62000a29836200077b565b815262000a39602084016200077b565b602082015262000a4c6040840162000935565b604082015262000a5f6060840162000793565b606082015262000a726080840162000769565b608082015262000a8560a0840162000769565b60a082015260c08301518281111562000a9d57600080fd5b62000aab8782860162000947565b60c08301525095945050505050565b60006020828403121562000acd57600080fd5b62000ad88262000793565b9392505050565b60006020828403121562000af257600080fd5b815162000ad88162000753565b60006020828403121562000b1257600080fd5b62000ad8826200077b565b600181811c9082168062000b3257607f821691505b60208210810362000b5357634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ba757600081815260208120601f850160051c8101602086101562000b825750805b601f850160051c820191505b8181101562000ba35782815560010162000b8e565b5050505b505050565b81516001600160401b0381111562000bc85762000bc8620007a4565b62000be08162000bd9845462000b1d565b8462000b59565b602080601f83116001811462000c18576000841562000bff5750858301515b600019600386901b1c1916600185901b17855562000ba3565b600085815260208120601f198616915b8281101562000c495788860151825594840194600190910190840162000c28565b508582101562000c685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611bf98062000c886000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba14610285578063c200b80914610298578063db6dcc95146102ad578063de7b5d14146102b5578063f83d08ba146102c657600080fd5b80635ab1bd53146102395780635e78426b1461024a578063644c45e01461025d578063893d20e814610275578063a69df4b51461027d57600080fd5b806313299604116100f457806313299604146101ca578063138461e0146101ef5780631bdd6b76146101f95780631eff4b221461020157806321df0da71461022857600080fd5b806251884a1461012557806301ffc9a7146101565780630fec111c1461019357806312abb9b3146101a9575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b610183610164366004611195565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161014d565b61019b6102ce565b60405161014d929190611216565b6101bc6101b736600461143b565b6104ed565b60405190815260200161014d565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161014d565b6101f7610579565b005b61013961079b565b6101bc7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101d7565b6001546001600160a01b03166101d7565b6101bc6102583660046114c4565b610822565b600154600160a01b90046001600160601b0316610139565b6101d7610838565b6101f7610951565b6101f7610293366004611557565b6109ff565b6102a0610ab5565b60405161014d919061158c565b610139610f4d565b6007546001600160a01b03166101d7565b6101f7610f92565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290918061031261100f565b91509150600080600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561036c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610394919081019061172f565b915091506000806000838060200190518101906103b19190611858565b60408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b81528251959b509399509197508d965090945060808501935073__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048082019392918290030181865af415801561044f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104739190611968565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e548183015282840152606083018890526080830187905260a0909201859052516104cf92910161158c565b60405160208183030381529060405298509850505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f9906105289089908b908a908a9089908b90600401611984565b60a060405180830381865afa158015610545573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056991906119db565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ff9190611a1b565b15610646576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661066f5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc9190611a1b565b610704576040516372657a5160e01b81526001600160a01b038216600482015260240161063d565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561074e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107729190611a36565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006107af6001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa1580156107f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081d9190611a36565b905090565b600061082f600a86611a53565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561089d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c19190611a1b565b1561094157600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561091d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081d9190611a75565b506002546001600160a01b031690565b600061095b610838565b90506001600160a01b0381161580159061097e5750336001600160a01b03821614155b1561099e5760405163700dd81160e01b815233600482015260240161063d565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109e457600080fd5b505af11580156109f8573d6000803e3d6000fd5b5050505050565b6000610a09610838565b90506001600160a01b03811615801590610a2c5750336001600160a01b03821614155b15610a4c5760405163700dd81160e01b815233600482015260240161063d565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610a7e9086908690600401611a92565b600060405180830381600087803b158015610a9857600080fd5b505af1158015610aac573d6000803e3d6000fd5b50505050505050565b610b5f604080516101408101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b6001546040805163c4cade9d60e01b8152600160a01b9092046001600160601b03166004830152600060248301525173__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9163c4cade9d9160448083019260209291908290030181865af4158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf29190611a1b565b15610e455760408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b815282519192608084019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048083019391928290030181865af4158015610c87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cab9190611968565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e5491810191909152818301528051632bd182d360e01b8152815160609093019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d392600480820193918290030181865af4158015610d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5c9190611968565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcd9190611968565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e9190611968565b9052919050565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610e8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb39190611a75565b9050806001600160a01b03166390af7064610ede6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161020060405180830381865afa158015610f23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f479190611ab8565b91505090565b6000610f616001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024016107dc565b6000610f9c610838565b90506001600160a01b03811615801590610fbf5750336001600160a01b03821614155b15610fdf5760405163700dd81160e01b815233600482015260240161063d565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109ca565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806110966001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016110de610838565b6001600160a01b031681526020018260010180546110fb90611b89565b80601f016020809104026020016040519081016040528092919081815260200182805461112790611b89565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000602082840312156111a757600080fd5b81356001600160e01b0319811681146111bf57600080fd5b9392505050565b60005b838110156111e15781810151838201526020016111c9565b50506000910152565b600081518084526112028160208601602086016111c6565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161125a60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526112a06101208401826111ea565b9050828103602084015261082f81856111ea565b6001600160c01b0319811681146112ca57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715611306576113066112cd565b60405290565b60405160e0810167ffffffffffffffff81118282101715611306576113066112cd565b604051610100810167ffffffffffffffff81118282101715611306576113066112cd565b604051610140810167ffffffffffffffff81118282101715611306576113066112cd565b604051601f8201601f1916810167ffffffffffffffff811182821017156113a0576113a06112cd565b604052919050565b600067ffffffffffffffff8211156113c2576113c26112cd565b50601f01601f191660200190565b600082601f8301126113e157600080fd5b81356113f46113ef826113a8565b611377565b81815284602083860101111561140957600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b03811681146112ca57600080fd5b60008060008060008060c0878903121561145457600080fd5b863595506020870135611466816112b4565b945060408701359350606087013567ffffffffffffffff81111561148957600080fd5b61149589828a016113d0565b93505060808701356114a6816112b4565b915060a08701356114b681611426565b809150509295509295509295565b600080600080608085870312156114da57600080fd5b8435935060208501356114ec816112b4565b925060408501359150606085013567ffffffffffffffff81111561150f57600080fd5b61151b878288016113d0565b91505092959194509250565b60006040828403121561153957600080fd5b6115416112e3565b9050813581526020820135602082015292915050565b6000806080838503121561156a57600080fd5b6115748484611527565b91506115838460408501611527565b90509250929050565b81516001600160a01b03168152610200810160208301516115b860208401826001600160a01b03169052565b5060408301516115d360408401826001600160601b03169052565b5060608301516115ee60608401826001600160601b03169052565b50608083015161160b608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006116418185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a08501526101209094015180516101c0850152909301516101e090920191909152919050565b805161169c81611426565b919050565b805160ff8116811461169c57600080fd5b8051801515811461169c57600080fd5b6001600160a01b03811681146112ca57600080fd5b805161169c816116c2565b600082601f8301126116f357600080fd5b81516117016113ef826113a8565b81815284602083860101111561171657600080fd5b6117278260208301602087016111c6565b949350505050565b6000806040838503121561174257600080fd5b825167ffffffffffffffff8082111561175a57600080fd5b9084019060e0828703121561176e57600080fd5b61177661130c565b61177f83611691565b815261178d60208401611691565b602082015261179e604084016116a1565b60408201526117af606084016116b2565b60608201526117c0608084016116d7565b60808201526117d160a084016116d7565b60a082015260c0830151828111156117e857600080fd5b6117f4888286016116e2565b60c083015250602086015190945091508082111561181157600080fd5b5061181e858286016116e2565b9150509250929050565b60006040828403121561183a57600080fd5b6118426112e3565b9050815181526020820151602082015292915050565b60008060008060008086880361026081121561187357600080fd5b6101608082121561188357600080fd5b61188b61132f565b915061189689611691565b82526118a460208a016116d7565b6020830152604089015160408301526118c08a60608b01611828565b60608301526118d28a60a08b01611828565b60808301526118e48a60e08b01611828565b60a08301526118f66101208a016116b2565b60c08301526119086101408a016116d7565b60e083015281975061191b818a016116d7565b9650505061192c61018088016116d7565b935061193c886101a08901611828565b925061194c886101e08901611828565b915061195c886102208901611828565b90509295509295509295565b60006040828403121561197a57600080fd5b6111bf8383611828565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c060608401526119b760c08401876111ea565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a086880312156119f357600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b600060208284031215611a2d57600080fd5b6111bf826116b2565b600060208284031215611a4857600080fd5b81516111bf81611426565b600082611a7057634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611a8757600080fd5b81516111bf816116c2565b8251815260208084015181830152825160408301528201516060820152608081016111bf565b60006102008284031215611acb57600080fd5b611ad3611353565b611adc836116d7565b8152611aea602084016116d7565b6020820152611afb60408401611691565b6040820152611b0c60608401611691565b6060820152611b1e8460808501611828565b6080820152611b308460c08501611828565b60a0820152610100611b4485828601611828565b60c0830152611b57856101408601611828565b60e0830152611b6a856101808601611828565b90820152611b7c846101c08501611828565b6101208201529392505050565b600181811c90821680611b9d57607f821691505b602082108103611bbd57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220cd1e9e1a1980b3ce607db738f629eefa38cbcd44f43d841213cdc01c05760c0264736f6c63430008140033",
|
669
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101205760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba14610285578063c200b80914610298578063db6dcc95146102ad578063de7b5d14146102b5578063f83d08ba146102c657600080fd5b80635ab1bd53146102395780635e78426b1461024a578063644c45e01461025d578063893d20e814610275578063a69df4b51461027d57600080fd5b806313299604116100f457806313299604146101ca578063138461e0146101ef5780631bdd6b76146101f95780631eff4b221461020157806321df0da71461022857600080fd5b806251884a1461012557806301ffc9a7146101565780630fec111c1461019357806312abb9b3146101a9575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b610183610164366004611195565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161014d565b61019b6102ce565b60405161014d929190611216565b6101bc6101b736600461143b565b6104ed565b60405190815260200161014d565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161014d565b6101f7610579565b005b61013961079b565b6101bc7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101d7565b6001546001600160a01b03166101d7565b6101bc6102583660046114c4565b610822565b600154600160a01b90046001600160601b0316610139565b6101d7610838565b6101f7610951565b6101f7610293366004611557565b6109ff565b6102a0610ab5565b60405161014d919061158c565b610139610f4d565b6007546001600160a01b03166101d7565b6101f7610f92565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290918061031261100f565b91509150600080600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561036c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610394919081019061172f565b915091506000806000838060200190518101906103b19190611858565b60408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b81528251959b509399509197508d965090945060808501935073__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048082019392918290030181865af415801561044f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104739190611968565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e548183015282840152606083018890526080830187905260a0909201859052516104cf92910161158c565b60405160208183030381529060405298509850505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f9906105289089908b908a908a9089908b90600401611984565b60a060405180830381865afa158015610545573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056991906119db565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ff9190611a1b565b15610646576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661066f5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc9190611a1b565b610704576040516372657a5160e01b81526001600160a01b038216600482015260240161063d565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561074e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107729190611a36565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006107af6001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa1580156107f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081d9190611a36565b905090565b600061082f600a86611a53565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561089d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c19190611a1b565b1561094157600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561091d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081d9190611a75565b506002546001600160a01b031690565b600061095b610838565b90506001600160a01b0381161580159061097e5750336001600160a01b03821614155b1561099e5760405163700dd81160e01b815233600482015260240161063d565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109e457600080fd5b505af11580156109f8573d6000803e3d6000fd5b5050505050565b6000610a09610838565b90506001600160a01b03811615801590610a2c5750336001600160a01b03821614155b15610a4c5760405163700dd81160e01b815233600482015260240161063d565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610a7e9086908690600401611a92565b600060405180830381600087803b158015610a9857600080fd5b505af1158015610aac573d6000803e3d6000fd5b50505050505050565b610b5f604080516101408101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b6001546040805163c4cade9d60e01b8152600160a01b9092046001600160601b03166004830152600060248301525173__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9163c4cade9d9160448083019260209291908290030181865af4158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf29190611a1b565b15610e455760408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b815282519192608084019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048083019391928290030181865af4158015610c87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cab9190611968565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e5491810191909152818301528051632bd182d360e01b8152815160609093019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d392600480820193918290030181865af4158015610d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5c9190611968565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcd9190611968565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e9190611968565b9052919050565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610e8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb39190611a75565b9050806001600160a01b03166390af7064610ede6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161020060405180830381865afa158015610f23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f479190611ab8565b91505090565b6000610f616001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024016107dc565b6000610f9c610838565b90506001600160a01b03811615801590610fbf5750336001600160a01b03821614155b15610fdf5760405163700dd81160e01b815233600482015260240161063d565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109ca565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806110966001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016110de610838565b6001600160a01b031681526020018260010180546110fb90611b89565b80601f016020809104026020016040519081016040528092919081815260200182805461112790611b89565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000602082840312156111a757600080fd5b81356001600160e01b0319811681146111bf57600080fd5b9392505050565b60005b838110156111e15781810151838201526020016111c9565b50506000910152565b600081518084526112028160208601602086016111c6565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161125a60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526112a06101208401826111ea565b9050828103602084015261082f81856111ea565b6001600160c01b0319811681146112ca57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715611306576113066112cd565b60405290565b60405160e0810167ffffffffffffffff81118282101715611306576113066112cd565b604051610100810167ffffffffffffffff81118282101715611306576113066112cd565b604051610140810167ffffffffffffffff81118282101715611306576113066112cd565b604051601f8201601f1916810167ffffffffffffffff811182821017156113a0576113a06112cd565b604052919050565b600067ffffffffffffffff8211156113c2576113c26112cd565b50601f01601f191660200190565b600082601f8301126113e157600080fd5b81356113f46113ef826113a8565b611377565b81815284602083860101111561140957600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b03811681146112ca57600080fd5b60008060008060008060c0878903121561145457600080fd5b863595506020870135611466816112b4565b945060408701359350606087013567ffffffffffffffff81111561148957600080fd5b61149589828a016113d0565b93505060808701356114a6816112b4565b915060a08701356114b681611426565b809150509295509295509295565b600080600080608085870312156114da57600080fd5b8435935060208501356114ec816112b4565b925060408501359150606085013567ffffffffffffffff81111561150f57600080fd5b61151b878288016113d0565b91505092959194509250565b60006040828403121561153957600080fd5b6115416112e3565b9050813581526020820135602082015292915050565b6000806080838503121561156a57600080fd5b6115748484611527565b91506115838460408501611527565b90509250929050565b81516001600160a01b03168152610200810160208301516115b860208401826001600160a01b03169052565b5060408301516115d360408401826001600160601b03169052565b5060608301516115ee60608401826001600160601b03169052565b50608083015161160b608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006116418185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a08501526101209094015180516101c0850152909301516101e090920191909152919050565b805161169c81611426565b919050565b805160ff8116811461169c57600080fd5b8051801515811461169c57600080fd5b6001600160a01b03811681146112ca57600080fd5b805161169c816116c2565b600082601f8301126116f357600080fd5b81516117016113ef826113a8565b81815284602083860101111561171657600080fd5b6117278260208301602087016111c6565b949350505050565b6000806040838503121561174257600080fd5b825167ffffffffffffffff8082111561175a57600080fd5b9084019060e0828703121561176e57600080fd5b61177661130c565b61177f83611691565b815261178d60208401611691565b602082015261179e604084016116a1565b60408201526117af606084016116b2565b60608201526117c0608084016116d7565b60808201526117d160a084016116d7565b60a082015260c0830151828111156117e857600080fd5b6117f4888286016116e2565b60c083015250602086015190945091508082111561181157600080fd5b5061181e858286016116e2565b9150509250929050565b60006040828403121561183a57600080fd5b6118426112e3565b9050815181526020820151602082015292915050565b60008060008060008086880361026081121561187357600080fd5b6101608082121561188357600080fd5b61188b61132f565b915061189689611691565b82526118a460208a016116d7565b6020830152604089015160408301526118c08a60608b01611828565b60608301526118d28a60a08b01611828565b60808301526118e48a60e08b01611828565b60a08301526118f66101208a016116b2565b60c08301526119086101408a016116d7565b60e083015281975061191b818a016116d7565b9650505061192c61018088016116d7565b935061193c886101a08901611828565b925061194c886101e08901611828565b915061195c886102208901611828565b90509295509295509295565b60006040828403121561197a57600080fd5b6111bf8383611828565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c060608401526119b760c08401876111ea565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a086880312156119f357600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b600060208284031215611a2d57600080fd5b6111bf826116b2565b600060208284031215611a4857600080fd5b81516111bf81611426565b600082611a7057634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611a8757600080fd5b81516111bf816116c2565b8251815260208084015181830152825160408301528201516060820152608081016111bf565b60006102008284031215611acb57600080fd5b611ad3611353565b611adc836116d7565b8152611aea602084016116d7565b6020820152611afb60408401611691565b6040820152611b0c60608401611691565b6060820152611b1e8460808501611828565b6080820152611b308460c08501611828565b60a0820152610100611b4485828601611828565b60c0830152611b57856101408601611828565b60e0830152611b6a856101808601611828565b90820152611b7c846101c08501611828565b6101208201529392505050565b600181811c90821680611b9d57607f821691505b602082108103611bbd57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220cd1e9e1a1980b3ce607db738f629eefa38cbcd44f43d841213cdc01c05760c0264736f6c63430008140033",
|
670
|
-
|
671
|
-
|
672
|
-
"
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
},
|
677
|
-
{
|
678
|
-
"length": 20,
|
679
|
-
"start": 6356
|
680
|
-
},
|
1090
|
+
},
|
1091
|
+
{
|
1092
|
+
"inputs": [],
|
1093
|
+
"name": "lock",
|
1094
|
+
"outputs": [],
|
1095
|
+
"stateMutability": "nonpayable",
|
1096
|
+
"type": "function"
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
"inputs": [
|
681
1100
|
{
|
682
|
-
"
|
683
|
-
"
|
1101
|
+
"internalType": "address",
|
1102
|
+
"name": "from",
|
1103
|
+
"type": "address"
|
684
1104
|
},
|
685
1105
|
{
|
686
|
-
"
|
687
|
-
"
|
1106
|
+
"internalType": "address",
|
1107
|
+
"name": "to",
|
1108
|
+
"type": "address"
|
688
1109
|
},
|
689
1110
|
{
|
690
|
-
"
|
691
|
-
"
|
1111
|
+
"internalType": "uint256",
|
1112
|
+
"name": "tokenId",
|
1113
|
+
"type": "uint256"
|
692
1114
|
}
|
693
|
-
]
|
1115
|
+
],
|
1116
|
+
"name": "nftTransferFrom",
|
1117
|
+
"outputs": [],
|
1118
|
+
"stateMutability": "nonpayable",
|
1119
|
+
"type": "function"
|
694
1120
|
},
|
695
|
-
|
696
|
-
"
|
697
|
-
{
|
698
|
-
"length": 20,
|
699
|
-
"start": 4649
|
700
|
-
},
|
701
|
-
{
|
702
|
-
"length": 20,
|
703
|
-
"start": 5355
|
704
|
-
},
|
1121
|
+
{
|
1122
|
+
"inputs": [
|
705
1123
|
{
|
706
|
-
"
|
707
|
-
"
|
1124
|
+
"internalType": "bytes4",
|
1125
|
+
"name": "interfaceId",
|
1126
|
+
"type": "bytes4"
|
708
1127
|
}
|
709
|
-
]
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
"start": 1044
|
718
|
-
},
|
1128
|
+
],
|
1129
|
+
"name": "registerInterface",
|
1130
|
+
"outputs": [],
|
1131
|
+
"stateMutability": "nonpayable",
|
1132
|
+
"type": "function"
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
"inputs": [
|
719
1136
|
{
|
720
|
-
"
|
721
|
-
"
|
722
|
-
|
1137
|
+
"internalType": "address",
|
1138
|
+
"name": "newAuthority",
|
1139
|
+
"type": "address"
|
1140
|
+
}
|
1141
|
+
],
|
1142
|
+
"name": "setAuthority",
|
1143
|
+
"outputs": [],
|
1144
|
+
"stateMutability": "nonpayable",
|
1145
|
+
"type": "function"
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"inputs": [
|
723
1149
|
{
|
724
|
-
"
|
725
|
-
|
1150
|
+
"components": [
|
1151
|
+
{
|
1152
|
+
"internalType": "UFixed",
|
1153
|
+
"name": "fractionalFee",
|
1154
|
+
"type": "uint256"
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"internalType": "uint256",
|
1158
|
+
"name": "fixedFee",
|
1159
|
+
"type": "uint256"
|
1160
|
+
}
|
1161
|
+
],
|
1162
|
+
"internalType": "struct Fee",
|
1163
|
+
"name": "productFee",
|
1164
|
+
"type": "tuple"
|
726
1165
|
},
|
727
1166
|
{
|
728
|
-
"
|
729
|
-
|
730
|
-
|
1167
|
+
"components": [
|
1168
|
+
{
|
1169
|
+
"internalType": "UFixed",
|
1170
|
+
"name": "fractionalFee",
|
1171
|
+
"type": "uint256"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"internalType": "uint256",
|
1175
|
+
"name": "fixedFee",
|
1176
|
+
"type": "uint256"
|
1177
|
+
}
|
1178
|
+
],
|
1179
|
+
"internalType": "struct Fee",
|
1180
|
+
"name": "processingFee",
|
1181
|
+
"type": "tuple"
|
1182
|
+
}
|
1183
|
+
],
|
1184
|
+
"name": "setFees",
|
1185
|
+
"outputs": [],
|
1186
|
+
"stateMutability": "nonpayable",
|
1187
|
+
"type": "function"
|
1188
|
+
},
|
1189
|
+
{
|
1190
|
+
"inputs": [
|
731
1191
|
{
|
732
|
-
"
|
733
|
-
"
|
1192
|
+
"internalType": "NftId",
|
1193
|
+
"name": "productNftId",
|
1194
|
+
"type": "uint96"
|
734
1195
|
}
|
735
|
-
]
|
1196
|
+
],
|
1197
|
+
"name": "setProductNftId",
|
1198
|
+
"outputs": [],
|
1199
|
+
"stateMutability": "nonpayable",
|
1200
|
+
"type": "function"
|
736
1201
|
},
|
737
|
-
|
738
|
-
"
|
1202
|
+
{
|
1203
|
+
"inputs": [
|
739
1204
|
{
|
740
|
-
"
|
741
|
-
"
|
742
|
-
|
1205
|
+
"internalType": "address",
|
1206
|
+
"name": "newWallet",
|
1207
|
+
"type": "address"
|
1208
|
+
}
|
1209
|
+
],
|
1210
|
+
"name": "setWallet",
|
1211
|
+
"outputs": [],
|
1212
|
+
"stateMutability": "nonpayable",
|
1213
|
+
"type": "function"
|
1214
|
+
},
|
1215
|
+
{
|
1216
|
+
"inputs": [
|
743
1217
|
{
|
744
|
-
"
|
745
|
-
"
|
746
|
-
|
1218
|
+
"internalType": "bytes4",
|
1219
|
+
"name": "interfaceId",
|
1220
|
+
"type": "bytes4"
|
1221
|
+
}
|
1222
|
+
],
|
1223
|
+
"name": "supportsInterface",
|
1224
|
+
"outputs": [
|
747
1225
|
{
|
748
|
-
"
|
749
|
-
"
|
1226
|
+
"internalType": "bool",
|
1227
|
+
"name": "",
|
1228
|
+
"type": "bool"
|
750
1229
|
}
|
751
|
-
]
|
1230
|
+
],
|
1231
|
+
"stateMutability": "view",
|
1232
|
+
"type": "function"
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"inputs": [],
|
1236
|
+
"name": "unlock",
|
1237
|
+
"outputs": [],
|
1238
|
+
"stateMutability": "nonpayable",
|
1239
|
+
"type": "function"
|
752
1240
|
}
|
753
|
-
|
1241
|
+
],
|
1242
|
+
"bytecode": "0x",
|
1243
|
+
"deployedBytecode": "0x",
|
1244
|
+
"linkReferences": {},
|
1245
|
+
"deployedLinkReferences": {}
|
754
1246
|
}
|