@etherisc/gif-next 0.0.2-fe88ad7-208 → 0.0.2-ff8087d-237
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +8 -13
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +873 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +903 -202
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{BaseComponent.sol/BaseComponent.json → IComponent.sol/IComponent.json} +237 -83
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +879 -31
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +879 -59
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +720 -16
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +760 -195
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +564 -141
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +15 -15
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +69 -79
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1474 -483
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +248 -218
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1152 -794
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +462 -179
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +414 -267
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +482 -346
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +355 -91
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +11 -40
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +263 -164
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- 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 +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +58 -75
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1124 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +641 -303
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +343 -79
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1384 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +752 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1434 -280
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +469 -73
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IApplicationService.sol/IApplicationService.json} +342 -189
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +310 -249
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +743 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +757 -144
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +262 -275
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +703 -125
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +71 -165
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +632 -344
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +367 -91
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1119 -224
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +361 -73
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +297 -210
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +298 -78
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +117 -5
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +99 -217
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +131 -27
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +18 -18
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +205 -250
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +287 -81
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +81 -68
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +138 -50
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +27 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +189 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +8 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +71 -165
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +107 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +283 -63
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +116 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +173 -153
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +116 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +191 -203
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +281 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +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 +179 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +74 -19
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/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 +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/Component.sol +272 -0
- package/contracts/components/Distribution.sol +204 -82
- package/contracts/components/IComponent.sol +90 -0
- package/contracts/components/IDistributionComponent.sol +44 -17
- package/contracts/components/IPoolComponent.sol +90 -42
- package/contracts/components/IProductComponent.sol +15 -9
- package/contracts/components/Pool.sol +217 -186
- package/contracts/components/Product.sol +246 -166
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +2 -12
- package/contracts/instance/BundleManager.sol +17 -20
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +67 -25
- package/contracts/instance/IInstanceService.sol +34 -11
- package/contracts/instance/Instance.sol +158 -116
- package/contracts/instance/InstanceAccessManager.sol +389 -165
- package/contracts/instance/InstanceReader.sol +87 -36
- package/contracts/instance/InstanceService.sol +295 -161
- package/contracts/instance/InstanceServiceManager.sol +1 -1
- package/contracts/instance/ObjectManager.sol +10 -29
- package/contracts/instance/base/ComponentService.sol +130 -0
- package/contracts/instance/base/KeyValueStore.sol +13 -36
- package/contracts/instance/base/Lifecycle.sol +26 -6
- package/contracts/instance/module/IAccess.sol +22 -16
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +3 -0
- package/contracts/instance/module/IPolicy.sol +43 -11
- package/contracts/instance/module/ISetup.sol +7 -20
- package/contracts/instance/service/ApplicationService.sol +356 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +244 -119
- package/contracts/instance/service/BundleServiceManager.sol +1 -1
- package/contracts/instance/service/ClaimService.sol +443 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +360 -41
- package/contracts/instance/service/DistributionServiceManager.sol +1 -1
- package/contracts/instance/service/IApplicationService.sol +79 -0
- package/contracts/instance/service/IBundleService.sol +93 -20
- package/contracts/instance/service/IClaimService.sol +90 -0
- package/contracts/instance/service/IDistributionService.sol +89 -0
- package/contracts/instance/service/IPolicyService.sol +44 -51
- package/contracts/instance/service/IPoolService.sol +97 -3
- package/contracts/instance/service/PolicyService.sol +233 -364
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolService.sol +319 -40
- package/contracts/instance/service/PoolServiceManager.sol +1 -1
- package/contracts/instance/service/ProductService.sol +90 -50
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +18 -8
- package/contracts/registry/IRegistryService.sol +21 -13
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +142 -71
- package/contracts/registry/RegistryAccessManager.sol +31 -25
- package/contracts/registry/RegistryService.sol +93 -134
- package/contracts/registry/RegistryServiceManager.sol +13 -13
- package/contracts/registry/ReleaseManager.sol +103 -127
- package/contracts/registry/TokenRegistry.sol +19 -13
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +40 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +6 -4
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +64 -80
- package/contracts/shared/PolicyHolder.sol +94 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +24 -39
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +36 -22
- package/contracts/shared/TokenHandler.sol +14 -6
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +75 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +17 -8
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +11 -6
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +18 -11
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +7 -2
- package/contracts/types/Timestamp.sol +18 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -397
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- 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/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- 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/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +0 -448
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -814
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
- package/contracts/components/BaseComponent.sol +0 -159
- package/contracts/components/IBaseComponent.sol +0 -34
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- 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/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/IInstanceBase.sol +0 -26
- package/contracts/instance/InstanceBase.sol +0 -41
- package/contracts/instance/base/ComponentServiceBase.sol +0 -82
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -315
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -7,38 +7,60 @@
|
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
9
|
"internalType": "address",
|
10
|
-
"name": "
|
10
|
+
"name": "authority",
|
11
11
|
"type": "address"
|
12
12
|
}
|
13
13
|
],
|
14
|
-
"name": "
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
15
|
"type": "error"
|
16
16
|
},
|
17
17
|
{
|
18
18
|
"inputs": [
|
19
19
|
{
|
20
20
|
"internalType": "address",
|
21
|
-
"name": "
|
21
|
+
"name": "caller",
|
22
22
|
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
23
28
|
}
|
24
29
|
],
|
25
|
-
"name": "
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
26
31
|
"type": "error"
|
27
32
|
},
|
28
33
|
{
|
29
34
|
"inputs": [
|
30
35
|
{
|
31
36
|
"internalType": "address",
|
32
|
-
"name": "
|
37
|
+
"name": "caller",
|
33
38
|
"type": "address"
|
34
|
-
}
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
35
46
|
{
|
36
|
-
"internalType": "
|
37
|
-
"name": "
|
38
|
-
"type": "
|
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"
|
39
61
|
}
|
40
62
|
],
|
41
|
-
"name": "
|
63
|
+
"name": "AddressInsufficientBalance",
|
42
64
|
"type": "error"
|
43
65
|
},
|
44
66
|
{
|
@@ -47,25 +69,46 @@
|
|
47
69
|
"internalType": "address",
|
48
70
|
"name": "caller",
|
49
71
|
"type": "address"
|
50
|
-
}
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorComponentNotChainNft",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
51
79
|
{
|
52
|
-
"internalType": "
|
53
|
-
"name": "
|
54
|
-
"type": "
|
80
|
+
"internalType": "NftId",
|
81
|
+
"name": "instanceNftId",
|
82
|
+
"type": "uint96"
|
55
83
|
}
|
56
84
|
],
|
57
|
-
"name": "
|
85
|
+
"name": "ErrorComponentNotInstance",
|
58
86
|
"type": "error"
|
59
87
|
},
|
60
88
|
{
|
61
89
|
"inputs": [
|
62
90
|
{
|
63
91
|
"internalType": "address",
|
64
|
-
"name": "
|
92
|
+
"name": "caller",
|
65
93
|
"type": "address"
|
66
94
|
}
|
67
95
|
],
|
68
|
-
"name": "
|
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",
|
69
112
|
"type": "error"
|
70
113
|
},
|
71
114
|
{
|
@@ -91,72 +134,61 @@
|
|
91
134
|
"type": "uint256"
|
92
135
|
}
|
93
136
|
],
|
94
|
-
"name": "
|
137
|
+
"name": "ErrorComponentWalletAllowanceTooSmall",
|
95
138
|
"type": "error"
|
96
139
|
},
|
97
140
|
{
|
98
|
-
"inputs": [
|
99
|
-
|
100
|
-
"internalType": "address",
|
101
|
-
"name": "contractAddress",
|
102
|
-
"type": "address"
|
103
|
-
}
|
104
|
-
],
|
105
|
-
"name": "ErrorContractNotRegistered",
|
141
|
+
"inputs": [],
|
142
|
+
"name": "ErrorComponentWalletNotComponent",
|
106
143
|
"type": "error"
|
107
144
|
},
|
108
145
|
{
|
109
146
|
"inputs": [
|
110
147
|
{
|
111
|
-
"internalType": "
|
112
|
-
"name": "
|
113
|
-
"type": "
|
148
|
+
"internalType": "NftId",
|
149
|
+
"name": "nftId",
|
150
|
+
"type": "uint96"
|
114
151
|
}
|
115
152
|
],
|
116
|
-
"name": "
|
153
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
117
154
|
"type": "error"
|
118
155
|
},
|
119
156
|
{
|
120
157
|
"inputs": [
|
121
158
|
{
|
122
159
|
"internalType": "address",
|
123
|
-
"name": "
|
160
|
+
"name": "contractAddress",
|
124
161
|
"type": "address"
|
125
162
|
}
|
126
163
|
],
|
127
|
-
"name": "
|
164
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
165
|
+
"type": "error"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"inputs": [],
|
169
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
128
170
|
"type": "error"
|
129
171
|
},
|
130
172
|
{
|
131
173
|
"inputs": [
|
132
174
|
{
|
133
175
|
"internalType": "address",
|
134
|
-
"name": "
|
176
|
+
"name": "account",
|
135
177
|
"type": "address"
|
136
178
|
}
|
137
179
|
],
|
138
|
-
"name": "
|
139
|
-
"type": "error"
|
140
|
-
},
|
141
|
-
{
|
142
|
-
"inputs": [],
|
143
|
-
"name": "ErrorRegistryAddressZero",
|
180
|
+
"name": "ErrorNftOwnableNotOwner",
|
144
181
|
"type": "error"
|
145
182
|
},
|
146
183
|
{
|
147
184
|
"inputs": [
|
148
185
|
{
|
149
186
|
"internalType": "address",
|
150
|
-
"name": "
|
187
|
+
"name": "registryAddress",
|
151
188
|
"type": "address"
|
152
189
|
}
|
153
190
|
],
|
154
|
-
"name": "
|
155
|
-
"type": "error"
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"inputs": [],
|
159
|
-
"name": "ErrorRegistryNotInitialized",
|
191
|
+
"name": "ErrorNotRegistry",
|
160
192
|
"type": "error"
|
161
193
|
},
|
162
194
|
{
|
@@ -185,6 +217,19 @@
|
|
185
217
|
"name": "SafeERC20FailedOperation",
|
186
218
|
"type": "error"
|
187
219
|
},
|
220
|
+
{
|
221
|
+
"anonymous": false,
|
222
|
+
"inputs": [
|
223
|
+
{
|
224
|
+
"indexed": false,
|
225
|
+
"internalType": "address",
|
226
|
+
"name": "authority",
|
227
|
+
"type": "address"
|
228
|
+
}
|
229
|
+
],
|
230
|
+
"name": "AuthorityUpdated",
|
231
|
+
"type": "event"
|
232
|
+
},
|
188
233
|
{
|
189
234
|
"anonymous": false,
|
190
235
|
"inputs": [
|
@@ -201,6 +246,25 @@
|
|
201
246
|
{
|
202
247
|
"anonymous": false,
|
203
248
|
"inputs": [
|
249
|
+
{
|
250
|
+
"indexed": false,
|
251
|
+
"internalType": "uint256",
|
252
|
+
"name": "limit",
|
253
|
+
"type": "uint256"
|
254
|
+
}
|
255
|
+
],
|
256
|
+
"name": "LogComponentTokenHandlerApproved",
|
257
|
+
"type": "event"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"anonymous": false,
|
261
|
+
"inputs": [
|
262
|
+
{
|
263
|
+
"indexed": false,
|
264
|
+
"internalType": "address",
|
265
|
+
"name": "oldWallet",
|
266
|
+
"type": "address"
|
267
|
+
},
|
204
268
|
{
|
205
269
|
"indexed": false,
|
206
270
|
"internalType": "address",
|
@@ -208,7 +272,7 @@
|
|
208
272
|
"type": "address"
|
209
273
|
}
|
210
274
|
],
|
211
|
-
"name": "
|
275
|
+
"name": "LogComponentWalletAddressChanged",
|
212
276
|
"type": "event"
|
213
277
|
},
|
214
278
|
{
|
@@ -233,9 +297,48 @@
|
|
233
297
|
"type": "uint256"
|
234
298
|
}
|
235
299
|
],
|
236
|
-
"name": "
|
300
|
+
"name": "LogComponentWalletTokensTransferred",
|
237
301
|
"type": "event"
|
238
302
|
},
|
303
|
+
{
|
304
|
+
"inputs": [],
|
305
|
+
"name": "COMPONENT_LOCATION_V1",
|
306
|
+
"outputs": [
|
307
|
+
{
|
308
|
+
"internalType": "bytes32",
|
309
|
+
"name": "",
|
310
|
+
"type": "bytes32"
|
311
|
+
}
|
312
|
+
],
|
313
|
+
"stateMutability": "view",
|
314
|
+
"type": "function"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"inputs": [],
|
318
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
319
|
+
"outputs": [
|
320
|
+
{
|
321
|
+
"internalType": "bytes32",
|
322
|
+
"name": "",
|
323
|
+
"type": "bytes32"
|
324
|
+
}
|
325
|
+
],
|
326
|
+
"stateMutability": "view",
|
327
|
+
"type": "function"
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"inputs": [],
|
331
|
+
"name": "PRODUCT_STORAGE_LOCATION_V1",
|
332
|
+
"outputs": [
|
333
|
+
{
|
334
|
+
"internalType": "bytes32",
|
335
|
+
"name": "",
|
336
|
+
"type": "bytes32"
|
337
|
+
}
|
338
|
+
],
|
339
|
+
"stateMutability": "view",
|
340
|
+
"type": "function"
|
341
|
+
},
|
239
342
|
{
|
240
343
|
"inputs": [],
|
241
344
|
"name": "REGISTERABLE_LOCATION_V1",
|
@@ -253,8 +356,34 @@
|
|
253
356
|
"inputs": [
|
254
357
|
{
|
255
358
|
"internalType": "uint256",
|
256
|
-
"name": "
|
359
|
+
"name": "spendingLimitAmount",
|
257
360
|
"type": "uint256"
|
361
|
+
}
|
362
|
+
],
|
363
|
+
"name": "approveTokenHandler",
|
364
|
+
"outputs": [],
|
365
|
+
"stateMutability": "nonpayable",
|
366
|
+
"type": "function"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"inputs": [],
|
370
|
+
"name": "authority",
|
371
|
+
"outputs": [
|
372
|
+
{
|
373
|
+
"internalType": "address",
|
374
|
+
"name": "",
|
375
|
+
"type": "address"
|
376
|
+
}
|
377
|
+
],
|
378
|
+
"stateMutability": "view",
|
379
|
+
"type": "function"
|
380
|
+
},
|
381
|
+
{
|
382
|
+
"inputs": [
|
383
|
+
{
|
384
|
+
"internalType": "Amount",
|
385
|
+
"name": "sumInsuredAmount",
|
386
|
+
"type": "uint96"
|
258
387
|
},
|
259
388
|
{
|
260
389
|
"internalType": "RiskId",
|
@@ -262,9 +391,9 @@
|
|
262
391
|
"type": "bytes8"
|
263
392
|
},
|
264
393
|
{
|
265
|
-
"internalType": "
|
394
|
+
"internalType": "Seconds",
|
266
395
|
"name": "lifetime",
|
267
|
-
"type": "
|
396
|
+
"type": "uint40"
|
268
397
|
},
|
269
398
|
{
|
270
399
|
"internalType": "bytes",
|
@@ -275,9 +404,9 @@
|
|
275
404
|
"name": "calculateNetPremium",
|
276
405
|
"outputs": [
|
277
406
|
{
|
278
|
-
"internalType": "
|
407
|
+
"internalType": "Amount",
|
279
408
|
"name": "netPremiumAmount",
|
280
|
-
"type": "
|
409
|
+
"type": "uint96"
|
281
410
|
}
|
282
411
|
],
|
283
412
|
"stateMutability": "view",
|
@@ -286,9 +415,9 @@
|
|
286
415
|
{
|
287
416
|
"inputs": [
|
288
417
|
{
|
289
|
-
"internalType": "
|
418
|
+
"internalType": "Amount",
|
290
419
|
"name": "sumInsuredAmount",
|
291
|
-
"type": "
|
420
|
+
"type": "uint96"
|
292
421
|
},
|
293
422
|
{
|
294
423
|
"internalType": "RiskId",
|
@@ -296,32 +425,82 @@
|
|
296
425
|
"type": "bytes8"
|
297
426
|
},
|
298
427
|
{
|
299
|
-
"internalType": "
|
428
|
+
"internalType": "Seconds",
|
300
429
|
"name": "lifetime",
|
301
|
-
"type": "
|
430
|
+
"type": "uint40"
|
302
431
|
},
|
303
432
|
{
|
304
433
|
"internalType": "bytes",
|
305
434
|
"name": "applicationData",
|
306
435
|
"type": "bytes"
|
307
436
|
},
|
308
|
-
{
|
309
|
-
"internalType": "ReferralId",
|
310
|
-
"name": "referralId",
|
311
|
-
"type": "bytes8"
|
312
|
-
},
|
313
437
|
{
|
314
438
|
"internalType": "NftId",
|
315
439
|
"name": "bundleNftId",
|
316
440
|
"type": "uint96"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"internalType": "ReferralId",
|
444
|
+
"name": "referralId",
|
445
|
+
"type": "bytes8"
|
317
446
|
}
|
318
447
|
],
|
319
448
|
"name": "calculatePremium",
|
320
449
|
"outputs": [
|
321
450
|
{
|
322
|
-
"internalType": "
|
451
|
+
"internalType": "Amount",
|
323
452
|
"name": "premiumAmount",
|
324
|
-
"type": "
|
453
|
+
"type": "uint96"
|
454
|
+
}
|
455
|
+
],
|
456
|
+
"stateMutability": "view",
|
457
|
+
"type": "function"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"inputs": [],
|
461
|
+
"name": "getComponentInfo",
|
462
|
+
"outputs": [
|
463
|
+
{
|
464
|
+
"components": [
|
465
|
+
{
|
466
|
+
"internalType": "string",
|
467
|
+
"name": "name",
|
468
|
+
"type": "string"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"internalType": "contract IERC20Metadata",
|
472
|
+
"name": "token",
|
473
|
+
"type": "address"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"internalType": "contract TokenHandler",
|
477
|
+
"name": "tokenHandler",
|
478
|
+
"type": "address"
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"internalType": "address",
|
482
|
+
"name": "wallet",
|
483
|
+
"type": "address"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"internalType": "Amount",
|
487
|
+
"name": "balanceAmount",
|
488
|
+
"type": "uint96"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"internalType": "Amount",
|
492
|
+
"name": "feeAmount",
|
493
|
+
"type": "uint96"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"internalType": "bytes",
|
497
|
+
"name": "data",
|
498
|
+
"type": "bytes"
|
499
|
+
}
|
500
|
+
],
|
501
|
+
"internalType": "struct IComponents.ComponentInfo",
|
502
|
+
"name": "info",
|
503
|
+
"type": "tuple"
|
325
504
|
}
|
326
505
|
],
|
327
506
|
"stateMutability": "view",
|
@@ -383,13 +562,8 @@
|
|
383
562
|
}
|
384
563
|
],
|
385
564
|
"internalType": "struct IRegistry.ObjectInfo",
|
386
|
-
"name": "",
|
565
|
+
"name": "info",
|
387
566
|
"type": "tuple"
|
388
|
-
},
|
389
|
-
{
|
390
|
-
"internalType": "bytes",
|
391
|
-
"name": "",
|
392
|
-
"type": "bytes"
|
393
567
|
}
|
394
568
|
],
|
395
569
|
"stateMutability": "view",
|
@@ -418,7 +592,7 @@
|
|
418
592
|
"type": "string"
|
419
593
|
}
|
420
594
|
],
|
421
|
-
"stateMutability": "
|
595
|
+
"stateMutability": "view",
|
422
596
|
"type": "function"
|
423
597
|
},
|
424
598
|
{
|
@@ -526,7 +700,7 @@
|
|
526
700
|
}
|
527
701
|
],
|
528
702
|
"internalType": "struct Fee",
|
529
|
-
"name": "
|
703
|
+
"name": "productFee",
|
530
704
|
"type": "tuple"
|
531
705
|
},
|
532
706
|
{
|
@@ -543,75 +717,7 @@
|
|
543
717
|
}
|
544
718
|
],
|
545
719
|
"internalType": "struct Fee",
|
546
|
-
"name": "
|
547
|
-
"type": "tuple"
|
548
|
-
},
|
549
|
-
{
|
550
|
-
"components": [
|
551
|
-
{
|
552
|
-
"internalType": "UFixed",
|
553
|
-
"name": "fractionalFee",
|
554
|
-
"type": "uint256"
|
555
|
-
},
|
556
|
-
{
|
557
|
-
"internalType": "uint256",
|
558
|
-
"name": "fixedFee",
|
559
|
-
"type": "uint256"
|
560
|
-
}
|
561
|
-
],
|
562
|
-
"internalType": "struct Fee",
|
563
|
-
"name": "processingFee",
|
564
|
-
"type": "tuple"
|
565
|
-
},
|
566
|
-
{
|
567
|
-
"components": [
|
568
|
-
{
|
569
|
-
"internalType": "UFixed",
|
570
|
-
"name": "fractionalFee",
|
571
|
-
"type": "uint256"
|
572
|
-
},
|
573
|
-
{
|
574
|
-
"internalType": "uint256",
|
575
|
-
"name": "fixedFee",
|
576
|
-
"type": "uint256"
|
577
|
-
}
|
578
|
-
],
|
579
|
-
"internalType": "struct Fee",
|
580
|
-
"name": "poolFee",
|
581
|
-
"type": "tuple"
|
582
|
-
},
|
583
|
-
{
|
584
|
-
"components": [
|
585
|
-
{
|
586
|
-
"internalType": "UFixed",
|
587
|
-
"name": "fractionalFee",
|
588
|
-
"type": "uint256"
|
589
|
-
},
|
590
|
-
{
|
591
|
-
"internalType": "uint256",
|
592
|
-
"name": "fixedFee",
|
593
|
-
"type": "uint256"
|
594
|
-
}
|
595
|
-
],
|
596
|
-
"internalType": "struct Fee",
|
597
|
-
"name": "stakingFee",
|
598
|
-
"type": "tuple"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"components": [
|
602
|
-
{
|
603
|
-
"internalType": "UFixed",
|
604
|
-
"name": "fractionalFee",
|
605
|
-
"type": "uint256"
|
606
|
-
},
|
607
|
-
{
|
608
|
-
"internalType": "uint256",
|
609
|
-
"name": "fixedFee",
|
610
|
-
"type": "uint256"
|
611
|
-
}
|
612
|
-
],
|
613
|
-
"internalType": "struct Fee",
|
614
|
-
"name": "performanceFee",
|
720
|
+
"name": "processingFee",
|
615
721
|
"type": "tuple"
|
616
722
|
},
|
617
723
|
{
|
@@ -646,6 +752,19 @@
|
|
646
752
|
"stateMutability": "view",
|
647
753
|
"type": "function"
|
648
754
|
},
|
755
|
+
{
|
756
|
+
"inputs": [],
|
757
|
+
"name": "getTokenHandler",
|
758
|
+
"outputs": [
|
759
|
+
{
|
760
|
+
"internalType": "contract TokenHandler",
|
761
|
+
"name": "tokenHandler",
|
762
|
+
"type": "address"
|
763
|
+
}
|
764
|
+
],
|
765
|
+
"stateMutability": "view",
|
766
|
+
"type": "function"
|
767
|
+
},
|
649
768
|
{
|
650
769
|
"inputs": [],
|
651
770
|
"name": "getWallet",
|
@@ -659,6 +778,243 @@
|
|
659
778
|
"stateMutability": "view",
|
660
779
|
"type": "function"
|
661
780
|
},
|
781
|
+
{
|
782
|
+
"inputs": [
|
783
|
+
{
|
784
|
+
"internalType": "address",
|
785
|
+
"name": "registry",
|
786
|
+
"type": "address"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"internalType": "NftId",
|
790
|
+
"name": "instanceNftId",
|
791
|
+
"type": "uint96"
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"internalType": "string",
|
795
|
+
"name": "name",
|
796
|
+
"type": "string"
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"internalType": "address",
|
800
|
+
"name": "token",
|
801
|
+
"type": "address"
|
802
|
+
},
|
803
|
+
{
|
804
|
+
"internalType": "ObjectType",
|
805
|
+
"name": "componentType",
|
806
|
+
"type": "uint8"
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"internalType": "bool",
|
810
|
+
"name": "isInterceptor",
|
811
|
+
"type": "bool"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"internalType": "address",
|
815
|
+
"name": "initialOwner",
|
816
|
+
"type": "address"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"internalType": "bytes",
|
820
|
+
"name": "registryData",
|
821
|
+
"type": "bytes"
|
822
|
+
}
|
823
|
+
],
|
824
|
+
"name": "initializeComponent",
|
825
|
+
"outputs": [],
|
826
|
+
"stateMutability": "nonpayable",
|
827
|
+
"type": "function"
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"inputs": [],
|
831
|
+
"name": "initializeERC165",
|
832
|
+
"outputs": [],
|
833
|
+
"stateMutability": "nonpayable",
|
834
|
+
"type": "function"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"inputs": [
|
838
|
+
{
|
839
|
+
"internalType": "address",
|
840
|
+
"name": "initialOwner",
|
841
|
+
"type": "address"
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"internalType": "address",
|
845
|
+
"name": "registryAddress",
|
846
|
+
"type": "address"
|
847
|
+
}
|
848
|
+
],
|
849
|
+
"name": "initializeNftOwnable",
|
850
|
+
"outputs": [],
|
851
|
+
"stateMutability": "nonpayable",
|
852
|
+
"type": "function"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"inputs": [
|
856
|
+
{
|
857
|
+
"internalType": "address",
|
858
|
+
"name": "registry",
|
859
|
+
"type": "address"
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"internalType": "NftId",
|
863
|
+
"name": "instanceNftId",
|
864
|
+
"type": "uint96"
|
865
|
+
},
|
866
|
+
{
|
867
|
+
"internalType": "string",
|
868
|
+
"name": "name",
|
869
|
+
"type": "string"
|
870
|
+
},
|
871
|
+
{
|
872
|
+
"internalType": "address",
|
873
|
+
"name": "token",
|
874
|
+
"type": "address"
|
875
|
+
},
|
876
|
+
{
|
877
|
+
"internalType": "bool",
|
878
|
+
"name": "isInterceptor",
|
879
|
+
"type": "bool"
|
880
|
+
},
|
881
|
+
{
|
882
|
+
"internalType": "address",
|
883
|
+
"name": "pool",
|
884
|
+
"type": "address"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"internalType": "address",
|
888
|
+
"name": "distribution",
|
889
|
+
"type": "address"
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"components": [
|
893
|
+
{
|
894
|
+
"internalType": "UFixed",
|
895
|
+
"name": "fractionalFee",
|
896
|
+
"type": "uint256"
|
897
|
+
},
|
898
|
+
{
|
899
|
+
"internalType": "uint256",
|
900
|
+
"name": "fixedFee",
|
901
|
+
"type": "uint256"
|
902
|
+
}
|
903
|
+
],
|
904
|
+
"internalType": "struct Fee",
|
905
|
+
"name": "productFee",
|
906
|
+
"type": "tuple"
|
907
|
+
},
|
908
|
+
{
|
909
|
+
"components": [
|
910
|
+
{
|
911
|
+
"internalType": "UFixed",
|
912
|
+
"name": "fractionalFee",
|
913
|
+
"type": "uint256"
|
914
|
+
},
|
915
|
+
{
|
916
|
+
"internalType": "uint256",
|
917
|
+
"name": "fixedFee",
|
918
|
+
"type": "uint256"
|
919
|
+
}
|
920
|
+
],
|
921
|
+
"internalType": "struct Fee",
|
922
|
+
"name": "processingFee",
|
923
|
+
"type": "tuple"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"internalType": "address",
|
927
|
+
"name": "initialOwner",
|
928
|
+
"type": "address"
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"internalType": "bytes",
|
932
|
+
"name": "registryData",
|
933
|
+
"type": "bytes"
|
934
|
+
}
|
935
|
+
],
|
936
|
+
"name": "initializeProduct",
|
937
|
+
"outputs": [],
|
938
|
+
"stateMutability": "nonpayable",
|
939
|
+
"type": "function"
|
940
|
+
},
|
941
|
+
{
|
942
|
+
"inputs": [
|
943
|
+
{
|
944
|
+
"internalType": "address",
|
945
|
+
"name": "registryAddress",
|
946
|
+
"type": "address"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"internalType": "NftId",
|
950
|
+
"name": "parentNftId",
|
951
|
+
"type": "uint96"
|
952
|
+
},
|
953
|
+
{
|
954
|
+
"internalType": "ObjectType",
|
955
|
+
"name": "objectType",
|
956
|
+
"type": "uint8"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"internalType": "bool",
|
960
|
+
"name": "isInterceptor",
|
961
|
+
"type": "bool"
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"internalType": "address",
|
965
|
+
"name": "initialOwner",
|
966
|
+
"type": "address"
|
967
|
+
},
|
968
|
+
{
|
969
|
+
"internalType": "bytes",
|
970
|
+
"name": "registryData",
|
971
|
+
"type": "bytes"
|
972
|
+
}
|
973
|
+
],
|
974
|
+
"name": "initializeRegisterable",
|
975
|
+
"outputs": [],
|
976
|
+
"stateMutability": "nonpayable",
|
977
|
+
"type": "function"
|
978
|
+
},
|
979
|
+
{
|
980
|
+
"inputs": [
|
981
|
+
{
|
982
|
+
"internalType": "address",
|
983
|
+
"name": "registryAddress",
|
984
|
+
"type": "address"
|
985
|
+
}
|
986
|
+
],
|
987
|
+
"name": "initializeRegistryLinked",
|
988
|
+
"outputs": [],
|
989
|
+
"stateMutability": "nonpayable",
|
990
|
+
"type": "function"
|
991
|
+
},
|
992
|
+
{
|
993
|
+
"inputs": [],
|
994
|
+
"name": "isConsumingScheduledOp",
|
995
|
+
"outputs": [
|
996
|
+
{
|
997
|
+
"internalType": "bytes4",
|
998
|
+
"name": "",
|
999
|
+
"type": "bytes4"
|
1000
|
+
}
|
1001
|
+
],
|
1002
|
+
"stateMutability": "view",
|
1003
|
+
"type": "function"
|
1004
|
+
},
|
1005
|
+
{
|
1006
|
+
"inputs": [],
|
1007
|
+
"name": "isNftInterceptor",
|
1008
|
+
"outputs": [
|
1009
|
+
{
|
1010
|
+
"internalType": "bool",
|
1011
|
+
"name": "isInterceptor",
|
1012
|
+
"type": "bool"
|
1013
|
+
}
|
1014
|
+
],
|
1015
|
+
"stateMutability": "view",
|
1016
|
+
"type": "function"
|
1017
|
+
},
|
662
1018
|
{
|
663
1019
|
"inputs": [],
|
664
1020
|
"name": "linkToRegisteredNftId",
|
@@ -673,6 +1029,73 @@
|
|
673
1029
|
"stateMutability": "nonpayable",
|
674
1030
|
"type": "function"
|
675
1031
|
},
|
1032
|
+
{
|
1033
|
+
"inputs": [
|
1034
|
+
{
|
1035
|
+
"internalType": "address",
|
1036
|
+
"name": "to",
|
1037
|
+
"type": "address"
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
"internalType": "uint256",
|
1041
|
+
"name": "tokenId",
|
1042
|
+
"type": "uint256"
|
1043
|
+
}
|
1044
|
+
],
|
1045
|
+
"name": "nftMint",
|
1046
|
+
"outputs": [],
|
1047
|
+
"stateMutability": "nonpayable",
|
1048
|
+
"type": "function"
|
1049
|
+
},
|
1050
|
+
{
|
1051
|
+
"inputs": [
|
1052
|
+
{
|
1053
|
+
"internalType": "address",
|
1054
|
+
"name": "from",
|
1055
|
+
"type": "address"
|
1056
|
+
},
|
1057
|
+
{
|
1058
|
+
"internalType": "address",
|
1059
|
+
"name": "to",
|
1060
|
+
"type": "address"
|
1061
|
+
},
|
1062
|
+
{
|
1063
|
+
"internalType": "uint256",
|
1064
|
+
"name": "tokenId",
|
1065
|
+
"type": "uint256"
|
1066
|
+
}
|
1067
|
+
],
|
1068
|
+
"name": "nftTransferFrom",
|
1069
|
+
"outputs": [],
|
1070
|
+
"stateMutability": "nonpayable",
|
1071
|
+
"type": "function"
|
1072
|
+
},
|
1073
|
+
{
|
1074
|
+
"inputs": [
|
1075
|
+
{
|
1076
|
+
"internalType": "bytes4",
|
1077
|
+
"name": "interfaceId",
|
1078
|
+
"type": "bytes4"
|
1079
|
+
}
|
1080
|
+
],
|
1081
|
+
"name": "registerInterface",
|
1082
|
+
"outputs": [],
|
1083
|
+
"stateMutability": "nonpayable",
|
1084
|
+
"type": "function"
|
1085
|
+
},
|
1086
|
+
{
|
1087
|
+
"inputs": [
|
1088
|
+
{
|
1089
|
+
"internalType": "address",
|
1090
|
+
"name": "newAuthority",
|
1091
|
+
"type": "address"
|
1092
|
+
}
|
1093
|
+
],
|
1094
|
+
"name": "setAuthority",
|
1095
|
+
"outputs": [],
|
1096
|
+
"stateMutability": "nonpayable",
|
1097
|
+
"type": "function"
|
1098
|
+
},
|
676
1099
|
{
|
677
1100
|
"inputs": [
|
678
1101
|
{
|