@etherisc/gif-next 0.0.2-d02cb80-460 → 0.0.2-d086e6d-456
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +78 -1
- 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 +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +853 -296
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{BaseComponent.sol/BaseComponent.json → IComponent.sol/IComponent.json} +225 -89
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +846 -57
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +725 -316
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +524 -240
- 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 +1038 -395
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +290 -220
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1038 -784
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +432 -186
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +137 -270
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +448 -418
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +303 -138
- 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} +278 -157
- 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 +61 -67
- 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 +1058 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +625 -290
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +356 -79
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +844 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1385 -247
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +450 -73
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +646 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +278 -264
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +227 -194
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +791 -134
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +216 -250
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +502 -133
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +95 -157
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +474 -347
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +321 -96
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +801 -255
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +307 -78
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +308 -209
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +305 -76
- 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 +244 -133
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +158 -215
- 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 +257 -235
- 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 +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +202 -318
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -145
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
- 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 +40 -29
- 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 +21 -34
- 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 +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +95 -157
- 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 +120 -27
- 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 +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- 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 +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +195 -148
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- 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 +129 -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 +213 -202
- 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 +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 +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 +40 -9
- 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 +100 -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 +25 -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 +253 -0
- package/contracts/components/Distribution.sol +200 -83
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +44 -17
- package/contracts/components/IPoolComponent.sol +88 -41
- package/contracts/components/IProductComponent.sol +10 -5
- package/contracts/components/Pool.sol +217 -185
- package/contracts/components/Product.sol +125 -124
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +2 -12
- package/contracts/instance/BundleManager.sol +14 -16
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +52 -14
- package/contracts/instance/IInstanceService.sol +39 -9
- package/contracts/instance/Instance.sol +126 -75
- package/contracts/instance/InstanceAccessManager.sol +383 -166
- package/contracts/instance/InstanceReader.sol +10 -34
- package/contracts/instance/InstanceService.sol +312 -128
- package/contracts/instance/InstanceServiceManager.sol +6 -9
- package/contracts/instance/ObjectManager.sol +10 -29
- package/contracts/instance/base/ComponentService.sol +136 -0
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +23 -17
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +7 -20
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +239 -68
- package/contracts/instance/service/BundleServiceManager.sol +6 -9
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +367 -50
- package/contracts/instance/service/DistributionServiceManager.sol +7 -10
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +67 -19
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +86 -0
- package/contracts/instance/service/IPolicyService.sol +34 -49
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/PolicyService.sol +199 -347
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolService.sol +264 -45
- package/contracts/instance/service/PoolServiceManager.sol +6 -9
- package/contracts/instance/service/ProductService.sol +93 -56
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +9 -1
- package/contracts/registry/IRegistry.sol +39 -19
- package/contracts/registry/IRegistryService.sol +31 -13
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +243 -224
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +100 -173
- package/contracts/registry/RegistryServiceManager.sol +21 -39
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +22 -17
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +8 -2
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +66 -80
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +16 -32
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +30 -22
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- 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 +2 -2
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +19 -15
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +1 -0
- package/contracts/types/Timestamp.sol +13 -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 -384
- 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/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/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- 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 -827
- 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 -145
- package/contracts/components/IBaseComponent.sol +0 -32
- 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/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/IInstanceBase.sol +0 -26
- package/contracts/instance/InstanceBase.sol +0 -41
- package/contracts/instance/base/ComponentServiceBase.sol +0 -72
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -1,24 +1,51 @@
|
|
1
1
|
{
|
2
2
|
"_format": "hh-sol-artifact-1",
|
3
|
-
"contractName": "
|
4
|
-
"sourceName": "contracts/instance/base/
|
3
|
+
"contractName": "ComponentService",
|
4
|
+
"sourceName": "contracts/instance/base/ComponentService.sol",
|
5
5
|
"abi": [
|
6
6
|
{
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
|
-
"internalType": "
|
10
|
-
"name": "
|
11
|
-
"type": "
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
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
|
+
"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": "component",
|
22
49
|
"type": "address"
|
23
50
|
},
|
24
51
|
{
|
@@ -27,88 +54,152 @@
|
|
27
54
|
"type": "uint96"
|
28
55
|
}
|
29
56
|
],
|
30
|
-
"name": "
|
57
|
+
"name": "ErrorComponentServiceAlreadyRegistered",
|
31
58
|
"type": "error"
|
32
59
|
},
|
33
60
|
{
|
34
61
|
"inputs": [
|
35
62
|
{
|
36
63
|
"internalType": "address",
|
37
|
-
"name": "
|
64
|
+
"name": "component",
|
38
65
|
"type": "address"
|
39
66
|
}
|
40
67
|
],
|
41
|
-
"name": "
|
68
|
+
"name": "ErrorComponentServiceComponentLocked",
|
42
69
|
"type": "error"
|
43
70
|
},
|
44
71
|
{
|
45
72
|
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "NftId",
|
75
|
+
"name": "instanceNftId",
|
76
|
+
"type": "uint96"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"internalType": "RoleId",
|
80
|
+
"name": "requiredRole",
|
81
|
+
"type": "uint64"
|
82
|
+
},
|
46
83
|
{
|
47
84
|
"internalType": "address",
|
48
|
-
"name": "
|
85
|
+
"name": "sender",
|
49
86
|
"type": "address"
|
50
87
|
}
|
51
88
|
],
|
52
|
-
"name": "
|
89
|
+
"name": "ErrorComponentServiceExpectedRoleMissing",
|
53
90
|
"type": "error"
|
54
91
|
},
|
55
92
|
{
|
56
93
|
"inputs": [
|
57
94
|
{
|
58
95
|
"internalType": "address",
|
59
|
-
"name": "
|
96
|
+
"name": "component",
|
60
97
|
"type": "address"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"internalType": "ObjectType",
|
101
|
+
"name": "requiredType",
|
102
|
+
"type": "uint8"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"internalType": "ObjectType",
|
106
|
+
"name": "componentType",
|
107
|
+
"type": "uint8"
|
61
108
|
}
|
62
109
|
],
|
63
|
-
"name": "
|
110
|
+
"name": "ErrorComponentServiceInvalidType",
|
64
111
|
"type": "error"
|
65
112
|
},
|
66
113
|
{
|
67
114
|
"inputs": [
|
68
115
|
{
|
69
116
|
"internalType": "address",
|
70
|
-
"name": "
|
117
|
+
"name": "component",
|
71
118
|
"type": "address"
|
72
119
|
}
|
73
120
|
],
|
74
|
-
"name": "
|
121
|
+
"name": "ErrorComponentServiceNotComponent",
|
75
122
|
"type": "error"
|
76
123
|
},
|
77
124
|
{
|
78
|
-
"inputs": [
|
79
|
-
|
125
|
+
"inputs": [
|
126
|
+
{
|
127
|
+
"internalType": "address",
|
128
|
+
"name": "component",
|
129
|
+
"type": "address"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"internalType": "address",
|
133
|
+
"name": "initialOwner",
|
134
|
+
"type": "address"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"internalType": "address",
|
138
|
+
"name": "sender",
|
139
|
+
"type": "address"
|
140
|
+
}
|
141
|
+
],
|
142
|
+
"name": "ErrorComponentServiceSenderNotOwner",
|
80
143
|
"type": "error"
|
81
144
|
},
|
82
145
|
{
|
83
146
|
"inputs": [
|
84
147
|
{
|
85
148
|
"internalType": "address",
|
86
|
-
"name": "
|
149
|
+
"name": "caller",
|
87
150
|
"type": "address"
|
88
151
|
}
|
89
152
|
],
|
90
|
-
"name": "
|
153
|
+
"name": "ErrorIServiceCallerUnknown",
|
154
|
+
"type": "error"
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"inputs": [
|
158
|
+
{
|
159
|
+
"internalType": "NftId",
|
160
|
+
"name": "nftId",
|
161
|
+
"type": "uint96"
|
162
|
+
}
|
163
|
+
],
|
164
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
165
|
+
"type": "error"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"inputs": [
|
169
|
+
{
|
170
|
+
"internalType": "address",
|
171
|
+
"name": "contractAddress",
|
172
|
+
"type": "address"
|
173
|
+
}
|
174
|
+
],
|
175
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
91
176
|
"type": "error"
|
92
177
|
},
|
93
178
|
{
|
94
179
|
"inputs": [],
|
95
|
-
"name": "
|
180
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
96
181
|
"type": "error"
|
97
182
|
},
|
98
183
|
{
|
99
184
|
"inputs": [
|
100
185
|
{
|
101
|
-
"internalType": "
|
102
|
-
"name": "
|
103
|
-
"type": "
|
104
|
-
}
|
186
|
+
"internalType": "address",
|
187
|
+
"name": "account",
|
188
|
+
"type": "address"
|
189
|
+
}
|
190
|
+
],
|
191
|
+
"name": "ErrorNftOwnableNotOwner",
|
192
|
+
"type": "error"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"inputs": [
|
105
196
|
{
|
106
197
|
"internalType": "address",
|
107
|
-
"name": "
|
198
|
+
"name": "registryAddress",
|
108
199
|
"type": "address"
|
109
200
|
}
|
110
201
|
],
|
111
|
-
"name": "
|
202
|
+
"name": "ErrorNotRegistry",
|
112
203
|
"type": "error"
|
113
204
|
},
|
114
205
|
{
|
@@ -126,12 +217,12 @@
|
|
126
217
|
"inputs": [
|
127
218
|
{
|
128
219
|
"indexed": false,
|
129
|
-
"internalType": "
|
130
|
-
"name": "
|
131
|
-
"type": "
|
220
|
+
"internalType": "address",
|
221
|
+
"name": "authority",
|
222
|
+
"type": "address"
|
132
223
|
}
|
133
224
|
],
|
134
|
-
"name": "
|
225
|
+
"name": "AuthorityUpdated",
|
135
226
|
"type": "event"
|
136
227
|
},
|
137
228
|
{
|
@@ -139,26 +230,27 @@
|
|
139
230
|
"inputs": [
|
140
231
|
{
|
141
232
|
"indexed": false,
|
142
|
-
"internalType": "
|
233
|
+
"internalType": "uint64",
|
143
234
|
"name": "version",
|
144
|
-
"type": "
|
145
|
-
},
|
146
|
-
{
|
147
|
-
"indexed": false,
|
148
|
-
"internalType": "address",
|
149
|
-
"name": "implementation",
|
150
|
-
"type": "address"
|
151
|
-
},
|
152
|
-
{
|
153
|
-
"indexed": false,
|
154
|
-
"internalType": "address",
|
155
|
-
"name": "activatedBy",
|
156
|
-
"type": "address"
|
235
|
+
"type": "uint64"
|
157
236
|
}
|
158
237
|
],
|
159
|
-
"name": "
|
238
|
+
"name": "Initialized",
|
160
239
|
"type": "event"
|
161
240
|
},
|
241
|
+
{
|
242
|
+
"inputs": [],
|
243
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
244
|
+
"outputs": [
|
245
|
+
{
|
246
|
+
"internalType": "bytes32",
|
247
|
+
"name": "",
|
248
|
+
"type": "bytes32"
|
249
|
+
}
|
250
|
+
],
|
251
|
+
"stateMutability": "view",
|
252
|
+
"type": "function"
|
253
|
+
},
|
162
254
|
{
|
163
255
|
"inputs": [],
|
164
256
|
"name": "REGISTERABLE_LOCATION_V1",
|
@@ -172,6 +264,32 @@
|
|
172
264
|
"stateMutability": "view",
|
173
265
|
"type": "function"
|
174
266
|
},
|
267
|
+
{
|
268
|
+
"inputs": [],
|
269
|
+
"name": "authority",
|
270
|
+
"outputs": [
|
271
|
+
{
|
272
|
+
"internalType": "address",
|
273
|
+
"name": "",
|
274
|
+
"type": "address"
|
275
|
+
}
|
276
|
+
],
|
277
|
+
"stateMutability": "view",
|
278
|
+
"type": "function"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"inputs": [],
|
282
|
+
"name": "getDomain",
|
283
|
+
"outputs": [
|
284
|
+
{
|
285
|
+
"internalType": "ObjectType",
|
286
|
+
"name": "",
|
287
|
+
"type": "uint8"
|
288
|
+
}
|
289
|
+
],
|
290
|
+
"stateMutability": "pure",
|
291
|
+
"type": "function"
|
292
|
+
},
|
175
293
|
{
|
176
294
|
"inputs": [],
|
177
295
|
"name": "getInitialInfo",
|
@@ -215,26 +333,8 @@
|
|
215
333
|
}
|
216
334
|
],
|
217
335
|
"internalType": "struct IRegistry.ObjectInfo",
|
218
|
-
"name": "",
|
336
|
+
"name": "info",
|
219
337
|
"type": "tuple"
|
220
|
-
},
|
221
|
-
{
|
222
|
-
"internalType": "bytes",
|
223
|
-
"name": "data",
|
224
|
-
"type": "bytes"
|
225
|
-
}
|
226
|
-
],
|
227
|
-
"stateMutability": "view",
|
228
|
-
"type": "function"
|
229
|
-
},
|
230
|
-
{
|
231
|
-
"inputs": [],
|
232
|
-
"name": "getInitializedVersion",
|
233
|
-
"outputs": [
|
234
|
-
{
|
235
|
-
"internalType": "uint64",
|
236
|
-
"name": "",
|
237
|
-
"type": "uint64"
|
238
338
|
}
|
239
339
|
],
|
240
340
|
"stateMutability": "view",
|
@@ -266,19 +366,6 @@
|
|
266
366
|
"stateMutability": "view",
|
267
367
|
"type": "function"
|
268
368
|
},
|
269
|
-
{
|
270
|
-
"inputs": [],
|
271
|
-
"name": "getName",
|
272
|
-
"outputs": [
|
273
|
-
{
|
274
|
-
"internalType": "string",
|
275
|
-
"name": "name",
|
276
|
-
"type": "string"
|
277
|
-
}
|
278
|
-
],
|
279
|
-
"stateMutability": "pure",
|
280
|
-
"type": "function"
|
281
|
-
},
|
282
369
|
{
|
283
370
|
"inputs": [],
|
284
371
|
"name": "getNftId",
|
@@ -320,10 +407,10 @@
|
|
320
407
|
},
|
321
408
|
{
|
322
409
|
"inputs": [],
|
323
|
-
"name": "
|
410
|
+
"name": "getRegistryAddress",
|
324
411
|
"outputs": [
|
325
412
|
{
|
326
|
-
"internalType": "
|
413
|
+
"internalType": "address",
|
327
414
|
"name": "",
|
328
415
|
"type": "address"
|
329
416
|
}
|
@@ -333,25 +420,19 @@
|
|
333
420
|
},
|
334
421
|
{
|
335
422
|
"inputs": [],
|
336
|
-
"name": "
|
423
|
+
"name": "getRegistryService",
|
337
424
|
"outputs": [
|
338
425
|
{
|
339
|
-
"internalType": "
|
426
|
+
"internalType": "contract IRegistryService",
|
340
427
|
"name": "",
|
341
|
-
"type": "
|
428
|
+
"type": "address"
|
342
429
|
}
|
343
430
|
],
|
344
|
-
"stateMutability": "
|
431
|
+
"stateMutability": "view",
|
345
432
|
"type": "function"
|
346
433
|
},
|
347
434
|
{
|
348
|
-
"inputs": [
|
349
|
-
{
|
350
|
-
"internalType": "uint256",
|
351
|
-
"name": "idx",
|
352
|
-
"type": "uint256"
|
353
|
-
}
|
354
|
-
],
|
435
|
+
"inputs": [],
|
355
436
|
"name": "getVersion",
|
356
437
|
"outputs": [
|
357
438
|
{
|
@@ -360,75 +441,105 @@
|
|
360
441
|
"type": "uint24"
|
361
442
|
}
|
362
443
|
],
|
363
|
-
"stateMutability": "
|
444
|
+
"stateMutability": "pure",
|
364
445
|
"type": "function"
|
365
446
|
},
|
366
447
|
{
|
367
448
|
"inputs": [],
|
368
|
-
"name": "
|
369
|
-
"outputs": [
|
449
|
+
"name": "initializeERC165",
|
450
|
+
"outputs": [],
|
451
|
+
"stateMutability": "nonpayable",
|
452
|
+
"type": "function"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"inputs": [
|
370
456
|
{
|
371
|
-
"internalType": "
|
372
|
-
"name": "",
|
373
|
-
"type": "
|
457
|
+
"internalType": "address",
|
458
|
+
"name": "initialOwner",
|
459
|
+
"type": "address"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"internalType": "address",
|
463
|
+
"name": "registryAddress",
|
464
|
+
"type": "address"
|
374
465
|
}
|
375
466
|
],
|
376
|
-
"
|
467
|
+
"name": "initializeNftOwnable",
|
468
|
+
"outputs": [],
|
469
|
+
"stateMutability": "nonpayable",
|
377
470
|
"type": "function"
|
378
471
|
},
|
379
472
|
{
|
380
473
|
"inputs": [
|
381
474
|
{
|
382
|
-
"internalType": "
|
383
|
-
"name": "
|
384
|
-
"type": "
|
475
|
+
"internalType": "address",
|
476
|
+
"name": "registryAddress",
|
477
|
+
"type": "address"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"internalType": "NftId",
|
481
|
+
"name": "parentNftId",
|
482
|
+
"type": "uint96"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"internalType": "ObjectType",
|
486
|
+
"name": "objectType",
|
487
|
+
"type": "uint8"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"internalType": "bool",
|
491
|
+
"name": "isInterceptor",
|
492
|
+
"type": "bool"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"internalType": "address",
|
496
|
+
"name": "initialOwner",
|
497
|
+
"type": "address"
|
498
|
+
},
|
499
|
+
{
|
500
|
+
"internalType": "bytes",
|
501
|
+
"name": "registryData",
|
502
|
+
"type": "bytes"
|
385
503
|
}
|
386
504
|
],
|
387
|
-
"name": "
|
388
|
-
"outputs": [
|
505
|
+
"name": "initializeRegisterable",
|
506
|
+
"outputs": [],
|
507
|
+
"stateMutability": "nonpayable",
|
508
|
+
"type": "function"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"inputs": [
|
389
512
|
{
|
390
|
-
"
|
391
|
-
|
392
|
-
|
393
|
-
"name": "version",
|
394
|
-
"type": "uint24"
|
395
|
-
},
|
396
|
-
{
|
397
|
-
"internalType": "address",
|
398
|
-
"name": "implementation",
|
399
|
-
"type": "address"
|
400
|
-
},
|
401
|
-
{
|
402
|
-
"internalType": "address",
|
403
|
-
"name": "activatedBy",
|
404
|
-
"type": "address"
|
405
|
-
},
|
406
|
-
{
|
407
|
-
"internalType": "Timestamp",
|
408
|
-
"name": "activatedAt",
|
409
|
-
"type": "uint40"
|
410
|
-
},
|
411
|
-
{
|
412
|
-
"internalType": "Blocknumber",
|
413
|
-
"name": "activatedIn",
|
414
|
-
"type": "uint32"
|
415
|
-
}
|
416
|
-
],
|
417
|
-
"internalType": "struct IVersionable.VersionInfo",
|
418
|
-
"name": "",
|
419
|
-
"type": "tuple"
|
513
|
+
"internalType": "address",
|
514
|
+
"name": "registryAddress",
|
515
|
+
"type": "address"
|
420
516
|
}
|
421
517
|
],
|
422
|
-
"
|
518
|
+
"name": "initializeRegistryLinked",
|
519
|
+
"outputs": [],
|
520
|
+
"stateMutability": "nonpayable",
|
423
521
|
"type": "function"
|
424
522
|
},
|
425
523
|
{
|
426
524
|
"inputs": [
|
427
525
|
{
|
428
526
|
"internalType": "address",
|
429
|
-
"name": "
|
527
|
+
"name": "registry",
|
430
528
|
"type": "address"
|
431
529
|
},
|
530
|
+
{
|
531
|
+
"internalType": "address",
|
532
|
+
"name": "initialOwner",
|
533
|
+
"type": "address"
|
534
|
+
}
|
535
|
+
],
|
536
|
+
"name": "initializeService",
|
537
|
+
"outputs": [],
|
538
|
+
"stateMutability": "nonpayable",
|
539
|
+
"type": "function"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"inputs": [
|
432
543
|
{
|
433
544
|
"internalType": "address",
|
434
545
|
"name": "activatedBy",
|
@@ -440,25 +551,19 @@
|
|
440
551
|
"type": "bytes"
|
441
552
|
}
|
442
553
|
],
|
443
|
-
"name": "
|
554
|
+
"name": "initializeVersionable",
|
444
555
|
"outputs": [],
|
445
556
|
"stateMutability": "nonpayable",
|
446
557
|
"type": "function"
|
447
558
|
},
|
448
559
|
{
|
449
|
-
"inputs": [
|
450
|
-
|
451
|
-
"internalType": "Version",
|
452
|
-
"name": "_version",
|
453
|
-
"type": "uint24"
|
454
|
-
}
|
455
|
-
],
|
456
|
-
"name": "isInitialized",
|
560
|
+
"inputs": [],
|
561
|
+
"name": "isConsumingScheduledOp",
|
457
562
|
"outputs": [
|
458
563
|
{
|
459
|
-
"internalType": "
|
564
|
+
"internalType": "bytes4",
|
460
565
|
"name": "",
|
461
|
-
"type": "
|
566
|
+
"type": "bytes4"
|
462
567
|
}
|
463
568
|
],
|
464
569
|
"stateMutability": "view",
|
@@ -471,6 +576,32 @@
|
|
471
576
|
"stateMutability": "nonpayable",
|
472
577
|
"type": "function"
|
473
578
|
},
|
579
|
+
{
|
580
|
+
"inputs": [
|
581
|
+
{
|
582
|
+
"internalType": "bytes4",
|
583
|
+
"name": "interfaceId",
|
584
|
+
"type": "bytes4"
|
585
|
+
}
|
586
|
+
],
|
587
|
+
"name": "registerInterface",
|
588
|
+
"outputs": [],
|
589
|
+
"stateMutability": "nonpayable",
|
590
|
+
"type": "function"
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"inputs": [
|
594
|
+
{
|
595
|
+
"internalType": "address",
|
596
|
+
"name": "newAuthority",
|
597
|
+
"type": "address"
|
598
|
+
}
|
599
|
+
],
|
600
|
+
"name": "setAuthority",
|
601
|
+
"outputs": [],
|
602
|
+
"stateMutability": "nonpayable",
|
603
|
+
"type": "function"
|
604
|
+
},
|
474
605
|
{
|
475
606
|
"inputs": [
|
476
607
|
{
|
@@ -492,23 +623,13 @@
|
|
492
623
|
},
|
493
624
|
{
|
494
625
|
"inputs": [
|
495
|
-
{
|
496
|
-
"internalType": "address",
|
497
|
-
"name": "implementation",
|
498
|
-
"type": "address"
|
499
|
-
},
|
500
|
-
{
|
501
|
-
"internalType": "address",
|
502
|
-
"name": "activatedBy",
|
503
|
-
"type": "address"
|
504
|
-
},
|
505
626
|
{
|
506
627
|
"internalType": "bytes",
|
507
628
|
"name": "data",
|
508
629
|
"type": "bytes"
|
509
630
|
}
|
510
631
|
],
|
511
|
-
"name": "
|
632
|
+
"name": "upgradeVersionable",
|
512
633
|
"outputs": [],
|
513
634
|
"stateMutability": "nonpayable",
|
514
635
|
"type": "function"
|