@etherisc/gif-next 0.0.2-70d92f6-918 → 0.0.2-743affe-003
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 +160 -6
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{Component.sol/Component.json → BaseComponent.sol/BaseComponent.json} +80 -72
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +445 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +58 -86
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IDistributionComponent.sol/IDistributionComponent.json} +186 -98
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasuryModule.json → components/IPoolComponent.sol/IPoolComponent.json} +230 -246
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +373 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +385 -111
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +236 -80
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1395 -702
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1678 -824
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +393 -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 +560 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/IService.sol/IService.json} +180 -135
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +456 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -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/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +380 -0
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPoolModule.json → module/component/ComponentModule.sol/ComponentModule.json} +49 -61
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +51 -61
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +147 -117
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +148 -118
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +164 -0
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +66 -57
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasury.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +638 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +638 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +690 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +526 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +389 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +369 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +484 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +674 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +964 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +194 -2
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +415 -32
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -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 +631 -52
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +344 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +861 -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/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +124 -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/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +71 -77
- 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/TestDistribution.sol/TestDistribution.dbg.json +4 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +445 -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/TestPool.sol/TestPool.dbg.json +4 -0
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +602 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +632 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +191 -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 +472 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -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 +270 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/{mock → test}/Usdc.sol/USDC.json +3 -3
- 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 +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- 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 +111 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
- 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/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -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 +30 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +64 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +58 -58
- 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 +79 -0
- package/contracts/components/Distribution.sol +155 -0
- package/contracts/components/IBaseComponent.sol +19 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +65 -0
- package/contracts/components/IProductComponent.sol +39 -0
- package/contracts/components/Pool.sol +218 -24
- package/contracts/components/Product.sol +248 -38
- package/contracts/instance/IInstance.sol +40 -11
- package/contracts/instance/IInstanceLinked.sol +8 -0
- package/contracts/instance/Instance.sol +58 -45
- package/contracts/instance/base/ComponentServiceBase.sol +49 -0
- package/contracts/instance/base/IInstanceBase.sol +23 -0
- package/contracts/instance/base/IKeyValueStore.sol +50 -0
- package/contracts/instance/{lifecycle → base}/ILifecycle.sol +4 -21
- package/contracts/instance/base/IService.sol +15 -0
- package/contracts/instance/base/InstanceBase.sol +89 -0
- package/contracts/instance/base/KeyValueStore.sol +161 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/base/ModuleBase.sol +57 -0
- package/contracts/instance/base/ServiceBase.sol +43 -0
- package/contracts/instance/module/access/Access.sol +149 -0
- package/contracts/instance/module/access/IAccess.sol +53 -0
- package/contracts/instance/module/bundle/BundleModule.sol +134 -0
- package/contracts/instance/module/bundle/IBundle.sol +53 -0
- package/contracts/instance/module/component/ComponentModule.sol +71 -0
- package/contracts/instance/module/component/IComponent.sol +28 -0
- package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
- package/contracts/instance/module/distribution/IDistribution.sol +10 -0
- package/contracts/instance/module/policy/IPolicy.sol +63 -0
- package/contracts/instance/module/policy/PolicyModule.sol +91 -0
- package/contracts/instance/module/pool/IPoolModule.sol +41 -0
- package/contracts/instance/module/pool/PoolModule.sol +95 -0
- package/contracts/instance/module/risk/IRisk.sol +26 -0
- package/contracts/instance/module/risk/RiskModule.sol +62 -0
- package/contracts/instance/module/treasury/ITreasury.sol +84 -0
- package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
- package/contracts/instance/module/treasury/TreasuryModule.sol +131 -0
- package/contracts/instance/service/ComponentOwnerService.sol +272 -0
- package/contracts/instance/service/DistributionService.sol +54 -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/instance/service/PoolService.sol +149 -0
- package/contracts/instance/service/ProductService.sol +509 -0
- package/contracts/registry/ChainNft.sol +94 -42
- package/contracts/registry/IChainNft.sol +3 -2
- package/contracts/registry/IRegistry.sol +52 -44
- package/contracts/registry/IRegistryLinked.sol +8 -0
- package/contracts/registry/IRegistryService.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +447 -124
- package/contracts/registry/RegistryInstaller.sol +100 -0
- package/contracts/registry/RegistryService.sol +383 -0
- package/contracts/shared/ERC165.sol +21 -0
- package/contracts/shared/IOwnable.sol +6 -0
- package/contracts/shared/IRegisterable.sol +22 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/ProxyManager.sol +115 -0
- package/contracts/shared/Registerable.sol +117 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestDistribution.sol +22 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestPool.sol +27 -0
- package/contracts/test/TestProduct.sol +74 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +26 -0
- package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/{mock → test}/Usdc.sol +1 -1
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Fee.sol +44 -20
- package/contracts/types/Key32.sol +45 -0
- package/contracts/types/NftId.sol +22 -1
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/ObjectType.sol +37 -13
- package/contracts/types/ReferralId.sol +48 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +38 -0
- package/contracts/types/StateId.sol +13 -3
- package/contracts/types/Timestamp.sol +22 -1
- package/contracts/types/UFixed.sol +12 -13
- package/contracts/types/Version.sol +104 -0
- package/package.json +8 -3
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- 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/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- 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/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- 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/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- 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/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- 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/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/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 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- 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/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
@@ -11,20 +11,30 @@
|
|
11
11
|
"type": "address"
|
12
12
|
},
|
13
13
|
{
|
14
|
-
"internalType": "
|
15
|
-
"name": "
|
16
|
-
"type": "
|
14
|
+
"internalType": "NftId",
|
15
|
+
"name": "instanceNftid",
|
16
|
+
"type": "uint96"
|
17
17
|
},
|
18
18
|
{
|
19
19
|
"internalType": "address",
|
20
20
|
"name": "token",
|
21
21
|
"type": "address"
|
22
22
|
},
|
23
|
+
{
|
24
|
+
"internalType": "bool",
|
25
|
+
"name": "isInterceptor",
|
26
|
+
"type": "bool"
|
27
|
+
},
|
23
28
|
{
|
24
29
|
"internalType": "address",
|
25
30
|
"name": "pool",
|
26
31
|
"type": "address"
|
27
32
|
},
|
33
|
+
{
|
34
|
+
"internalType": "address",
|
35
|
+
"name": "distribution",
|
36
|
+
"type": "address"
|
37
|
+
},
|
28
38
|
{
|
29
39
|
"components": [
|
30
40
|
{
|
@@ -39,7 +49,7 @@
|
|
39
49
|
}
|
40
50
|
],
|
41
51
|
"internalType": "struct Fee",
|
42
|
-
"name": "
|
52
|
+
"name": "productFee",
|
43
53
|
"type": "tuple"
|
44
54
|
},
|
45
55
|
{
|
@@ -58,44 +68,125 @@
|
|
58
68
|
"internalType": "struct Fee",
|
59
69
|
"name": "processingFee",
|
60
70
|
"type": "tuple"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"internalType": "address",
|
74
|
+
"name": "initialOwner",
|
75
|
+
"type": "address"
|
61
76
|
}
|
62
77
|
],
|
63
78
|
"stateMutability": "nonpayable",
|
64
79
|
"type": "constructor"
|
65
80
|
},
|
81
|
+
{
|
82
|
+
"inputs": [],
|
83
|
+
"name": "InvalidInitialization",
|
84
|
+
"type": "error"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"inputs": [],
|
88
|
+
"name": "NotInitializing",
|
89
|
+
"type": "error"
|
90
|
+
},
|
66
91
|
{
|
67
92
|
"anonymous": false,
|
68
93
|
"inputs": [
|
69
94
|
{
|
70
95
|
"indexed": false,
|
96
|
+
"internalType": "uint64",
|
97
|
+
"name": "version",
|
98
|
+
"type": "uint64"
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"name": "Initialized",
|
102
|
+
"type": "event"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [],
|
106
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
107
|
+
"outputs": [
|
108
|
+
{
|
109
|
+
"internalType": "bytes32",
|
110
|
+
"name": "",
|
111
|
+
"type": "bytes32"
|
112
|
+
}
|
113
|
+
],
|
114
|
+
"stateMutability": "view",
|
115
|
+
"type": "function"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"inputs": [
|
119
|
+
{
|
71
120
|
"internalType": "uint256",
|
72
|
-
"name": "
|
121
|
+
"name": "sumInsuredAmount",
|
73
122
|
"type": "uint256"
|
74
123
|
},
|
75
124
|
{
|
76
|
-
"
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"type": "address"
|
125
|
+
"internalType": "RiskId",
|
126
|
+
"name": "riskId",
|
127
|
+
"type": "bytes8"
|
80
128
|
},
|
81
129
|
{
|
82
|
-
"
|
83
|
-
"
|
84
|
-
"
|
85
|
-
|
130
|
+
"internalType": "uint256",
|
131
|
+
"name": "lifetime",
|
132
|
+
"type": "uint256"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"internalType": "bytes",
|
136
|
+
"name": "applicationData",
|
137
|
+
"type": "bytes"
|
86
138
|
}
|
87
139
|
],
|
88
|
-
"name": "
|
89
|
-
"
|
140
|
+
"name": "calculateNetPremium",
|
141
|
+
"outputs": [
|
142
|
+
{
|
143
|
+
"internalType": "uint256",
|
144
|
+
"name": "netPremiumAmount",
|
145
|
+
"type": "uint256"
|
146
|
+
}
|
147
|
+
],
|
148
|
+
"stateMutability": "view",
|
149
|
+
"type": "function"
|
90
150
|
},
|
91
151
|
{
|
92
|
-
"inputs": [
|
93
|
-
|
94
|
-
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"internalType": "uint256",
|
155
|
+
"name": "sumInsuredAmount",
|
156
|
+
"type": "uint256"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"internalType": "RiskId",
|
160
|
+
"name": "riskId",
|
161
|
+
"type": "bytes8"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"internalType": "uint256",
|
165
|
+
"name": "lifetime",
|
166
|
+
"type": "uint256"
|
167
|
+
},
|
95
168
|
{
|
96
169
|
"internalType": "bytes",
|
97
|
-
"name": "
|
170
|
+
"name": "applicationData",
|
98
171
|
"type": "bytes"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"internalType": "ReferralId",
|
175
|
+
"name": "referralId",
|
176
|
+
"type": "bytes8"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"internalType": "NftId",
|
180
|
+
"name": "bundleNftId",
|
181
|
+
"type": "uint96"
|
182
|
+
}
|
183
|
+
],
|
184
|
+
"name": "calculatePremium",
|
185
|
+
"outputs": [
|
186
|
+
{
|
187
|
+
"internalType": "uint256",
|
188
|
+
"name": "premiumAmount",
|
189
|
+
"type": "uint256"
|
99
190
|
}
|
100
191
|
],
|
101
192
|
"stateMutability": "view",
|
@@ -103,12 +194,67 @@
|
|
103
194
|
},
|
104
195
|
{
|
105
196
|
"inputs": [],
|
106
|
-
"name": "
|
197
|
+
"name": "getDistributionNftId",
|
107
198
|
"outputs": [
|
108
199
|
{
|
109
|
-
"internalType": "
|
110
|
-
"name": "
|
111
|
-
"type": "
|
200
|
+
"internalType": "NftId",
|
201
|
+
"name": "distributionNftId",
|
202
|
+
"type": "uint96"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"stateMutability": "view",
|
206
|
+
"type": "function"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"inputs": [],
|
210
|
+
"name": "getInitialInfo",
|
211
|
+
"outputs": [
|
212
|
+
{
|
213
|
+
"components": [
|
214
|
+
{
|
215
|
+
"internalType": "NftId",
|
216
|
+
"name": "nftId",
|
217
|
+
"type": "uint96"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"internalType": "NftId",
|
221
|
+
"name": "parentNftId",
|
222
|
+
"type": "uint96"
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"internalType": "ObjectType",
|
226
|
+
"name": "objectType",
|
227
|
+
"type": "uint8"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"internalType": "bool",
|
231
|
+
"name": "isInterceptor",
|
232
|
+
"type": "bool"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"internalType": "address",
|
236
|
+
"name": "objectAddress",
|
237
|
+
"type": "address"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"internalType": "address",
|
241
|
+
"name": "initialOwner",
|
242
|
+
"type": "address"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"internalType": "bytes",
|
246
|
+
"name": "data",
|
247
|
+
"type": "bytes"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
251
|
+
"name": "",
|
252
|
+
"type": "tuple"
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"internalType": "bytes",
|
256
|
+
"name": "",
|
257
|
+
"type": "bytes"
|
112
258
|
}
|
113
259
|
],
|
114
260
|
"stateMutability": "view",
|
@@ -146,7 +292,7 @@
|
|
146
292
|
"outputs": [
|
147
293
|
{
|
148
294
|
"internalType": "address",
|
149
|
-
"name": "
|
295
|
+
"name": "",
|
150
296
|
"type": "address"
|
151
297
|
}
|
152
298
|
],
|
@@ -155,11 +301,11 @@
|
|
155
301
|
},
|
156
302
|
{
|
157
303
|
"inputs": [],
|
158
|
-
"name": "
|
304
|
+
"name": "getPoolNftId",
|
159
305
|
"outputs": [
|
160
306
|
{
|
161
307
|
"internalType": "NftId",
|
162
|
-
"name": "",
|
308
|
+
"name": "poolNftId",
|
163
309
|
"type": "uint96"
|
164
310
|
}
|
165
311
|
],
|
@@ -168,7 +314,7 @@
|
|
168
314
|
},
|
169
315
|
{
|
170
316
|
"inputs": [],
|
171
|
-
"name": "
|
317
|
+
"name": "getProcessingFee",
|
172
318
|
"outputs": [
|
173
319
|
{
|
174
320
|
"components": [
|
@@ -184,7 +330,7 @@
|
|
184
330
|
}
|
185
331
|
],
|
186
332
|
"internalType": "struct Fee",
|
187
|
-
"name": "
|
333
|
+
"name": "processingFee",
|
188
334
|
"type": "tuple"
|
189
335
|
}
|
190
336
|
],
|
@@ -193,20 +339,7 @@
|
|
193
339
|
},
|
194
340
|
{
|
195
341
|
"inputs": [],
|
196
|
-
"name": "
|
197
|
-
"outputs": [
|
198
|
-
{
|
199
|
-
"internalType": "NftId",
|
200
|
-
"name": "poolNftId",
|
201
|
-
"type": "uint96"
|
202
|
-
}
|
203
|
-
],
|
204
|
-
"stateMutability": "view",
|
205
|
-
"type": "function"
|
206
|
-
},
|
207
|
-
{
|
208
|
-
"inputs": [],
|
209
|
-
"name": "getProcessingFee",
|
342
|
+
"name": "getProductFee",
|
210
343
|
"outputs": [
|
211
344
|
{
|
212
345
|
"components": [
|
@@ -222,7 +355,7 @@
|
|
222
355
|
}
|
223
356
|
],
|
224
357
|
"internalType": "struct Fee",
|
225
|
-
"name": "
|
358
|
+
"name": "productFee",
|
226
359
|
"type": "tuple"
|
227
360
|
}
|
228
361
|
],
|
@@ -255,19 +388,6 @@
|
|
255
388
|
"stateMutability": "view",
|
256
389
|
"type": "function"
|
257
390
|
},
|
258
|
-
{
|
259
|
-
"inputs": [],
|
260
|
-
"name": "getType",
|
261
|
-
"outputs": [
|
262
|
-
{
|
263
|
-
"internalType": "ObjectType",
|
264
|
-
"name": "",
|
265
|
-
"type": "uint8"
|
266
|
-
}
|
267
|
-
],
|
268
|
-
"stateMutability": "pure",
|
269
|
-
"type": "function"
|
270
|
-
},
|
271
391
|
{
|
272
392
|
"inputs": [],
|
273
393
|
"name": "getWallet",
|
@@ -283,20 +403,62 @@
|
|
283
403
|
},
|
284
404
|
{
|
285
405
|
"inputs": [],
|
286
|
-
"name": "
|
287
|
-
"outputs": [
|
406
|
+
"name": "lock",
|
407
|
+
"outputs": [],
|
408
|
+
"stateMutability": "nonpayable",
|
409
|
+
"type": "function"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"inputs": [
|
288
413
|
{
|
289
|
-
"
|
290
|
-
|
291
|
-
|
414
|
+
"components": [
|
415
|
+
{
|
416
|
+
"internalType": "UFixed",
|
417
|
+
"name": "fractionalFee",
|
418
|
+
"type": "uint256"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"internalType": "uint256",
|
422
|
+
"name": "fixedFee",
|
423
|
+
"type": "uint256"
|
424
|
+
}
|
425
|
+
],
|
426
|
+
"internalType": "struct Fee",
|
427
|
+
"name": "productFee",
|
428
|
+
"type": "tuple"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"components": [
|
432
|
+
{
|
433
|
+
"internalType": "UFixed",
|
434
|
+
"name": "fractionalFee",
|
435
|
+
"type": "uint256"
|
436
|
+
},
|
437
|
+
{
|
438
|
+
"internalType": "uint256",
|
439
|
+
"name": "fixedFee",
|
440
|
+
"type": "uint256"
|
441
|
+
}
|
442
|
+
],
|
443
|
+
"internalType": "struct Fee",
|
444
|
+
"name": "processingFee",
|
445
|
+
"type": "tuple"
|
292
446
|
}
|
293
447
|
],
|
294
|
-
"
|
448
|
+
"name": "setFees",
|
449
|
+
"outputs": [],
|
450
|
+
"stateMutability": "nonpayable",
|
295
451
|
"type": "function"
|
296
452
|
},
|
297
453
|
{
|
298
|
-
"inputs": [
|
299
|
-
|
454
|
+
"inputs": [
|
455
|
+
{
|
456
|
+
"internalType": "bytes4",
|
457
|
+
"name": "interfaceId",
|
458
|
+
"type": "bytes4"
|
459
|
+
}
|
460
|
+
],
|
461
|
+
"name": "supportsInterface",
|
300
462
|
"outputs": [
|
301
463
|
{
|
302
464
|
"internalType": "bool",
|
@@ -309,36 +471,30 @@
|
|
309
471
|
},
|
310
472
|
{
|
311
473
|
"inputs": [],
|
312
|
-
"name": "
|
313
|
-
"outputs": [
|
314
|
-
{
|
315
|
-
"internalType": "NftId",
|
316
|
-
"name": "componentId",
|
317
|
-
"type": "uint96"
|
318
|
-
}
|
319
|
-
],
|
474
|
+
"name": "unlock",
|
475
|
+
"outputs": [],
|
320
476
|
"stateMutability": "nonpayable",
|
321
477
|
"type": "function"
|
322
478
|
}
|
323
479
|
],
|
324
|
-
"bytecode": "0x608060405234801561001057600080fd5b50604051610bad380380610bad83398101604081905261002f916101a5565b600080546001600160a01b038089166001600160a01b031992831617909255600180548216331790556002805483891690831681179091556004805483163017815560058054948916949093169390931790915560408051634288121d60e01b815290519192634288121d9282820192602092908290030181865afa1580156100bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100e09190610227565b600680546001600160a01b039283166001600160a01b031991821617909155600780549590921694169390931790925580516008556020908101516009558151600a550151600b555061024b915050565b6001600160a01b038116811461014657600080fd5b50565b60006040828403121561015b57600080fd5b604080519081016001600160401b038111828210171561018b57634e487b7160e01b600052604160045260246000fd5b604052825181526020928301519281019290925250919050565b60008060008060008061010087890312156101bf57600080fd5b86516101ca81610131565b60208801519096506101db81610131565b60408801519095506101ec81610131565b60608801519094506101fd81610131565b925061020c8860808901610149565b915061021b8860c08901610149565b90509295509295509295565b60006020828403121561023957600080fd5b815161024481610131565b9392505050565b6109538061025a6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80635ab1bd5311610097578063bc74aab011610066578063bc74aab0146101d4578063daafed4014610218578063de7b5d1414610245578063fb2cb1011461025657600080fd5b80635ab1bd53146101ac578063644c45e0146101bd57806379e829d0146101c5578063893d20e8146101cc57600080fd5b806321df0da7116100d357806321df0da714610166578063223668441461017757806331b62a3b1461018f5780633bc5de301461019757600080fd5b8063132996041461010557806315dae03e1461012f5780631aa3a0081461013e5780631bdd6b761461015e575b600080fd5b6004546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b604051603c8152602001610126565b61014661026c565b6040516001600160601b039091168152602001610126565b6101466104c2565b6005546001600160a01b0316610112565b61017f610534565b6040519015158152602001610126565b610146610620565b61019f610671565b6040516101269190610848565b6000546001600160a01b0316610112565b61014661070f565b600161017f565b610112610740565b604080518082018252600080825260209182015281518083019092526008548252600954908201525b60408051825181526020928301519281019290925201610126565b60408051808201825260008082526020918201528151808301909252600a548252600b54908201526101fd565b6002546001600160a01b0316610112565b6001546001600160a01b0316610112565b905090565b60006102806001546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146102bf5760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b6000546001600160a01b03166103175760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5052442d3030313a52454749535452595f5a45524f000000000060448201526064016102b6565b60005460025460405163c3c5a54760e01b81526001600160a01b03918216600482015291169063c3c5a54790602401602060405180830381865afa158015610363573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103879190610896565b6103e15760405162461bcd60e51b815260206004820152602560248201527f4552524f523a5052442d3030323a494e5354414e43455f4e4f545f5245474953604482015264151154915160da1b60648201526084016102b6565b60025460408051636fa2985360e01b815290516000926001600160a01b031691636fa298539160048083019260209291908290030181865afa15801561042b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044f91906108d7565b604051632210724360e11b81523060048201529091506001600160a01b03821690634420e486906024016020604051808303816000875af1158015610498573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bc91906108f4565b91505090565b60008054600754604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa158015610510573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061026791906108f4565b60008054604051636939560f60e11b815230600482015282916001600160a01b03169063d272ac1e90602401602060405180830381865afa15801561057d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a191906108f4565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bc9190610896565b60006106346002546001600160a01b031690565b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610510573d6000803e3d6000fd5b60606106856002546001600160a01b031690565b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e691906108f4565b604080516001600160601b03909216602083015201604051602081830303815290604052905090565b60008054604051636939560f60e11b81523060048201526001600160a01b039091169063d272ac1e906024016104f3565b60008054604051636939560f60e11b815230600482015282916001600160a01b03169063d272ac1e90602401602060405180830381865afa158015610789573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ad91906108f4565b60005460405163df33330b60e01b81526001600160601b03831660048201529192506001600160a01b03169063df33330b90602401602060405180830381865afa1580156107ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082391906108d7565b91506001600160a01b038216610844576001546001600160a01b03166104bc565b5090565b600060208083528351808285015260005b8181101561087557858101830151858201604001528201610859565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156108a857600080fd5b815180151581146108b857600080fd5b9392505050565b6001600160a01b03811681146108d457600080fd5b50565b6000602082840312156108e957600080fd5b81516108b8816108bf565b60006020828403121561090657600080fd5b81516001600160601b03811681146108b857600080fdfea2646970667358221220ce4ca508b37dbeab6ef1fe6b2720f05ec3a77afe9d078ea5e62994dfb9be135064736f6c63430008140033",
|
325
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101005760003560e01c80635ab1bd5311610097578063bc74aab011610066578063bc74aab0146101d4578063daafed4014610218578063de7b5d1414610245578063fb2cb1011461025657600080fd5b80635ab1bd53146101ac578063644c45e0146101bd57806379e829d0146101c5578063893d20e8146101cc57600080fd5b806321df0da7116100d357806321df0da714610166578063223668441461017757806331b62a3b1461018f5780633bc5de301461019757600080fd5b8063132996041461010557806315dae03e1461012f5780631aa3a0081461013e5780631bdd6b761461015e575b600080fd5b6004546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b604051603c8152602001610126565b61014661026c565b6040516001600160601b039091168152602001610126565b6101466104c2565b6005546001600160a01b0316610112565b61017f610534565b6040519015158152602001610126565b610146610620565b61019f610671565b6040516101269190610848565b6000546001600160a01b0316610112565b61014661070f565b600161017f565b610112610740565b604080518082018252600080825260209182015281518083019092526008548252600954908201525b60408051825181526020928301519281019290925201610126565b60408051808201825260008082526020918201528151808301909252600a548252600b54908201526101fd565b6002546001600160a01b0316610112565b6001546001600160a01b0316610112565b905090565b60006102806001546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146102bf5760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b6000546001600160a01b03166103175760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5052442d3030313a52454749535452595f5a45524f000000000060448201526064016102b6565b60005460025460405163c3c5a54760e01b81526001600160a01b03918216600482015291169063c3c5a54790602401602060405180830381865afa158015610363573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103879190610896565b6103e15760405162461bcd60e51b815260206004820152602560248201527f4552524f523a5052442d3030323a494e5354414e43455f4e4f545f5245474953604482015264151154915160da1b60648201526084016102b6565b60025460408051636fa2985360e01b815290516000926001600160a01b031691636fa298539160048083019260209291908290030181865afa15801561042b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044f91906108d7565b604051632210724360e11b81523060048201529091506001600160a01b03821690634420e486906024016020604051808303816000875af1158015610498573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bc91906108f4565b91505090565b60008054600754604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa158015610510573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061026791906108f4565b60008054604051636939560f60e11b815230600482015282916001600160a01b03169063d272ac1e90602401602060405180830381865afa15801561057d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a191906108f4565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bc9190610896565b60006106346002546001600160a01b031690565b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610510573d6000803e3d6000fd5b60606106856002546001600160a01b031690565b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e691906108f4565b604080516001600160601b03909216602083015201604051602081830303815290604052905090565b60008054604051636939560f60e11b81523060048201526001600160a01b039091169063d272ac1e906024016104f3565b60008054604051636939560f60e11b815230600482015282916001600160a01b03169063d272ac1e90602401602060405180830381865afa158015610789573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ad91906108f4565b60005460405163df33330b60e01b81526001600160601b03831660048201529192506001600160a01b03169063df33330b90602401602060405180830381865afa1580156107ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082391906108d7565b91506001600160a01b038216610844576001546001600160a01b03166104bc565b5090565b600060208083528351808285015260005b8181101561087557858101830151858201604001528201610859565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156108a857600080fd5b815180151581146108b857600080fd5b9392505050565b6001600160a01b03811681146108d457600080fd5b50565b6000602082840312156108e957600080fd5b81516108b8816108bf565b60006020828403121561090657600080fd5b81516001600160601b03811681146108b857600080fdfea2646970667358221220ce4ca508b37dbeab6ef1fe6b2720f05ec3a77afe9d078ea5e62994dfb9be135064736f6c63430008140033",
|
480
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506040516200234a3803806200234a83398101604081905262000034916200089c565b888888606e6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1916600117905589856040805160208101909152600081526200009687878686868662000562565b6000620000b96000805160206200232a833981519152546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000109573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000133919081019062000a06565b6080810151600580546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b8152630de7806f60e41b6004820152919250906301ffc9a790602401602060405180830381865afa1580156200019b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c1919062000aec565b620001ed5760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600560009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000241573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000267919062000b11565b600180546001600160a01b03199081166001600160a01b0393841617825560038054309083161790556004805490911692891692909217909155631b1599eb60e21b60009081526020527f82dc1aafdf8e16d475718790c9464a2912866acb395e292abd1ea37be80f5b28805460ff191690911790555050505050505050600560009054906101000a90046001600160a01b03166001600160a01b0316634288121d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000339573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035f919062000b11565b600680546001600160a01b03199081166001600160a01b0393841617909155600780548216888416179055600880549091168683161790558351600955602080850151600a558351600b55830151600c556000805160206200232a8339815191525416600754604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa1580156200040c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000432919062000b31565b600d80546001600160601b0319166001600160601b0392909216919091179055620004736000805160206200232a833981519152546001600160a01b031690565b600854604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa158015620004bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e3919062000b31565b600d80546001600160601b03929092166c0100000000000000000000000002600160601b600160c01b03199092169190911790556379fc0e7160e11b60009081526020527fae37458bb8945ae7571d1722238fea83f3c5619cf829a972c67f136a0bac29d2805460ff1916600117905550505050505050505062000caa565b6001600160a01b038616620005ba5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f00000000006044820152606401620001e4565b6040516301ffc9a760e01b815263d053988160e01b600482015286906001600160a01b038216906301ffc9a790602401602060405180830381865afa15801562000608573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200062e919062000aec565b6200067c5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620001e4565b6001600160a01b03818116600160a01b6001600160601b0389168102919091176000805160206200232a8339815191529081557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30180546001600160a01b031961ffff60a01b1990911660ff8b1690940260ff60a81b191693909317600160a81b8915150217929092169286169290921790557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3026200073b848262000bde565b5063a6d3826560e01b60009081526020527f164a5a3a3a16df858f794c5fc01b962add2c2151ae53ddb31581eabdf1156730805460ff191660011790555050505050505050565b6001600160a01b03811681146200079857600080fd5b50565b8051620007a88162000782565b919050565b80516001600160601b0381168114620007a857600080fd5b80518015158114620007a857600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620008115762000811620007d6565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620008425762000842620007d6565b604052919050565b6000604082840312156200085d57600080fd5b604080519081016001600160401b0381118282101715620008825762000882620007d6565b604052825181526020928301519281019290925250919050565b60008060008060008060008060006101608a8c031215620008bc57600080fd5b8951620008c98162000782565b9850620008d960208b01620007ad565b975060408a0151620008eb8162000782565b9650620008fb60608b01620007c5565b955060808a01516200090d8162000782565b60a08b0151909550620009208162000782565b9350620009318b60c08c016200084a565b9250620009438b6101008c016200084a565b91506101408a0151620009568162000782565b809150509295985092959850929598565b805160ff81168114620007a857600080fd5b600082601f8301126200098b57600080fd5b81516001600160401b03811115620009a757620009a7620007d6565b6020620009bd601f8301601f1916820162000817565b8281528582848701011115620009d257600080fd5b60005b83811015620009f2578581018301518282018401528201620009d5565b506000928101909101919091529392505050565b60006020828403121562000a1957600080fd5b81516001600160401b038082111562000a3157600080fd5b9083019060e0828603121562000a4657600080fd5b62000a50620007ec565b62000a5b83620007ad565b815262000a6b60208401620007ad565b602082015262000a7e6040840162000967565b604082015262000a9160608401620007c5565b606082015262000aa4608084016200079b565b608082015262000ab760a084016200079b565b60a082015260c08301518281111562000acf57600080fd5b62000add8782860162000979565b60c08301525095945050505050565b60006020828403121562000aff57600080fd5b62000b0a82620007c5565b9392505050565b60006020828403121562000b2457600080fd5b815162000b0a8162000782565b60006020828403121562000b4457600080fd5b62000b0a82620007ad565b600181811c9082168062000b6457607f821691505b60208210810362000b8557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000bd957600081815260208120601f850160051c8101602086101562000bb45750805b601f850160051c820191505b8181101562000bd55782815560010162000bc0565b5050505b505050565b81516001600160401b0381111562000bfa5762000bfa620007d6565b62000c128162000c0b845462000b4f565b8462000b8b565b602080601f83116001811462000c4a576000841562000c315750858301515b600019600386901b1c1916600185901b17855562000bd5565b600085815260208120601f198616915b8281101562000c7b5788860151825594840194600190910190840162000c5a565b508582101562000c9a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6116708062000cba6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80635e78426b116100a2578063b6b412ba11610071578063b6b412ba14610257578063daafed401461026a578063db6dcc9514610272578063de7b5d141461027a578063f83d08ba1461028b57600080fd5b80635e78426b1461022a578063644c45e01461023d578063893d20e814610245578063a69df4b51461024d57600080fd5b80631380bf23116100e95780631380bf23146101b95780631bdd6b76146101dc5780631eff4b22146101fc57806321df0da7146102115780635ab1bd531461022257600080fd5b806301ffc9a71461011b5780630fec111c1461015d57806312abb9b3146101735780631329960414610194575b600080fd5b610148610129366004610c66565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610165610293565b604051610154929190610ce7565b610186610181366004610ee8565b6104bd565b604051908152602001610154565b6003546001600160a01b03165b6040516001600160a01b039091168152602001610154565b6101c1610549565b60408051825181526020928301519281019290925201610154565b6101e461067e565b6040516001600160601b039091168152602001610154565b61018660008051602061161b83398151915281565b6004546001600160a01b03166101a1565b6101a16106fb565b610186610238366004610f71565b610717565b6101e461072d565b6101a161076b565b6102556107e6565b005b610255610265366004611004565b610887565b6101c1610927565b6101e4610a5c565b6005546001600160a01b03166101a1565b610255610a97565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091806102d7610aff565b91509150600080600760009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610331573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261035991908101906110d7565b915091506000806000838060200190518101906103769190611200565b6040805161012081018252600d546001600160601b038082168352600160601b90910416602080830191909152600480546001600160a01b031683850152835180850185526009548152600a5481840152606084015283518085018552600b548152600c5492810192909252608083019190915260a0820186905260c0820185905260e082018490528251632bd182d360e01b81528351969c50949a509298508e975095506101008601945073__$a23651848365a6a5ca15f07b4331037f48$__93632bd182d39380840193908290030181865af415801561045c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048091906112a4565b905260035460405161049f92916001600160a01b0316906020016112c0565b60405160208183030381529060405298509850505050505050509091565b600654604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f9906104f89089908b908a908a9089908b906004016113b6565b60a060405180830381865afa158015610515573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610539919061140d565b50929a9950505050505050505050565b6040805180820190915260008082526020820152600061056761072d565b60055460405163278b381b60e01b81526001600160601b03831660048201529192506001600160a01b03169063278b381b90602401602060405180830381865afa1580156105b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dd919061144d565b156106625760055460405163f2b246c360e01b81526001600160601b03831660048201526001600160a01b039091169063f2b246c3906024016101e060405180830381865afa158015610634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106589190611468565b6060015191505090565b5050604080518082019091526009548152600a54602082015290565b60006106886106fb565b600754604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa1580156106d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f69190611527565b905090565b60008051602061161b833981519152546001600160a01b031690565b6000610724600a86611544565b95945050505050565b60008051602061161b83398151915254604051636939560f60e11b81523060048201526000916001600160a01b03169063d272ac1e906024016106b5565b600060008051602061161b83398151915254604051630a57ebcf60e11b81523060048201526001600160a01b03909116906314afd79e90602401602060405180830381865afa1580156107c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f69190611566565b6107ee61076b565b6001600160a01b0316336001600160a01b0316146108275760405162461bcd60e51b815260040161081e90611583565b60405180910390fd5b600154604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b15801561086d57600080fd5b505af1158015610881573d6000803e3d6000fd5b50505050565b61088f61076b565b6001600160a01b0316336001600160a01b0316146108bf5760405162461bcd60e51b815260040161081e90611583565b600654604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba906108f190859085906004016115ba565b600060405180830381600087803b15801561090b57600080fd5b505af115801561091f573d6000803e3d6000fd5b505050505050565b6040805180820190915260008082526020820152600061094561072d565b60055460405163278b381b60e01b81526001600160601b03831660048201529192506001600160a01b03169063278b381b90602401602060405180830381865afa158015610997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bb919061144d565b15610a405760055460405163f2b246c360e01b81526001600160601b03831660048201526001600160a01b039091169063f2b246c3906024016101e060405180830381865afa158015610a12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a369190611468565b6080015191505090565b505060408051808201909152600b548152600c54602082015290565b6000610a666106fb565b600854604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024016106b5565b610a9f61076b565b6001600160a01b0316336001600160a01b031614610acf5760405162461bcd60e51b815260040161081e90611583565b60015460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610853565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091526060600060008051602061161b83398151915290506040518060e00160405280610b62600090565b6001600160601b0390811682528354600160a01b908190049091166020830152600184015490810460ff9081166040840152600160a81b820416151560608301523060808301526001600160a01b031660a082015260028301805460c090920191610bcc906115e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf8906115e0565b8015610c455780601f10610c1a57610100808354040283529160200191610c45565b820191906000526020600020905b815481529060010190602001808311610c2857829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b600060208284031215610c7857600080fd5b81356001600160e01b031981168114610c9057600080fd5b9392505050565b60005b83811015610cb2578181015183820152602001610c9a565b50506000910152565b60008151808452610cd3816020860160208601610c97565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610d2b60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610d71610120840182610cbb565b905082810360208401526107248185610cbb565b6001600160c01b031981168114610d9b57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715610dd757610dd7610d9e565b60405290565b60405160e0810167ffffffffffffffff81118282101715610dd757610dd7610d9e565b604051610120810167ffffffffffffffff81118282101715610dd757610dd7610d9e565b604051601f8201601f1916810167ffffffffffffffff81118282101715610e4d57610e4d610d9e565b604052919050565b600067ffffffffffffffff821115610e6f57610e6f610d9e565b50601f01601f191660200190565b600082601f830112610e8e57600080fd5b8135610ea1610e9c82610e55565b610e24565b818152846020838601011115610eb657600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b0381168114610d9b57600080fd5b60008060008060008060c08789031215610f0157600080fd5b863595506020870135610f1381610d85565b945060408701359350606087013567ffffffffffffffff811115610f3657600080fd5b610f4289828a01610e7d565b9350506080870135610f5381610d85565b915060a0870135610f6381610ed3565b809150509295509295509295565b60008060008060808587031215610f8757600080fd5b843593506020850135610f9981610d85565b925060408501359150606085013567ffffffffffffffff811115610fbc57600080fd5b610fc887828801610e7d565b91505092959194509250565b600060408284031215610fe657600080fd5b610fee610db4565b9050813581526020820135602082015292915050565b6000806080838503121561101757600080fd5b6110218484610fd4565b91506110308460408501610fd4565b90509250929050565b805161104481610ed3565b919050565b805160ff8116811461104457600080fd5b8051801515811461104457600080fd5b6001600160a01b0381168114610d9b57600080fd5b80516110448161106a565b600082601f83011261109b57600080fd5b81516110a9610e9c82610e55565b8181528460208386010111156110be57600080fd5b6110cf826020830160208701610c97565b949350505050565b600080604083850312156110ea57600080fd5b825167ffffffffffffffff8082111561110257600080fd5b9084019060e0828703121561111657600080fd5b61111e610ddd565b61112783611039565b815261113560208401611039565b602082015261114660408401611049565b60408201526111576060840161105a565b60608201526111686080840161107f565b608082015261117960a0840161107f565b60a082015260c08301518281111561119057600080fd5b61119c8882860161108a565b60c08301525060208601519094509150808211156111b957600080fd5b506111c68582860161108a565b9150509250929050565b6000604082840312156111e257600080fd5b6111ea610db4565b9050815181526020820151602082015292915050565b60008060008060008086880361014081121561121b57600080fd5b604081121561122957600080fd5b50611232610db4565b61123b8861105a565b8152602088015160208201528096505060408701516112598161106a565b606088015190955061126a8161106a565b935061127988608089016111d0565b92506112888860c089016111d0565b91506112988861010089016111d0565b90509295509295509295565b6000604082840312156112b657600080fd5b610c9083836111d0565b82516001600160601b031681526020808401516102008301916112ed908401826001600160601b03169052565b50604084015161130860408401826001600160a01b03169052565b506060840151611325606084018280518252602090810151910152565b506080840151805160a0840152602081015160c08401525060a0840151805160e084015260208101516101008401525060c0840151805161012084015260208101516101408401525060e0840151805161016084015260208101516101808401525061010084015180516101a084015260208101516101c0840152506001600160a01b0383166101e0830152610c90565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c060608401526113e960c0840187610cbb565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a0868803121561142557600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b60006020828403121561145f57600080fd5b610c908261105a565b60006101e0828403121561147b57600080fd5b611483610e00565b61148c83611039565b815261149a60208401611039565b60208201526114ab6040840161107f565b60408201526114bd84606085016111d0565b60608201526114cf8460a085016111d0565b60808201526114e18460e085016111d0565b60a08201526114f48461012085016111d0565b60c08201526115078461016085016111d0565b60e082015261151a846101a085016111d0565b6101008201529392505050565b60006020828403121561153957600080fd5b8151610c9081610ed3565b60008261156157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561157857600080fd5b8151610c908161106a565b60208082526017908201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b825181526020808401518183015282516040830152820151606082015260808101610c90565b600181811c908216806115f457607f821691505b60208210810361161457634e487b7160e01b600052602260045260246000fd5b5091905056fe6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300a2646970667358221220adce24a6c4140be69ddb8b16708b43b1cf7782693492e22f45556edb21cb2b5764736f6c634300081400336548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300",
|
481
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101165760003560e01c80635e78426b116100a2578063b6b412ba11610071578063b6b412ba14610257578063daafed401461026a578063db6dcc9514610272578063de7b5d141461027a578063f83d08ba1461028b57600080fd5b80635e78426b1461022a578063644c45e01461023d578063893d20e814610245578063a69df4b51461024d57600080fd5b80631380bf23116100e95780631380bf23146101b95780631bdd6b76146101dc5780631eff4b22146101fc57806321df0da7146102115780635ab1bd531461022257600080fd5b806301ffc9a71461011b5780630fec111c1461015d57806312abb9b3146101735780631329960414610194575b600080fd5b610148610129366004610c66565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610165610293565b604051610154929190610ce7565b610186610181366004610ee8565b6104bd565b604051908152602001610154565b6003546001600160a01b03165b6040516001600160a01b039091168152602001610154565b6101c1610549565b60408051825181526020928301519281019290925201610154565b6101e461067e565b6040516001600160601b039091168152602001610154565b61018660008051602061161b83398151915281565b6004546001600160a01b03166101a1565b6101a16106fb565b610186610238366004610f71565b610717565b6101e461072d565b6101a161076b565b6102556107e6565b005b610255610265366004611004565b610887565b6101c1610927565b6101e4610a5c565b6005546001600160a01b03166101a1565b610255610a97565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091806102d7610aff565b91509150600080600760009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610331573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261035991908101906110d7565b915091506000806000838060200190518101906103769190611200565b6040805161012081018252600d546001600160601b038082168352600160601b90910416602080830191909152600480546001600160a01b031683850152835180850185526009548152600a5481840152606084015283518085018552600b548152600c5492810192909252608083019190915260a0820186905260c0820185905260e082018490528251632bd182d360e01b81528351969c50949a509298508e975095506101008601945073__$a23651848365a6a5ca15f07b4331037f48$__93632bd182d39380840193908290030181865af415801561045c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048091906112a4565b905260035460405161049f92916001600160a01b0316906020016112c0565b60405160208183030381529060405298509850505050505050509091565b600654604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f9906104f89089908b908a908a9089908b906004016113b6565b60a060405180830381865afa158015610515573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610539919061140d565b50929a9950505050505050505050565b6040805180820190915260008082526020820152600061056761072d565b60055460405163278b381b60e01b81526001600160601b03831660048201529192506001600160a01b03169063278b381b90602401602060405180830381865afa1580156105b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dd919061144d565b156106625760055460405163f2b246c360e01b81526001600160601b03831660048201526001600160a01b039091169063f2b246c3906024016101e060405180830381865afa158015610634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106589190611468565b6060015191505090565b5050604080518082019091526009548152600a54602082015290565b60006106886106fb565b600754604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa1580156106d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f69190611527565b905090565b60008051602061161b833981519152546001600160a01b031690565b6000610724600a86611544565b95945050505050565b60008051602061161b83398151915254604051636939560f60e11b81523060048201526000916001600160a01b03169063d272ac1e906024016106b5565b600060008051602061161b83398151915254604051630a57ebcf60e11b81523060048201526001600160a01b03909116906314afd79e90602401602060405180830381865afa1580156107c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f69190611566565b6107ee61076b565b6001600160a01b0316336001600160a01b0316146108275760405162461bcd60e51b815260040161081e90611583565b60405180910390fd5b600154604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b15801561086d57600080fd5b505af1158015610881573d6000803e3d6000fd5b50505050565b61088f61076b565b6001600160a01b0316336001600160a01b0316146108bf5760405162461bcd60e51b815260040161081e90611583565b600654604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba906108f190859085906004016115ba565b600060405180830381600087803b15801561090b57600080fd5b505af115801561091f573d6000803e3d6000fd5b505050505050565b6040805180820190915260008082526020820152600061094561072d565b60055460405163278b381b60e01b81526001600160601b03831660048201529192506001600160a01b03169063278b381b90602401602060405180830381865afa158015610997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bb919061144d565b15610a405760055460405163f2b246c360e01b81526001600160601b03831660048201526001600160a01b039091169063f2b246c3906024016101e060405180830381865afa158015610a12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a369190611468565b6080015191505090565b505060408051808201909152600b548152600c54602082015290565b6000610a666106fb565b600854604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024016106b5565b610a9f61076b565b6001600160a01b0316336001600160a01b031614610acf5760405162461bcd60e51b815260040161081e90611583565b60015460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610853565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091526060600060008051602061161b83398151915290506040518060e00160405280610b62600090565b6001600160601b0390811682528354600160a01b908190049091166020830152600184015490810460ff9081166040840152600160a81b820416151560608301523060808301526001600160a01b031660a082015260028301805460c090920191610bcc906115e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf8906115e0565b8015610c455780601f10610c1a57610100808354040283529160200191610c45565b820191906000526020600020905b815481529060010190602001808311610c2857829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b600060208284031215610c7857600080fd5b81356001600160e01b031981168114610c9057600080fd5b9392505050565b60005b83811015610cb2578181015183820152602001610c9a565b50506000910152565b60008151808452610cd3816020860160208601610c97565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610d2b60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610d71610120840182610cbb565b905082810360208401526107248185610cbb565b6001600160c01b031981168114610d9b57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715610dd757610dd7610d9e565b60405290565b60405160e0810167ffffffffffffffff81118282101715610dd757610dd7610d9e565b604051610120810167ffffffffffffffff81118282101715610dd757610dd7610d9e565b604051601f8201601f1916810167ffffffffffffffff81118282101715610e4d57610e4d610d9e565b604052919050565b600067ffffffffffffffff821115610e6f57610e6f610d9e565b50601f01601f191660200190565b600082601f830112610e8e57600080fd5b8135610ea1610e9c82610e55565b610e24565b818152846020838601011115610eb657600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b0381168114610d9b57600080fd5b60008060008060008060c08789031215610f0157600080fd5b863595506020870135610f1381610d85565b945060408701359350606087013567ffffffffffffffff811115610f3657600080fd5b610f4289828a01610e7d565b9350506080870135610f5381610d85565b915060a0870135610f6381610ed3565b809150509295509295509295565b60008060008060808587031215610f8757600080fd5b843593506020850135610f9981610d85565b925060408501359150606085013567ffffffffffffffff811115610fbc57600080fd5b610fc887828801610e7d565b91505092959194509250565b600060408284031215610fe657600080fd5b610fee610db4565b9050813581526020820135602082015292915050565b6000806080838503121561101757600080fd5b6110218484610fd4565b91506110308460408501610fd4565b90509250929050565b805161104481610ed3565b919050565b805160ff8116811461104457600080fd5b8051801515811461104457600080fd5b6001600160a01b0381168114610d9b57600080fd5b80516110448161106a565b600082601f83011261109b57600080fd5b81516110a9610e9c82610e55565b8181528460208386010111156110be57600080fd5b6110cf826020830160208701610c97565b949350505050565b600080604083850312156110ea57600080fd5b825167ffffffffffffffff8082111561110257600080fd5b9084019060e0828703121561111657600080fd5b61111e610ddd565b61112783611039565b815261113560208401611039565b602082015261114660408401611049565b60408201526111576060840161105a565b60608201526111686080840161107f565b608082015261117960a0840161107f565b60a082015260c08301518281111561119057600080fd5b61119c8882860161108a565b60c08301525060208601519094509150808211156111b957600080fd5b506111c68582860161108a565b9150509250929050565b6000604082840312156111e257600080fd5b6111ea610db4565b9050815181526020820151602082015292915050565b60008060008060008086880361014081121561121b57600080fd5b604081121561122957600080fd5b50611232610db4565b61123b8861105a565b8152602088015160208201528096505060408701516112598161106a565b606088015190955061126a8161106a565b935061127988608089016111d0565b92506112888860c089016111d0565b91506112988861010089016111d0565b90509295509295509295565b6000604082840312156112b657600080fd5b610c9083836111d0565b82516001600160601b031681526020808401516102008301916112ed908401826001600160601b03169052565b50604084015161130860408401826001600160a01b03169052565b506060840151611325606084018280518252602090810151910152565b506080840151805160a0840152602081015160c08401525060a0840151805160e084015260208101516101008401525060c0840151805161012084015260208101516101408401525060e0840151805161016084015260208101516101808401525061010084015180516101a084015260208101516101c0840152506001600160a01b0383166101e0830152610c90565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c060608401526113e960c0840187610cbb565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a0868803121561142557600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b60006020828403121561145f57600080fd5b610c908261105a565b60006101e0828403121561147b57600080fd5b611483610e00565b61148c83611039565b815261149a60208401611039565b60208201526114ab6040840161107f565b60408201526114bd84606085016111d0565b60608201526114cf8460a085016111d0565b60808201526114e18460e085016111d0565b60a08201526114f48461012085016111d0565b60c08201526115078461016085016111d0565b60e082015261151a846101a085016111d0565b6101008201529392505050565b60006020828403121561153957600080fd5b8151610c9081610ed3565b60008261156157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561157857600080fd5b8151610c908161106a565b60208082526017908201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b825181526020808401518183015282516040830152820151606082015260808101610c90565b600181811c908216806115f457607f821691505b60208210810361161457634e487b7160e01b600052602260045260246000fd5b5091905056fe6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300a2646970667358221220adce24a6c4140be69ddb8b16708b43b1cf7782693492e22f45556edb21cb2b5764736f6c63430008140033",
|
326
482
|
"linkReferences": {
|
327
|
-
"contracts/types/
|
328
|
-
"
|
483
|
+
"contracts/types/Fee.sol": {
|
484
|
+
"FeeLib": [
|
329
485
|
{
|
330
486
|
"length": 20,
|
331
|
-
"start":
|
487
|
+
"start": 4318
|
332
488
|
}
|
333
489
|
]
|
334
490
|
}
|
335
491
|
},
|
336
492
|
"deployedLinkReferences": {
|
337
|
-
"contracts/types/
|
338
|
-
"
|
493
|
+
"contracts/types/Fee.sol": {
|
494
|
+
"FeeLib": [
|
339
495
|
{
|
340
496
|
"length": 20,
|
341
|
-
"start":
|
497
|
+
"start": 1060
|
342
498
|
}
|
343
499
|
]
|
344
500
|
}
|
@@ -52,8 +52,8 @@
|
|
52
52
|
"type": "function"
|
53
53
|
}
|
54
54
|
],
|
55
|
-
"bytecode": "
|
56
|
-
"deployedBytecode": "
|
55
|
+
"bytecode": "0x608060405234801561001057600080fd5b5061017d806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80630d3581811461003b578063e9e96c7014610078575b600080fd5b6100616100493660046100d8565b60ff9081166000908152602081905260409020541690565b60405160ff90911681526020015b60405180910390f35b6100b66100863660046100fc565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b604051901515815260200161006f565b60ff811681146100d557600080fd5b50565b6000602082840312156100ea57600080fd5b81356100f5816100c6565b9392505050565b60008060006060848603121561011157600080fd5b833561011c816100c6565b9250602084013561012c816100c6565b9150604084013561013c816100c6565b80915050925092509256fea26469706673582212209a1b889124f5175c6f3f72ce85be5e0038b6dd6da1781f970c78692bf7b69d0a64736f6c63430008140033",
|
56
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c80630d3581811461003b578063e9e96c7014610078575b600080fd5b6100616100493660046100d8565b60ff9081166000908152602081905260409020541690565b60405160ff90911681526020015b60405180910390f35b6100b66100863660046100fc565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b604051901515815260200161006f565b60ff811681146100d557600080fd5b50565b6000602082840312156100ea57600080fd5b81356100f5816100c6565b9392505050565b60008060006060848603121561011157600080fd5b833561011c816100c6565b9250602084013561012c816100c6565b9150604084013561013c816100c6565b80915050925092509256fea26469706673582212209a1b889124f5175c6f3f72ce85be5e0038b6dd6da1781f970c78692bf7b69d0a64736f6c63430008140033",
|
57
57
|
"linkReferences": {},
|
58
58
|
"deployedLinkReferences": {}
|
59
59
|
}
|