@etherisc/gif-next 0.0.2-f2b0fa2-473 → 0.0.2-f30e0eb-805
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +140 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +832 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +938 -229
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → components/IComponent.sol/IComponent.json} +192 -168
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +743 -26
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +755 -50
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +582 -9
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +818 -236
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +627 -224
- 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/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2185 -189
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +299 -153
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +993 -1183
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +571 -177
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +232 -210
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +520 -190
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +352 -75
- 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/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → instance/base/ComponentService.sol/ComponentService.json} +236 -126
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +69 -43
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1093 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1732 -0
- 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 +556 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +630 -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} +150 -207
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +727 -160
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +540 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +84 -217
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +47 -414
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1021 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +689 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +824 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +657 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +777 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +373 -61
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +234 -216
- 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 +333 -188
- 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 +229 -313
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +304 -138
- 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 +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +31 -183
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +127 -170
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +148 -227
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +2 -2
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +251 -0
- package/contracts/components/Distribution.sol +200 -86
- package/contracts/components/IComponent.sol +74 -0
- package/contracts/components/IDistributionComponent.sol +44 -16
- package/contracts/components/IPoolComponent.sol +88 -37
- package/contracts/components/IProductComponent.sol +10 -5
- package/contracts/components/Pool.sol +217 -177
- package/contracts/components/Product.sol +130 -134
- 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 +81 -11
- package/contracts/instance/IInstanceService.sol +56 -1
- package/contracts/instance/Instance.sol +156 -265
- package/contracts/instance/InstanceAccessManager.sol +410 -176
- package/contracts/instance/InstanceReader.sol +39 -29
- package/contracts/instance/InstanceService.sol +448 -55
- package/contracts/instance/InstanceServiceManager.sol +11 -13
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/KeyValueStore.sol +5 -2
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +36 -20
- package/contracts/instance/module/IBundle.sol +2 -0
- package/contracts/instance/module/IComponents.sol +35 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +9 -19
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +336 -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 +467 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +62 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +86 -0
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +21 -23
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +403 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +220 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +241 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +9 -1
- package/contracts/registry/IRegistry.sol +52 -8
- package/contracts/registry/IRegistryService.sol +46 -14
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +270 -226
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +110 -266
- package/contracts/registry/RegistryServiceManager.sol +24 -26
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ERC165.sol +14 -8
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +4 -1
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +67 -83
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +16 -31
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +26 -22
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +1 -0
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +26 -11
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +5 -0
- package/contracts/types/Timestamp.sol +13 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +5 -1
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -314
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -267
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1119
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -86
- package/contracts/components/IBaseComponent.sol +0 -24
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagedSimple.sol +0 -114
- package/contracts/instance/AccessManagerSimple.sol +0 -682
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json
CHANGED
@@ -7,16 +7,257 @@
|
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
9
|
"internalType": "address",
|
10
|
-
"name": "
|
10
|
+
"name": "caller",
|
11
11
|
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "ErrorIDistributionServiceCallerNotDistributor",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "uint256",
|
21
|
+
"name": "commissionPercentage",
|
22
|
+
"type": "uint256"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint256",
|
26
|
+
"name": "maxCommissionPercentage",
|
27
|
+
"type": "uint256"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "ErrorIDistributionServiceCommissionTooHigh",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "uint256",
|
37
|
+
"name": "maxDiscountPercentage",
|
38
|
+
"type": "uint256"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"internalType": "uint256",
|
42
|
+
"name": "discountPercentage",
|
43
|
+
"type": "uint256"
|
44
|
+
}
|
45
|
+
],
|
46
|
+
"name": "ErrorIDistributionServiceDiscountTooHigh",
|
47
|
+
"type": "error"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"inputs": [
|
51
|
+
{
|
52
|
+
"internalType": "uint256",
|
53
|
+
"name": "minDiscountPercentage",
|
54
|
+
"type": "uint256"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"internalType": "uint256",
|
58
|
+
"name": "discountPercentage",
|
59
|
+
"type": "uint256"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "ErrorIDistributionServiceDiscountTooLow",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "Timestamp",
|
69
|
+
"name": "expiryAt",
|
70
|
+
"type": "uint40"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"name": "ErrorIDistributionServiceExpirationInvalid",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "uint256",
|
80
|
+
"name": "maxReferralLifetime",
|
81
|
+
"type": "uint256"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"internalType": "uint256",
|
85
|
+
"name": "expiryAt",
|
86
|
+
"type": "uint256"
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"name": "ErrorIDistributionServiceExpiryTooLong",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [
|
94
|
+
{
|
95
|
+
"internalType": "uint256",
|
96
|
+
"name": "distributionFeeFixAmount",
|
97
|
+
"type": "uint256"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"internalType": "uint256",
|
101
|
+
"name": "distributionFeeVarAmount",
|
102
|
+
"type": "uint256"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"internalType": "uint256",
|
106
|
+
"name": "distributionOwnerFeeFixAmount",
|
107
|
+
"type": "uint256"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"internalType": "uint256",
|
111
|
+
"name": "distributionOwnerFeeVarAmount",
|
112
|
+
"type": "uint256"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"internalType": "uint256",
|
116
|
+
"name": "commissionAmount",
|
117
|
+
"type": "uint256"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"internalType": "uint256",
|
121
|
+
"name": "discountAmount",
|
122
|
+
"type": "uint256"
|
123
|
+
}
|
124
|
+
],
|
125
|
+
"name": "ErrorIDistributionServiceFeeCalculationMismatch",
|
126
|
+
"type": "error"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"inputs": [
|
130
|
+
{
|
131
|
+
"internalType": "uint256",
|
132
|
+
"name": "transferredDistributionFeeAmount",
|
133
|
+
"type": "uint256"
|
12
134
|
},
|
135
|
+
{
|
136
|
+
"internalType": "uint256",
|
137
|
+
"name": "expectedDistributionFeeAmount",
|
138
|
+
"type": "uint256"
|
139
|
+
}
|
140
|
+
],
|
141
|
+
"name": "ErrorIDistributionServiceInvalidFeeTransferred",
|
142
|
+
"type": "error"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"inputs": [
|
146
|
+
{
|
147
|
+
"internalType": "string",
|
148
|
+
"name": "code",
|
149
|
+
"type": "string"
|
150
|
+
}
|
151
|
+
],
|
152
|
+
"name": "ErrorIDistributionServiceInvalidReferral",
|
153
|
+
"type": "error"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"inputs": [
|
157
|
+
{
|
158
|
+
"internalType": "ReferralId",
|
159
|
+
"name": "referralId",
|
160
|
+
"type": "bytes8"
|
161
|
+
}
|
162
|
+
],
|
163
|
+
"name": "ErrorIDistributionServiceInvalidReferralId",
|
164
|
+
"type": "error"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"inputs": [
|
168
|
+
{
|
169
|
+
"internalType": "uint256",
|
170
|
+
"name": "maxDiscountPercentage",
|
171
|
+
"type": "uint256"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"internalType": "uint256",
|
175
|
+
"name": "limit",
|
176
|
+
"type": "uint256"
|
177
|
+
}
|
178
|
+
],
|
179
|
+
"name": "ErrorIDistributionServiceMaxDiscountTooHigh",
|
180
|
+
"type": "error"
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"inputs": [
|
184
|
+
{
|
185
|
+
"internalType": "uint256",
|
186
|
+
"name": "maxReferrals",
|
187
|
+
"type": "uint256"
|
188
|
+
}
|
189
|
+
],
|
190
|
+
"name": "ErrorIDistributionServiceMaxReferralsExceeded",
|
191
|
+
"type": "error"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"inputs": [
|
195
|
+
{
|
196
|
+
"internalType": "uint256",
|
197
|
+
"name": "minFee",
|
198
|
+
"type": "uint256"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"internalType": "uint256",
|
202
|
+
"name": "limit",
|
203
|
+
"type": "uint256"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"name": "ErrorIDistributionServiceMinFeeTooHigh",
|
207
|
+
"type": "error"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"inputs": [
|
13
211
|
{
|
14
212
|
"internalType": "NftId",
|
15
213
|
"name": "nftId",
|
16
214
|
"type": "uint96"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"internalType": "NftId",
|
218
|
+
"name": "parentNftId",
|
219
|
+
"type": "uint96"
|
220
|
+
}
|
221
|
+
],
|
222
|
+
"name": "ErrorIDistributionServiceParentNftIdNotInstance",
|
223
|
+
"type": "error"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"inputs": [
|
227
|
+
{
|
228
|
+
"internalType": "NftId",
|
229
|
+
"name": "distributionNftId",
|
230
|
+
"type": "uint96"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"internalType": "ReferralId",
|
234
|
+
"name": "referralId",
|
235
|
+
"type": "bytes8"
|
17
236
|
}
|
18
237
|
],
|
19
|
-
"name": "
|
238
|
+
"name": "ErrorIDistributionServiceReferralInvalid",
|
239
|
+
"type": "error"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"inputs": [
|
243
|
+
{
|
244
|
+
"internalType": "address",
|
245
|
+
"name": "caller",
|
246
|
+
"type": "address"
|
247
|
+
}
|
248
|
+
],
|
249
|
+
"name": "ErrorIServiceCallerUnknown",
|
250
|
+
"type": "error"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"inputs": [
|
254
|
+
{
|
255
|
+
"internalType": "NftId",
|
256
|
+
"name": "nftId",
|
257
|
+
"type": "uint96"
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
20
261
|
"type": "error"
|
21
262
|
},
|
22
263
|
{
|
@@ -27,7 +268,12 @@
|
|
27
268
|
"type": "address"
|
28
269
|
}
|
29
270
|
],
|
30
|
-
"name": "
|
271
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
272
|
+
"type": "error"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"inputs": [],
|
276
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
31
277
|
"type": "error"
|
32
278
|
},
|
33
279
|
{
|
@@ -38,65 +284,347 @@
|
|
38
284
|
"type": "address"
|
39
285
|
}
|
40
286
|
],
|
41
|
-
"name": "
|
42
|
-
"type": "error"
|
287
|
+
"name": "ErrorNftOwnableNotOwner",
|
288
|
+
"type": "error"
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"inputs": [
|
292
|
+
{
|
293
|
+
"internalType": "address",
|
294
|
+
"name": "registryAddress",
|
295
|
+
"type": "address"
|
296
|
+
}
|
297
|
+
],
|
298
|
+
"name": "ErrorNotRegistry",
|
299
|
+
"type": "error"
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"inputs": [
|
303
|
+
{
|
304
|
+
"internalType": "NftId",
|
305
|
+
"name": "distributionNftId",
|
306
|
+
"type": "uint96"
|
307
|
+
},
|
308
|
+
{
|
309
|
+
"internalType": "ReferralId",
|
310
|
+
"name": "referralId",
|
311
|
+
"type": "bytes8"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"components": [
|
315
|
+
{
|
316
|
+
"internalType": "uint256",
|
317
|
+
"name": "netPremiumAmount",
|
318
|
+
"type": "uint256"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"internalType": "uint256",
|
322
|
+
"name": "fullPremiumAmount",
|
323
|
+
"type": "uint256"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"internalType": "uint256",
|
327
|
+
"name": "premiumAmount",
|
328
|
+
"type": "uint256"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"internalType": "uint256",
|
332
|
+
"name": "productFeeFixAmount",
|
333
|
+
"type": "uint256"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"internalType": "uint256",
|
337
|
+
"name": "poolFeeFixAmount",
|
338
|
+
"type": "uint256"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"internalType": "uint256",
|
342
|
+
"name": "bundleFeeFixAmount",
|
343
|
+
"type": "uint256"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"internalType": "uint256",
|
347
|
+
"name": "distributionFeeFixAmount",
|
348
|
+
"type": "uint256"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"internalType": "uint256",
|
352
|
+
"name": "productFeeVarAmount",
|
353
|
+
"type": "uint256"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"internalType": "uint256",
|
357
|
+
"name": "poolFeeVarAmount",
|
358
|
+
"type": "uint256"
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"internalType": "uint256",
|
362
|
+
"name": "bundleFeeVarAmount",
|
363
|
+
"type": "uint256"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"internalType": "uint256",
|
367
|
+
"name": "distributionFeeVarAmount",
|
368
|
+
"type": "uint256"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"internalType": "uint256",
|
372
|
+
"name": "distributionOwnerFeeFixAmount",
|
373
|
+
"type": "uint256"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"internalType": "uint256",
|
377
|
+
"name": "distributionOwnerFeeVarAmount",
|
378
|
+
"type": "uint256"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"internalType": "uint256",
|
382
|
+
"name": "commissionAmount",
|
383
|
+
"type": "uint256"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"internalType": "uint256",
|
387
|
+
"name": "discountAmount",
|
388
|
+
"type": "uint256"
|
389
|
+
}
|
390
|
+
],
|
391
|
+
"internalType": "struct IPolicy.Premium",
|
392
|
+
"name": "premium",
|
393
|
+
"type": "tuple"
|
394
|
+
}
|
395
|
+
],
|
396
|
+
"name": "calculateFeeAmount",
|
397
|
+
"outputs": [
|
398
|
+
{
|
399
|
+
"components": [
|
400
|
+
{
|
401
|
+
"internalType": "uint256",
|
402
|
+
"name": "netPremiumAmount",
|
403
|
+
"type": "uint256"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"internalType": "uint256",
|
407
|
+
"name": "fullPremiumAmount",
|
408
|
+
"type": "uint256"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"internalType": "uint256",
|
412
|
+
"name": "premiumAmount",
|
413
|
+
"type": "uint256"
|
414
|
+
},
|
415
|
+
{
|
416
|
+
"internalType": "uint256",
|
417
|
+
"name": "productFeeFixAmount",
|
418
|
+
"type": "uint256"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"internalType": "uint256",
|
422
|
+
"name": "poolFeeFixAmount",
|
423
|
+
"type": "uint256"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"internalType": "uint256",
|
427
|
+
"name": "bundleFeeFixAmount",
|
428
|
+
"type": "uint256"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"internalType": "uint256",
|
432
|
+
"name": "distributionFeeFixAmount",
|
433
|
+
"type": "uint256"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"internalType": "uint256",
|
437
|
+
"name": "productFeeVarAmount",
|
438
|
+
"type": "uint256"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"internalType": "uint256",
|
442
|
+
"name": "poolFeeVarAmount",
|
443
|
+
"type": "uint256"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"internalType": "uint256",
|
447
|
+
"name": "bundleFeeVarAmount",
|
448
|
+
"type": "uint256"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"internalType": "uint256",
|
452
|
+
"name": "distributionFeeVarAmount",
|
453
|
+
"type": "uint256"
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"internalType": "uint256",
|
457
|
+
"name": "distributionOwnerFeeFixAmount",
|
458
|
+
"type": "uint256"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"internalType": "uint256",
|
462
|
+
"name": "distributionOwnerFeeVarAmount",
|
463
|
+
"type": "uint256"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"internalType": "uint256",
|
467
|
+
"name": "commissionAmount",
|
468
|
+
"type": "uint256"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"internalType": "uint256",
|
472
|
+
"name": "discountAmount",
|
473
|
+
"type": "uint256"
|
474
|
+
}
|
475
|
+
],
|
476
|
+
"internalType": "struct IPolicy.Premium",
|
477
|
+
"name": "finalPremium",
|
478
|
+
"type": "tuple"
|
479
|
+
}
|
480
|
+
],
|
481
|
+
"stateMutability": "view",
|
482
|
+
"type": "function"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"inputs": [
|
486
|
+
{
|
487
|
+
"internalType": "address",
|
488
|
+
"name": "distributor",
|
489
|
+
"type": "address"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"internalType": "DistributorType",
|
493
|
+
"name": "distributorType",
|
494
|
+
"type": "bytes8"
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"internalType": "bytes",
|
498
|
+
"name": "data",
|
499
|
+
"type": "bytes"
|
500
|
+
}
|
501
|
+
],
|
502
|
+
"name": "createDistributor",
|
503
|
+
"outputs": [
|
504
|
+
{
|
505
|
+
"internalType": "NftId",
|
506
|
+
"name": "distributorNftId",
|
507
|
+
"type": "uint96"
|
508
|
+
}
|
509
|
+
],
|
510
|
+
"stateMutability": "nonpayable",
|
511
|
+
"type": "function"
|
512
|
+
},
|
513
|
+
{
|
514
|
+
"inputs": [
|
515
|
+
{
|
516
|
+
"internalType": "string",
|
517
|
+
"name": "name",
|
518
|
+
"type": "string"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"internalType": "UFixed",
|
522
|
+
"name": "minDiscountPercentage",
|
523
|
+
"type": "uint256"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"internalType": "UFixed",
|
527
|
+
"name": "maxDiscountPercentage",
|
528
|
+
"type": "uint256"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"internalType": "UFixed",
|
532
|
+
"name": "commissionPercentage",
|
533
|
+
"type": "uint256"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"internalType": "uint32",
|
537
|
+
"name": "maxReferralCount",
|
538
|
+
"type": "uint32"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"internalType": "uint32",
|
542
|
+
"name": "maxReferralLifetime",
|
543
|
+
"type": "uint32"
|
544
|
+
},
|
545
|
+
{
|
546
|
+
"internalType": "bool",
|
547
|
+
"name": "allowSelfReferrals",
|
548
|
+
"type": "bool"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"internalType": "bool",
|
552
|
+
"name": "allowRenewals",
|
553
|
+
"type": "bool"
|
554
|
+
},
|
555
|
+
{
|
556
|
+
"internalType": "bytes",
|
557
|
+
"name": "data",
|
558
|
+
"type": "bytes"
|
559
|
+
}
|
560
|
+
],
|
561
|
+
"name": "createDistributorType",
|
562
|
+
"outputs": [
|
563
|
+
{
|
564
|
+
"internalType": "DistributorType",
|
565
|
+
"name": "distributorType",
|
566
|
+
"type": "bytes8"
|
567
|
+
}
|
568
|
+
],
|
569
|
+
"stateMutability": "nonpayable",
|
570
|
+
"type": "function"
|
43
571
|
},
|
44
572
|
{
|
45
573
|
"inputs": [
|
46
574
|
{
|
47
|
-
"internalType": "
|
48
|
-
"name": "
|
49
|
-
"type": "
|
575
|
+
"internalType": "NftId",
|
576
|
+
"name": "distributorNftId",
|
577
|
+
"type": "uint96"
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"internalType": "string",
|
581
|
+
"name": "code",
|
582
|
+
"type": "string"
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"internalType": "UFixed",
|
586
|
+
"name": "discountPercentage",
|
587
|
+
"type": "uint256"
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"internalType": "uint32",
|
591
|
+
"name": "maxReferrals",
|
592
|
+
"type": "uint32"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"internalType": "Timestamp",
|
596
|
+
"name": "expiryAt",
|
597
|
+
"type": "uint40"
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"internalType": "bytes",
|
601
|
+
"name": "data",
|
602
|
+
"type": "bytes"
|
50
603
|
}
|
51
604
|
],
|
52
|
-
"name": "
|
53
|
-
"
|
54
|
-
},
|
55
|
-
{
|
56
|
-
"inputs": [],
|
57
|
-
"name": "ErrorRegistryAddressZero",
|
58
|
-
"type": "error"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"inputs": [
|
605
|
+
"name": "createReferral",
|
606
|
+
"outputs": [
|
62
607
|
{
|
63
|
-
"internalType": "
|
64
|
-
"name": "
|
65
|
-
"type": "
|
608
|
+
"internalType": "ReferralId",
|
609
|
+
"name": "referralId",
|
610
|
+
"type": "bytes8"
|
66
611
|
}
|
67
612
|
],
|
68
|
-
"
|
69
|
-
"type": "
|
613
|
+
"stateMutability": "nonpayable",
|
614
|
+
"type": "function"
|
70
615
|
},
|
71
616
|
{
|
72
617
|
"inputs": [],
|
73
|
-
"name": "
|
74
|
-
"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"anonymous": false,
|
78
|
-
"inputs": [
|
79
|
-
{
|
80
|
-
"indexed": false,
|
81
|
-
"internalType": "Version",
|
82
|
-
"name": "version",
|
83
|
-
"type": "uint24"
|
84
|
-
},
|
85
|
-
{
|
86
|
-
"indexed": false,
|
87
|
-
"internalType": "address",
|
88
|
-
"name": "implementation",
|
89
|
-
"type": "address"
|
90
|
-
},
|
618
|
+
"name": "getDomain",
|
619
|
+
"outputs": [
|
91
620
|
{
|
92
|
-
"
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"type": "address"
|
621
|
+
"internalType": "ObjectType",
|
622
|
+
"name": "serviceDomain",
|
623
|
+
"type": "uint8"
|
96
624
|
}
|
97
625
|
],
|
98
|
-
"
|
99
|
-
"type": "
|
626
|
+
"stateMutability": "pure",
|
627
|
+
"type": "function"
|
100
628
|
},
|
101
629
|
{
|
102
630
|
"inputs": [],
|
@@ -143,24 +671,6 @@
|
|
143
671
|
"internalType": "struct IRegistry.ObjectInfo",
|
144
672
|
"name": "",
|
145
673
|
"type": "tuple"
|
146
|
-
},
|
147
|
-
{
|
148
|
-
"internalType": "bytes",
|
149
|
-
"name": "data",
|
150
|
-
"type": "bytes"
|
151
|
-
}
|
152
|
-
],
|
153
|
-
"stateMutability": "view",
|
154
|
-
"type": "function"
|
155
|
-
},
|
156
|
-
{
|
157
|
-
"inputs": [],
|
158
|
-
"name": "getInitializedVersion",
|
159
|
-
"outputs": [
|
160
|
-
{
|
161
|
-
"internalType": "uint64",
|
162
|
-
"name": "",
|
163
|
-
"type": "uint64"
|
164
674
|
}
|
165
675
|
],
|
166
676
|
"stateMutability": "view",
|
@@ -181,25 +691,25 @@
|
|
181
691
|
},
|
182
692
|
{
|
183
693
|
"inputs": [],
|
184
|
-
"name": "
|
694
|
+
"name": "getNftId",
|
185
695
|
"outputs": [
|
186
696
|
{
|
187
|
-
"internalType": "
|
188
|
-
"name": "
|
189
|
-
"type": "
|
697
|
+
"internalType": "NftId",
|
698
|
+
"name": "",
|
699
|
+
"type": "uint96"
|
190
700
|
}
|
191
701
|
],
|
192
|
-
"stateMutability": "
|
702
|
+
"stateMutability": "view",
|
193
703
|
"type": "function"
|
194
704
|
},
|
195
705
|
{
|
196
706
|
"inputs": [],
|
197
|
-
"name": "
|
707
|
+
"name": "getOwner",
|
198
708
|
"outputs": [
|
199
709
|
{
|
200
|
-
"internalType": "
|
710
|
+
"internalType": "address",
|
201
711
|
"name": "",
|
202
|
-
"type": "
|
712
|
+
"type": "address"
|
203
713
|
}
|
204
714
|
],
|
205
715
|
"stateMutability": "view",
|
@@ -207,10 +717,10 @@
|
|
207
717
|
},
|
208
718
|
{
|
209
719
|
"inputs": [],
|
210
|
-
"name": "
|
720
|
+
"name": "getRegistry",
|
211
721
|
"outputs": [
|
212
722
|
{
|
213
|
-
"internalType": "
|
723
|
+
"internalType": "contract IRegistry",
|
214
724
|
"name": "",
|
215
725
|
"type": "address"
|
216
726
|
}
|
@@ -220,10 +730,10 @@
|
|
220
730
|
},
|
221
731
|
{
|
222
732
|
"inputs": [],
|
223
|
-
"name": "
|
733
|
+
"name": "getRegistryAddress",
|
224
734
|
"outputs": [
|
225
735
|
{
|
226
|
-
"internalType": "
|
736
|
+
"internalType": "address",
|
227
737
|
"name": "",
|
228
738
|
"type": "address"
|
229
739
|
}
|
@@ -247,100 +757,129 @@
|
|
247
757
|
{
|
248
758
|
"inputs": [
|
249
759
|
{
|
250
|
-
"internalType": "
|
251
|
-
"name": "
|
252
|
-
"type": "
|
253
|
-
}
|
254
|
-
],
|
255
|
-
"name": "getVersion",
|
256
|
-
"outputs": [
|
760
|
+
"internalType": "address",
|
761
|
+
"name": "activatedBy",
|
762
|
+
"type": "address"
|
763
|
+
},
|
257
764
|
{
|
258
|
-
"internalType": "
|
259
|
-
"name": "
|
260
|
-
"type": "
|
765
|
+
"internalType": "bytes",
|
766
|
+
"name": "activationData",
|
767
|
+
"type": "bytes"
|
261
768
|
}
|
262
769
|
],
|
263
|
-
"
|
770
|
+
"name": "initializeVersionable",
|
771
|
+
"outputs": [],
|
772
|
+
"stateMutability": "nonpayable",
|
264
773
|
"type": "function"
|
265
774
|
},
|
266
775
|
{
|
267
776
|
"inputs": [],
|
268
|
-
"name": "
|
269
|
-
"outputs": [
|
270
|
-
|
271
|
-
"internalType": "uint256",
|
272
|
-
"name": "numberOfVersions",
|
273
|
-
"type": "uint256"
|
274
|
-
}
|
275
|
-
],
|
276
|
-
"stateMutability": "view",
|
777
|
+
"name": "linkToRegisteredNftId",
|
778
|
+
"outputs": [],
|
779
|
+
"stateMutability": "nonpayable",
|
277
780
|
"type": "function"
|
278
781
|
},
|
279
782
|
{
|
280
783
|
"inputs": [
|
281
784
|
{
|
282
|
-
"internalType": "
|
283
|
-
"name": "
|
284
|
-
"type": "
|
285
|
-
}
|
286
|
-
|
287
|
-
|
288
|
-
|
785
|
+
"internalType": "NftId",
|
786
|
+
"name": "distributionNftId",
|
787
|
+
"type": "uint96"
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"internalType": "ReferralId",
|
791
|
+
"name": "referralId",
|
792
|
+
"type": "bytes8"
|
793
|
+
},
|
289
794
|
{
|
290
795
|
"components": [
|
291
796
|
{
|
292
|
-
"internalType": "
|
293
|
-
"name": "
|
294
|
-
"type": "
|
797
|
+
"internalType": "uint256",
|
798
|
+
"name": "netPremiumAmount",
|
799
|
+
"type": "uint256"
|
295
800
|
},
|
296
801
|
{
|
297
|
-
"internalType": "
|
298
|
-
"name": "
|
299
|
-
"type": "
|
802
|
+
"internalType": "uint256",
|
803
|
+
"name": "fullPremiumAmount",
|
804
|
+
"type": "uint256"
|
300
805
|
},
|
301
806
|
{
|
302
|
-
"internalType": "
|
303
|
-
"name": "
|
304
|
-
"type": "
|
807
|
+
"internalType": "uint256",
|
808
|
+
"name": "premiumAmount",
|
809
|
+
"type": "uint256"
|
810
|
+
},
|
811
|
+
{
|
812
|
+
"internalType": "uint256",
|
813
|
+
"name": "productFeeFixAmount",
|
814
|
+
"type": "uint256"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"internalType": "uint256",
|
818
|
+
"name": "poolFeeFixAmount",
|
819
|
+
"type": "uint256"
|
820
|
+
},
|
821
|
+
{
|
822
|
+
"internalType": "uint256",
|
823
|
+
"name": "bundleFeeFixAmount",
|
824
|
+
"type": "uint256"
|
825
|
+
},
|
826
|
+
{
|
827
|
+
"internalType": "uint256",
|
828
|
+
"name": "distributionFeeFixAmount",
|
829
|
+
"type": "uint256"
|
830
|
+
},
|
831
|
+
{
|
832
|
+
"internalType": "uint256",
|
833
|
+
"name": "productFeeVarAmount",
|
834
|
+
"type": "uint256"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"internalType": "uint256",
|
838
|
+
"name": "poolFeeVarAmount",
|
839
|
+
"type": "uint256"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"internalType": "uint256",
|
843
|
+
"name": "bundleFeeVarAmount",
|
844
|
+
"type": "uint256"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
"internalType": "uint256",
|
848
|
+
"name": "distributionFeeVarAmount",
|
849
|
+
"type": "uint256"
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"internalType": "uint256",
|
853
|
+
"name": "distributionOwnerFeeFixAmount",
|
854
|
+
"type": "uint256"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"internalType": "uint256",
|
858
|
+
"name": "distributionOwnerFeeVarAmount",
|
859
|
+
"type": "uint256"
|
305
860
|
},
|
306
861
|
{
|
307
|
-
"internalType": "
|
308
|
-
"name": "
|
309
|
-
"type": "
|
862
|
+
"internalType": "uint256",
|
863
|
+
"name": "commissionAmount",
|
864
|
+
"type": "uint256"
|
310
865
|
},
|
311
866
|
{
|
312
|
-
"internalType": "
|
313
|
-
"name": "
|
314
|
-
"type": "
|
867
|
+
"internalType": "uint256",
|
868
|
+
"name": "discountAmount",
|
869
|
+
"type": "uint256"
|
315
870
|
}
|
316
871
|
],
|
317
|
-
"internalType": "struct
|
318
|
-
"name": "
|
872
|
+
"internalType": "struct IPolicy.Premium",
|
873
|
+
"name": "premium",
|
319
874
|
"type": "tuple"
|
320
|
-
}
|
321
|
-
],
|
322
|
-
"stateMutability": "view",
|
323
|
-
"type": "function"
|
324
|
-
},
|
325
|
-
{
|
326
|
-
"inputs": [
|
327
|
-
{
|
328
|
-
"internalType": "address",
|
329
|
-
"name": "implementation",
|
330
|
-
"type": "address"
|
331
|
-
},
|
332
|
-
{
|
333
|
-
"internalType": "address",
|
334
|
-
"name": "activatedBy",
|
335
|
-
"type": "address"
|
336
875
|
},
|
337
876
|
{
|
338
|
-
"internalType": "
|
339
|
-
"name": "
|
340
|
-
"type": "
|
877
|
+
"internalType": "uint256",
|
878
|
+
"name": "transferredDistributionFeeAmount",
|
879
|
+
"type": "uint256"
|
341
880
|
}
|
342
881
|
],
|
343
|
-
"name": "
|
882
|
+
"name": "processSale",
|
344
883
|
"outputs": [],
|
345
884
|
"stateMutability": "nonpayable",
|
346
885
|
"type": "function"
|
@@ -348,31 +887,46 @@
|
|
348
887
|
{
|
349
888
|
"inputs": [
|
350
889
|
{
|
351
|
-
"internalType": "
|
352
|
-
"name": "
|
353
|
-
"type": "
|
890
|
+
"internalType": "NftId",
|
891
|
+
"name": "distributorNftId",
|
892
|
+
"type": "uint96"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"internalType": "ReferralId",
|
896
|
+
"name": "referralId",
|
897
|
+
"type": "bytes8"
|
354
898
|
}
|
355
899
|
],
|
356
|
-
"name": "
|
900
|
+
"name": "referralIsValid",
|
357
901
|
"outputs": [
|
358
902
|
{
|
359
903
|
"internalType": "bool",
|
360
|
-
"name": "",
|
904
|
+
"name": "isValid",
|
361
905
|
"type": "bool"
|
362
906
|
}
|
363
907
|
],
|
364
908
|
"stateMutability": "view",
|
365
909
|
"type": "function"
|
366
910
|
},
|
367
|
-
{
|
368
|
-
"inputs": [],
|
369
|
-
"name": "linkToRegisteredNftId",
|
370
|
-
"outputs": [],
|
371
|
-
"stateMutability": "nonpayable",
|
372
|
-
"type": "function"
|
373
|
-
},
|
374
911
|
{
|
375
912
|
"inputs": [
|
913
|
+
{
|
914
|
+
"components": [
|
915
|
+
{
|
916
|
+
"internalType": "UFixed",
|
917
|
+
"name": "fractionalFee",
|
918
|
+
"type": "uint256"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"internalType": "uint256",
|
922
|
+
"name": "fixedFee",
|
923
|
+
"type": "uint256"
|
924
|
+
}
|
925
|
+
],
|
926
|
+
"internalType": "struct Fee",
|
927
|
+
"name": "minDistributionOwnerFee",
|
928
|
+
"type": "tuple"
|
929
|
+
},
|
376
930
|
{
|
377
931
|
"components": [
|
378
932
|
{
|
@@ -418,22 +972,35 @@
|
|
418
972
|
{
|
419
973
|
"inputs": [
|
420
974
|
{
|
421
|
-
"internalType": "
|
422
|
-
"name": "
|
423
|
-
"type": "
|
975
|
+
"internalType": "NftId",
|
976
|
+
"name": "distributorNftId",
|
977
|
+
"type": "uint96"
|
424
978
|
},
|
425
979
|
{
|
426
|
-
"internalType": "
|
427
|
-
"name": "
|
428
|
-
"type": "
|
980
|
+
"internalType": "DistributorType",
|
981
|
+
"name": "distributorType",
|
982
|
+
"type": "bytes8"
|
429
983
|
},
|
984
|
+
{
|
985
|
+
"internalType": "bytes",
|
986
|
+
"name": "data",
|
987
|
+
"type": "bytes"
|
988
|
+
}
|
989
|
+
],
|
990
|
+
"name": "updateDistributorType",
|
991
|
+
"outputs": [],
|
992
|
+
"stateMutability": "nonpayable",
|
993
|
+
"type": "function"
|
994
|
+
},
|
995
|
+
{
|
996
|
+
"inputs": [
|
430
997
|
{
|
431
998
|
"internalType": "bytes",
|
432
999
|
"name": "upgradeData",
|
433
1000
|
"type": "bytes"
|
434
1001
|
}
|
435
1002
|
],
|
436
|
-
"name": "
|
1003
|
+
"name": "upgradeVersionable",
|
437
1004
|
"outputs": [],
|
438
1005
|
"stateMutability": "nonpayable",
|
439
1006
|
"type": "function"
|