@etherisc/gif-next 0.0.2-8d47fa1-080 → 0.0.2-8dd2f76-992
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 +178 -14
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +842 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1048 -164
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +658 -32
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +725 -135
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +508 -51
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1047 -273
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +809 -144
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1373 -1178
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2059 -1349
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1289 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1179 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +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 +67 -245
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{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 +1039 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1528 -256
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +805 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +272 -186
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +850 -129
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +499 -139
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +119 -343
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +753 -165
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +375 -499
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +60 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +250 -65
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +378 -180
- 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 +229 -206
- 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 +507 -210
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/component/ComponentModule.sol/ComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +71 -50
- 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 +72 -8
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +146 -155
- 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 +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +355 -83
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +204 -12
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +231 -191
- 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 +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 +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +204 -12
- 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 +287 -163
- 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 +8 -174
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +42 -11
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +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/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +38 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +253 -0
- package/contracts/components/Distribution.sol +204 -79
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +43 -19
- package/contracts/components/IPoolComponent.sol +88 -40
- package/contracts/components/IProductComponent.sol +11 -10
- package/contracts/components/Pool.sol +222 -165
- package/contracts/components/Product.sol +137 -143
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +127 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +86 -42
- package/contracts/instance/IInstanceService.sol +72 -0
- package/contracts/instance/Instance.sol +310 -68
- package/contracts/instance/InstanceAccessManager.sol +527 -0
- package/contracts/instance/InstanceReader.sol +291 -0
- package/contracts/instance/InstanceService.sol +495 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +121 -0
- package/contracts/instance/base/IKeyValueStore.sol +13 -14
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +60 -41
- package/contracts/instance/base/Lifecycle.sol +12 -3
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +23 -0
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +72 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +431 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +403 -22
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +93 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +88 -1
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +80 -18
- package/contracts/instance/service/IProductService.sol +9 -76
- package/contracts/instance/service/PolicyService.sol +362 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +248 -94
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +135 -434
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +49 -26
- package/contracts/registry/IRegistry.sol +57 -31
- package/contracts/registry/IRegistryService.sol +55 -16
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +286 -324
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +159 -260
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +15 -9
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +5 -12
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +120 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +112 -58
- package/contracts/shared/Registerable.sol +23 -66
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +72 -0
- package/contracts/shared/TokenHandler.sol +33 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
- package/contracts/shared/Versionable.sol +5 -93
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +6 -7
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +15 -7
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +40 -14
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RoleId.sol +68 -9
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +6 -1
- package/contracts/types/Timestamp.sol +17 -13
- package/contracts/types/UFixed.sol +129 -12
- package/contracts/types/Version.sol +5 -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 -213
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -177
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -393
- 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/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -380
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -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/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 -164
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
- 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 -638
- 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 -638
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -690
- 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/IChainNft.sol/IChainNft.json +0 -457
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +0 -344
- 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 -445
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -602
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -632
- 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 -79
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -89
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -43
- 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 -71
- 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 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -95
- 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 -84
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
- package/contracts/instance/service/ComponentOwnerService.sol +0 -272
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/registry/IChainNft.sol +0 -22
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/registry/RegistryInstaller.sol +0 -100
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestDistribution.sol +0 -22
- package/contracts/test/TestPool.sol +0 -27
- package/contracts/test/TestProduct.sol +0 -74
- package/contracts/types/ReferralId.sol +0 -48
@@ -4,214 +4,116 @@
|
|
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
|
-
"internalType": "address",
|
18
|
-
"name": "implementation",
|
19
|
-
"type": "address"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"indexed": false,
|
23
9
|
"internalType": "address",
|
24
|
-
"name": "
|
10
|
+
"name": "authority",
|
25
11
|
"type": "address"
|
26
12
|
}
|
27
13
|
],
|
28
|
-
"name": "
|
29
|
-
"type": "
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
30
16
|
},
|
31
17
|
{
|
32
18
|
"inputs": [
|
33
19
|
{
|
34
|
-
"internalType": "
|
35
|
-
"name": "
|
36
|
-
"type": "
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
37
23
|
},
|
38
24
|
{
|
39
|
-
"internalType": "
|
40
|
-
"name": "
|
41
|
-
"type": "
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
42
28
|
}
|
43
29
|
],
|
44
|
-
"name": "
|
45
|
-
"
|
46
|
-
"stateMutability": "nonpayable",
|
47
|
-
"type": "function"
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
48
32
|
},
|
49
33
|
{
|
50
34
|
"inputs": [
|
51
35
|
{
|
52
|
-
"internalType": "
|
53
|
-
"name": "
|
54
|
-
"type": "
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"internalType": "uint256",
|
58
|
-
"name": "sumInsuredAmount",
|
59
|
-
"type": "uint256"
|
60
|
-
},
|
61
|
-
{
|
62
|
-
"internalType": "uint256",
|
63
|
-
"name": "lifetime",
|
64
|
-
"type": "uint256"
|
65
|
-
},
|
66
|
-
{
|
67
|
-
"internalType": "bytes",
|
68
|
-
"name": "applicationData",
|
69
|
-
"type": "bytes"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"internalType": "NftId",
|
73
|
-
"name": "bundleNftId",
|
74
|
-
"type": "uint96"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"internalType": "ReferralId",
|
78
|
-
"name": "referralId",
|
79
|
-
"type": "bytes8"
|
80
|
-
}
|
81
|
-
],
|
82
|
-
"name": "calculatePremium",
|
83
|
-
"outputs": [
|
84
|
-
{
|
85
|
-
"internalType": "uint256",
|
86
|
-
"name": "premiumAmount",
|
87
|
-
"type": "uint256"
|
88
|
-
},
|
89
|
-
{
|
90
|
-
"internalType": "uint256",
|
91
|
-
"name": "productFeeAmount",
|
92
|
-
"type": "uint256"
|
93
|
-
},
|
94
|
-
{
|
95
|
-
"internalType": "uint256",
|
96
|
-
"name": "poolFeeAmount",
|
97
|
-
"type": "uint256"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"internalType": "uint256",
|
101
|
-
"name": "bundleFeeAmount",
|
102
|
-
"type": "uint256"
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"internalType": "uint256",
|
106
|
-
"name": "distributionFeeAmount",
|
107
|
-
"type": "uint256"
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
108
39
|
}
|
109
40
|
],
|
110
|
-
"
|
111
|
-
"type": "
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
112
43
|
},
|
113
44
|
{
|
114
45
|
"inputs": [
|
115
46
|
{
|
116
|
-
"internalType": "
|
117
|
-
"name": "
|
118
|
-
"type": "
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"internalType": "uint256",
|
122
|
-
"name": "sumInsuredAmount",
|
123
|
-
"type": "uint256"
|
47
|
+
"internalType": "NftId",
|
48
|
+
"name": "nftId",
|
49
|
+
"type": "uint96"
|
124
50
|
}
|
125
51
|
],
|
126
|
-
"name": "
|
127
|
-
"
|
52
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
128
57
|
{
|
129
|
-
"internalType": "
|
130
|
-
"name": "
|
131
|
-
"type": "
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "contractAddress",
|
60
|
+
"type": "address"
|
132
61
|
}
|
133
62
|
],
|
134
|
-
"
|
135
|
-
"type": "
|
63
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [],
|
68
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
69
|
+
"type": "error"
|
136
70
|
},
|
137
71
|
{
|
138
72
|
"inputs": [
|
139
73
|
{
|
140
|
-
"internalType": "
|
141
|
-
"name": "
|
142
|
-
"type": "
|
74
|
+
"internalType": "address",
|
75
|
+
"name": "account",
|
76
|
+
"type": "address"
|
143
77
|
}
|
144
78
|
],
|
145
|
-
"name": "
|
146
|
-
"
|
147
|
-
"stateMutability": "nonpayable",
|
148
|
-
"type": "function"
|
79
|
+
"name": "ErrorNftOwnableNotOwner",
|
80
|
+
"type": "error"
|
149
81
|
},
|
150
82
|
{
|
151
83
|
"inputs": [
|
152
84
|
{
|
153
|
-
"internalType": "
|
154
|
-
"name": "
|
155
|
-
"type": "
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"internalType": "Timestamp",
|
159
|
-
"name": "activateAt",
|
160
|
-
"type": "uint40"
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "registryAddress",
|
87
|
+
"type": "address"
|
161
88
|
}
|
162
89
|
],
|
163
|
-
"name": "
|
164
|
-
"
|
165
|
-
"stateMutability": "nonpayable",
|
166
|
-
"type": "function"
|
90
|
+
"name": "ErrorNotRegistry",
|
91
|
+
"type": "error"
|
167
92
|
},
|
168
93
|
{
|
94
|
+
"anonymous": false,
|
169
95
|
"inputs": [
|
170
96
|
{
|
97
|
+
"indexed": false,
|
171
98
|
"internalType": "address",
|
172
|
-
"name": "
|
99
|
+
"name": "authority",
|
173
100
|
"type": "address"
|
174
|
-
},
|
175
|
-
{
|
176
|
-
"internalType": "RiskId",
|
177
|
-
"name": "riskId",
|
178
|
-
"type": "bytes8"
|
179
|
-
},
|
180
|
-
{
|
181
|
-
"internalType": "uint256",
|
182
|
-
"name": "sumInsuredAmount",
|
183
|
-
"type": "uint256"
|
184
|
-
},
|
185
|
-
{
|
186
|
-
"internalType": "uint256",
|
187
|
-
"name": "lifetime",
|
188
|
-
"type": "uint256"
|
189
|
-
},
|
190
|
-
{
|
191
|
-
"internalType": "bytes",
|
192
|
-
"name": "applicationData",
|
193
|
-
"type": "bytes"
|
194
|
-
},
|
195
|
-
{
|
196
|
-
"internalType": "NftId",
|
197
|
-
"name": "bundleNftId",
|
198
|
-
"type": "uint96"
|
199
|
-
},
|
200
|
-
{
|
201
|
-
"internalType": "ReferralId",
|
202
|
-
"name": "referralId",
|
203
|
-
"type": "bytes8"
|
204
101
|
}
|
205
102
|
],
|
206
|
-
"name": "
|
103
|
+
"name": "AuthorityUpdated",
|
104
|
+
"type": "event"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"inputs": [],
|
108
|
+
"name": "authority",
|
207
109
|
"outputs": [
|
208
110
|
{
|
209
|
-
"internalType": "
|
210
|
-
"name": "
|
211
|
-
"type": "
|
111
|
+
"internalType": "address",
|
112
|
+
"name": "",
|
113
|
+
"type": "address"
|
212
114
|
}
|
213
115
|
],
|
214
|
-
"stateMutability": "
|
116
|
+
"stateMutability": "view",
|
215
117
|
"type": "function"
|
216
118
|
},
|
217
119
|
{
|
@@ -232,6 +134,19 @@
|
|
232
134
|
"stateMutability": "nonpayable",
|
233
135
|
"type": "function"
|
234
136
|
},
|
137
|
+
{
|
138
|
+
"inputs": [],
|
139
|
+
"name": "getDomain",
|
140
|
+
"outputs": [
|
141
|
+
{
|
142
|
+
"internalType": "ObjectType",
|
143
|
+
"name": "serviceDomain",
|
144
|
+
"type": "uint8"
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"stateMutability": "pure",
|
148
|
+
"type": "function"
|
149
|
+
},
|
235
150
|
{
|
236
151
|
"inputs": [],
|
237
152
|
"name": "getInitialInfo",
|
@@ -277,62 +192,18 @@
|
|
277
192
|
"internalType": "struct IRegistry.ObjectInfo",
|
278
193
|
"name": "",
|
279
194
|
"type": "tuple"
|
280
|
-
},
|
281
|
-
{
|
282
|
-
"internalType": "bytes",
|
283
|
-
"name": "data",
|
284
|
-
"type": "bytes"
|
285
|
-
}
|
286
|
-
],
|
287
|
-
"stateMutability": "view",
|
288
|
-
"type": "function"
|
289
|
-
},
|
290
|
-
{
|
291
|
-
"inputs": [],
|
292
|
-
"name": "getInitializedVersion",
|
293
|
-
"outputs": [
|
294
|
-
{
|
295
|
-
"internalType": "uint64",
|
296
|
-
"name": "",
|
297
|
-
"type": "uint64"
|
298
|
-
}
|
299
|
-
],
|
300
|
-
"stateMutability": "view",
|
301
|
-
"type": "function"
|
302
|
-
},
|
303
|
-
{
|
304
|
-
"inputs": [],
|
305
|
-
"name": "getMajorVersion",
|
306
|
-
"outputs": [
|
307
|
-
{
|
308
|
-
"internalType": "VersionPart",
|
309
|
-
"name": "majorVersion",
|
310
|
-
"type": "uint8"
|
311
195
|
}
|
312
196
|
],
|
313
197
|
"stateMutability": "view",
|
314
198
|
"type": "function"
|
315
199
|
},
|
316
|
-
{
|
317
|
-
"inputs": [],
|
318
|
-
"name": "getName",
|
319
|
-
"outputs": [
|
320
|
-
{
|
321
|
-
"internalType": "string",
|
322
|
-
"name": "name",
|
323
|
-
"type": "string"
|
324
|
-
}
|
325
|
-
],
|
326
|
-
"stateMutability": "pure",
|
327
|
-
"type": "function"
|
328
|
-
},
|
329
200
|
{
|
330
201
|
"inputs": [],
|
331
202
|
"name": "getNftId",
|
332
203
|
"outputs": [
|
333
204
|
{
|
334
205
|
"internalType": "NftId",
|
335
|
-
"name": "
|
206
|
+
"name": "",
|
336
207
|
"type": "uint96"
|
337
208
|
}
|
338
209
|
],
|
@@ -345,7 +216,7 @@
|
|
345
216
|
"outputs": [
|
346
217
|
{
|
347
218
|
"internalType": "address",
|
348
|
-
"name": "
|
219
|
+
"name": "",
|
349
220
|
"type": "address"
|
350
221
|
}
|
351
222
|
],
|
@@ -358,7 +229,7 @@
|
|
358
229
|
"outputs": [
|
359
230
|
{
|
360
231
|
"internalType": "contract IRegistry",
|
361
|
-
"name": "
|
232
|
+
"name": "",
|
362
233
|
"type": "address"
|
363
234
|
}
|
364
235
|
],
|
@@ -367,114 +238,64 @@
|
|
367
238
|
},
|
368
239
|
{
|
369
240
|
"inputs": [],
|
370
|
-
"name": "
|
241
|
+
"name": "getRegistryAddress",
|
371
242
|
"outputs": [
|
372
243
|
{
|
373
|
-
"internalType": "
|
244
|
+
"internalType": "address",
|
374
245
|
"name": "",
|
375
|
-
"type": "
|
246
|
+
"type": "address"
|
376
247
|
}
|
377
248
|
],
|
378
|
-
"stateMutability": "
|
249
|
+
"stateMutability": "view",
|
379
250
|
"type": "function"
|
380
251
|
},
|
381
252
|
{
|
382
|
-
"inputs": [
|
383
|
-
{
|
384
|
-
"internalType": "uint256",
|
385
|
-
"name": "index",
|
386
|
-
"type": "uint256"
|
387
|
-
}
|
388
|
-
],
|
253
|
+
"inputs": [],
|
389
254
|
"name": "getVersion",
|
390
255
|
"outputs": [
|
391
256
|
{
|
392
257
|
"internalType": "Version",
|
393
|
-
"name": "
|
258
|
+
"name": "",
|
394
259
|
"type": "uint24"
|
395
260
|
}
|
396
261
|
],
|
397
|
-
"stateMutability": "
|
262
|
+
"stateMutability": "pure",
|
398
263
|
"type": "function"
|
399
264
|
},
|
400
265
|
{
|
401
|
-
"inputs": [
|
402
|
-
"name": "getVersionCount",
|
403
|
-
"outputs": [
|
266
|
+
"inputs": [
|
404
267
|
{
|
405
|
-
"internalType": "
|
406
|
-
"name": "
|
407
|
-
"type": "
|
268
|
+
"internalType": "address",
|
269
|
+
"name": "activatedBy",
|
270
|
+
"type": "address"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"internalType": "bytes",
|
274
|
+
"name": "activationData",
|
275
|
+
"type": "bytes"
|
408
276
|
}
|
409
277
|
],
|
410
|
-
"
|
278
|
+
"name": "initializeVersionable",
|
279
|
+
"outputs": [],
|
280
|
+
"stateMutability": "nonpayable",
|
411
281
|
"type": "function"
|
412
282
|
},
|
413
283
|
{
|
414
|
-
"inputs": [
|
415
|
-
|
416
|
-
"internalType": "Version",
|
417
|
-
"name": "version",
|
418
|
-
"type": "uint24"
|
419
|
-
}
|
420
|
-
],
|
421
|
-
"name": "getVersionInfo",
|
284
|
+
"inputs": [],
|
285
|
+
"name": "isConsumingScheduledOp",
|
422
286
|
"outputs": [
|
423
287
|
{
|
424
|
-
"
|
425
|
-
|
426
|
-
|
427
|
-
"name": "version",
|
428
|
-
"type": "uint24"
|
429
|
-
},
|
430
|
-
{
|
431
|
-
"internalType": "address",
|
432
|
-
"name": "implementation",
|
433
|
-
"type": "address"
|
434
|
-
},
|
435
|
-
{
|
436
|
-
"internalType": "address",
|
437
|
-
"name": "activatedBy",
|
438
|
-
"type": "address"
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"internalType": "Timestamp",
|
442
|
-
"name": "activatedAt",
|
443
|
-
"type": "uint40"
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"internalType": "Blocknumber",
|
447
|
-
"name": "activatedIn",
|
448
|
-
"type": "uint32"
|
449
|
-
}
|
450
|
-
],
|
451
|
-
"internalType": "struct IVersionable.VersionInfo",
|
452
|
-
"name": "versionInfo",
|
453
|
-
"type": "tuple"
|
288
|
+
"internalType": "bytes4",
|
289
|
+
"name": "",
|
290
|
+
"type": "bytes4"
|
454
291
|
}
|
455
292
|
],
|
456
293
|
"stateMutability": "view",
|
457
294
|
"type": "function"
|
458
295
|
},
|
459
296
|
{
|
460
|
-
"inputs": [
|
461
|
-
|
462
|
-
"internalType": "address",
|
463
|
-
"name": "implementation",
|
464
|
-
"type": "address"
|
465
|
-
},
|
466
|
-
{
|
467
|
-
"internalType": "address",
|
468
|
-
"name": "activatedBy",
|
469
|
-
"type": "address"
|
470
|
-
},
|
471
|
-
{
|
472
|
-
"internalType": "bytes",
|
473
|
-
"name": "activationData",
|
474
|
-
"type": "bytes"
|
475
|
-
}
|
476
|
-
],
|
477
|
-
"name": "initialize",
|
297
|
+
"inputs": [],
|
298
|
+
"name": "linkToRegisteredNftId",
|
478
299
|
"outputs": [],
|
479
300
|
"stateMutability": "nonpayable",
|
480
301
|
"type": "function"
|
@@ -482,31 +303,31 @@
|
|
482
303
|
{
|
483
304
|
"inputs": [
|
484
305
|
{
|
485
|
-
"internalType": "
|
486
|
-
"name": "
|
487
|
-
"type": "
|
306
|
+
"internalType": "address",
|
307
|
+
"name": "productAddress",
|
308
|
+
"type": "address"
|
488
309
|
}
|
489
310
|
],
|
490
|
-
"name": "
|
311
|
+
"name": "register",
|
491
312
|
"outputs": [
|
492
313
|
{
|
493
|
-
"internalType": "
|
314
|
+
"internalType": "NftId",
|
494
315
|
"name": "",
|
495
|
-
"type": "
|
316
|
+
"type": "uint96"
|
496
317
|
}
|
497
318
|
],
|
498
|
-
"stateMutability": "
|
319
|
+
"stateMutability": "nonpayable",
|
499
320
|
"type": "function"
|
500
321
|
},
|
501
322
|
{
|
502
323
|
"inputs": [
|
503
324
|
{
|
504
|
-
"internalType": "
|
505
|
-
"name": "
|
506
|
-
"type": "
|
325
|
+
"internalType": "address",
|
326
|
+
"name": "",
|
327
|
+
"type": "address"
|
507
328
|
}
|
508
329
|
],
|
509
|
-
"name": "
|
330
|
+
"name": "setAuthority",
|
510
331
|
"outputs": [],
|
511
332
|
"stateMutability": "nonpayable",
|
512
333
|
"type": "function"
|
@@ -553,36 +374,6 @@
|
|
553
374
|
"stateMutability": "nonpayable",
|
554
375
|
"type": "function"
|
555
376
|
},
|
556
|
-
{
|
557
|
-
"inputs": [
|
558
|
-
{
|
559
|
-
"internalType": "RiskId",
|
560
|
-
"name": "riskId",
|
561
|
-
"type": "bytes8"
|
562
|
-
},
|
563
|
-
{
|
564
|
-
"components": [
|
565
|
-
{
|
566
|
-
"internalType": "NftId",
|
567
|
-
"name": "productNftId",
|
568
|
-
"type": "uint96"
|
569
|
-
},
|
570
|
-
{
|
571
|
-
"internalType": "bytes",
|
572
|
-
"name": "data",
|
573
|
-
"type": "bytes"
|
574
|
-
}
|
575
|
-
],
|
576
|
-
"internalType": "struct IRisk.RiskInfo",
|
577
|
-
"name": "data",
|
578
|
-
"type": "tuple"
|
579
|
-
}
|
580
|
-
],
|
581
|
-
"name": "setRiskInfo",
|
582
|
-
"outputs": [],
|
583
|
-
"stateMutability": "nonpayable",
|
584
|
-
"type": "function"
|
585
|
-
},
|
586
377
|
{
|
587
378
|
"inputs": [
|
588
379
|
{
|
@@ -605,22 +396,17 @@
|
|
605
396
|
{
|
606
397
|
"inputs": [
|
607
398
|
{
|
608
|
-
"internalType": "
|
609
|
-
"name": "
|
610
|
-
"type": "
|
611
|
-
},
|
612
|
-
{
|
613
|
-
"internalType": "bool",
|
614
|
-
"name": "requirePremiumPayment",
|
615
|
-
"type": "bool"
|
399
|
+
"internalType": "RiskId",
|
400
|
+
"name": "riskId",
|
401
|
+
"type": "bytes8"
|
616
402
|
},
|
617
403
|
{
|
618
|
-
"internalType": "
|
619
|
-
"name": "
|
620
|
-
"type": "
|
404
|
+
"internalType": "bytes",
|
405
|
+
"name": "data",
|
406
|
+
"type": "bytes"
|
621
407
|
}
|
622
408
|
],
|
623
|
-
"name": "
|
409
|
+
"name": "updateRisk",
|
624
410
|
"outputs": [],
|
625
411
|
"stateMutability": "nonpayable",
|
626
412
|
"type": "function"
|
@@ -634,7 +420,7 @@
|
|
634
420
|
},
|
635
421
|
{
|
636
422
|
"internalType": "StateId",
|
637
|
-
"name": "
|
423
|
+
"name": "newState",
|
638
424
|
"type": "uint8"
|
639
425
|
}
|
640
426
|
],
|
@@ -645,23 +431,13 @@
|
|
645
431
|
},
|
646
432
|
{
|
647
433
|
"inputs": [
|
648
|
-
{
|
649
|
-
"internalType": "address",
|
650
|
-
"name": "implementation",
|
651
|
-
"type": "address"
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"internalType": "address",
|
655
|
-
"name": "activatedBy",
|
656
|
-
"type": "address"
|
657
|
-
},
|
658
434
|
{
|
659
435
|
"internalType": "bytes",
|
660
436
|
"name": "upgradeData",
|
661
437
|
"type": "bytes"
|
662
438
|
}
|
663
439
|
],
|
664
|
-
"name": "
|
440
|
+
"name": "upgradeVersionable",
|
665
441
|
"outputs": [],
|
666
442
|
"stateMutability": "nonpayable",
|
667
443
|
"type": "function"
|