@etherisc/gif-next 0.0.2-fe77319 → 0.0.2-ff8087d-237
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +359 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +727 -33
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1376 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +636 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +1000 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1095 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +861 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1281 -69
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +1064 -79
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2365 -529
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +600 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2965 -581
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1569 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1099 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +724 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +631 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1124 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1283 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +696 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1384 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +752 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1847 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +816 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +619 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +730 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +743 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1059 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +651 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +1077 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +442 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1281 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1622 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +708 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +864 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +640 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +784 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +559 -74
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +858 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +646 -77
- 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 +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1150 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +657 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +485 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +125 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +189 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +175 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +327 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +238 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +569 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +339 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +488 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +114 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +370 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +588 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +281 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +166 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +280 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +250 -40
- package/contracts/components/Distribution.sol +285 -0
- package/contracts/components/IComponent.sol +90 -0
- package/contracts/components/IDistributionComponent.sol +71 -0
- package/contracts/components/IPoolComponent.sol +114 -0
- package/contracts/components/IProductComponent.sol +41 -0
- package/contracts/components/Pool.sol +291 -18
- package/contracts/components/Product.sol +340 -33
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +99 -15
- package/contracts/instance/IInstanceService.sol +63 -0
- package/contracts/instance/Instance.sol +297 -42
- package/contracts/instance/InstanceAccessManager.sol +527 -0
- package/contracts/instance/InstanceReader.sol +366 -0
- package/contracts/instance/InstanceService.sol +484 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +130 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +149 -0
- package/contracts/instance/base/Lifecycle.sol +120 -0
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +23 -0
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +77 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +356 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +385 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +443 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +432 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +79 -0
- package/contracts/instance/service/IBundleService.sol +118 -0
- package/contracts/instance/service/IClaimService.sol +90 -0
- package/contracts/instance/service/IDistributionService.sol +101 -0
- package/contracts/instance/service/IPolicyService.sol +80 -0
- package/contracts/instance/service/IPoolService.sol +114 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +372 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +403 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +210 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +210 -0
- package/contracts/registry/IRegistry.sol +87 -52
- package/contracts/registry/IRegistryService.sol +66 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +399 -129
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +282 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +40 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/NftOwnable.sol +118 -0
- package/contracts/shared/PolicyHolder.sol +94 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +72 -0
- package/contracts/shared/TokenHandler.sol +35 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/Blocknumber.sol +119 -0
- package/contracts/types/ChainId.sol +38 -0
- package/contracts/types/ClaimId.sol +75 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +65 -0
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +80 -0
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +157 -0
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +97 -0
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +110 -0
- package/contracts/types/Timestamp.sol +132 -0
- package/contracts/types/UFixed.sol +326 -0
- package/contracts/types/Version.sol +108 -0
- package/package.json +21 -6
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
- package/artifacts/contracts/experiment/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/IC.sol/IC.json +0 -63
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -11
- package/contracts/experiment/A.sol +0 -56
- package/contracts/experiment/B.sol +0 -23
- package/contracts/experiment/C.sol +0 -28
- package/contracts/experiment/IA.sol +0 -18
- package/contracts/experiment/IB.sol +0 -9
- package/contracts/experiment/IC.sol +0 -11
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -259
- package/contracts/instance/component/IComponent.sol +0 -94
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -106
- package/contracts/instance/pool/IPoolModule.sol +0 -40
- package/contracts/instance/pool/PoolModule.sol +0 -83
- package/contracts/instance/product/IProductService.sol +0 -45
- package/contracts/instance/product/ProductService.sol +0 -105
@@ -0,0 +1,588 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "TestService",
|
4
|
+
"sourceName": "contracts/test/TestService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registry",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "NftId",
|
15
|
+
"name": "registryNftId",
|
16
|
+
"type": "uint96"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"internalType": "address",
|
20
|
+
"name": "initialOwner",
|
21
|
+
"type": "address"
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"stateMutability": "nonpayable",
|
25
|
+
"type": "constructor"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"inputs": [
|
29
|
+
{
|
30
|
+
"internalType": "address",
|
31
|
+
"name": "authority",
|
32
|
+
"type": "address"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "AccessManagedInvalidAuthority",
|
36
|
+
"type": "error"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"inputs": [
|
40
|
+
{
|
41
|
+
"internalType": "address",
|
42
|
+
"name": "caller",
|
43
|
+
"type": "address"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"internalType": "uint32",
|
47
|
+
"name": "delay",
|
48
|
+
"type": "uint32"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"name": "AccessManagedRequiredDelay",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [
|
56
|
+
{
|
57
|
+
"internalType": "address",
|
58
|
+
"name": "caller",
|
59
|
+
"type": "address"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "AccessManagedUnauthorized",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "NftId",
|
69
|
+
"name": "nftId",
|
70
|
+
"type": "uint96"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "address",
|
80
|
+
"name": "contractAddress",
|
81
|
+
"type": "address"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [
|
94
|
+
{
|
95
|
+
"internalType": "address",
|
96
|
+
"name": "account",
|
97
|
+
"type": "address"
|
98
|
+
}
|
99
|
+
],
|
100
|
+
"name": "ErrorNftOwnableNotOwner",
|
101
|
+
"type": "error"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"inputs": [
|
105
|
+
{
|
106
|
+
"internalType": "address",
|
107
|
+
"name": "registryAddress",
|
108
|
+
"type": "address"
|
109
|
+
}
|
110
|
+
],
|
111
|
+
"name": "ErrorNotRegistry",
|
112
|
+
"type": "error"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"inputs": [],
|
116
|
+
"name": "ErrorServiceNotImplemented",
|
117
|
+
"type": "error"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"inputs": [],
|
121
|
+
"name": "InvalidInitialization",
|
122
|
+
"type": "error"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"inputs": [],
|
126
|
+
"name": "NotInitializing",
|
127
|
+
"type": "error"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"anonymous": false,
|
131
|
+
"inputs": [
|
132
|
+
{
|
133
|
+
"indexed": false,
|
134
|
+
"internalType": "address",
|
135
|
+
"name": "authority",
|
136
|
+
"type": "address"
|
137
|
+
}
|
138
|
+
],
|
139
|
+
"name": "AuthorityUpdated",
|
140
|
+
"type": "event"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"anonymous": false,
|
144
|
+
"inputs": [
|
145
|
+
{
|
146
|
+
"indexed": false,
|
147
|
+
"internalType": "uint64",
|
148
|
+
"name": "version",
|
149
|
+
"type": "uint64"
|
150
|
+
}
|
151
|
+
],
|
152
|
+
"name": "Initialized",
|
153
|
+
"type": "event"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"inputs": [],
|
157
|
+
"name": "NAME",
|
158
|
+
"outputs": [
|
159
|
+
{
|
160
|
+
"internalType": "string",
|
161
|
+
"name": "",
|
162
|
+
"type": "string"
|
163
|
+
}
|
164
|
+
],
|
165
|
+
"stateMutability": "view",
|
166
|
+
"type": "function"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"inputs": [],
|
170
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
171
|
+
"outputs": [
|
172
|
+
{
|
173
|
+
"internalType": "bytes32",
|
174
|
+
"name": "",
|
175
|
+
"type": "bytes32"
|
176
|
+
}
|
177
|
+
],
|
178
|
+
"stateMutability": "view",
|
179
|
+
"type": "function"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"inputs": [],
|
183
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
184
|
+
"outputs": [
|
185
|
+
{
|
186
|
+
"internalType": "bytes32",
|
187
|
+
"name": "",
|
188
|
+
"type": "bytes32"
|
189
|
+
}
|
190
|
+
],
|
191
|
+
"stateMutability": "view",
|
192
|
+
"type": "function"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"inputs": [],
|
196
|
+
"name": "authority",
|
197
|
+
"outputs": [
|
198
|
+
{
|
199
|
+
"internalType": "address",
|
200
|
+
"name": "",
|
201
|
+
"type": "address"
|
202
|
+
}
|
203
|
+
],
|
204
|
+
"stateMutability": "view",
|
205
|
+
"type": "function"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"inputs": [],
|
209
|
+
"name": "getDomain",
|
210
|
+
"outputs": [
|
211
|
+
{
|
212
|
+
"internalType": "ObjectType",
|
213
|
+
"name": "",
|
214
|
+
"type": "uint8"
|
215
|
+
}
|
216
|
+
],
|
217
|
+
"stateMutability": "pure",
|
218
|
+
"type": "function"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"inputs": [],
|
222
|
+
"name": "getInitialInfo",
|
223
|
+
"outputs": [
|
224
|
+
{
|
225
|
+
"components": [
|
226
|
+
{
|
227
|
+
"internalType": "NftId",
|
228
|
+
"name": "nftId",
|
229
|
+
"type": "uint96"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"internalType": "NftId",
|
233
|
+
"name": "parentNftId",
|
234
|
+
"type": "uint96"
|
235
|
+
},
|
236
|
+
{
|
237
|
+
"internalType": "ObjectType",
|
238
|
+
"name": "objectType",
|
239
|
+
"type": "uint8"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"internalType": "bool",
|
243
|
+
"name": "isInterceptor",
|
244
|
+
"type": "bool"
|
245
|
+
},
|
246
|
+
{
|
247
|
+
"internalType": "address",
|
248
|
+
"name": "objectAddress",
|
249
|
+
"type": "address"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"internalType": "address",
|
253
|
+
"name": "initialOwner",
|
254
|
+
"type": "address"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"internalType": "bytes",
|
258
|
+
"name": "data",
|
259
|
+
"type": "bytes"
|
260
|
+
}
|
261
|
+
],
|
262
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
263
|
+
"name": "info",
|
264
|
+
"type": "tuple"
|
265
|
+
}
|
266
|
+
],
|
267
|
+
"stateMutability": "view",
|
268
|
+
"type": "function"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"inputs": [],
|
272
|
+
"name": "getNftId",
|
273
|
+
"outputs": [
|
274
|
+
{
|
275
|
+
"internalType": "NftId",
|
276
|
+
"name": "",
|
277
|
+
"type": "uint96"
|
278
|
+
}
|
279
|
+
],
|
280
|
+
"stateMutability": "view",
|
281
|
+
"type": "function"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"inputs": [],
|
285
|
+
"name": "getOwner",
|
286
|
+
"outputs": [
|
287
|
+
{
|
288
|
+
"internalType": "address",
|
289
|
+
"name": "",
|
290
|
+
"type": "address"
|
291
|
+
}
|
292
|
+
],
|
293
|
+
"stateMutability": "view",
|
294
|
+
"type": "function"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"inputs": [],
|
298
|
+
"name": "getRegistry",
|
299
|
+
"outputs": [
|
300
|
+
{
|
301
|
+
"internalType": "contract IRegistry",
|
302
|
+
"name": "",
|
303
|
+
"type": "address"
|
304
|
+
}
|
305
|
+
],
|
306
|
+
"stateMutability": "view",
|
307
|
+
"type": "function"
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"inputs": [],
|
311
|
+
"name": "getVersion",
|
312
|
+
"outputs": [
|
313
|
+
{
|
314
|
+
"internalType": "Version",
|
315
|
+
"name": "",
|
316
|
+
"type": "uint24"
|
317
|
+
}
|
318
|
+
],
|
319
|
+
"stateMutability": "pure",
|
320
|
+
"type": "function"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"inputs": [],
|
324
|
+
"name": "initializeERC165",
|
325
|
+
"outputs": [],
|
326
|
+
"stateMutability": "nonpayable",
|
327
|
+
"type": "function"
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"inputs": [
|
331
|
+
{
|
332
|
+
"internalType": "address",
|
333
|
+
"name": "initialOwner",
|
334
|
+
"type": "address"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"internalType": "address",
|
338
|
+
"name": "registryAddress",
|
339
|
+
"type": "address"
|
340
|
+
}
|
341
|
+
],
|
342
|
+
"name": "initializeNftOwnable",
|
343
|
+
"outputs": [],
|
344
|
+
"stateMutability": "nonpayable",
|
345
|
+
"type": "function"
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"inputs": [
|
349
|
+
{
|
350
|
+
"internalType": "address",
|
351
|
+
"name": "registryAddress",
|
352
|
+
"type": "address"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"internalType": "NftId",
|
356
|
+
"name": "parentNftId",
|
357
|
+
"type": "uint96"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"internalType": "ObjectType",
|
361
|
+
"name": "objectType",
|
362
|
+
"type": "uint8"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"internalType": "bool",
|
366
|
+
"name": "isInterceptor",
|
367
|
+
"type": "bool"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"internalType": "address",
|
371
|
+
"name": "initialOwner",
|
372
|
+
"type": "address"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"internalType": "bytes",
|
376
|
+
"name": "registryData",
|
377
|
+
"type": "bytes"
|
378
|
+
}
|
379
|
+
],
|
380
|
+
"name": "initializeRegisterable",
|
381
|
+
"outputs": [],
|
382
|
+
"stateMutability": "nonpayable",
|
383
|
+
"type": "function"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"inputs": [
|
387
|
+
{
|
388
|
+
"internalType": "address",
|
389
|
+
"name": "registryAddress",
|
390
|
+
"type": "address"
|
391
|
+
}
|
392
|
+
],
|
393
|
+
"name": "initializeRegistryLinked",
|
394
|
+
"outputs": [],
|
395
|
+
"stateMutability": "nonpayable",
|
396
|
+
"type": "function"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"inputs": [
|
400
|
+
{
|
401
|
+
"internalType": "address",
|
402
|
+
"name": "registry",
|
403
|
+
"type": "address"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"internalType": "address",
|
407
|
+
"name": "authority",
|
408
|
+
"type": "address"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"internalType": "address",
|
412
|
+
"name": "initialOwner",
|
413
|
+
"type": "address"
|
414
|
+
}
|
415
|
+
],
|
416
|
+
"name": "initializeService",
|
417
|
+
"outputs": [],
|
418
|
+
"stateMutability": "nonpayable",
|
419
|
+
"type": "function"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"inputs": [
|
423
|
+
{
|
424
|
+
"internalType": "address",
|
425
|
+
"name": "activatedBy",
|
426
|
+
"type": "address"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"internalType": "bytes",
|
430
|
+
"name": "data",
|
431
|
+
"type": "bytes"
|
432
|
+
}
|
433
|
+
],
|
434
|
+
"name": "initializeVersionable",
|
435
|
+
"outputs": [],
|
436
|
+
"stateMutability": "nonpayable",
|
437
|
+
"type": "function"
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"inputs": [],
|
441
|
+
"name": "isConsumingScheduledOp",
|
442
|
+
"outputs": [
|
443
|
+
{
|
444
|
+
"internalType": "bytes4",
|
445
|
+
"name": "",
|
446
|
+
"type": "bytes4"
|
447
|
+
}
|
448
|
+
],
|
449
|
+
"stateMutability": "view",
|
450
|
+
"type": "function"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"inputs": [],
|
454
|
+
"name": "linkToRegisteredNftId",
|
455
|
+
"outputs": [],
|
456
|
+
"stateMutability": "nonpayable",
|
457
|
+
"type": "function"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"inputs": [
|
461
|
+
{
|
462
|
+
"internalType": "bytes4",
|
463
|
+
"name": "interfaceId",
|
464
|
+
"type": "bytes4"
|
465
|
+
}
|
466
|
+
],
|
467
|
+
"name": "registerInterface",
|
468
|
+
"outputs": [],
|
469
|
+
"stateMutability": "nonpayable",
|
470
|
+
"type": "function"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"inputs": [
|
474
|
+
{
|
475
|
+
"internalType": "address",
|
476
|
+
"name": "newAuthority",
|
477
|
+
"type": "address"
|
478
|
+
}
|
479
|
+
],
|
480
|
+
"name": "setAuthority",
|
481
|
+
"outputs": [],
|
482
|
+
"stateMutability": "nonpayable",
|
483
|
+
"type": "function"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"inputs": [
|
487
|
+
{
|
488
|
+
"internalType": "bytes4",
|
489
|
+
"name": "interfaceId",
|
490
|
+
"type": "bytes4"
|
491
|
+
}
|
492
|
+
],
|
493
|
+
"name": "supportsInterface",
|
494
|
+
"outputs": [
|
495
|
+
{
|
496
|
+
"internalType": "bool",
|
497
|
+
"name": "",
|
498
|
+
"type": "bool"
|
499
|
+
}
|
500
|
+
],
|
501
|
+
"stateMutability": "view",
|
502
|
+
"type": "function"
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"inputs": [
|
506
|
+
{
|
507
|
+
"internalType": "bytes",
|
508
|
+
"name": "data",
|
509
|
+
"type": "bytes"
|
510
|
+
}
|
511
|
+
],
|
512
|
+
"name": "upgradeVersionable",
|
513
|
+
"outputs": [],
|
514
|
+
"stateMutability": "nonpayable",
|
515
|
+
"type": "function"
|
516
|
+
}
|
517
|
+
],
|
518
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506040516200218f3803806200218f83398101604081905262000034916200076a565b6200003e62000055565b6200004c8360008362000109565b505050620009b0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000a65760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001065780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6200011362000363565b6200019e83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000157573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017d9190620007b4565b603c60008560405180602001604052806000815250620003b460201b60201c565b6001600160a01b03821615620001bf57620001b9826200046c565b6200033a565b6000620001d46001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af415801562000235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025b9190620007d9565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015620002a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c79190620007fe565b905062000338816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003329190620007fe565b6200046c565b505b6200034c634a531f3360e01b62000481565b6200035e63b68d180960e01b62000481565b505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16620003b257604051631afcd79f60e31b815260040160405180910390fd5b565b620003be62000363565b620003ca8287620004b0565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166001600160681b0319909116176c0100000000000000000000000060ff8716021760ff60681b19166d0100000000000000000000000000851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301620004628382620008c0565b5050505050505050565b6200047662000363565b620001068162000549565b6200048b62000363565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620004ba62000363565b620004c5816200055e565b620004cf6200067a565b6001600160a01b038216620004f75760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b6200055362000363565b6200010681620006c2565b6200056862000363565b806001600160a01b03163b600003620005a45760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801562000621575060408051601f3d908101601f191682019092526200061e918101906200098c565b60015b6200064b5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200059b565b80620006765760405163fdeac91f60e01b81526001600160a01b03831660048201526024016200059b565b5050565b6200068462000363565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b80516001600160a01b03811681146200074d57600080fd5b919050565b80516001600160601b03811681146200074d57600080fd5b6000806000606084860312156200078057600080fd5b6200078b8462000735565b92506200079b6020850162000752565b9150620007ab6040850162000735565b90509250925092565b600060208284031215620007c757600080fd5b620007d28262000752565b9392505050565b600060208284031215620007ec57600080fd5b815160ff81168114620007d257600080fd5b6000602082840312156200081157600080fd5b620007d28262000735565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200084757607f821691505b6020821081036200086857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035e57600081815260208120601f850160051c81016020861015620008975750805b601f850160051c820191505b81811015620008b857828155600101620008a3565b505050505050565b81516001600160401b03811115620008dc57620008dc6200081c565b620008f481620008ed845462000832565b846200086e565b602080601f8311600181146200092c5760008415620009135750858301515b600019600386901b1c1916600185901b178555620008b8565b600085815260208120601f198616915b828110156200095d578886015182559484019460019091019084016200093c565b50858210156200097c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200099f57600080fd5b81518015158114620007d257600080fd5b6117cf80620009c06000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063644c45e0116100b85780638fb360371161007c5780638fb36037146102db578063a3f4df7e146102fc578063ada9652e14610333578063b68d180914610348578063bf7e214f14610357578063f7c34ee01461037557600080fd5b8063644c45e014610272578063675393bf1461029a5780637a9e5e4b146102ad578063893d20e8146102c05780638e32e979146102c857600080fd5b8063214cdb801161010a578063214cdb80146101f957806327bb7a331461020c578063329d6e741461021f57806336fc697e1461023257806349bb9e4b1461023a5780635ab1bd531461024d57600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101ba5780631eff4b22146101c4575b600080fd5b610174610155366004611190565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610191610388565b60405162ffffff9091168152602001610180565b6101ad610412565b6040516101809190611207565b6101c2610565565b005b6101eb7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b6101c2610207366004611190565b61076c565b6101c261021a36600461137c565b610799565b6101c261022d366004611415565b61083e565b6101c26109a0565b6101c261024836600461144a565b6109e6565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b60008051602061175a833981519152546040516001600160601b039091168152602001610180565b6101c26102a836600461149a565b610af8565b6101c26102bb36600461149a565b610c06565b61025a610ca0565b6101c26102d63660046114b7565b610dd7565b6102e3611010565b6040516001600160e01b03199091168152602001610180565b6103266040518060400160405280600b81526020016a546573745365727669636560a81b81525081565b6040516101809190611502565b6101eb60008051602061175a83398151915281565b604051606e8152602001610180565b60008051602061177a833981519152546001600160a01b031661025a565b6101c2610383366004611515565b611048565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156103e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040d919061154e565b905090565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016104c1610ca0565b6001600160a01b031681526020018260010180546104de90611573565b80601f016020809104026020016040519081016040528092919081815260200182805461050a90611573565b80156105575780601f1061052c57610100808354040283529160200191610557565b820191906000526020600020905b81548152906001019060200180831161053a57829003601f168201915b505050505081525091505090565b600060008051602061175a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f891906115ad565b156106295780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061063c6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a891906115ad565b6106d05760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610620565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610724573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074891906115ca565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6107746110bf565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6107a16110bf565b6107ab8287611048565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016108348382611635565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610860610388565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156108a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c491906116f5565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff168061090a5750805467ffffffffffffffff808416911610155b156109285760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff191667ffffffffffffffff831617600160401b1781556109538361110a565b805460ff60401b1916815560405167ffffffffffffffff831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6109a86110bf565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015610a2c5750825b905060008267ffffffffffffffff166001148015610a495750303b155b905081158015610a57575080155b15610a755760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610a9f57845460ff60401b1916600160401b1785555b610aa9878761110a565b8315610aef57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b610b006110bf565b806001600160a01b03163b600003610b365760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610620565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610bb0575060408051601f3d908101601f19168201909252610bad918101906115ad565b60015b610bd85760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610620565b80610c015760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610620565b505b50565b33610c2660008051602061177a833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610c615760405162d1953b60e31b81526001600160a01b0382166004820152602401610620565b816001600160a01b03163b600003610c97576040516361798f2f60e11b81526001600160a01b0383166004820152602401610620565b610c0182611112565b60008060008051602061175a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610d10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3491906115ad565b15610dc1576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbb919061171f565b91505090565b54600160601b90046001600160a01b0316919050565b610ddf6110bf565b610e5f83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4591906115ca565b603c60008560405180602001604052806000815250610799565b6001600160a01b03821615610e7c57610e7782611173565b610feb565b6000610e906001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015610ef0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f14919061173c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015610f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7d919061171f565b9050610fe9816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe4919061171f565b611173565b505b610ffb634a531f3360e01b61076c565b61100b63b68d180960e01b61076c565b505050565b60008051602061177a833981519152805460009190600160a01b900460ff1661103a576000610dbb565b638fb3603760e01b91505090565b6110506110bf565b61105981610af8565b6110616109a0565b6001600160a01b0382166110885760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061175a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661110857604051631afcd79f60e31b815260040160405180910390fd5b565b6101426110bf565b60008051602061177a83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61117b6110bf565b610c03816111876110bf565b610c0381611112565b6000602082840312156111a257600080fd5b81356001600160e01b0319811681146111ba57600080fd5b9392505050565b6000815180845260005b818110156111e7576020818501810151868301820152016111cb565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161127060c08401826001600160a01b03169052565b5060c083015160e08084015261128a6101008401826111c1565b949350505050565b6001600160a01b0381168114610c0357600080fd5b6001600160601b0381168114610c0357600080fd5b60ff81168114610c0357600080fd5b8015158114610c0357600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f83011261130057600080fd5b813567ffffffffffffffff8082111561131b5761131b6112d9565b604051601f8301601f19908116603f01168101908282118183101715611343576113436112d9565b8160405283815286602085880101111561135c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060008060c0878903121561139557600080fd5b86356113a081611292565b955060208701356113b0816112a7565b945060408701356113c0816112bc565b935060608701356113d0816112cb565b925060808701356113e081611292565b915060a087013567ffffffffffffffff8111156113fc57600080fd5b61140889828a016112ef565b9150509295509295509295565b60006020828403121561142757600080fd5b813567ffffffffffffffff81111561143e57600080fd5b61128a848285016112ef565b6000806040838503121561145d57600080fd5b823561146881611292565b9150602083013567ffffffffffffffff81111561148457600080fd5b611490858286016112ef565b9150509250929050565b6000602082840312156114ac57600080fd5b81356111ba81611292565b6000806000606084860312156114cc57600080fd5b83356114d781611292565b925060208401356114e781611292565b915060408401356114f781611292565b809150509250925092565b6020815260006111ba60208301846111c1565b6000806040838503121561152857600080fd5b823561153381611292565b9150602083013561154381611292565b809150509250929050565b60006020828403121561156057600080fd5b815162ffffff811681146111ba57600080fd5b600181811c9082168061158757607f821691505b6020821081036115a757634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156115bf57600080fd5b81516111ba816112cb565b6000602082840312156115dc57600080fd5b81516111ba816112a7565b601f82111561100b57600081815260208120601f850160051c8101602086101561160e5750805b601f850160051c820191505b8181101561162d5782815560010161161a565b505050505050565b815167ffffffffffffffff81111561164f5761164f6112d9565b6116638161165d8454611573565b846115e7565b602080601f83116001811461169857600084156116805750858301515b600019600386901b1c1916600185901b17855561162d565b600085815260208120601f198616915b828110156116c7578886015182559484019460019091019084016116a8565b50858210156116e55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561170757600080fd5b815167ffffffffffffffff811681146111ba57600080fd5b60006020828403121561173157600080fd5b81516111ba81611292565b60006020828403121561174e57600080fd5b81516111ba816112bc56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122060c1b5aa5d6ecdb6fe45c3160ba0c883669d21c5fa300b4435bc6f685f88b86f64736f6c63430008140033",
|
519
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063644c45e0116100b85780638fb360371161007c5780638fb36037146102db578063a3f4df7e146102fc578063ada9652e14610333578063b68d180914610348578063bf7e214f14610357578063f7c34ee01461037557600080fd5b8063644c45e014610272578063675393bf1461029a5780637a9e5e4b146102ad578063893d20e8146102c05780638e32e979146102c857600080fd5b8063214cdb801161010a578063214cdb80146101f957806327bb7a331461020c578063329d6e741461021f57806336fc697e1461023257806349bb9e4b1461023a5780635ab1bd531461024d57600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101ba5780631eff4b22146101c4575b600080fd5b610174610155366004611190565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610191610388565b60405162ffffff9091168152602001610180565b6101ad610412565b6040516101809190611207565b6101c2610565565b005b6101eb7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b6101c2610207366004611190565b61076c565b6101c261021a36600461137c565b610799565b6101c261022d366004611415565b61083e565b6101c26109a0565b6101c261024836600461144a565b6109e6565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b60008051602061175a833981519152546040516001600160601b039091168152602001610180565b6101c26102a836600461149a565b610af8565b6101c26102bb36600461149a565b610c06565b61025a610ca0565b6101c26102d63660046114b7565b610dd7565b6102e3611010565b6040516001600160e01b03199091168152602001610180565b6103266040518060400160405280600b81526020016a546573745365727669636560a81b81525081565b6040516101809190611502565b6101eb60008051602061175a83398151915281565b604051606e8152602001610180565b60008051602061177a833981519152546001600160a01b031661025a565b6101c2610383366004611515565b611048565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156103e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040d919061154e565b905090565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016104c1610ca0565b6001600160a01b031681526020018260010180546104de90611573565b80601f016020809104026020016040519081016040528092919081815260200182805461050a90611573565b80156105575780601f1061052c57610100808354040283529160200191610557565b820191906000526020600020905b81548152906001019060200180831161053a57829003601f168201915b505050505081525091505090565b600060008051602061175a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f891906115ad565b156106295780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061063c6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a891906115ad565b6106d05760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610620565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610724573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074891906115ca565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6107746110bf565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6107a16110bf565b6107ab8287611048565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016108348382611635565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610860610388565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156108a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c491906116f5565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff168061090a5750805467ffffffffffffffff808416911610155b156109285760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff191667ffffffffffffffff831617600160401b1781556109538361110a565b805460ff60401b1916815560405167ffffffffffffffff831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6109a86110bf565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015610a2c5750825b905060008267ffffffffffffffff166001148015610a495750303b155b905081158015610a57575080155b15610a755760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610a9f57845460ff60401b1916600160401b1785555b610aa9878761110a565b8315610aef57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b610b006110bf565b806001600160a01b03163b600003610b365760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610620565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610bb0575060408051601f3d908101601f19168201909252610bad918101906115ad565b60015b610bd85760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610620565b80610c015760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610620565b505b50565b33610c2660008051602061177a833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610c615760405162d1953b60e31b81526001600160a01b0382166004820152602401610620565b816001600160a01b03163b600003610c97576040516361798f2f60e11b81526001600160a01b0383166004820152602401610620565b610c0182611112565b60008060008051602061175a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610d10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3491906115ad565b15610dc1576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbb919061171f565b91505090565b54600160601b90046001600160a01b0316919050565b610ddf6110bf565b610e5f83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4591906115ca565b603c60008560405180602001604052806000815250610799565b6001600160a01b03821615610e7c57610e7782611173565b610feb565b6000610e906001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015610ef0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f14919061173c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015610f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7d919061171f565b9050610fe9816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe4919061171f565b611173565b505b610ffb634a531f3360e01b61076c565b61100b63b68d180960e01b61076c565b505050565b60008051602061177a833981519152805460009190600160a01b900460ff1661103a576000610dbb565b638fb3603760e01b91505090565b6110506110bf565b61105981610af8565b6110616109a0565b6001600160a01b0382166110885760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061175a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661110857604051631afcd79f60e31b815260040160405180910390fd5b565b6101426110bf565b60008051602061177a83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61117b6110bf565b610c03816111876110bf565b610c0381611112565b6000602082840312156111a257600080fd5b81356001600160e01b0319811681146111ba57600080fd5b9392505050565b6000815180845260005b818110156111e7576020818501810151868301820152016111cb565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161127060c08401826001600160a01b03169052565b5060c083015160e08084015261128a6101008401826111c1565b949350505050565b6001600160a01b0381168114610c0357600080fd5b6001600160601b0381168114610c0357600080fd5b60ff81168114610c0357600080fd5b8015158114610c0357600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f83011261130057600080fd5b813567ffffffffffffffff8082111561131b5761131b6112d9565b604051601f8301601f19908116603f01168101908282118183101715611343576113436112d9565b8160405283815286602085880101111561135c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060008060c0878903121561139557600080fd5b86356113a081611292565b955060208701356113b0816112a7565b945060408701356113c0816112bc565b935060608701356113d0816112cb565b925060808701356113e081611292565b915060a087013567ffffffffffffffff8111156113fc57600080fd5b61140889828a016112ef565b9150509295509295509295565b60006020828403121561142757600080fd5b813567ffffffffffffffff81111561143e57600080fd5b61128a848285016112ef565b6000806040838503121561145d57600080fd5b823561146881611292565b9150602083013567ffffffffffffffff81111561148457600080fd5b611490858286016112ef565b9150509250929050565b6000602082840312156114ac57600080fd5b81356111ba81611292565b6000806000606084860312156114cc57600080fd5b83356114d781611292565b925060208401356114e781611292565b915060408401356114f781611292565b809150509250925092565b6020815260006111ba60208301846111c1565b6000806040838503121561152857600080fd5b823561153381611292565b9150602083013561154381611292565b809150509250929050565b60006020828403121561156057600080fd5b815162ffffff811681146111ba57600080fd5b600181811c9082168061158757607f821691505b6020821081036115a757634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156115bf57600080fd5b81516111ba816112cb565b6000602082840312156115dc57600080fd5b81516111ba816112a7565b601f82111561100b57600081815260208120601f850160051c8101602086101561160e5750805b601f850160051c820191505b8181101561162d5782815560010161161a565b505050505050565b815167ffffffffffffffff81111561164f5761164f6112d9565b6116638161165d8454611573565b846115e7565b602080601f83116001811461169857600084156116805750858301515b600019600386901b1c1916600185901b17855561162d565b600085815260208120601f198616915b828110156116c7578886015182559484019460019091019084016116a8565b50858210156116e55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561170757600080fd5b815167ffffffffffffffff811681146111ba57600080fd5b60006020828403121561173157600080fd5b81516111ba81611292565b60006020828403121561174e57600080fd5b81516111ba816112bc56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122060c1b5aa5d6ecdb6fe45c3160ba0c883669d21c5fa300b4435bc6f685f88b86f64736f6c63430008140033",
|
520
|
+
"linkReferences": {
|
521
|
+
"contracts/types/NftId.sol": {
|
522
|
+
"NftIdLib": [
|
523
|
+
{
|
524
|
+
"length": 20,
|
525
|
+
"start": 3930
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"length": 20,
|
529
|
+
"start": 5782
|
530
|
+
}
|
531
|
+
]
|
532
|
+
},
|
533
|
+
"contracts/types/Version.sol": {
|
534
|
+
"VersionLib": [
|
535
|
+
{
|
536
|
+
"length": 20,
|
537
|
+
"start": 3439
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"length": 20,
|
541
|
+
"start": 4608
|
542
|
+
}
|
543
|
+
],
|
544
|
+
"VersionPartLib": [
|
545
|
+
{
|
546
|
+
"length": 20,
|
547
|
+
"start": 506
|
548
|
+
},
|
549
|
+
{
|
550
|
+
"length": 20,
|
551
|
+
"start": 6262
|
552
|
+
}
|
553
|
+
]
|
554
|
+
}
|
555
|
+
},
|
556
|
+
"deployedLinkReferences": {
|
557
|
+
"contracts/types/NftId.sol": {
|
558
|
+
"NftIdLib": [
|
559
|
+
{
|
560
|
+
"length": 20,
|
561
|
+
"start": 1434
|
562
|
+
},
|
563
|
+
{
|
564
|
+
"length": 20,
|
565
|
+
"start": 3286
|
566
|
+
}
|
567
|
+
]
|
568
|
+
},
|
569
|
+
"contracts/types/Version.sol": {
|
570
|
+
"VersionLib": [
|
571
|
+
{
|
572
|
+
"length": 20,
|
573
|
+
"start": 943
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"length": 20,
|
577
|
+
"start": 2112
|
578
|
+
}
|
579
|
+
],
|
580
|
+
"VersionPartLib": [
|
581
|
+
{
|
582
|
+
"length": 20,
|
583
|
+
"start": 3766
|
584
|
+
}
|
585
|
+
]
|
586
|
+
}
|
587
|
+
}
|
588
|
+
}
|