@etherisc/gif-next 0.0.2-f9bc4c7-556 → 0.0.2-faaba97-954
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +249 -14
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +842 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1329 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +823 -115
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +608 -57
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1132 -143
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +967 -105
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1549 -1048
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2291 -1198
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1289 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1179 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +45 -127
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +85 -245
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.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/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1039 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1798 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +805 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +475 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +577 -109
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +186 -213
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +965 -199
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +460 -293
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +485 -34
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +487 -101
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -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 +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +38 -74
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +100 -33
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +159 -150
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +256 -25
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
- 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 +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +272 -26
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +347 -130
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +38 -140
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +84 -14
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -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/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +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 +38 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +253 -0
- package/contracts/components/Distribution.sol +280 -0
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +71 -0
- package/contracts/components/IPoolComponent.sol +98 -42
- package/contracts/components/IProductComponent.sol +30 -9
- package/contracts/components/Pool.sol +238 -109
- package/contracts/components/Product.sol +218 -42
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +127 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +87 -41
- package/contracts/instance/IInstanceService.sol +72 -0
- package/contracts/instance/Instance.sol +311 -52
- package/contracts/instance/InstanceAccessManager.sol +527 -0
- package/contracts/instance/InstanceReader.sol +291 -0
- package/contracts/instance/InstanceService.sol +495 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +121 -0
- package/contracts/instance/base/IKeyValueStore.sol +13 -13
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +64 -40
- package/contracts/instance/base/Lifecycle.sol +27 -13
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +23 -0
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +72 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +431 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +435 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +93 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +99 -0
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +81 -12
- package/contracts/instance/service/IProductService.sol +21 -39
- package/contracts/instance/service/PolicyService.sol +362 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +249 -69
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +147 -291
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +87 -36
- package/contracts/registry/IRegistry.sol +68 -24
- package/contracts/registry/IRegistryService.sol +68 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +372 -286
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +282 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +14 -8
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +38 -37
- package/contracts/shared/NftOwnable.sol +120 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +54 -66
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +72 -0
- package/contracts/shared/TokenHandler.sol +33 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +38 -68
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +7 -14
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +22 -9
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +56 -14
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +69 -10
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +6 -1
- package/contracts/types/Timestamp.sol +17 -13
- package/contracts/types/UFixed.sol +129 -12
- package/contracts/types/Version.sol +14 -1
- package/package.json +6 -5
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -364
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -88
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -14
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -80
- package/contracts/instance/base/ModuleBase.sol +0 -52
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -136
- package/contracts/instance/module/bundle/IBundle.sol +0 -58
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
- package/contracts/instance/module/component/ComponentModule.sol +0 -95
- package/contracts/instance/module/component/IComponent.sol +0 -53
- package/contracts/instance/module/policy/IPolicy.sol +0 -60
- package/contracts/instance/module/policy/PolicyModule.sol +0 -76
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -87
- package/contracts/instance/module/risk/IRisk.sol +0 -10
- package/contracts/instance/module/risk/RiskModule.sol +0 -8
- package/contracts/instance/module/treasury/ITreasury.sol +0 -103
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
- package/contracts/instance/service/ComponentOwnerService.sol +0 -170
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestPool.sol +0 -22
- package/contracts/test/TestProduct.sol +0 -44
@@ -3,6 +3,750 @@
|
|
3
3
|
"contractName": "Product",
|
4
4
|
"sourceName": "contracts/components/Product.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "target",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "AddressEmptyCode",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "account",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "AddressInsufficientBalance",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "caller",
|
71
|
+
"type": "address"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorComponentNotChainNft",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
79
|
+
{
|
80
|
+
"internalType": "NftId",
|
81
|
+
"name": "instanceNftId",
|
82
|
+
"type": "uint96"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"name": "ErrorComponentNotInstance",
|
86
|
+
"type": "error"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"inputs": [
|
90
|
+
{
|
91
|
+
"internalType": "address",
|
92
|
+
"name": "caller",
|
93
|
+
"type": "address"
|
94
|
+
}
|
95
|
+
],
|
96
|
+
"name": "ErrorComponentNotProductService",
|
97
|
+
"type": "error"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"inputs": [],
|
101
|
+
"name": "ErrorComponentProductNftAlreadySet",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [],
|
106
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
107
|
+
"type": "error"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"inputs": [],
|
111
|
+
"name": "ErrorComponentWalletAddressZero",
|
112
|
+
"type": "error"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"inputs": [
|
116
|
+
{
|
117
|
+
"internalType": "address",
|
118
|
+
"name": "oldWallet",
|
119
|
+
"type": "address"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"internalType": "address",
|
123
|
+
"name": "newWallet",
|
124
|
+
"type": "address"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"internalType": "uint256",
|
128
|
+
"name": "allowance",
|
129
|
+
"type": "uint256"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"internalType": "uint256",
|
133
|
+
"name": "balance",
|
134
|
+
"type": "uint256"
|
135
|
+
}
|
136
|
+
],
|
137
|
+
"name": "ErrorComponentWalletAllowanceTooSmall",
|
138
|
+
"type": "error"
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"inputs": [
|
142
|
+
{
|
143
|
+
"internalType": "NftId",
|
144
|
+
"name": "nftId",
|
145
|
+
"type": "uint96"
|
146
|
+
}
|
147
|
+
],
|
148
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
149
|
+
"type": "error"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "contractAddress",
|
156
|
+
"type": "address"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
160
|
+
"type": "error"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [],
|
164
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
165
|
+
"type": "error"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"inputs": [
|
169
|
+
{
|
170
|
+
"internalType": "address",
|
171
|
+
"name": "account",
|
172
|
+
"type": "address"
|
173
|
+
}
|
174
|
+
],
|
175
|
+
"name": "ErrorNftOwnableNotOwner",
|
176
|
+
"type": "error"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"inputs": [
|
180
|
+
{
|
181
|
+
"internalType": "address",
|
182
|
+
"name": "registryAddress",
|
183
|
+
"type": "address"
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"name": "ErrorNotRegistry",
|
187
|
+
"type": "error"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"inputs": [],
|
191
|
+
"name": "FailedInnerCall",
|
192
|
+
"type": "error"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"inputs": [],
|
196
|
+
"name": "InvalidInitialization",
|
197
|
+
"type": "error"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"inputs": [],
|
201
|
+
"name": "NotInitializing",
|
202
|
+
"type": "error"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"inputs": [
|
206
|
+
{
|
207
|
+
"internalType": "address",
|
208
|
+
"name": "token",
|
209
|
+
"type": "address"
|
210
|
+
}
|
211
|
+
],
|
212
|
+
"name": "SafeERC20FailedOperation",
|
213
|
+
"type": "error"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"anonymous": false,
|
217
|
+
"inputs": [
|
218
|
+
{
|
219
|
+
"indexed": false,
|
220
|
+
"internalType": "address",
|
221
|
+
"name": "authority",
|
222
|
+
"type": "address"
|
223
|
+
}
|
224
|
+
],
|
225
|
+
"name": "AuthorityUpdated",
|
226
|
+
"type": "event"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"anonymous": false,
|
230
|
+
"inputs": [
|
231
|
+
{
|
232
|
+
"indexed": false,
|
233
|
+
"internalType": "uint64",
|
234
|
+
"name": "version",
|
235
|
+
"type": "uint64"
|
236
|
+
}
|
237
|
+
],
|
238
|
+
"name": "Initialized",
|
239
|
+
"type": "event"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"anonymous": false,
|
243
|
+
"inputs": [
|
244
|
+
{
|
245
|
+
"indexed": false,
|
246
|
+
"internalType": "address",
|
247
|
+
"name": "oldWallet",
|
248
|
+
"type": "address"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"indexed": false,
|
252
|
+
"internalType": "address",
|
253
|
+
"name": "newWallet",
|
254
|
+
"type": "address"
|
255
|
+
}
|
256
|
+
],
|
257
|
+
"name": "LogComponentWalletAddressChanged",
|
258
|
+
"type": "event"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"anonymous": false,
|
262
|
+
"inputs": [
|
263
|
+
{
|
264
|
+
"indexed": false,
|
265
|
+
"internalType": "address",
|
266
|
+
"name": "from",
|
267
|
+
"type": "address"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"indexed": false,
|
271
|
+
"internalType": "address",
|
272
|
+
"name": "to",
|
273
|
+
"type": "address"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"indexed": false,
|
277
|
+
"internalType": "uint256",
|
278
|
+
"name": "amount",
|
279
|
+
"type": "uint256"
|
280
|
+
}
|
281
|
+
],
|
282
|
+
"name": "LogComponentWalletTokensTransferred",
|
283
|
+
"type": "event"
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"inputs": [],
|
287
|
+
"name": "COMPONENT_LOCATION_V1",
|
288
|
+
"outputs": [
|
289
|
+
{
|
290
|
+
"internalType": "bytes32",
|
291
|
+
"name": "",
|
292
|
+
"type": "bytes32"
|
293
|
+
}
|
294
|
+
],
|
295
|
+
"stateMutability": "view",
|
296
|
+
"type": "function"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"inputs": [],
|
300
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
301
|
+
"outputs": [
|
302
|
+
{
|
303
|
+
"internalType": "bytes32",
|
304
|
+
"name": "",
|
305
|
+
"type": "bytes32"
|
306
|
+
}
|
307
|
+
],
|
308
|
+
"stateMutability": "view",
|
309
|
+
"type": "function"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"inputs": [],
|
313
|
+
"name": "PRODUCT_STORAGE_LOCATION_V1",
|
314
|
+
"outputs": [
|
315
|
+
{
|
316
|
+
"internalType": "bytes32",
|
317
|
+
"name": "",
|
318
|
+
"type": "bytes32"
|
319
|
+
}
|
320
|
+
],
|
321
|
+
"stateMutability": "view",
|
322
|
+
"type": "function"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"inputs": [],
|
326
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
327
|
+
"outputs": [
|
328
|
+
{
|
329
|
+
"internalType": "bytes32",
|
330
|
+
"name": "",
|
331
|
+
"type": "bytes32"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"stateMutability": "view",
|
335
|
+
"type": "function"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"inputs": [],
|
339
|
+
"name": "authority",
|
340
|
+
"outputs": [
|
341
|
+
{
|
342
|
+
"internalType": "address",
|
343
|
+
"name": "",
|
344
|
+
"type": "address"
|
345
|
+
}
|
346
|
+
],
|
347
|
+
"stateMutability": "view",
|
348
|
+
"type": "function"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"inputs": [
|
352
|
+
{
|
353
|
+
"internalType": "uint256",
|
354
|
+
"name": "sumInsuredAmount",
|
355
|
+
"type": "uint256"
|
356
|
+
},
|
357
|
+
{
|
358
|
+
"internalType": "RiskId",
|
359
|
+
"name": "riskId",
|
360
|
+
"type": "bytes8"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"internalType": "Seconds",
|
364
|
+
"name": "lifetime",
|
365
|
+
"type": "uint40"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"internalType": "bytes",
|
369
|
+
"name": "applicationData",
|
370
|
+
"type": "bytes"
|
371
|
+
}
|
372
|
+
],
|
373
|
+
"name": "calculateNetPremium",
|
374
|
+
"outputs": [
|
375
|
+
{
|
376
|
+
"internalType": "uint256",
|
377
|
+
"name": "netPremiumAmount",
|
378
|
+
"type": "uint256"
|
379
|
+
}
|
380
|
+
],
|
381
|
+
"stateMutability": "view",
|
382
|
+
"type": "function"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"inputs": [
|
386
|
+
{
|
387
|
+
"internalType": "uint256",
|
388
|
+
"name": "sumInsuredAmount",
|
389
|
+
"type": "uint256"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"internalType": "RiskId",
|
393
|
+
"name": "riskId",
|
394
|
+
"type": "bytes8"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"internalType": "Seconds",
|
398
|
+
"name": "lifetime",
|
399
|
+
"type": "uint40"
|
400
|
+
},
|
401
|
+
{
|
402
|
+
"internalType": "bytes",
|
403
|
+
"name": "applicationData",
|
404
|
+
"type": "bytes"
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"internalType": "NftId",
|
408
|
+
"name": "bundleNftId",
|
409
|
+
"type": "uint96"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"internalType": "ReferralId",
|
413
|
+
"name": "referralId",
|
414
|
+
"type": "bytes8"
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"name": "calculatePremium",
|
418
|
+
"outputs": [
|
419
|
+
{
|
420
|
+
"internalType": "uint256",
|
421
|
+
"name": "premiumAmount",
|
422
|
+
"type": "uint256"
|
423
|
+
}
|
424
|
+
],
|
425
|
+
"stateMutability": "view",
|
426
|
+
"type": "function"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"inputs": [],
|
430
|
+
"name": "getComponentInfo",
|
431
|
+
"outputs": [
|
432
|
+
{
|
433
|
+
"components": [
|
434
|
+
{
|
435
|
+
"internalType": "string",
|
436
|
+
"name": "name",
|
437
|
+
"type": "string"
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"internalType": "contract IERC20Metadata",
|
441
|
+
"name": "token",
|
442
|
+
"type": "address"
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"internalType": "contract TokenHandler",
|
446
|
+
"name": "tokenHandler",
|
447
|
+
"type": "address"
|
448
|
+
},
|
449
|
+
{
|
450
|
+
"internalType": "address",
|
451
|
+
"name": "wallet",
|
452
|
+
"type": "address"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"internalType": "Amount",
|
456
|
+
"name": "balanceAmount",
|
457
|
+
"type": "uint96"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"internalType": "Amount",
|
461
|
+
"name": "feeAmount",
|
462
|
+
"type": "uint96"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"internalType": "bytes",
|
466
|
+
"name": "data",
|
467
|
+
"type": "bytes"
|
468
|
+
}
|
469
|
+
],
|
470
|
+
"internalType": "struct IComponents.ComponentInfo",
|
471
|
+
"name": "info",
|
472
|
+
"type": "tuple"
|
473
|
+
}
|
474
|
+
],
|
475
|
+
"stateMutability": "view",
|
476
|
+
"type": "function"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"inputs": [],
|
480
|
+
"name": "getDistributionNftId",
|
481
|
+
"outputs": [
|
482
|
+
{
|
483
|
+
"internalType": "NftId",
|
484
|
+
"name": "distributionNftId",
|
485
|
+
"type": "uint96"
|
486
|
+
}
|
487
|
+
],
|
488
|
+
"stateMutability": "view",
|
489
|
+
"type": "function"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"inputs": [],
|
493
|
+
"name": "getInitialInfo",
|
494
|
+
"outputs": [
|
495
|
+
{
|
496
|
+
"components": [
|
497
|
+
{
|
498
|
+
"internalType": "NftId",
|
499
|
+
"name": "nftId",
|
500
|
+
"type": "uint96"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"internalType": "NftId",
|
504
|
+
"name": "parentNftId",
|
505
|
+
"type": "uint96"
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"internalType": "ObjectType",
|
509
|
+
"name": "objectType",
|
510
|
+
"type": "uint8"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"internalType": "bool",
|
514
|
+
"name": "isInterceptor",
|
515
|
+
"type": "bool"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"internalType": "address",
|
519
|
+
"name": "objectAddress",
|
520
|
+
"type": "address"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"internalType": "address",
|
524
|
+
"name": "initialOwner",
|
525
|
+
"type": "address"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"internalType": "bytes",
|
529
|
+
"name": "data",
|
530
|
+
"type": "bytes"
|
531
|
+
}
|
532
|
+
],
|
533
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
534
|
+
"name": "info",
|
535
|
+
"type": "tuple"
|
536
|
+
}
|
537
|
+
],
|
538
|
+
"stateMutability": "view",
|
539
|
+
"type": "function"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"inputs": [],
|
543
|
+
"name": "getInstance",
|
544
|
+
"outputs": [
|
545
|
+
{
|
546
|
+
"internalType": "contract IInstance",
|
547
|
+
"name": "instance",
|
548
|
+
"type": "address"
|
549
|
+
}
|
550
|
+
],
|
551
|
+
"stateMutability": "view",
|
552
|
+
"type": "function"
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"inputs": [],
|
556
|
+
"name": "getName",
|
557
|
+
"outputs": [
|
558
|
+
{
|
559
|
+
"internalType": "string",
|
560
|
+
"name": "name",
|
561
|
+
"type": "string"
|
562
|
+
}
|
563
|
+
],
|
564
|
+
"stateMutability": "view",
|
565
|
+
"type": "function"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"inputs": [],
|
569
|
+
"name": "getNftId",
|
570
|
+
"outputs": [
|
571
|
+
{
|
572
|
+
"internalType": "NftId",
|
573
|
+
"name": "",
|
574
|
+
"type": "uint96"
|
575
|
+
}
|
576
|
+
],
|
577
|
+
"stateMutability": "view",
|
578
|
+
"type": "function"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"inputs": [],
|
582
|
+
"name": "getOwner",
|
583
|
+
"outputs": [
|
584
|
+
{
|
585
|
+
"internalType": "address",
|
586
|
+
"name": "",
|
587
|
+
"type": "address"
|
588
|
+
}
|
589
|
+
],
|
590
|
+
"stateMutability": "view",
|
591
|
+
"type": "function"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"inputs": [],
|
595
|
+
"name": "getPoolNftId",
|
596
|
+
"outputs": [
|
597
|
+
{
|
598
|
+
"internalType": "NftId",
|
599
|
+
"name": "poolNftId",
|
600
|
+
"type": "uint96"
|
601
|
+
}
|
602
|
+
],
|
603
|
+
"stateMutability": "view",
|
604
|
+
"type": "function"
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"inputs": [],
|
608
|
+
"name": "getProductNftId",
|
609
|
+
"outputs": [
|
610
|
+
{
|
611
|
+
"internalType": "NftId",
|
612
|
+
"name": "productNftId",
|
613
|
+
"type": "uint96"
|
614
|
+
}
|
615
|
+
],
|
616
|
+
"stateMutability": "view",
|
617
|
+
"type": "function"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"inputs": [],
|
621
|
+
"name": "getRegistry",
|
622
|
+
"outputs": [
|
623
|
+
{
|
624
|
+
"internalType": "contract IRegistry",
|
625
|
+
"name": "",
|
626
|
+
"type": "address"
|
627
|
+
}
|
628
|
+
],
|
629
|
+
"stateMutability": "view",
|
630
|
+
"type": "function"
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"inputs": [],
|
634
|
+
"name": "getRegistryAddress",
|
635
|
+
"outputs": [
|
636
|
+
{
|
637
|
+
"internalType": "address",
|
638
|
+
"name": "",
|
639
|
+
"type": "address"
|
640
|
+
}
|
641
|
+
],
|
642
|
+
"stateMutability": "view",
|
643
|
+
"type": "function"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"inputs": [],
|
647
|
+
"name": "getSetupInfo",
|
648
|
+
"outputs": [
|
649
|
+
{
|
650
|
+
"components": [
|
651
|
+
{
|
652
|
+
"internalType": "contract IERC20Metadata",
|
653
|
+
"name": "token",
|
654
|
+
"type": "address"
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"internalType": "contract TokenHandler",
|
658
|
+
"name": "tokenHandler",
|
659
|
+
"type": "address"
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"internalType": "NftId",
|
663
|
+
"name": "distributionNftId",
|
664
|
+
"type": "uint96"
|
665
|
+
},
|
666
|
+
{
|
667
|
+
"internalType": "NftId",
|
668
|
+
"name": "poolNftId",
|
669
|
+
"type": "uint96"
|
670
|
+
},
|
671
|
+
{
|
672
|
+
"components": [
|
673
|
+
{
|
674
|
+
"internalType": "UFixed",
|
675
|
+
"name": "fractionalFee",
|
676
|
+
"type": "uint256"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"internalType": "uint256",
|
680
|
+
"name": "fixedFee",
|
681
|
+
"type": "uint256"
|
682
|
+
}
|
683
|
+
],
|
684
|
+
"internalType": "struct Fee",
|
685
|
+
"name": "productFee",
|
686
|
+
"type": "tuple"
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"components": [
|
690
|
+
{
|
691
|
+
"internalType": "UFixed",
|
692
|
+
"name": "fractionalFee",
|
693
|
+
"type": "uint256"
|
694
|
+
},
|
695
|
+
{
|
696
|
+
"internalType": "uint256",
|
697
|
+
"name": "fixedFee",
|
698
|
+
"type": "uint256"
|
699
|
+
}
|
700
|
+
],
|
701
|
+
"internalType": "struct Fee",
|
702
|
+
"name": "processingFee",
|
703
|
+
"type": "tuple"
|
704
|
+
},
|
705
|
+
{
|
706
|
+
"internalType": "bool",
|
707
|
+
"name": "isIntercepting",
|
708
|
+
"type": "bool"
|
709
|
+
},
|
710
|
+
{
|
711
|
+
"internalType": "address",
|
712
|
+
"name": "wallet",
|
713
|
+
"type": "address"
|
714
|
+
}
|
715
|
+
],
|
716
|
+
"internalType": "struct ISetup.ProductSetupInfo",
|
717
|
+
"name": "setupInfo",
|
718
|
+
"type": "tuple"
|
719
|
+
}
|
720
|
+
],
|
721
|
+
"stateMutability": "view",
|
722
|
+
"type": "function"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"inputs": [],
|
726
|
+
"name": "getToken",
|
727
|
+
"outputs": [
|
728
|
+
{
|
729
|
+
"internalType": "contract IERC20Metadata",
|
730
|
+
"name": "token",
|
731
|
+
"type": "address"
|
732
|
+
}
|
733
|
+
],
|
734
|
+
"stateMutability": "view",
|
735
|
+
"type": "function"
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"inputs": [],
|
739
|
+
"name": "getWallet",
|
740
|
+
"outputs": [
|
741
|
+
{
|
742
|
+
"internalType": "address",
|
743
|
+
"name": "walletAddress",
|
744
|
+
"type": "address"
|
745
|
+
}
|
746
|
+
],
|
747
|
+
"stateMutability": "view",
|
748
|
+
"type": "function"
|
749
|
+
},
|
6
750
|
{
|
7
751
|
"inputs": [
|
8
752
|
{
|
@@ -12,92 +756,107 @@
|
|
12
756
|
},
|
13
757
|
{
|
14
758
|
"internalType": "NftId",
|
15
|
-
"name": "
|
759
|
+
"name": "instanceNftId",
|
16
760
|
"type": "uint96"
|
17
761
|
},
|
762
|
+
{
|
763
|
+
"internalType": "string",
|
764
|
+
"name": "name",
|
765
|
+
"type": "string"
|
766
|
+
},
|
18
767
|
{
|
19
768
|
"internalType": "address",
|
20
769
|
"name": "token",
|
21
770
|
"type": "address"
|
22
771
|
},
|
772
|
+
{
|
773
|
+
"internalType": "ObjectType",
|
774
|
+
"name": "componentType",
|
775
|
+
"type": "uint8"
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"internalType": "bool",
|
779
|
+
"name": "isInterceptor",
|
780
|
+
"type": "bool"
|
781
|
+
},
|
23
782
|
{
|
24
783
|
"internalType": "address",
|
25
|
-
"name": "
|
784
|
+
"name": "initialOwner",
|
26
785
|
"type": "address"
|
27
|
-
}
|
28
|
-
],
|
29
|
-
"stateMutability": "nonpayable",
|
30
|
-
"type": "constructor"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"inputs": [],
|
34
|
-
"name": "getData",
|
35
|
-
"outputs": [
|
786
|
+
},
|
36
787
|
{
|
37
788
|
"internalType": "bytes",
|
38
|
-
"name": "
|
789
|
+
"name": "registryData",
|
39
790
|
"type": "bytes"
|
40
791
|
}
|
41
792
|
],
|
42
|
-
"
|
793
|
+
"name": "initializeComponent",
|
794
|
+
"outputs": [],
|
795
|
+
"stateMutability": "nonpayable",
|
43
796
|
"type": "function"
|
44
797
|
},
|
45
798
|
{
|
46
799
|
"inputs": [],
|
47
|
-
"name": "
|
48
|
-
"outputs": [
|
49
|
-
|
50
|
-
"internalType": "contract IInstance",
|
51
|
-
"name": "instance",
|
52
|
-
"type": "address"
|
53
|
-
}
|
54
|
-
],
|
55
|
-
"stateMutability": "view",
|
800
|
+
"name": "initializeERC165",
|
801
|
+
"outputs": [],
|
802
|
+
"stateMutability": "nonpayable",
|
56
803
|
"type": "function"
|
57
804
|
},
|
58
805
|
{
|
59
|
-
"inputs": [
|
60
|
-
"name": "getNftId",
|
61
|
-
"outputs": [
|
806
|
+
"inputs": [
|
62
807
|
{
|
63
|
-
"internalType": "
|
64
|
-
"name": "
|
65
|
-
"type": "
|
66
|
-
}
|
67
|
-
],
|
68
|
-
"stateMutability": "view",
|
69
|
-
"type": "function"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"inputs": [],
|
73
|
-
"name": "getOwner",
|
74
|
-
"outputs": [
|
808
|
+
"internalType": "address",
|
809
|
+
"name": "initialOwner",
|
810
|
+
"type": "address"
|
811
|
+
},
|
75
812
|
{
|
76
813
|
"internalType": "address",
|
77
|
-
"name": "
|
814
|
+
"name": "registryAddress",
|
78
815
|
"type": "address"
|
79
816
|
}
|
80
817
|
],
|
81
|
-
"
|
818
|
+
"name": "initializeNftOwnable",
|
819
|
+
"outputs": [],
|
820
|
+
"stateMutability": "nonpayable",
|
82
821
|
"type": "function"
|
83
822
|
},
|
84
823
|
{
|
85
|
-
"inputs": [
|
86
|
-
|
87
|
-
|
824
|
+
"inputs": [
|
825
|
+
{
|
826
|
+
"internalType": "address",
|
827
|
+
"name": "registry",
|
828
|
+
"type": "address"
|
829
|
+
},
|
88
830
|
{
|
89
831
|
"internalType": "NftId",
|
90
|
-
"name": "
|
832
|
+
"name": "instanceNftId",
|
91
833
|
"type": "uint96"
|
92
|
-
}
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"internalType": "string",
|
837
|
+
"name": "name",
|
838
|
+
"type": "string"
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"internalType": "address",
|
842
|
+
"name": "token",
|
843
|
+
"type": "address"
|
844
|
+
},
|
845
|
+
{
|
846
|
+
"internalType": "bool",
|
847
|
+
"name": "isInterceptor",
|
848
|
+
"type": "bool"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"internalType": "address",
|
852
|
+
"name": "pool",
|
853
|
+
"type": "address"
|
854
|
+
},
|
855
|
+
{
|
856
|
+
"internalType": "address",
|
857
|
+
"name": "distribution",
|
858
|
+
"type": "address"
|
859
|
+
},
|
101
860
|
{
|
102
861
|
"components": [
|
103
862
|
{
|
@@ -112,30 +871,9 @@
|
|
112
871
|
}
|
113
872
|
],
|
114
873
|
"internalType": "struct Fee",
|
115
|
-
"name": "
|
874
|
+
"name": "productFee",
|
116
875
|
"type": "tuple"
|
117
|
-
}
|
118
|
-
],
|
119
|
-
"stateMutability": "view",
|
120
|
-
"type": "function"
|
121
|
-
},
|
122
|
-
{
|
123
|
-
"inputs": [],
|
124
|
-
"name": "getPoolNftId",
|
125
|
-
"outputs": [
|
126
|
-
{
|
127
|
-
"internalType": "NftId",
|
128
|
-
"name": "poolNftId",
|
129
|
-
"type": "uint96"
|
130
|
-
}
|
131
|
-
],
|
132
|
-
"stateMutability": "view",
|
133
|
-
"type": "function"
|
134
|
-
},
|
135
|
-
{
|
136
|
-
"inputs": [],
|
137
|
-
"name": "getProcessingFee",
|
138
|
-
"outputs": [
|
876
|
+
},
|
139
877
|
{
|
140
878
|
"components": [
|
141
879
|
{
|
@@ -152,58 +890,95 @@
|
|
152
890
|
"internalType": "struct Fee",
|
153
891
|
"name": "processingFee",
|
154
892
|
"type": "tuple"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"internalType": "address",
|
896
|
+
"name": "initialOwner",
|
897
|
+
"type": "address"
|
898
|
+
},
|
899
|
+
{
|
900
|
+
"internalType": "bytes",
|
901
|
+
"name": "registryData",
|
902
|
+
"type": "bytes"
|
155
903
|
}
|
156
904
|
],
|
157
|
-
"
|
905
|
+
"name": "initializeProduct",
|
906
|
+
"outputs": [],
|
907
|
+
"stateMutability": "nonpayable",
|
158
908
|
"type": "function"
|
159
909
|
},
|
160
910
|
{
|
161
|
-
"inputs": [
|
162
|
-
"name": "getRegistry",
|
163
|
-
"outputs": [
|
911
|
+
"inputs": [
|
164
912
|
{
|
165
|
-
"internalType": "
|
166
|
-
"name": "
|
913
|
+
"internalType": "address",
|
914
|
+
"name": "registryAddress",
|
915
|
+
"type": "address"
|
916
|
+
},
|
917
|
+
{
|
918
|
+
"internalType": "NftId",
|
919
|
+
"name": "parentNftId",
|
920
|
+
"type": "uint96"
|
921
|
+
},
|
922
|
+
{
|
923
|
+
"internalType": "ObjectType",
|
924
|
+
"name": "objectType",
|
925
|
+
"type": "uint8"
|
926
|
+
},
|
927
|
+
{
|
928
|
+
"internalType": "bool",
|
929
|
+
"name": "isInterceptor",
|
930
|
+
"type": "bool"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"internalType": "address",
|
934
|
+
"name": "initialOwner",
|
167
935
|
"type": "address"
|
936
|
+
},
|
937
|
+
{
|
938
|
+
"internalType": "bytes",
|
939
|
+
"name": "registryData",
|
940
|
+
"type": "bytes"
|
168
941
|
}
|
169
942
|
],
|
170
|
-
"
|
943
|
+
"name": "initializeRegisterable",
|
944
|
+
"outputs": [],
|
945
|
+
"stateMutability": "nonpayable",
|
171
946
|
"type": "function"
|
172
947
|
},
|
173
948
|
{
|
174
|
-
"inputs": [
|
175
|
-
"name": "getToken",
|
176
|
-
"outputs": [
|
949
|
+
"inputs": [
|
177
950
|
{
|
178
|
-
"internalType": "
|
179
|
-
"name": "
|
951
|
+
"internalType": "address",
|
952
|
+
"name": "registryAddress",
|
180
953
|
"type": "address"
|
181
954
|
}
|
182
955
|
],
|
183
|
-
"
|
956
|
+
"name": "initializeRegistryLinked",
|
957
|
+
"outputs": [],
|
958
|
+
"stateMutability": "nonpayable",
|
184
959
|
"type": "function"
|
185
960
|
},
|
186
961
|
{
|
187
962
|
"inputs": [],
|
188
|
-
"name": "
|
963
|
+
"name": "isConsumingScheduledOp",
|
189
964
|
"outputs": [
|
190
965
|
{
|
191
|
-
"internalType": "
|
966
|
+
"internalType": "bytes4",
|
192
967
|
"name": "",
|
193
|
-
"type": "
|
968
|
+
"type": "bytes4"
|
194
969
|
}
|
195
970
|
],
|
196
|
-
"stateMutability": "
|
971
|
+
"stateMutability": "view",
|
197
972
|
"type": "function"
|
198
973
|
},
|
199
974
|
{
|
200
975
|
"inputs": [],
|
201
|
-
"name": "
|
976
|
+
"name": "isNftInterceptor",
|
202
977
|
"outputs": [
|
203
978
|
{
|
204
|
-
"internalType": "
|
205
|
-
"name": "
|
206
|
-
"type": "
|
979
|
+
"internalType": "bool",
|
980
|
+
"name": "isInterceptor",
|
981
|
+
"type": "bool"
|
207
982
|
}
|
208
983
|
],
|
209
984
|
"stateMutability": "view",
|
@@ -211,21 +986,82 @@
|
|
211
986
|
},
|
212
987
|
{
|
213
988
|
"inputs": [],
|
214
|
-
"name": "
|
989
|
+
"name": "linkToRegisteredNftId",
|
215
990
|
"outputs": [],
|
216
991
|
"stateMutability": "nonpayable",
|
217
992
|
"type": "function"
|
218
993
|
},
|
219
994
|
{
|
220
995
|
"inputs": [],
|
221
|
-
"name": "
|
222
|
-
"outputs": [
|
996
|
+
"name": "lock",
|
997
|
+
"outputs": [],
|
998
|
+
"stateMutability": "nonpayable",
|
999
|
+
"type": "function"
|
1000
|
+
},
|
1001
|
+
{
|
1002
|
+
"inputs": [
|
223
1003
|
{
|
224
|
-
"internalType": "
|
225
|
-
"name": "
|
226
|
-
"type": "
|
1004
|
+
"internalType": "address",
|
1005
|
+
"name": "to",
|
1006
|
+
"type": "address"
|
1007
|
+
},
|
1008
|
+
{
|
1009
|
+
"internalType": "uint256",
|
1010
|
+
"name": "tokenId",
|
1011
|
+
"type": "uint256"
|
1012
|
+
}
|
1013
|
+
],
|
1014
|
+
"name": "nftMint",
|
1015
|
+
"outputs": [],
|
1016
|
+
"stateMutability": "nonpayable",
|
1017
|
+
"type": "function"
|
1018
|
+
},
|
1019
|
+
{
|
1020
|
+
"inputs": [
|
1021
|
+
{
|
1022
|
+
"internalType": "address",
|
1023
|
+
"name": "from",
|
1024
|
+
"type": "address"
|
1025
|
+
},
|
1026
|
+
{
|
1027
|
+
"internalType": "address",
|
1028
|
+
"name": "to",
|
1029
|
+
"type": "address"
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
"internalType": "uint256",
|
1033
|
+
"name": "tokenId",
|
1034
|
+
"type": "uint256"
|
1035
|
+
}
|
1036
|
+
],
|
1037
|
+
"name": "nftTransferFrom",
|
1038
|
+
"outputs": [],
|
1039
|
+
"stateMutability": "nonpayable",
|
1040
|
+
"type": "function"
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"inputs": [
|
1044
|
+
{
|
1045
|
+
"internalType": "bytes4",
|
1046
|
+
"name": "interfaceId",
|
1047
|
+
"type": "bytes4"
|
1048
|
+
}
|
1049
|
+
],
|
1050
|
+
"name": "registerInterface",
|
1051
|
+
"outputs": [],
|
1052
|
+
"stateMutability": "nonpayable",
|
1053
|
+
"type": "function"
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
"inputs": [
|
1057
|
+
{
|
1058
|
+
"internalType": "address",
|
1059
|
+
"name": "newAuthority",
|
1060
|
+
"type": "address"
|
227
1061
|
}
|
228
1062
|
],
|
1063
|
+
"name": "setAuthority",
|
1064
|
+
"outputs": [],
|
229
1065
|
"stateMutability": "nonpayable",
|
230
1066
|
"type": "function"
|
231
1067
|
},
|
@@ -245,7 +1081,7 @@
|
|
245
1081
|
}
|
246
1082
|
],
|
247
1083
|
"internalType": "struct Fee",
|
248
|
-
"name": "
|
1084
|
+
"name": "productFee",
|
249
1085
|
"type": "tuple"
|
250
1086
|
},
|
251
1087
|
{
|
@@ -271,6 +1107,32 @@
|
|
271
1107
|
"stateMutability": "nonpayable",
|
272
1108
|
"type": "function"
|
273
1109
|
},
|
1110
|
+
{
|
1111
|
+
"inputs": [
|
1112
|
+
{
|
1113
|
+
"internalType": "NftId",
|
1114
|
+
"name": "productNftId",
|
1115
|
+
"type": "uint96"
|
1116
|
+
}
|
1117
|
+
],
|
1118
|
+
"name": "setProductNftId",
|
1119
|
+
"outputs": [],
|
1120
|
+
"stateMutability": "nonpayable",
|
1121
|
+
"type": "function"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"inputs": [
|
1125
|
+
{
|
1126
|
+
"internalType": "address",
|
1127
|
+
"name": "newWallet",
|
1128
|
+
"type": "address"
|
1129
|
+
}
|
1130
|
+
],
|
1131
|
+
"name": "setWallet",
|
1132
|
+
"outputs": [],
|
1133
|
+
"stateMutability": "nonpayable",
|
1134
|
+
"type": "function"
|
1135
|
+
},
|
274
1136
|
{
|
275
1137
|
"inputs": [
|
276
1138
|
{
|
@@ -298,8 +1160,8 @@
|
|
298
1160
|
"type": "function"
|
299
1161
|
}
|
300
1162
|
],
|
301
|
-
"bytecode": "0x60e06040523480156200001157600080fd5b50604051620015543803806200155483398101604081905262000034916200057c565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1916600117905583838382826001600160a01b038216620000d15760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa15801562000121573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001479190620005e0565b620001955760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000c8565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002139190620005e0565b6200026d5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000c8565b3360c052631dfba64760e11b60009081526020527f95e5a2564f7af40498dc043c6da135e06324c5edb1f60c2bf4dcdf2da207fa45805460ff1916600117905550506080516040516305247a1760e51b81526001600160601b03841660048201526000916001600160a01b03169063a48f42e090602401600060405180830381865afa15801562000302573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200032c91908101906200070c565b6060810151600580546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b8152638de54b9b60e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000394573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ba9190620005e0565b620003e25760405162461bcd60e51b81526020600482015260006024820152604401620000c8565b600560009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000436573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045c9190620007e6565b600180546001600160a01b039283166001600160a01b03199182161790915560038054821630179055600480549483169490911693909317835560055460408051634288121d60e01b81529051919092169550634288121d9450818401936020935090918290030181865afa158015620004da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005009190620007e6565b600680546001600160a01b039283166001600160a01b031991821617909155600780549390921692169190911790555062000806915050565b6001600160a01b03811681146200054f57600080fd5b50565b80516200055f8162000539565b919050565b80516001600160601b03811681146200055f57600080fd5b600080600080608085870312156200059357600080fd5b8451620005a08162000539565b9350620005b06020860162000564565b92506040850151620005c28162000539565b6060860151909250620005d58162000539565b939692955090935050565b600060208284031215620005f357600080fd5b815180151581146200060457600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b03811182821017156200064657620006466200060b565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200067757620006776200060b565b604052919050565b600082601f8301126200069157600080fd5b81516001600160401b03811115620006ad57620006ad6200060b565b6020620006c3601f8301601f191682016200064c565b8281528582848701011115620006d857600080fd5b60005b83811015620006f8578581018301518282018401528201620006db565b506000928101909101919091529392505050565b6000602082840312156200071f57600080fd5b81516001600160401b03808211156200073757600080fd5b9083019060c082860312156200074c57600080fd5b6200075662000621565b620007618362000564565b8152620007716020840162000564565b6020820152604083015160ff811681146200078b57600080fd5b60408201526200079e6060840162000552565b6060820152620007b16080840162000552565b608082015260a083015182811115620007c957600080fd5b620007d7878286016200067f565b60a08301525095945050505050565b600060208284031215620007f957600080fd5b8151620006048162000539565b60805160a05160c051610cf46200086060003960006105fc015260006101c1015260008181610201015281816102d80152818161036e015281816104c4015281816105240152818161057d015261063f0152610cf46000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80635ab1bd53116100a2578063b6b412ba11610071578063b6b412ba1461023f578063bc74aab014610252578063daafed4014610267578063de7b5d141461026f578063f83d08ba1461028057600080fd5b80635ab1bd53146101ff578063644c45e014610225578063893d20e81461022d578063a69df4b51461023557600080fd5b80631bdd6b76116100de5780631bdd6b76146101a657806321df0da7146101ae57806331b62a3b146101bf5780633bc5de30146101e557600080fd5b806301ffc9a714610110578063132996041461015257806315dae03e146101775780631aa3a00814610186575b600080fd5b61013d61011e3660046109ac565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610149565b60405160648152602001610149565b61018e61028d565b6040516001600160601b039091168152602001610149565b61018e61049f565b6004546001600160a01b031661015f565b7f000000000000000000000000000000000000000000000000000000000000000061018e565b6040805160208101825260008152905161014991906109dd565b7f000000000000000000000000000000000000000000000000000000000000000061015f565b61018e61050c565b61015f61055b565b61023d6106b8565b005b61023d61024d366004610a92565b610750565b61025a6107f0565b6040516101499190610ac7565b61025a61088f565b6005546001600160a01b031661015f565b61023d61092e565b905090565b600061029761055b565b6001600160a01b0316336001600160a01b0316146102d65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661034c5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a434f422d3030313a52454749535452595f5a45524f000000000060448201526064016102cd565b60055460405163c3c5a54760e01b81526001600160a01b0391821660048201527f00000000000000000000000000000000000000000000000000000000000000009091169063c3c5a54790602401602060405180830381865afa1580156103b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103db9190610ade565b6104315760405162461bcd60e51b815260206004820152602160248201527f4552524f523a434f423a494e5354414e43455f4e4f545f5245474953544552456044820152601160fa1b60648201526084016102cd565b600154604051632210724360e11b81523060048201526001600160a01b0390911690634420e486906024016020604051808303816000875af115801561047b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102889190610b1c565b600754604051636939560f60e11b81526001600160a01b0391821660048201526000917f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e906024015b602060405180830381865afa15801561047b573d6000803e3d6000fd5b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e906024016104ef565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e89190610b1c565b90506105f5816000610996565b15610621577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801561068e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b29190610b4f565b91505090565b6106c061055b565b6001600160a01b0316336001600160a01b0316146106f05760405162461bcd60e51b81526004016102cd90610b6c565b600154604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b15801561073657600080fd5b505af115801561074a573d6000803e3d6000fd5b50505050565b61075861055b565b6001600160a01b0316336001600160a01b0316146107885760405162461bcd60e51b81526004016102cd90610b6c565b600654604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba906107ba9085908590600401610ba3565b600060405180830381600087803b1580156107d457600080fd5b505af11580156107e8573d6000803e3d6000fd5b505050505050565b60408051808201909152600080825260208201526005546001600160a01b0316634fd077f561081d61050c565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161012060405180830381865afa158015610862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108869190610bf9565b60a00151905090565b60408051808201909152600080825260208201526005546001600160a01b0316634fd077f56108bc61050c565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161012060405180830381865afa158015610901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109259190610bf9565b60c00151905090565b61093661055b565b6001600160a01b0316336001600160a01b0316146109665760405162461bcd60e51b81526004016102cd90610b6c565b60015460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a79060240161071c565b6001600160601b03828116908216145b92915050565b6000602082840312156109be57600080fd5b81356001600160e01b0319811681146109d657600080fd5b9392505050565b600060208083528351808285015260005b81811015610a0a578581018301518582016040015282016109ee565b506000604082860101526040601f19601f8301168501019250505092915050565b6040805190810167ffffffffffffffff81118282101715610a5c57634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610a7457600080fd5b610a7c610a2b565b9050813581526020820135602082015292915050565b60008060808385031215610aa557600080fd5b610aaf8484610a62565b9150610abe8460408501610a62565b90509250929050565b8151815260208083015190820152604081016109a6565b600060208284031215610af057600080fd5b815180151581146109d657600080fd5b80516001600160601b0381168114610b1757600080fd5b919050565b600060208284031215610b2e57600080fd5b6109d682610b00565b6001600160a01b0381168114610b4c57600080fd5b50565b600060208284031215610b6157600080fd5b81516109d681610b37565b60208082526017908201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b8251815260208084015181830152825160408301528201516060820152608081016109d6565b600060408284031215610bdb57600080fd5b610be3610a2b565b9050815181526020820151602082015292915050565b60006101208284031215610c0c57600080fd5b60405160e0810181811067ffffffffffffffff82111715610c3d57634e487b7160e01b600052604160045260246000fd5b604052610c4983610b00565b8152610c5760208401610b00565b6020820152610c6860408401610b00565b60408201526060830151610c7b81610b37565b60608201526080830151610c8e81610b37565b6080820152610ca08460a08501610bc9565b60a0820152610cb28460e08501610bc9565b60c0820152939250505056fea2646970667358221220f743d4ca5f40ffc70c8455b2b9d3b37bc272833eaa55252eca2214d1183da9eb64736f6c63430008140033",
|
302
|
-
"deployedBytecode": "
|
1163
|
+
"bytecode": "0x",
|
1164
|
+
"deployedBytecode": "0x",
|
303
1165
|
"linkReferences": {},
|
304
1166
|
"deployedLinkReferences": {}
|
305
1167
|
}
|