@etherisc/gif-next 0.0.2-d408403-475 → 0.0.2-d48ae55-246
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +303 -27
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +897 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1142 -114
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +292 -224
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +639 -29
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +526 -119
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +512 -69
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1033 -245
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +975 -129
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1430 -1050
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +674 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2060 -1122
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1386 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1260 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +610 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +754 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
- 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 +37 -245
- 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 +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1117 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1318 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +586 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +896 -116
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +614 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +638 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +798 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +372 -41
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +784 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +188 -116
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +185 -266
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1378 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +642 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +532 -118
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +574 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +490 -341
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +574 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +466 -34
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1055 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +470 -103
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1407 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +601 -0
- 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 +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +531 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +62 -72
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +69 -57
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +125 -32
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +69 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +181 -111
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +303 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +269 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +499 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +318 -24
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +105 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +627 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +333 -24
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +436 -56
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +103 -23
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +4 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- 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 +134 -8
- 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 +15 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +236 -0
- package/contracts/components/Distribution.sol +230 -46
- package/contracts/components/IComponent.sol +50 -0
- package/contracts/components/IDistributionComponent.sol +58 -6
- package/contracts/components/IPoolComponent.sol +55 -39
- package/contracts/components/IProductComponent.sol +10 -9
- package/contracts/components/Pool.sol +170 -151
- package/contracts/components/Product.sol +118 -67
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +78 -45
- package/contracts/instance/IInstanceService.sol +59 -0
- package/contracts/instance/Instance.sol +266 -59
- package/contracts/instance/InstanceAccessManager.sol +297 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +442 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +13 -14
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +49 -38
- package/contracts/instance/base/Lifecycle.sol +1 -1
- package/contracts/instance/module/IAccess.sol +47 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +47 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +268 -0
- package/contracts/instance/service/BundleService.sol +298 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +257 -25
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +54 -0
- package/contracts/instance/service/IDistributionService.sol +54 -1
- package/contracts/instance/service/IPolicyService.sol +88 -0
- package/contracts/instance/service/IPoolService.sol +7 -24
- package/contracts/instance/service/IProductService.sol +9 -76
- package/contracts/instance/service/PolicyService.sol +524 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +76 -116
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +158 -434
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +79 -36
- package/contracts/registry/IRegistry.sol +66 -24
- package/contracts/registry/IRegistryService.sol +67 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +366 -284
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +277 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +331 -0
- package/contracts/registry/TokenRegistry.sol +113 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +13 -8
- package/contracts/shared/INftOwnable.sol +28 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IRegistryLinked.sol +15 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +55 -11
- package/contracts/shared/NftOwnable.sol +190 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +95 -0
- package/contracts/shared/Registerable.sol +58 -63
- package/contracts/shared/RegistryLinked.sol +64 -0
- package/contracts/shared/Service.sol +60 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +113 -54
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +7 -14
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +3 -3
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +40 -15
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RoleId.sol +61 -9
- package/contracts/types/StateId.sol +5 -1
- package/contracts/types/Timestamp.sol +7 -3
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +13 -1
- package/package.json +6 -5
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +0 -376
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.json +0 -10
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -511
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -511
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -531
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -405
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -578
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -575
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -94
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -22
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -91
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -70
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -40
- package/contracts/instance/module/pool/PoolModule.sol +0 -90
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -82
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -138
- package/contracts/instance/service/ComponentOwnerService.sol +0 -157
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestDistribution.sol +0 -21
- package/contracts/test/TestPool.sol +0 -25
- package/contracts/test/TestProduct.sol +0 -72
- package/contracts/types/ReferralId.sol +0 -48
@@ -4,233 +4,104 @@
|
|
4
4
|
"sourceName": "contracts/instance/service/IProductService.sol",
|
5
5
|
"abi": [
|
6
6
|
{
|
7
|
-
"anonymous": false,
|
8
7
|
"inputs": [
|
9
8
|
{
|
10
|
-
"indexed": false,
|
11
|
-
"internalType": "Version",
|
12
|
-
"name": "version",
|
13
|
-
"type": "uint24"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"indexed": false,
|
17
9
|
"internalType": "address",
|
18
|
-
"name": "
|
10
|
+
"name": "registry",
|
19
11
|
"type": "address"
|
20
12
|
},
|
21
|
-
{
|
22
|
-
"indexed": false,
|
23
|
-
"internalType": "address",
|
24
|
-
"name": "activatedBy",
|
25
|
-
"type": "address"
|
26
|
-
}
|
27
|
-
],
|
28
|
-
"name": "LogVersionableActivated",
|
29
|
-
"type": "event"
|
30
|
-
},
|
31
|
-
{
|
32
|
-
"inputs": [
|
33
13
|
{
|
34
14
|
"internalType": "NftId",
|
35
|
-
"name": "
|
15
|
+
"name": "nftId",
|
36
16
|
"type": "uint96"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"internalType": "Timestamp",
|
40
|
-
"name": "activateAt",
|
41
|
-
"type": "uint40"
|
42
17
|
}
|
43
18
|
],
|
44
|
-
"name": "
|
45
|
-
"
|
46
|
-
"stateMutability": "nonpayable",
|
47
|
-
"type": "function"
|
19
|
+
"name": "ErrorAlreadyLinked",
|
20
|
+
"type": "error"
|
48
21
|
},
|
49
22
|
{
|
50
23
|
"inputs": [
|
51
24
|
{
|
52
25
|
"internalType": "address",
|
53
|
-
"name": "
|
54
|
-
"type": "address"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"internalType": "address",
|
58
|
-
"name": "activatedBy",
|
26
|
+
"name": "contractAddress",
|
59
27
|
"type": "address"
|
60
28
|
}
|
61
29
|
],
|
62
|
-
"name": "
|
63
|
-
"
|
64
|
-
"stateMutability": "nonpayable",
|
65
|
-
"type": "function"
|
30
|
+
"name": "ErrorContractNotRegistered",
|
31
|
+
"type": "error"
|
66
32
|
},
|
67
33
|
{
|
68
|
-
"inputs": [
|
69
|
-
|
70
|
-
|
71
|
-
"name": "riskId",
|
72
|
-
"type": "bytes8"
|
73
|
-
},
|
74
|
-
{
|
75
|
-
"internalType": "uint256",
|
76
|
-
"name": "sumInsuredAmount",
|
77
|
-
"type": "uint256"
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"internalType": "uint256",
|
81
|
-
"name": "lifetime",
|
82
|
-
"type": "uint256"
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"internalType": "bytes",
|
86
|
-
"name": "applicationData",
|
87
|
-
"type": "bytes"
|
88
|
-
},
|
89
|
-
{
|
90
|
-
"internalType": "NftId",
|
91
|
-
"name": "bundleNftId",
|
92
|
-
"type": "uint96"
|
93
|
-
},
|
94
|
-
{
|
95
|
-
"internalType": "ReferralId",
|
96
|
-
"name": "referralId",
|
97
|
-
"type": "bytes8"
|
98
|
-
}
|
99
|
-
],
|
100
|
-
"name": "calculatePremium",
|
101
|
-
"outputs": [
|
102
|
-
{
|
103
|
-
"internalType": "uint256",
|
104
|
-
"name": "premiumAmount",
|
105
|
-
"type": "uint256"
|
106
|
-
},
|
107
|
-
{
|
108
|
-
"internalType": "uint256",
|
109
|
-
"name": "productFeeAmount",
|
110
|
-
"type": "uint256"
|
111
|
-
},
|
112
|
-
{
|
113
|
-
"internalType": "uint256",
|
114
|
-
"name": "poolFeeAmount",
|
115
|
-
"type": "uint256"
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"internalType": "uint256",
|
119
|
-
"name": "bundleFeeAmount",
|
120
|
-
"type": "uint256"
|
121
|
-
},
|
122
|
-
{
|
123
|
-
"internalType": "uint256",
|
124
|
-
"name": "distributionFeeAmount",
|
125
|
-
"type": "uint256"
|
126
|
-
}
|
127
|
-
],
|
128
|
-
"stateMutability": "view",
|
129
|
-
"type": "function"
|
34
|
+
"inputs": [],
|
35
|
+
"name": "ErrorInitialOwnerZero",
|
36
|
+
"type": "error"
|
130
37
|
},
|
131
38
|
{
|
132
39
|
"inputs": [
|
133
40
|
{
|
134
|
-
"internalType": "
|
135
|
-
"name": "
|
136
|
-
"type": "
|
137
|
-
},
|
138
|
-
{
|
139
|
-
"internalType": "uint256",
|
140
|
-
"name": "sumInsuredAmount",
|
141
|
-
"type": "uint256"
|
142
|
-
}
|
143
|
-
],
|
144
|
-
"name": "calculateRequiredCollateral",
|
145
|
-
"outputs": [
|
146
|
-
{
|
147
|
-
"internalType": "uint256",
|
148
|
-
"name": "collateralAmount",
|
149
|
-
"type": "uint256"
|
41
|
+
"internalType": "address",
|
42
|
+
"name": "account",
|
43
|
+
"type": "address"
|
150
44
|
}
|
151
45
|
],
|
152
|
-
"
|
153
|
-
"type": "
|
46
|
+
"name": "ErrorNotOwner",
|
47
|
+
"type": "error"
|
154
48
|
},
|
155
49
|
{
|
156
50
|
"inputs": [
|
157
51
|
{
|
158
|
-
"internalType": "
|
159
|
-
"name": "
|
160
|
-
"type": "
|
52
|
+
"internalType": "address",
|
53
|
+
"name": "registryAddress",
|
54
|
+
"type": "address"
|
161
55
|
}
|
162
56
|
],
|
163
|
-
"name": "
|
164
|
-
"
|
165
|
-
|
166
|
-
|
57
|
+
"name": "ErrorNotRegistry",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [],
|
62
|
+
"name": "ErrorRegistryAddressZero",
|
63
|
+
"type": "error"
|
167
64
|
},
|
168
65
|
{
|
169
66
|
"inputs": [
|
170
67
|
{
|
171
|
-
"internalType": "
|
172
|
-
"name": "
|
173
|
-
"type": "
|
174
|
-
},
|
175
|
-
{
|
176
|
-
"internalType": "Timestamp",
|
177
|
-
"name": "activateAt",
|
178
|
-
"type": "uint40"
|
68
|
+
"internalType": "address",
|
69
|
+
"name": "registry",
|
70
|
+
"type": "address"
|
179
71
|
}
|
180
72
|
],
|
181
|
-
"name": "
|
182
|
-
"
|
183
|
-
|
184
|
-
|
73
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [],
|
78
|
+
"name": "ErrorRegistryNotInitialized",
|
79
|
+
"type": "error"
|
185
80
|
},
|
186
81
|
{
|
82
|
+
"anonymous": false,
|
187
83
|
"inputs": [
|
188
84
|
{
|
189
|
-
"
|
190
|
-
"
|
191
|
-
"
|
192
|
-
|
193
|
-
{
|
194
|
-
"internalType": "RiskId",
|
195
|
-
"name": "riskId",
|
196
|
-
"type": "bytes8"
|
197
|
-
},
|
198
|
-
{
|
199
|
-
"internalType": "uint256",
|
200
|
-
"name": "sumInsuredAmount",
|
201
|
-
"type": "uint256"
|
202
|
-
},
|
203
|
-
{
|
204
|
-
"internalType": "uint256",
|
205
|
-
"name": "lifetime",
|
206
|
-
"type": "uint256"
|
207
|
-
},
|
208
|
-
{
|
209
|
-
"internalType": "bytes",
|
210
|
-
"name": "applicationData",
|
211
|
-
"type": "bytes"
|
85
|
+
"indexed": false,
|
86
|
+
"internalType": "Version",
|
87
|
+
"name": "version",
|
88
|
+
"type": "uint24"
|
212
89
|
},
|
213
90
|
{
|
214
|
-
"
|
215
|
-
"
|
216
|
-
"
|
91
|
+
"indexed": false,
|
92
|
+
"internalType": "address",
|
93
|
+
"name": "implementation",
|
94
|
+
"type": "address"
|
217
95
|
},
|
218
96
|
{
|
219
|
-
"
|
220
|
-
"
|
221
|
-
"
|
222
|
-
|
223
|
-
],
|
224
|
-
"name": "createApplication",
|
225
|
-
"outputs": [
|
226
|
-
{
|
227
|
-
"internalType": "NftId",
|
228
|
-
"name": "nftId",
|
229
|
-
"type": "uint96"
|
97
|
+
"indexed": false,
|
98
|
+
"internalType": "address",
|
99
|
+
"name": "activatedBy",
|
100
|
+
"type": "address"
|
230
101
|
}
|
231
102
|
],
|
232
|
-
"
|
233
|
-
"type": "
|
103
|
+
"name": "LogVersionableInitialized",
|
104
|
+
"type": "event"
|
234
105
|
},
|
235
106
|
{
|
236
107
|
"inputs": [
|
@@ -252,25 +123,62 @@
|
|
252
123
|
},
|
253
124
|
{
|
254
125
|
"inputs": [],
|
255
|
-
"name": "
|
126
|
+
"name": "getDomain",
|
256
127
|
"outputs": [
|
257
128
|
{
|
258
|
-
"internalType": "
|
259
|
-
"name": "
|
260
|
-
"type": "
|
129
|
+
"internalType": "ObjectType",
|
130
|
+
"name": "serviceDomain",
|
131
|
+
"type": "uint8"
|
261
132
|
}
|
262
133
|
],
|
263
|
-
"stateMutability": "
|
134
|
+
"stateMutability": "pure",
|
264
135
|
"type": "function"
|
265
136
|
},
|
266
137
|
{
|
267
138
|
"inputs": [],
|
268
|
-
"name": "
|
139
|
+
"name": "getInitialInfo",
|
269
140
|
"outputs": [
|
270
141
|
{
|
271
|
-
"
|
272
|
-
|
273
|
-
|
142
|
+
"components": [
|
143
|
+
{
|
144
|
+
"internalType": "NftId",
|
145
|
+
"name": "nftId",
|
146
|
+
"type": "uint96"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"internalType": "NftId",
|
150
|
+
"name": "parentNftId",
|
151
|
+
"type": "uint96"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"internalType": "ObjectType",
|
155
|
+
"name": "objectType",
|
156
|
+
"type": "uint8"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"internalType": "bool",
|
160
|
+
"name": "isInterceptor",
|
161
|
+
"type": "bool"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"internalType": "address",
|
165
|
+
"name": "objectAddress",
|
166
|
+
"type": "address"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"internalType": "address",
|
170
|
+
"name": "initialOwner",
|
171
|
+
"type": "address"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"internalType": "bytes",
|
175
|
+
"name": "data",
|
176
|
+
"type": "bytes"
|
177
|
+
}
|
178
|
+
],
|
179
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
180
|
+
"name": "",
|
181
|
+
"type": "tuple"
|
274
182
|
}
|
275
183
|
],
|
276
184
|
"stateMutability": "view",
|
@@ -278,25 +186,25 @@
|
|
278
186
|
},
|
279
187
|
{
|
280
188
|
"inputs": [],
|
281
|
-
"name": "
|
189
|
+
"name": "getInitializedVersion",
|
282
190
|
"outputs": [
|
283
191
|
{
|
284
|
-
"internalType": "
|
285
|
-
"name": "
|
286
|
-
"type": "
|
192
|
+
"internalType": "uint64",
|
193
|
+
"name": "",
|
194
|
+
"type": "uint64"
|
287
195
|
}
|
288
196
|
],
|
289
|
-
"stateMutability": "
|
197
|
+
"stateMutability": "view",
|
290
198
|
"type": "function"
|
291
199
|
},
|
292
200
|
{
|
293
201
|
"inputs": [],
|
294
|
-
"name": "
|
202
|
+
"name": "getMajorVersion",
|
295
203
|
"outputs": [
|
296
204
|
{
|
297
|
-
"internalType": "
|
298
|
-
"name": "
|
299
|
-
"type": "
|
205
|
+
"internalType": "VersionPart",
|
206
|
+
"name": "majorVersion",
|
207
|
+
"type": "uint8"
|
300
208
|
}
|
301
209
|
],
|
302
210
|
"stateMutability": "view",
|
@@ -304,12 +212,12 @@
|
|
304
212
|
},
|
305
213
|
{
|
306
214
|
"inputs": [],
|
307
|
-
"name": "
|
215
|
+
"name": "getNftId",
|
308
216
|
"outputs": [
|
309
217
|
{
|
310
|
-
"internalType": "
|
311
|
-
"name": "
|
312
|
-
"type": "
|
218
|
+
"internalType": "NftId",
|
219
|
+
"name": "",
|
220
|
+
"type": "uint96"
|
313
221
|
}
|
314
222
|
],
|
315
223
|
"stateMutability": "view",
|
@@ -317,12 +225,12 @@
|
|
317
225
|
},
|
318
226
|
{
|
319
227
|
"inputs": [],
|
320
|
-
"name": "
|
228
|
+
"name": "getOwner",
|
321
229
|
"outputs": [
|
322
230
|
{
|
323
|
-
"internalType": "
|
324
|
-
"name": "
|
325
|
-
"type": "
|
231
|
+
"internalType": "address",
|
232
|
+
"name": "",
|
233
|
+
"type": "address"
|
326
234
|
}
|
327
235
|
],
|
328
236
|
"stateMutability": "view",
|
@@ -334,7 +242,7 @@
|
|
334
242
|
"outputs": [
|
335
243
|
{
|
336
244
|
"internalType": "contract IRegistry",
|
337
|
-
"name": "
|
245
|
+
"name": "",
|
338
246
|
"type": "address"
|
339
247
|
}
|
340
248
|
],
|
@@ -343,15 +251,15 @@
|
|
343
251
|
},
|
344
252
|
{
|
345
253
|
"inputs": [],
|
346
|
-
"name": "
|
254
|
+
"name": "getRegistryAddress",
|
347
255
|
"outputs": [
|
348
256
|
{
|
349
|
-
"internalType": "
|
350
|
-
"name": "
|
351
|
-
"type": "
|
257
|
+
"internalType": "address",
|
258
|
+
"name": "",
|
259
|
+
"type": "address"
|
352
260
|
}
|
353
261
|
],
|
354
|
-
"stateMutability": "
|
262
|
+
"stateMutability": "view",
|
355
263
|
"type": "function"
|
356
264
|
},
|
357
265
|
{
|
@@ -445,6 +353,29 @@
|
|
445
353
|
"stateMutability": "view",
|
446
354
|
"type": "function"
|
447
355
|
},
|
356
|
+
{
|
357
|
+
"inputs": [
|
358
|
+
{
|
359
|
+
"internalType": "address",
|
360
|
+
"name": "implementation",
|
361
|
+
"type": "address"
|
362
|
+
},
|
363
|
+
{
|
364
|
+
"internalType": "address",
|
365
|
+
"name": "activatedBy",
|
366
|
+
"type": "address"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"internalType": "bytes",
|
370
|
+
"name": "activationData",
|
371
|
+
"type": "bytes"
|
372
|
+
}
|
373
|
+
],
|
374
|
+
"name": "initializeVersionable",
|
375
|
+
"outputs": [],
|
376
|
+
"stateMutability": "nonpayable",
|
377
|
+
"type": "function"
|
378
|
+
},
|
448
379
|
{
|
449
380
|
"inputs": [
|
450
381
|
{
|
@@ -453,7 +384,7 @@
|
|
453
384
|
"type": "uint24"
|
454
385
|
}
|
455
386
|
],
|
456
|
-
"name": "
|
387
|
+
"name": "isInitialized",
|
457
388
|
"outputs": [
|
458
389
|
{
|
459
390
|
"internalType": "bool",
|
@@ -466,27 +397,27 @@
|
|
466
397
|
},
|
467
398
|
{
|
468
399
|
"inputs": [],
|
469
|
-
"name": "
|
470
|
-
"outputs": [
|
471
|
-
{
|
472
|
-
"internalType": "NftId",
|
473
|
-
"name": "nftId",
|
474
|
-
"type": "uint96"
|
475
|
-
}
|
476
|
-
],
|
400
|
+
"name": "linkToRegisteredNftId",
|
401
|
+
"outputs": [],
|
477
402
|
"stateMutability": "nonpayable",
|
478
403
|
"type": "function"
|
479
404
|
},
|
480
405
|
{
|
481
406
|
"inputs": [
|
407
|
+
{
|
408
|
+
"internalType": "address",
|
409
|
+
"name": "productAddress",
|
410
|
+
"type": "address"
|
411
|
+
}
|
412
|
+
],
|
413
|
+
"name": "register",
|
414
|
+
"outputs": [
|
482
415
|
{
|
483
416
|
"internalType": "NftId",
|
484
|
-
"name": "
|
417
|
+
"name": "",
|
485
418
|
"type": "uint96"
|
486
419
|
}
|
487
420
|
],
|
488
|
-
"name": "revoke",
|
489
|
-
"outputs": [],
|
490
421
|
"stateMutability": "nonpayable",
|
491
422
|
"type": "function"
|
492
423
|
},
|
@@ -532,36 +463,6 @@
|
|
532
463
|
"stateMutability": "nonpayable",
|
533
464
|
"type": "function"
|
534
465
|
},
|
535
|
-
{
|
536
|
-
"inputs": [
|
537
|
-
{
|
538
|
-
"internalType": "RiskId",
|
539
|
-
"name": "riskId",
|
540
|
-
"type": "bytes8"
|
541
|
-
},
|
542
|
-
{
|
543
|
-
"components": [
|
544
|
-
{
|
545
|
-
"internalType": "NftId",
|
546
|
-
"name": "productNftId",
|
547
|
-
"type": "uint96"
|
548
|
-
},
|
549
|
-
{
|
550
|
-
"internalType": "bytes",
|
551
|
-
"name": "data",
|
552
|
-
"type": "bytes"
|
553
|
-
}
|
554
|
-
],
|
555
|
-
"internalType": "struct IRisk.RiskInfo",
|
556
|
-
"name": "data",
|
557
|
-
"type": "tuple"
|
558
|
-
}
|
559
|
-
],
|
560
|
-
"name": "setRiskInfo",
|
561
|
-
"outputs": [],
|
562
|
-
"stateMutability": "nonpayable",
|
563
|
-
"type": "function"
|
564
|
-
},
|
565
466
|
{
|
566
467
|
"inputs": [
|
567
468
|
{
|
@@ -584,22 +485,17 @@
|
|
584
485
|
{
|
585
486
|
"inputs": [
|
586
487
|
{
|
587
|
-
"internalType": "
|
588
|
-
"name": "
|
589
|
-
"type": "
|
590
|
-
},
|
591
|
-
{
|
592
|
-
"internalType": "bool",
|
593
|
-
"name": "requirePremiumPayment",
|
594
|
-
"type": "bool"
|
488
|
+
"internalType": "RiskId",
|
489
|
+
"name": "riskId",
|
490
|
+
"type": "bytes8"
|
595
491
|
},
|
596
492
|
{
|
597
|
-
"internalType": "
|
598
|
-
"name": "
|
599
|
-
"type": "
|
493
|
+
"internalType": "bytes",
|
494
|
+
"name": "data",
|
495
|
+
"type": "bytes"
|
600
496
|
}
|
601
497
|
],
|
602
|
-
"name": "
|
498
|
+
"name": "updateRisk",
|
603
499
|
"outputs": [],
|
604
500
|
"stateMutability": "nonpayable",
|
605
501
|
"type": "function"
|
@@ -613,7 +509,7 @@
|
|
613
509
|
},
|
614
510
|
{
|
615
511
|
"internalType": "StateId",
|
616
|
-
"name": "
|
512
|
+
"name": "newState",
|
617
513
|
"type": "uint8"
|
618
514
|
}
|
619
515
|
],
|
@@ -621,6 +517,29 @@
|
|
621
517
|
"outputs": [],
|
622
518
|
"stateMutability": "nonpayable",
|
623
519
|
"type": "function"
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"inputs": [
|
523
|
+
{
|
524
|
+
"internalType": "address",
|
525
|
+
"name": "implementation",
|
526
|
+
"type": "address"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"internalType": "address",
|
530
|
+
"name": "activatedBy",
|
531
|
+
"type": "address"
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"internalType": "bytes",
|
535
|
+
"name": "upgradeData",
|
536
|
+
"type": "bytes"
|
537
|
+
}
|
538
|
+
],
|
539
|
+
"name": "upgradeVersionable",
|
540
|
+
"outputs": [],
|
541
|
+
"stateMutability": "nonpayable",
|
542
|
+
"type": "function"
|
624
543
|
}
|
625
544
|
],
|
626
545
|
"bytecode": "0x",
|