@etherisc/gif-next 0.0.2-aa0bd77 → 0.0.2-aad7ee0-660
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +297 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +314 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +610 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +267 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +249 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → components/IProductComponent.sol/IProductComponent.json} +81 -86
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +620 -41
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +594 -53
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- 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 +4 -0
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +114 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +282 -730
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +3053 -533
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +930 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1283 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +755 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +432 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +481 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/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 +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/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/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
- 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/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +617 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +428 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +261 -96
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +872 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +497 -89
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1261 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +504 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +148 -5
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +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 +249 -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 +30 -0
- package/contracts/components/BaseComponent.sol +86 -0
- package/contracts/components/Distribution.sol +166 -0
- package/contracts/components/IBaseComponent.sol +24 -0
- package/contracts/components/IDistributionComponent.sol +43 -0
- package/contracts/components/IPoolComponent.sol +62 -0
- package/contracts/components/IProductComponent.sol +35 -0
- package/contracts/components/Pool.sol +248 -18
- package/contracts/components/Product.sol +267 -35
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/experiment/errors/Require.sol +38 -0
- package/contracts/experiment/errors/Revert.sol +44 -0
- package/contracts/experiment/inheritance/A.sol +8 -11
- package/contracts/experiment/inheritance/B.sol +10 -5
- package/contracts/experiment/inheritance/C.sol +11 -5
- package/contracts/experiment/inheritance/IA.sol +2 -7
- package/contracts/experiment/inheritance/IB.sol +3 -2
- package/contracts/experiment/inheritance/IC.sol +4 -3
- package/contracts/experiment/statemachine/Dummy.sol +27 -0
- package/contracts/experiment/statemachine/ISM.sol +25 -0
- package/contracts/experiment/statemachine/SM.sol +57 -0
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
- package/contracts/experiment/types/TypeA.sol +14 -9
- package/contracts/experiment/types/TypeB.sol +14 -9
- package/contracts/instance/AccessManagedSimple.sol +122 -0
- package/contracts/instance/AccessManagerSimple.sol +692 -0
- package/contracts/instance/IAccessManagerSimple.sol +391 -0
- package/contracts/instance/IInstance.sol +28 -15
- package/contracts/instance/IInstanceService.sol +30 -0
- package/contracts/instance/Instance.sol +422 -43
- package/contracts/instance/InstanceAccessManager.sol +288 -0
- package/contracts/instance/InstanceReader.sol +290 -0
- package/contracts/instance/InstanceService.sol +138 -0
- package/contracts/instance/InstanceServiceManager.sol +56 -0
- package/contracts/instance/base/ComponentServiceBase.sol +39 -0
- package/contracts/instance/base/IInstanceBase.sol +23 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +38 -0
- package/contracts/instance/module/IBundle.sol +19 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +43 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ComponentOwnerService.sol +317 -0
- package/contracts/instance/service/DistributionService.sol +73 -0
- package/contracts/instance/service/DistributionServiceManager.sol +53 -0
- package/contracts/instance/service/IComponentOwnerService.sol +20 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +107 -0
- package/contracts/registry/ChainNft.sol +138 -109
- package/contracts/registry/IRegistry.sol +46 -56
- package/contracts/registry/IRegistryService.sol +35 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +362 -115
- package/contracts/registry/RegistryService.sol +444 -0
- package/contracts/registry/RegistryServiceManager.sol +64 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +21 -0
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +17 -0
- package/contracts/shared/IService.sol +15 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +136 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +89 -0
- package/contracts/shared/RegisterableUpgradable.sol +16 -0
- package/contracts/shared/Service.sol +54 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +24 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Blocknumber.sol +118 -0
- package/contracts/types/ChainId.sol +24 -10
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +56 -0
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +55 -8
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +152 -0
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +82 -0
- package/contracts/types/StateId.sol +105 -0
- package/contracts/types/Timestamp.sol +127 -0
- package/contracts/types/UFixed.sol +325 -0
- package/contracts/types/Version.sol +104 -0
- package/package.json +21 -6
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -179
- 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/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/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/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/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/Component.sol +0 -62
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.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
- package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,617 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "DistributionService",
|
4
|
+
"sourceName": "contracts/instance/service/DistributionService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registry",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "NftId",
|
15
|
+
"name": "nftId",
|
16
|
+
"type": "uint96"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"name": "ErrorAlreadyLinked",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [
|
24
|
+
{
|
25
|
+
"internalType": "address",
|
26
|
+
"name": "contractAddress",
|
27
|
+
"type": "address"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "ErrorContractNotRegistered",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "account",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "ErrorNotOwner",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "registryAddress",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorNotRegistry",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "registryAddress",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorRegisterableNotRegistry",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [],
|
68
|
+
"name": "ErrorRegistryAddressZero",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "address",
|
75
|
+
"name": "registry",
|
76
|
+
"type": "address"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [],
|
84
|
+
"name": "ErrorRegistryNotInitialized",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "InvalidInitialization",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [],
|
94
|
+
"name": "NotInitializing",
|
95
|
+
"type": "error"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"anonymous": false,
|
99
|
+
"inputs": [
|
100
|
+
{
|
101
|
+
"indexed": false,
|
102
|
+
"internalType": "uint64",
|
103
|
+
"name": "version",
|
104
|
+
"type": "uint64"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"name": "Initialized",
|
108
|
+
"type": "event"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"anonymous": false,
|
112
|
+
"inputs": [
|
113
|
+
{
|
114
|
+
"indexed": false,
|
115
|
+
"internalType": "Version",
|
116
|
+
"name": "version",
|
117
|
+
"type": "uint24"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"indexed": false,
|
121
|
+
"internalType": "address",
|
122
|
+
"name": "implementation",
|
123
|
+
"type": "address"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"indexed": false,
|
127
|
+
"internalType": "address",
|
128
|
+
"name": "activatedBy",
|
129
|
+
"type": "address"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"name": "LogVersionableInitialized",
|
133
|
+
"type": "event"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"inputs": [],
|
137
|
+
"name": "NAME",
|
138
|
+
"outputs": [
|
139
|
+
{
|
140
|
+
"internalType": "string",
|
141
|
+
"name": "",
|
142
|
+
"type": "string"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"stateMutability": "view",
|
146
|
+
"type": "function"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [],
|
150
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
151
|
+
"outputs": [
|
152
|
+
{
|
153
|
+
"internalType": "bytes32",
|
154
|
+
"name": "",
|
155
|
+
"type": "bytes32"
|
156
|
+
}
|
157
|
+
],
|
158
|
+
"stateMutability": "view",
|
159
|
+
"type": "function"
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"inputs": [],
|
163
|
+
"name": "getInitialInfo",
|
164
|
+
"outputs": [
|
165
|
+
{
|
166
|
+
"components": [
|
167
|
+
{
|
168
|
+
"internalType": "NftId",
|
169
|
+
"name": "nftId",
|
170
|
+
"type": "uint96"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"internalType": "NftId",
|
174
|
+
"name": "parentNftId",
|
175
|
+
"type": "uint96"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"internalType": "ObjectType",
|
179
|
+
"name": "objectType",
|
180
|
+
"type": "uint8"
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"internalType": "bool",
|
184
|
+
"name": "isInterceptor",
|
185
|
+
"type": "bool"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"internalType": "address",
|
189
|
+
"name": "objectAddress",
|
190
|
+
"type": "address"
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"internalType": "address",
|
194
|
+
"name": "initialOwner",
|
195
|
+
"type": "address"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"internalType": "bytes",
|
199
|
+
"name": "data",
|
200
|
+
"type": "bytes"
|
201
|
+
}
|
202
|
+
],
|
203
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
204
|
+
"name": "",
|
205
|
+
"type": "tuple"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"internalType": "bytes",
|
209
|
+
"name": "data",
|
210
|
+
"type": "bytes"
|
211
|
+
}
|
212
|
+
],
|
213
|
+
"stateMutability": "view",
|
214
|
+
"type": "function"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"inputs": [],
|
218
|
+
"name": "getInitializedVersion",
|
219
|
+
"outputs": [
|
220
|
+
{
|
221
|
+
"internalType": "uint64",
|
222
|
+
"name": "",
|
223
|
+
"type": "uint64"
|
224
|
+
}
|
225
|
+
],
|
226
|
+
"stateMutability": "view",
|
227
|
+
"type": "function"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"inputs": [],
|
231
|
+
"name": "getMajorVersion",
|
232
|
+
"outputs": [
|
233
|
+
{
|
234
|
+
"internalType": "VersionPart",
|
235
|
+
"name": "majorVersion",
|
236
|
+
"type": "uint8"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"stateMutability": "view",
|
240
|
+
"type": "function"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"inputs": [],
|
244
|
+
"name": "getName",
|
245
|
+
"outputs": [
|
246
|
+
{
|
247
|
+
"internalType": "string",
|
248
|
+
"name": "name",
|
249
|
+
"type": "string"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"stateMutability": "pure",
|
253
|
+
"type": "function"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"inputs": [],
|
257
|
+
"name": "getNftId",
|
258
|
+
"outputs": [
|
259
|
+
{
|
260
|
+
"internalType": "NftId",
|
261
|
+
"name": "",
|
262
|
+
"type": "uint96"
|
263
|
+
}
|
264
|
+
],
|
265
|
+
"stateMutability": "view",
|
266
|
+
"type": "function"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"inputs": [],
|
270
|
+
"name": "getOwner",
|
271
|
+
"outputs": [
|
272
|
+
{
|
273
|
+
"internalType": "address",
|
274
|
+
"name": "",
|
275
|
+
"type": "address"
|
276
|
+
}
|
277
|
+
],
|
278
|
+
"stateMutability": "view",
|
279
|
+
"type": "function"
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"inputs": [],
|
283
|
+
"name": "getRegistry",
|
284
|
+
"outputs": [
|
285
|
+
{
|
286
|
+
"internalType": "contract IRegistry",
|
287
|
+
"name": "",
|
288
|
+
"type": "address"
|
289
|
+
}
|
290
|
+
],
|
291
|
+
"stateMutability": "view",
|
292
|
+
"type": "function"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"inputs": [],
|
296
|
+
"name": "getRegistryService",
|
297
|
+
"outputs": [
|
298
|
+
{
|
299
|
+
"internalType": "contract IRegistryService",
|
300
|
+
"name": "",
|
301
|
+
"type": "address"
|
302
|
+
}
|
303
|
+
],
|
304
|
+
"stateMutability": "view",
|
305
|
+
"type": "function"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"inputs": [],
|
309
|
+
"name": "getVersion",
|
310
|
+
"outputs": [
|
311
|
+
{
|
312
|
+
"internalType": "Version",
|
313
|
+
"name": "",
|
314
|
+
"type": "uint24"
|
315
|
+
}
|
316
|
+
],
|
317
|
+
"stateMutability": "pure",
|
318
|
+
"type": "function"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"inputs": [
|
322
|
+
{
|
323
|
+
"internalType": "uint256",
|
324
|
+
"name": "idx",
|
325
|
+
"type": "uint256"
|
326
|
+
}
|
327
|
+
],
|
328
|
+
"name": "getVersion",
|
329
|
+
"outputs": [
|
330
|
+
{
|
331
|
+
"internalType": "Version",
|
332
|
+
"name": "",
|
333
|
+
"type": "uint24"
|
334
|
+
}
|
335
|
+
],
|
336
|
+
"stateMutability": "view",
|
337
|
+
"type": "function"
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"inputs": [],
|
341
|
+
"name": "getVersionCount",
|
342
|
+
"outputs": [
|
343
|
+
{
|
344
|
+
"internalType": "uint256",
|
345
|
+
"name": "",
|
346
|
+
"type": "uint256"
|
347
|
+
}
|
348
|
+
],
|
349
|
+
"stateMutability": "view",
|
350
|
+
"type": "function"
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"inputs": [
|
354
|
+
{
|
355
|
+
"internalType": "Version",
|
356
|
+
"name": "_version",
|
357
|
+
"type": "uint24"
|
358
|
+
}
|
359
|
+
],
|
360
|
+
"name": "getVersionInfo",
|
361
|
+
"outputs": [
|
362
|
+
{
|
363
|
+
"components": [
|
364
|
+
{
|
365
|
+
"internalType": "Version",
|
366
|
+
"name": "version",
|
367
|
+
"type": "uint24"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"internalType": "address",
|
371
|
+
"name": "implementation",
|
372
|
+
"type": "address"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"internalType": "address",
|
376
|
+
"name": "activatedBy",
|
377
|
+
"type": "address"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"internalType": "Timestamp",
|
381
|
+
"name": "activatedAt",
|
382
|
+
"type": "uint40"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"internalType": "Blocknumber",
|
386
|
+
"name": "activatedIn",
|
387
|
+
"type": "uint32"
|
388
|
+
}
|
389
|
+
],
|
390
|
+
"internalType": "struct IVersionable.VersionInfo",
|
391
|
+
"name": "",
|
392
|
+
"type": "tuple"
|
393
|
+
}
|
394
|
+
],
|
395
|
+
"stateMutability": "view",
|
396
|
+
"type": "function"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"inputs": [
|
400
|
+
{
|
401
|
+
"internalType": "address",
|
402
|
+
"name": "implementation",
|
403
|
+
"type": "address"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"internalType": "address",
|
407
|
+
"name": "activatedBy",
|
408
|
+
"type": "address"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"internalType": "bytes",
|
412
|
+
"name": "data",
|
413
|
+
"type": "bytes"
|
414
|
+
}
|
415
|
+
],
|
416
|
+
"name": "initialize",
|
417
|
+
"outputs": [],
|
418
|
+
"stateMutability": "nonpayable",
|
419
|
+
"type": "function"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"inputs": [
|
423
|
+
{
|
424
|
+
"internalType": "Version",
|
425
|
+
"name": "_version",
|
426
|
+
"type": "uint24"
|
427
|
+
}
|
428
|
+
],
|
429
|
+
"name": "isInitialized",
|
430
|
+
"outputs": [
|
431
|
+
{
|
432
|
+
"internalType": "bool",
|
433
|
+
"name": "",
|
434
|
+
"type": "bool"
|
435
|
+
}
|
436
|
+
],
|
437
|
+
"stateMutability": "view",
|
438
|
+
"type": "function"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"inputs": [],
|
442
|
+
"name": "linkToRegisteredNftId",
|
443
|
+
"outputs": [],
|
444
|
+
"stateMutability": "nonpayable",
|
445
|
+
"type": "function"
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"inputs": [
|
449
|
+
{
|
450
|
+
"components": [
|
451
|
+
{
|
452
|
+
"internalType": "UFixed",
|
453
|
+
"name": "fractionalFee",
|
454
|
+
"type": "uint256"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"internalType": "uint256",
|
458
|
+
"name": "fixedFee",
|
459
|
+
"type": "uint256"
|
460
|
+
}
|
461
|
+
],
|
462
|
+
"internalType": "struct Fee",
|
463
|
+
"name": "distributionFee",
|
464
|
+
"type": "tuple"
|
465
|
+
}
|
466
|
+
],
|
467
|
+
"name": "setFees",
|
468
|
+
"outputs": [],
|
469
|
+
"stateMutability": "nonpayable",
|
470
|
+
"type": "function"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"inputs": [
|
474
|
+
{
|
475
|
+
"internalType": "bytes4",
|
476
|
+
"name": "interfaceId",
|
477
|
+
"type": "bytes4"
|
478
|
+
}
|
479
|
+
],
|
480
|
+
"name": "supportsInterface",
|
481
|
+
"outputs": [
|
482
|
+
{
|
483
|
+
"internalType": "bool",
|
484
|
+
"name": "",
|
485
|
+
"type": "bool"
|
486
|
+
}
|
487
|
+
],
|
488
|
+
"stateMutability": "view",
|
489
|
+
"type": "function"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"inputs": [
|
493
|
+
{
|
494
|
+
"internalType": "address",
|
495
|
+
"name": "implementation",
|
496
|
+
"type": "address"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"internalType": "address",
|
500
|
+
"name": "activatedBy",
|
501
|
+
"type": "address"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"internalType": "bytes",
|
505
|
+
"name": "data",
|
506
|
+
"type": "bytes"
|
507
|
+
}
|
508
|
+
],
|
509
|
+
"name": "upgrade",
|
510
|
+
"outputs": [],
|
511
|
+
"stateMutability": "nonpayable",
|
512
|
+
"type": "function"
|
513
|
+
}
|
514
|
+
],
|
515
|
+
"bytecode": "0x608060405234801561001057600080fd5b506301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055600280546001600160a01b0319163317905561006761006c565b61011e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100bc5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161461011b5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612317806200012e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063644c45e0116100ad578063b3c6501511610071578063b3c650151461041f578063b88da7591461043f578063caf4e3d414610452578063cde749f41461045a578063cf7a1d771461047457600080fd5b8063644c45e014610380578063893d20e8146103ab578063946dfcfe146103b3578063a3f4df7e146103da578063a745e3df1461040c57600080fd5b80631eff4b22116100f45780631eff4b22146101e75780633f52c0f61461021c5780634d459c901461022f5780634f421333146103485780635ab1bd531461035b57600080fd5b806301ffc9a7146101315780630d8e6e2c146101735780630fec111c1461018f578063138461e0146101a557806317d7de7c146101af575b600080fd5b61015e61013f366004611aa7565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017b610487565b60405162ffffff909116815260200161016a565b610197610511565b60405161016a929190611b28565b6101ad610697565b005b604080518082019091526013815272446973747269627574696f6e5365727669636560681b60208201525b60405161016a9190611bcf565b61020e7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016a565b6101ad61022a366004611c72565b6108b9565b6102eb61023d366004611cb5565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206122c283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161016a565b61015e610356366004611cb5565b610a69565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161016a565b600154600160a01b90046001600160601b03166040516001600160601b03909116815260200161016a565b610368610b1c565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461020e565b6101da60405180604001604052806013815260200172446973747269627574696f6e5365727669636560681b81525081565b6101ad61041a366004611d0e565b610c35565b610427610d8f565b6040516001600160401b03909116815260200161016a565b61017b61044d366004611db2565b610db0565b610368610e01565b610462610ebc565b60405160ff909116815260200161016a565b6101ad610482366004611d0e565b610f3f565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190611dcb565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105986001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105e0610b1c565b6001600160a01b031681526020018260010180546105fd90611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461062990611de8565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156106f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071d9190611e37565b15610764576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661078d5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156107d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fa9190611e37565b610822576040516372657a5160e01b81526001600160a01b038216600482015260240161075b565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561086c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108909190611e69565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108c66078611048565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e9190611e84565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa158015610984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a89190611eac565b6040818101888152815163bd5947e360e01b81526001600160601b03808716600483015284511660248201526020808501516001600160a01b039081166044840152925180516064840152015160848201526060840151151560a48201526080840151821660c482015260ff60e4820152915192935086169163bd5947e3916101048082019260009290919082900301818387803b158015610a4957600080fd5b505af1158015610a5d573d6000803e3d6000fd5b50505050505050505050565b6000806000805160206122c283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b159190611f5f565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba59190611e37565b15610c2557600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190611e84565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610c57610487565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610c97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbb9190611f78565b6000805160206122a28339815191528054600160401b900460ff1680610cee575080546001600160401b03808416911610155b15610d0c5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610d378585611339565b610d40836115d8565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061050c6000805160206122a2833981519152546001600160401b031690565b60006000805160206122c28339815191526001018281548110610dd557610dd5611fa1565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080610e166001546001600160a01b031690565b6001600160a01b031663a3bcd81d610e2c610ebc565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015610e92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb69190611e84565b92915050565b6000610ec6610487565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610f1b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190611fd1565b6000805160206122a28339815191528054600160401b810460ff1615906001600160401b0316600081158015610f725750825b90506000826001600160401b03166001148015610f8e5750303b155b905081158015610f9c575080155b15610fba5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610fe457845460ff60401b1916600160401b1785555b610fee8888611339565b610ff887876115e0565b831561103e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156110d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f49190611e69565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561114f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111739190611e37565b6111bf5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161075b565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561121a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611242919081019061203b565b925061125883604001518560ff90811691161490565b61129a5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161075b565b60006112ae6001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611303573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261132b919081019061203b565b608001519395939450505050565b611341611736565b6000805160206122c283398151915260006113716000805160206122a2833981519152546001600160401b031690565b9050600061137d610487565b9050816001600160401b03166001036113aa5760028301805462ffffff191662ffffff83161790556113f8565b600283015462ffffff908116908216116113f85760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161075b565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af41580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d0919061210d565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610d809083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b61012c611736565b6000805160206122a28339815191528054600160401b810460ff1615906001600160401b03166000811580156116135750825b90506000826001600160401b0316600114801561162f5750303b155b90508115801561163d575080155b1561165b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561168557845460ff60401b1916600160401b1785555b60008680602001905181019061169b9190612134565b600380546001600160a01b039093166001600160a01b03199093168317905591506116c6908261176f565b6116d6631b4612f160e31b611800565b6116e6631fa9607b60e11b611800565b50831561172d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6000805160206122a283398151915254600160401b900460ff1661176d57604051631afcd79f60e31b815260040160405180910390fd5b565b60006117a1604080518082019091526013815272446973747269627574696f6e5365727669636560681b602082015290565b6117a9610ebc565b6040516020016117ba92919061216e565b604051602081830303815290604052905060006117d684611825565b905060006117e98583603c848888611890565b6117f9631b4612f160e31b611800565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa15801561186c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb69190611e69565b61189a828761191b565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161190a83826121e2565b5061172d6303fb044760e21b611800565b600280546001600160a01b0319166001600160a01b03841617905561193f81611943565b5050565b6001546001600160a01b03161561197c5760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161075b565b6001600160a01b0381166119a35760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036119d95760405163fdeac91f60e01b81526001600160a01b038216600482015260240161075b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611a53575060408051601f3d908101601f19168201909252611a5091810190611e37565b60015b611a7b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161075b565b8061193f5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161075b565b50565b600060208284031215611ab957600080fd5b81356001600160e01b031981168114611ad157600080fd5b9392505050565b60005b83811015611af3578181015183820152602001611adb565b50506000910152565b60008151808452611b14816020860160208601611ad8565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611b6c60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152611bb2610120840182611afc565b90508281036020840152611bc68185611afc565b95945050505050565b602081526000611ad16020830184611afc565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715611c1a57611c1a611be2565b60405290565b60405160e081016001600160401b0381118282101715611c1a57611c1a611be2565b604051601f8201601f191681016001600160401b0381118282101715611c6a57611c6a611be2565b604052919050565b600060408284031215611c8457600080fd5b611c8c611bf8565b82358152602083013560208201528091505092915050565b62ffffff81168114611aa457600080fd5b600060208284031215611cc757600080fd5b8135611ad181611ca4565b6001600160a01b0381168114611aa457600080fd5b60006001600160401b03821115611d0057611d00611be2565b50601f01601f191660200190565b600080600060608486031215611d2357600080fd5b8335611d2e81611cd2565b92506020840135611d3e81611cd2565b915060408401356001600160401b03811115611d5957600080fd5b8401601f81018613611d6a57600080fd5b8035611d7d611d7882611ce7565b611c42565b818152876020838501011115611d9257600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215611dc457600080fd5b5035919050565b600060208284031215611ddd57600080fd5b8151611ad181611ca4565b600181811c90821680611dfc57607f821691505b602082108103611e1c57634e487b7160e01b600052602260045260246000fd5b50919050565b80518015158114611e3257600080fd5b919050565b600060208284031215611e4957600080fd5b611ad182611e22565b80516001600160601b0381168114611e3257600080fd5b600060208284031215611e7b57600080fd5b611ad182611e52565b600060208284031215611e9657600080fd5b8151611ad181611cd2565b8051611e3281611cd2565b600081830360c0811215611ebf57600080fd5b60405160a081018181106001600160401b0382111715611ee157611ee1611be2565b604052611eed84611e52565b81526020840151611efd81611cd2565b60208201526040603f1983011215611f1457600080fd5b611f1c611bf8565b91506040840151825260608401516020830152816040820152611f4160808501611e22565b6060820152611f5260a08501611ea1565b6080820152949350505050565b600060208284031215611f7157600080fd5b5051919050565b600060208284031215611f8a57600080fd5b81516001600160401b0381168114611ad157600080fd5b634e487b7160e01b600052603260045260246000fd5b60ff81168114611aa457600080fd5b8051611e3281611fb7565b600060208284031215611fe357600080fd5b8151611ad181611fb7565b600082601f830112611fff57600080fd5b815161200d611d7882611ce7565b81815284602083860101111561202257600080fd5b612033826020830160208701611ad8565b949350505050565b60006020828403121561204d57600080fd5b81516001600160401b038082111561206457600080fd5b9083019060e0828603121561207857600080fd5b612080611c20565b61208983611e52565b815261209760208401611e52565b60208201526120a860408401611fc6565b60408201526120b960608401611e22565b60608201526120ca60808401611ea1565b60808201526120db60a08401611ea1565b60a082015260c0830151828111156120f257600080fd5b6120fe87828601611fee565b60c08301525095945050505050565b60006020828403121561211f57600080fd5b815164ffffffffff81168114611ad157600080fd5b6000806040838503121561214757600080fd5b825161215281611cd2565b602084015190925061216381611cd2565b809150509250929050565b6040815260006121816040830185611afc565b905060ff831660208301529392505050565b601f8211156121dd57600081815260208120601f850160051c810160208610156121ba5750805b601f850160051c820191505b818110156121d9578281556001016121c6565b5050505b505050565b81516001600160401b038111156121fb576121fb611be2565b61220f816122098454611de8565b84612193565b602080601f831160018114612244576000841561222c5750858301515b600019600386901b1c1916600185901b1785556121d9565b600085815260208120601f198616915b8281101561227357888601518255948401946001909101908401612254565b50858210156122915787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a26469706673582212207d2c86e1ecd35d2beba06d9eb608a25e453a7102980f4f13107d7b68ecabc9fb64736f6c63430008140033",
|
516
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063644c45e0116100ad578063b3c6501511610071578063b3c650151461041f578063b88da7591461043f578063caf4e3d414610452578063cde749f41461045a578063cf7a1d771461047457600080fd5b8063644c45e014610380578063893d20e8146103ab578063946dfcfe146103b3578063a3f4df7e146103da578063a745e3df1461040c57600080fd5b80631eff4b22116100f45780631eff4b22146101e75780633f52c0f61461021c5780634d459c901461022f5780634f421333146103485780635ab1bd531461035b57600080fd5b806301ffc9a7146101315780630d8e6e2c146101735780630fec111c1461018f578063138461e0146101a557806317d7de7c146101af575b600080fd5b61015e61013f366004611aa7565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017b610487565b60405162ffffff909116815260200161016a565b610197610511565b60405161016a929190611b28565b6101ad610697565b005b604080518082019091526013815272446973747269627574696f6e5365727669636560681b60208201525b60405161016a9190611bcf565b61020e7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016a565b6101ad61022a366004611c72565b6108b9565b6102eb61023d366004611cb5565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206122c283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161016a565b61015e610356366004611cb5565b610a69565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161016a565b600154600160a01b90046001600160601b03166040516001600160601b03909116815260200161016a565b610368610b1c565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461020e565b6101da60405180604001604052806013815260200172446973747269627574696f6e5365727669636560681b81525081565b6101ad61041a366004611d0e565b610c35565b610427610d8f565b6040516001600160401b03909116815260200161016a565b61017b61044d366004611db2565b610db0565b610368610e01565b610462610ebc565b60405160ff909116815260200161016a565b6101ad610482366004611d0e565b610f3f565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190611dcb565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105986001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105e0610b1c565b6001600160a01b031681526020018260010180546105fd90611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461062990611de8565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156106f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071d9190611e37565b15610764576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661078d5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156107d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fa9190611e37565b610822576040516372657a5160e01b81526001600160a01b038216600482015260240161075b565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561086c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108909190611e69565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108c66078611048565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e9190611e84565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa158015610984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a89190611eac565b6040818101888152815163bd5947e360e01b81526001600160601b03808716600483015284511660248201526020808501516001600160a01b039081166044840152925180516064840152015160848201526060840151151560a48201526080840151821660c482015260ff60e4820152915192935086169163bd5947e3916101048082019260009290919082900301818387803b158015610a4957600080fd5b505af1158015610a5d573d6000803e3d6000fd5b50505050505050505050565b6000806000805160206122c283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b159190611f5f565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba59190611e37565b15610c2557600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190611e84565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610c57610487565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610c97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbb9190611f78565b6000805160206122a28339815191528054600160401b900460ff1680610cee575080546001600160401b03808416911610155b15610d0c5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610d378585611339565b610d40836115d8565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061050c6000805160206122a2833981519152546001600160401b031690565b60006000805160206122c28339815191526001018281548110610dd557610dd5611fa1565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080610e166001546001600160a01b031690565b6001600160a01b031663a3bcd81d610e2c610ebc565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015610e92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb69190611e84565b92915050565b6000610ec6610487565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610f1b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190611fd1565b6000805160206122a28339815191528054600160401b810460ff1615906001600160401b0316600081158015610f725750825b90506000826001600160401b03166001148015610f8e5750303b155b905081158015610f9c575080155b15610fba5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610fe457845460ff60401b1916600160401b1785555b610fee8888611339565b610ff887876115e0565b831561103e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156110d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f49190611e69565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561114f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111739190611e37565b6111bf5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161075b565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561121a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611242919081019061203b565b925061125883604001518560ff90811691161490565b61129a5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161075b565b60006112ae6001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611303573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261132b919081019061203b565b608001519395939450505050565b611341611736565b6000805160206122c283398151915260006113716000805160206122a2833981519152546001600160401b031690565b9050600061137d610487565b9050816001600160401b03166001036113aa5760028301805462ffffff191662ffffff83161790556113f8565b600283015462ffffff908116908216116113f85760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161075b565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af41580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d0919061210d565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610d809083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b61012c611736565b6000805160206122a28339815191528054600160401b810460ff1615906001600160401b03166000811580156116135750825b90506000826001600160401b0316600114801561162f5750303b155b90508115801561163d575080155b1561165b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561168557845460ff60401b1916600160401b1785555b60008680602001905181019061169b9190612134565b600380546001600160a01b039093166001600160a01b03199093168317905591506116c6908261176f565b6116d6631b4612f160e31b611800565b6116e6631fa9607b60e11b611800565b50831561172d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6000805160206122a283398151915254600160401b900460ff1661176d57604051631afcd79f60e31b815260040160405180910390fd5b565b60006117a1604080518082019091526013815272446973747269627574696f6e5365727669636560681b602082015290565b6117a9610ebc565b6040516020016117ba92919061216e565b604051602081830303815290604052905060006117d684611825565b905060006117e98583603c848888611890565b6117f9631b4612f160e31b611800565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa15801561186c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb69190611e69565b61189a828761191b565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161190a83826121e2565b5061172d6303fb044760e21b611800565b600280546001600160a01b0319166001600160a01b03841617905561193f81611943565b5050565b6001546001600160a01b03161561197c5760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161075b565b6001600160a01b0381166119a35760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036119d95760405163fdeac91f60e01b81526001600160a01b038216600482015260240161075b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611a53575060408051601f3d908101601f19168201909252611a5091810190611e37565b60015b611a7b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161075b565b8061193f5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161075b565b50565b600060208284031215611ab957600080fd5b81356001600160e01b031981168114611ad157600080fd5b9392505050565b60005b83811015611af3578181015183820152602001611adb565b50506000910152565b60008151808452611b14816020860160208601611ad8565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611b6c60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152611bb2610120840182611afc565b90508281036020840152611bc68185611afc565b95945050505050565b602081526000611ad16020830184611afc565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715611c1a57611c1a611be2565b60405290565b60405160e081016001600160401b0381118282101715611c1a57611c1a611be2565b604051601f8201601f191681016001600160401b0381118282101715611c6a57611c6a611be2565b604052919050565b600060408284031215611c8457600080fd5b611c8c611bf8565b82358152602083013560208201528091505092915050565b62ffffff81168114611aa457600080fd5b600060208284031215611cc757600080fd5b8135611ad181611ca4565b6001600160a01b0381168114611aa457600080fd5b60006001600160401b03821115611d0057611d00611be2565b50601f01601f191660200190565b600080600060608486031215611d2357600080fd5b8335611d2e81611cd2565b92506020840135611d3e81611cd2565b915060408401356001600160401b03811115611d5957600080fd5b8401601f81018613611d6a57600080fd5b8035611d7d611d7882611ce7565b611c42565b818152876020838501011115611d9257600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215611dc457600080fd5b5035919050565b600060208284031215611ddd57600080fd5b8151611ad181611ca4565b600181811c90821680611dfc57607f821691505b602082108103611e1c57634e487b7160e01b600052602260045260246000fd5b50919050565b80518015158114611e3257600080fd5b919050565b600060208284031215611e4957600080fd5b611ad182611e22565b80516001600160601b0381168114611e3257600080fd5b600060208284031215611e7b57600080fd5b611ad182611e52565b600060208284031215611e9657600080fd5b8151611ad181611cd2565b8051611e3281611cd2565b600081830360c0811215611ebf57600080fd5b60405160a081018181106001600160401b0382111715611ee157611ee1611be2565b604052611eed84611e52565b81526020840151611efd81611cd2565b60208201526040603f1983011215611f1457600080fd5b611f1c611bf8565b91506040840151825260608401516020830152816040820152611f4160808501611e22565b6060820152611f5260a08501611ea1565b6080820152949350505050565b600060208284031215611f7157600080fd5b5051919050565b600060208284031215611f8a57600080fd5b81516001600160401b0381168114611ad157600080fd5b634e487b7160e01b600052603260045260246000fd5b60ff81168114611aa457600080fd5b8051611e3281611fb7565b600060208284031215611fe357600080fd5b8151611ad181611fb7565b600082601f830112611fff57600080fd5b815161200d611d7882611ce7565b81815284602083860101111561202257600080fd5b612033826020830160208701611ad8565b949350505050565b60006020828403121561204d57600080fd5b81516001600160401b038082111561206457600080fd5b9083019060e0828603121561207857600080fd5b612080611c20565b61208983611e52565b815261209760208401611e52565b60208201526120a860408401611fc6565b60408201526120b960608401611e22565b60608201526120ca60808401611ea1565b60808201526120db60a08401611ea1565b60a082015260c0830151828111156120f257600080fd5b6120fe87828601611fee565b60c08301525095945050505050565b60006020828403121561211f57600080fd5b815164ffffffffff81168114611ad157600080fd5b6000806040838503121561214757600080fd5b825161215281611cd2565b602084015190925061216381611cd2565b809150509250929050565b6040815260006121816040830185611afc565b905060ff831660208301529392505050565b601f8211156121dd57600081815260208120601f850160051c810160208610156121ba5750805b601f850160051c820191505b818110156121d9578281556001016121c6565b5050505b505050565b81516001600160401b038111156121fb576121fb611be2565b61220f816122098454611de8565b84612193565b602080601f831160018114612244576000841561222c5750858301515b600019600386901b1c1916600185901b1785556121d9565b600085815260208120601f198616915b8281101561227357888601518255948401946001909101908401612254565b50858210156122915787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a26469706673582212207d2c86e1ecd35d2beba06d9eb608a25e453a7102980f4f13107d7b68ecabc9fb64736f6c63430008140033",
|
517
|
+
"linkReferences": {
|
518
|
+
"contracts/types/Blocknumber.sol": {
|
519
|
+
"BlocknumberLib": [
|
520
|
+
{
|
521
|
+
"length": 20,
|
522
|
+
"start": 3045
|
523
|
+
}
|
524
|
+
]
|
525
|
+
},
|
526
|
+
"contracts/types/NftId.sol": {
|
527
|
+
"NftIdLib": [
|
528
|
+
{
|
529
|
+
"length": 20,
|
530
|
+
"start": 2029
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"length": 20,
|
534
|
+
"start": 3189
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"length": 20,
|
538
|
+
"start": 4675
|
539
|
+
}
|
540
|
+
]
|
541
|
+
},
|
542
|
+
"contracts/types/Timestamp.sol": {
|
543
|
+
"TimestampLib": [
|
544
|
+
{
|
545
|
+
"length": 20,
|
546
|
+
"start": 5536
|
547
|
+
}
|
548
|
+
]
|
549
|
+
},
|
550
|
+
"contracts/types/Version.sol": {
|
551
|
+
"VersionLib": [
|
552
|
+
{
|
553
|
+
"length": 20,
|
554
|
+
"start": 1500
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"length": 20,
|
558
|
+
"start": 3429
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"length": 20,
|
562
|
+
"start": 4111
|
563
|
+
}
|
564
|
+
]
|
565
|
+
}
|
566
|
+
},
|
567
|
+
"deployedLinkReferences": {
|
568
|
+
"contracts/types/Blocknumber.sol": {
|
569
|
+
"BlocknumberLib": [
|
570
|
+
{
|
571
|
+
"length": 20,
|
572
|
+
"start": 2743
|
573
|
+
}
|
574
|
+
]
|
575
|
+
},
|
576
|
+
"contracts/types/NftId.sol": {
|
577
|
+
"NftIdLib": [
|
578
|
+
{
|
579
|
+
"length": 20,
|
580
|
+
"start": 1727
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"length": 20,
|
584
|
+
"start": 2887
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"length": 20,
|
588
|
+
"start": 4373
|
589
|
+
}
|
590
|
+
]
|
591
|
+
},
|
592
|
+
"contracts/types/Timestamp.sol": {
|
593
|
+
"TimestampLib": [
|
594
|
+
{
|
595
|
+
"length": 20,
|
596
|
+
"start": 5234
|
597
|
+
}
|
598
|
+
]
|
599
|
+
},
|
600
|
+
"contracts/types/Version.sol": {
|
601
|
+
"VersionLib": [
|
602
|
+
{
|
603
|
+
"length": 20,
|
604
|
+
"start": 1198
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"length": 20,
|
608
|
+
"start": 3127
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"length": 20,
|
612
|
+
"start": 3809
|
613
|
+
}
|
614
|
+
]
|
615
|
+
}
|
616
|
+
}
|
617
|
+
}
|