@etherisc/gif-next 0.0.2-770fd3b-604 → 0.0.2-77a1ccf-469
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +22 -145
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +79 -233
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +19 -92
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +57 -178
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +239 -104
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +23 -164
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +240 -155
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +27 -218
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +343 -308
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +19 -184
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +469 -466
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +2 -2
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +79 -110
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +70 -284
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +196 -113
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +18 -220
- 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 +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +182 -331
- 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 +54 -276
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +182 -107
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -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 +645 -268
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +300 -109
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +124 -206
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +26 -191
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +409 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +369 -167
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +25 -290
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +12 -177
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +12 -177
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +65 -443
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +188 -141
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +42 -272
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +179 -104
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +42 -272
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +179 -104
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +71 -180
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +7 -7
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +90 -264
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +182 -113
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +11 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +34 -67
- 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 +2 -2
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +4 -30
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +4 -30
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -21
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +12 -177
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -150
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +10 -62
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -23
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +171 -88
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +11 -74
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -23
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +13 -215
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- 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 +0 -150
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +11 -74
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +31 -269
- 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/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +6 -188
- 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/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- 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/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 +2 -2
- 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 +2 -2
- 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/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/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +69 -84
- package/contracts/components/Distribution.sol +26 -31
- package/contracts/components/IComponent.sol +34 -16
- package/contracts/components/IDistributionComponent.sol +1 -22
- package/contracts/components/IPoolComponent.sol +89 -25
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +216 -92
- package/contracts/components/Product.sol +36 -25
- package/contracts/instance/BundleManager.sol +1 -1
- package/contracts/instance/IInstance.sol +7 -1
- package/contracts/instance/Instance.sol +17 -7
- package/contracts/instance/InstanceService.sol +67 -10
- package/contracts/instance/InstanceServiceManager.sol +1 -1
- package/contracts/instance/module/IBundle.sol +2 -1
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +5 -6
- package/contracts/instance/service/ApplicationService.sol +138 -57
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +4 -3
- package/contracts/instance/service/BundleServiceManager.sol +1 -1
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +146 -26
- package/contracts/instance/service/DistributionServiceManager.sol +1 -1
- package/contracts/instance/service/IApplicationService.sol +9 -9
- package/contracts/instance/service/IBundleService.sol +3 -2
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +23 -2
- package/contracts/instance/service/IPolicyService.sol +17 -35
- package/contracts/instance/service/PolicyService.sol +47 -169
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolServiceManager.sol +1 -1
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/IRegistryService.sol +10 -8
- package/contracts/registry/Registry.sol +3 -1
- package/contracts/registry/RegistryService.sol +62 -40
- package/contracts/registry/RegistryServiceManager.sol +13 -13
- package/contracts/registry/ReleaseManager.sol +18 -28
- package/contracts/registry/TokenRegistry.sol +13 -10
- package/contracts/shared/ERC165.sol +2 -1
- package/contracts/shared/INftOwnable.sol +4 -9
- package/contracts/shared/IRegistryLinked.sol +0 -3
- package/contracts/shared/IService.sol +2 -0
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +10 -80
- package/contracts/shared/ProxyManager.sol +98 -24
- package/contracts/shared/Registerable.sol +3 -10
- package/contracts/shared/RegistryLinked.sol +10 -26
- package/contracts/shared/Service.sol +10 -12
- package/contracts/shared/Versionable.sol +1 -90
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/ObjectType.sol +4 -4
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/RoleId.sol +10 -5
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/Timestamp.sol +12 -13
- package/package.json +1 -1
- 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/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/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
@@ -63,22 +63,6 @@
|
|
63
63
|
"name": "AddressInsufficientBalance",
|
64
64
|
"type": "error"
|
65
65
|
},
|
66
|
-
{
|
67
|
-
"inputs": [
|
68
|
-
{
|
69
|
-
"internalType": "address",
|
70
|
-
"name": "registry",
|
71
|
-
"type": "address"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"internalType": "NftId",
|
75
|
-
"name": "nftId",
|
76
|
-
"type": "uint96"
|
77
|
-
}
|
78
|
-
],
|
79
|
-
"name": "ErrorAlreadyLinked",
|
80
|
-
"type": "error"
|
81
|
-
},
|
82
66
|
{
|
83
67
|
"inputs": [
|
84
68
|
{
|
@@ -96,11 +80,6 @@
|
|
96
80
|
"internalType": "NftId",
|
97
81
|
"name": "instanceNftId",
|
98
82
|
"type": "uint96"
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"internalType": "address",
|
102
|
-
"name": "instance",
|
103
|
-
"type": "address"
|
104
83
|
}
|
105
84
|
],
|
106
85
|
"name": "ErrorComponentNotInstance",
|
@@ -123,29 +102,7 @@
|
|
123
102
|
"type": "error"
|
124
103
|
},
|
125
104
|
{
|
126
|
-
"inputs": [
|
127
|
-
{
|
128
|
-
"internalType": "address",
|
129
|
-
"name": "caller",
|
130
|
-
"type": "address"
|
131
|
-
},
|
132
|
-
{
|
133
|
-
"internalType": "uint64",
|
134
|
-
"name": "requiredRoleIdNum",
|
135
|
-
"type": "uint64"
|
136
|
-
}
|
137
|
-
],
|
138
|
-
"name": "ErrorComponentUnauthorized",
|
139
|
-
"type": "error"
|
140
|
-
},
|
141
|
-
{
|
142
|
-
"inputs": [
|
143
|
-
{
|
144
|
-
"internalType": "address",
|
145
|
-
"name": "newWallet",
|
146
|
-
"type": "address"
|
147
|
-
}
|
148
|
-
],
|
105
|
+
"inputs": [],
|
149
106
|
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
150
107
|
"type": "error"
|
151
108
|
},
|
@@ -183,71 +140,50 @@
|
|
183
140
|
{
|
184
141
|
"inputs": [
|
185
142
|
{
|
186
|
-
"internalType": "
|
187
|
-
"name": "
|
188
|
-
"type": "
|
143
|
+
"internalType": "NftId",
|
144
|
+
"name": "nftId",
|
145
|
+
"type": "uint96"
|
189
146
|
}
|
190
147
|
],
|
191
|
-
"name": "
|
192
|
-
"type": "error"
|
193
|
-
},
|
194
|
-
{
|
195
|
-
"inputs": [],
|
196
|
-
"name": "ErrorInitialOwnerZero",
|
148
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
197
149
|
"type": "error"
|
198
150
|
},
|
199
151
|
{
|
200
152
|
"inputs": [
|
201
153
|
{
|
202
154
|
"internalType": "address",
|
203
|
-
"name": "
|
155
|
+
"name": "contractAddress",
|
204
156
|
"type": "address"
|
205
157
|
}
|
206
158
|
],
|
207
|
-
"name": "
|
159
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
208
160
|
"type": "error"
|
209
161
|
},
|
210
162
|
{
|
211
|
-
"inputs": [
|
212
|
-
|
213
|
-
"internalType": "address",
|
214
|
-
"name": "registryAddress",
|
215
|
-
"type": "address"
|
216
|
-
}
|
217
|
-
],
|
218
|
-
"name": "ErrorNotRegistry",
|
163
|
+
"inputs": [],
|
164
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
219
165
|
"type": "error"
|
220
166
|
},
|
221
167
|
{
|
222
168
|
"inputs": [
|
223
169
|
{
|
224
170
|
"internalType": "address",
|
225
|
-
"name": "
|
171
|
+
"name": "account",
|
226
172
|
"type": "address"
|
227
173
|
}
|
228
174
|
],
|
229
|
-
"name": "
|
230
|
-
"type": "error"
|
231
|
-
},
|
232
|
-
{
|
233
|
-
"inputs": [],
|
234
|
-
"name": "ErrorRegistryAddressZero",
|
175
|
+
"name": "ErrorNftOwnableNotOwner",
|
235
176
|
"type": "error"
|
236
177
|
},
|
237
178
|
{
|
238
179
|
"inputs": [
|
239
180
|
{
|
240
181
|
"internalType": "address",
|
241
|
-
"name": "
|
182
|
+
"name": "registryAddress",
|
242
183
|
"type": "address"
|
243
184
|
}
|
244
185
|
],
|
245
|
-
"name": "
|
246
|
-
"type": "error"
|
247
|
-
},
|
248
|
-
{
|
249
|
-
"inputs": [],
|
250
|
-
"name": "ErrorRegistryNotInitialized",
|
186
|
+
"name": "ErrorNotRegistry",
|
251
187
|
"type": "error"
|
252
188
|
},
|
253
189
|
{
|
@@ -305,6 +241,12 @@
|
|
305
241
|
{
|
306
242
|
"anonymous": false,
|
307
243
|
"inputs": [
|
244
|
+
{
|
245
|
+
"indexed": false,
|
246
|
+
"internalType": "address",
|
247
|
+
"name": "oldWallet",
|
248
|
+
"type": "address"
|
249
|
+
},
|
308
250
|
{
|
309
251
|
"indexed": false,
|
310
252
|
"internalType": "address",
|
@@ -361,7 +303,7 @@
|
|
361
303
|
},
|
362
304
|
{
|
363
305
|
"inputs": [],
|
364
|
-
"name": "
|
306
|
+
"name": "COMPONENT_LOCATION_V1",
|
365
307
|
"outputs": [
|
366
308
|
{
|
367
309
|
"internalType": "bytes32",
|
@@ -424,30 +366,6 @@
|
|
424
366
|
"stateMutability": "view",
|
425
367
|
"type": "function"
|
426
368
|
},
|
427
|
-
{
|
428
|
-
"inputs": [
|
429
|
-
{
|
430
|
-
"internalType": "ReferralId",
|
431
|
-
"name": "referralId",
|
432
|
-
"type": "bytes8"
|
433
|
-
},
|
434
|
-
{
|
435
|
-
"internalType": "uint256",
|
436
|
-
"name": "netPremiumAmount",
|
437
|
-
"type": "uint256"
|
438
|
-
}
|
439
|
-
],
|
440
|
-
"name": "calculateFeeAmount",
|
441
|
-
"outputs": [
|
442
|
-
{
|
443
|
-
"internalType": "uint256",
|
444
|
-
"name": "feeAmount",
|
445
|
-
"type": "uint256"
|
446
|
-
}
|
447
|
-
],
|
448
|
-
"stateMutability": "view",
|
449
|
-
"type": "function"
|
450
|
-
},
|
451
369
|
{
|
452
370
|
"inputs": [
|
453
371
|
{
|
@@ -560,50 +478,6 @@
|
|
560
478
|
"stateMutability": "nonpayable",
|
561
479
|
"type": "function"
|
562
480
|
},
|
563
|
-
{
|
564
|
-
"inputs": [
|
565
|
-
{
|
566
|
-
"internalType": "NftId",
|
567
|
-
"name": "distributorNftId",
|
568
|
-
"type": "uint96"
|
569
|
-
},
|
570
|
-
{
|
571
|
-
"internalType": "string",
|
572
|
-
"name": "code",
|
573
|
-
"type": "string"
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"internalType": "UFixed",
|
577
|
-
"name": "discountPercentage",
|
578
|
-
"type": "uint256"
|
579
|
-
},
|
580
|
-
{
|
581
|
-
"internalType": "uint32",
|
582
|
-
"name": "maxReferrals",
|
583
|
-
"type": "uint32"
|
584
|
-
},
|
585
|
-
{
|
586
|
-
"internalType": "Timestamp",
|
587
|
-
"name": "expiryAt",
|
588
|
-
"type": "uint40"
|
589
|
-
},
|
590
|
-
{
|
591
|
-
"internalType": "bytes",
|
592
|
-
"name": "data",
|
593
|
-
"type": "bytes"
|
594
|
-
}
|
595
|
-
],
|
596
|
-
"name": "createReferral",
|
597
|
-
"outputs": [
|
598
|
-
{
|
599
|
-
"internalType": "ReferralId",
|
600
|
-
"name": "referralId",
|
601
|
-
"type": "bytes8"
|
602
|
-
}
|
603
|
-
],
|
604
|
-
"stateMutability": "nonpayable",
|
605
|
-
"type": "function"
|
606
|
-
},
|
607
481
|
{
|
608
482
|
"inputs": [
|
609
483
|
{
|
@@ -722,19 +596,6 @@
|
|
722
596
|
"stateMutability": "view",
|
723
597
|
"type": "function"
|
724
598
|
},
|
725
|
-
{
|
726
|
-
"inputs": [],
|
727
|
-
"name": "getInitialOwner",
|
728
|
-
"outputs": [
|
729
|
-
{
|
730
|
-
"internalType": "address",
|
731
|
-
"name": "",
|
732
|
-
"type": "address"
|
733
|
-
}
|
734
|
-
],
|
735
|
-
"stateMutability": "view",
|
736
|
-
"type": "function"
|
737
|
-
},
|
738
599
|
{
|
739
600
|
"inputs": [],
|
740
601
|
"name": "getInstance",
|
@@ -748,32 +609,6 @@
|
|
748
609
|
"stateMutability": "view",
|
749
610
|
"type": "function"
|
750
611
|
},
|
751
|
-
{
|
752
|
-
"inputs": [],
|
753
|
-
"name": "getInstanceReader",
|
754
|
-
"outputs": [
|
755
|
-
{
|
756
|
-
"internalType": "contract InstanceReader",
|
757
|
-
"name": "reader",
|
758
|
-
"type": "address"
|
759
|
-
}
|
760
|
-
],
|
761
|
-
"stateMutability": "view",
|
762
|
-
"type": "function"
|
763
|
-
},
|
764
|
-
{
|
765
|
-
"inputs": [],
|
766
|
-
"name": "getInstanceService",
|
767
|
-
"outputs": [
|
768
|
-
{
|
769
|
-
"internalType": "contract IInstanceService",
|
770
|
-
"name": "",
|
771
|
-
"type": "address"
|
772
|
-
}
|
773
|
-
],
|
774
|
-
"stateMutability": "view",
|
775
|
-
"type": "function"
|
776
|
-
},
|
777
612
|
{
|
778
613
|
"inputs": [],
|
779
614
|
"name": "getName",
|
@@ -826,19 +661,6 @@
|
|
826
661
|
"stateMutability": "view",
|
827
662
|
"type": "function"
|
828
663
|
},
|
829
|
-
{
|
830
|
-
"inputs": [],
|
831
|
-
"name": "getProductService",
|
832
|
-
"outputs": [
|
833
|
-
{
|
834
|
-
"internalType": "contract IProductService",
|
835
|
-
"name": "",
|
836
|
-
"type": "address"
|
837
|
-
}
|
838
|
-
],
|
839
|
-
"stateMutability": "view",
|
840
|
-
"type": "function"
|
841
|
-
},
|
842
664
|
{
|
843
665
|
"inputs": [
|
844
666
|
{
|
@@ -900,6 +722,23 @@
|
|
900
722
|
"name": "tokenHandler",
|
901
723
|
"type": "address"
|
902
724
|
},
|
725
|
+
{
|
726
|
+
"components": [
|
727
|
+
{
|
728
|
+
"internalType": "UFixed",
|
729
|
+
"name": "fractionalFee",
|
730
|
+
"type": "uint256"
|
731
|
+
},
|
732
|
+
{
|
733
|
+
"internalType": "uint256",
|
734
|
+
"name": "fixedFee",
|
735
|
+
"type": "uint256"
|
736
|
+
}
|
737
|
+
],
|
738
|
+
"internalType": "struct Fee",
|
739
|
+
"name": "minDistributionOwnerFee",
|
740
|
+
"type": "tuple"
|
741
|
+
},
|
903
742
|
{
|
904
743
|
"components": [
|
905
744
|
{
|
@@ -921,6 +760,11 @@
|
|
921
760
|
"internalType": "address",
|
922
761
|
"name": "wallet",
|
923
762
|
"type": "address"
|
763
|
+
},
|
764
|
+
{
|
765
|
+
"internalType": "uint256",
|
766
|
+
"name": "sumDistributionFees",
|
767
|
+
"type": "uint256"
|
924
768
|
}
|
925
769
|
],
|
926
770
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -996,7 +840,7 @@
|
|
996
840
|
},
|
997
841
|
{
|
998
842
|
"internalType": "bytes",
|
999
|
-
"name": "
|
843
|
+
"name": "registryData",
|
1000
844
|
"type": "bytes"
|
1001
845
|
}
|
1002
846
|
],
|
@@ -1027,6 +871,23 @@
|
|
1027
871
|
"name": "token",
|
1028
872
|
"type": "address"
|
1029
873
|
},
|
874
|
+
{
|
875
|
+
"components": [
|
876
|
+
{
|
877
|
+
"internalType": "UFixed",
|
878
|
+
"name": "fractionalFee",
|
879
|
+
"type": "uint256"
|
880
|
+
},
|
881
|
+
{
|
882
|
+
"internalType": "uint256",
|
883
|
+
"name": "fixedFee",
|
884
|
+
"type": "uint256"
|
885
|
+
}
|
886
|
+
],
|
887
|
+
"internalType": "struct Fee",
|
888
|
+
"name": "minDistributionOwnerFee",
|
889
|
+
"type": "tuple"
|
890
|
+
},
|
1030
891
|
{
|
1031
892
|
"components": [
|
1032
893
|
{
|
@@ -1051,7 +912,7 @@
|
|
1051
912
|
},
|
1052
913
|
{
|
1053
914
|
"internalType": "bytes",
|
1054
|
-
"name": "
|
915
|
+
"name": "registryData",
|
1055
916
|
"type": "bytes"
|
1056
917
|
}
|
1057
918
|
],
|
@@ -1085,19 +946,6 @@
|
|
1085
946
|
"stateMutability": "nonpayable",
|
1086
947
|
"type": "function"
|
1087
948
|
},
|
1088
|
-
{
|
1089
|
-
"inputs": [
|
1090
|
-
{
|
1091
|
-
"internalType": "address",
|
1092
|
-
"name": "initialOwner",
|
1093
|
-
"type": "address"
|
1094
|
-
}
|
1095
|
-
],
|
1096
|
-
"name": "initializeOwner",
|
1097
|
-
"outputs": [],
|
1098
|
-
"stateMutability": "nonpayable",
|
1099
|
-
"type": "function"
|
1100
|
-
},
|
1101
949
|
{
|
1102
950
|
"inputs": [
|
1103
951
|
{
|
@@ -1127,7 +975,7 @@
|
|
1127
975
|
},
|
1128
976
|
{
|
1129
977
|
"internalType": "bytes",
|
1130
|
-
"name": "
|
978
|
+
"name": "registryData",
|
1131
979
|
"type": "bytes"
|
1132
980
|
}
|
1133
981
|
],
|
@@ -1280,25 +1128,6 @@
|
|
1280
1128
|
"stateMutability": "nonpayable",
|
1281
1129
|
"type": "function"
|
1282
1130
|
},
|
1283
|
-
{
|
1284
|
-
"inputs": [
|
1285
|
-
{
|
1286
|
-
"internalType": "ReferralId",
|
1287
|
-
"name": "referralId",
|
1288
|
-
"type": "bytes8"
|
1289
|
-
}
|
1290
|
-
],
|
1291
|
-
"name": "referralIsValid",
|
1292
|
-
"outputs": [
|
1293
|
-
{
|
1294
|
-
"internalType": "bool",
|
1295
|
-
"name": "isValid",
|
1296
|
-
"type": "bool"
|
1297
|
-
}
|
1298
|
-
],
|
1299
|
-
"stateMutability": "view",
|
1300
|
-
"type": "function"
|
1301
|
-
},
|
1302
1131
|
{
|
1303
1132
|
"inputs": [
|
1304
1133
|
{
|
@@ -1327,6 +1156,23 @@
|
|
1327
1156
|
},
|
1328
1157
|
{
|
1329
1158
|
"inputs": [
|
1159
|
+
{
|
1160
|
+
"components": [
|
1161
|
+
{
|
1162
|
+
"internalType": "UFixed",
|
1163
|
+
"name": "fractionalFee",
|
1164
|
+
"type": "uint256"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"internalType": "uint256",
|
1168
|
+
"name": "fixedFee",
|
1169
|
+
"type": "uint256"
|
1170
|
+
}
|
1171
|
+
],
|
1172
|
+
"internalType": "struct Fee",
|
1173
|
+
"name": "minDistributionOwnerFee",
|
1174
|
+
"type": "tuple"
|
1175
|
+
},
|
1330
1176
|
{
|
1331
1177
|
"components": [
|
1332
1178
|
{
|
@@ -3,22 +3,6 @@
|
|
3
3
|
"contractName": "IComponent",
|
4
4
|
"sourceName": "contracts/components/IComponent.sol",
|
5
5
|
"abi": [
|
6
|
-
{
|
7
|
-
"inputs": [
|
8
|
-
{
|
9
|
-
"internalType": "address",
|
10
|
-
"name": "registry",
|
11
|
-
"type": "address"
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"internalType": "NftId",
|
15
|
-
"name": "nftId",
|
16
|
-
"type": "uint96"
|
17
|
-
}
|
18
|
-
],
|
19
|
-
"name": "ErrorAlreadyLinked",
|
20
|
-
"type": "error"
|
21
|
-
},
|
22
6
|
{
|
23
7
|
"inputs": [
|
24
8
|
{
|
@@ -36,11 +20,6 @@
|
|
36
20
|
"internalType": "NftId",
|
37
21
|
"name": "instanceNftId",
|
38
22
|
"type": "uint96"
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"internalType": "address",
|
42
|
-
"name": "instance",
|
43
|
-
"type": "address"
|
44
23
|
}
|
45
24
|
],
|
46
25
|
"name": "ErrorComponentNotInstance",
|
@@ -63,29 +42,7 @@
|
|
63
42
|
"type": "error"
|
64
43
|
},
|
65
44
|
{
|
66
|
-
"inputs": [
|
67
|
-
{
|
68
|
-
"internalType": "address",
|
69
|
-
"name": "caller",
|
70
|
-
"type": "address"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"internalType": "uint64",
|
74
|
-
"name": "requiredRoleIdNum",
|
75
|
-
"type": "uint64"
|
76
|
-
}
|
77
|
-
],
|
78
|
-
"name": "ErrorComponentUnauthorized",
|
79
|
-
"type": "error"
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"inputs": [
|
83
|
-
{
|
84
|
-
"internalType": "address",
|
85
|
-
"name": "newWallet",
|
86
|
-
"type": "address"
|
87
|
-
}
|
88
|
-
],
|
45
|
+
"inputs": [],
|
89
46
|
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
90
47
|
"type": "error"
|
91
48
|
},
|
@@ -120,6 +77,17 @@
|
|
120
77
|
"name": "ErrorComponentWalletAllowanceTooSmall",
|
121
78
|
"type": "error"
|
122
79
|
},
|
80
|
+
{
|
81
|
+
"inputs": [
|
82
|
+
{
|
83
|
+
"internalType": "NftId",
|
84
|
+
"name": "nftId",
|
85
|
+
"type": "uint96"
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
89
|
+
"type": "error"
|
90
|
+
},
|
123
91
|
{
|
124
92
|
"inputs": [
|
125
93
|
{
|
@@ -128,12 +96,12 @@
|
|
128
96
|
"type": "address"
|
129
97
|
}
|
130
98
|
],
|
131
|
-
"name": "
|
99
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
132
100
|
"type": "error"
|
133
101
|
},
|
134
102
|
{
|
135
103
|
"inputs": [],
|
136
|
-
"name": "
|
104
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
137
105
|
"type": "error"
|
138
106
|
},
|
139
107
|
{
|
@@ -144,7 +112,7 @@
|
|
144
112
|
"type": "address"
|
145
113
|
}
|
146
114
|
],
|
147
|
-
"name": "
|
115
|
+
"name": "ErrorNftOwnableNotOwner",
|
148
116
|
"type": "error"
|
149
117
|
},
|
150
118
|
{
|
@@ -159,29 +127,14 @@
|
|
159
127
|
"type": "error"
|
160
128
|
},
|
161
129
|
{
|
162
|
-
"
|
163
|
-
"name": "ErrorRegistryAddressZero",
|
164
|
-
"type": "error"
|
165
|
-
},
|
166
|
-
{
|
130
|
+
"anonymous": false,
|
167
131
|
"inputs": [
|
168
132
|
{
|
133
|
+
"indexed": false,
|
169
134
|
"internalType": "address",
|
170
|
-
"name": "
|
135
|
+
"name": "oldWallet",
|
171
136
|
"type": "address"
|
172
|
-
}
|
173
|
-
],
|
174
|
-
"name": "ErrorRegistryAlreadyInitialized",
|
175
|
-
"type": "error"
|
176
|
-
},
|
177
|
-
{
|
178
|
-
"inputs": [],
|
179
|
-
"name": "ErrorRegistryNotInitialized",
|
180
|
-
"type": "error"
|
181
|
-
},
|
182
|
-
{
|
183
|
-
"anonymous": false,
|
184
|
-
"inputs": [
|
137
|
+
},
|
185
138
|
{
|
186
139
|
"indexed": false,
|
187
140
|
"internalType": "address",
|
@@ -280,19 +233,6 @@
|
|
280
233
|
"stateMutability": "view",
|
281
234
|
"type": "function"
|
282
235
|
},
|
283
|
-
{
|
284
|
-
"inputs": [],
|
285
|
-
"name": "getInstanceService",
|
286
|
-
"outputs": [
|
287
|
-
{
|
288
|
-
"internalType": "contract IInstanceService",
|
289
|
-
"name": "",
|
290
|
-
"type": "address"
|
291
|
-
}
|
292
|
-
],
|
293
|
-
"stateMutability": "view",
|
294
|
-
"type": "function"
|
295
|
-
},
|
296
236
|
{
|
297
237
|
"inputs": [],
|
298
238
|
"name": "getName",
|
@@ -345,19 +285,6 @@
|
|
345
285
|
"stateMutability": "view",
|
346
286
|
"type": "function"
|
347
287
|
},
|
348
|
-
{
|
349
|
-
"inputs": [],
|
350
|
-
"name": "getProductService",
|
351
|
-
"outputs": [
|
352
|
-
{
|
353
|
-
"internalType": "contract IProductService",
|
354
|
-
"name": "",
|
355
|
-
"type": "address"
|
356
|
-
}
|
357
|
-
],
|
358
|
-
"stateMutability": "view",
|
359
|
-
"type": "function"
|
360
|
-
},
|
361
288
|
{
|
362
289
|
"inputs": [],
|
363
290
|
"name": "getRegistry",
|