@etherisc/gif-next 0.0.2-eb7397c → 0.0.2-eb98db7-932
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +436 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +705 -31
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1346 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +284 -223
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +900 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +887 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +806 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1184 -75
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +1105 -90
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2102 -510
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +498 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2780 -459
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1386 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1035 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +693 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +541 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.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/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +858 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +657 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1085 -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 +743 -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 +1087 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +729 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +462 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +622 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +398 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +520 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +572 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +336 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +373 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1109 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +717 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +716 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +649 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +766 -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 +239 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +519 -61
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +879 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +567 -75
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1166 -0
- 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 +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 +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -53
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/IRegisterable.sol/IRegisterable.json} +106 -80
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +258 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- 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 +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
- 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/shared/Service.sol/Service.json +414 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +510 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -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/ChainId.sol/ChainIdLib.json +2 -2
- 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 +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- 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 +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- 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 +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +216 -37
- package/contracts/components/Distribution.sol +287 -0
- package/contracts/components/IComponent.sol +54 -0
- package/contracts/components/IDistributionComponent.sol +92 -0
- package/contracts/components/IPoolComponent.sol +87 -0
- package/contracts/components/IProductComponent.sol +39 -0
- package/contracts/components/Pool.sol +242 -17
- package/contracts/components/Product.sol +251 -32
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +87 -15
- package/contracts/instance/IInstanceService.sol +59 -0
- package/contracts/instance/Instance.sol +270 -43
- package/contracts/instance/InstanceAccessManager.sol +297 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +476 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +47 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +40 -0
- package/contracts/instance/module/IPolicy.sol +47 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +48 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +268 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +298 -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 +346 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +54 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +73 -0
- package/contracts/instance/service/IPolicyService.sol +89 -0
- package/contracts/instance/service/IPoolService.sol +20 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +476 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +109 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +233 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +138 -109
- package/contracts/registry/IRegistry.sol +78 -49
- package/contracts/registry/IRegistryService.sol +67 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +398 -116
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +283 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/NftOwnable.sol +120 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +74 -0
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +58 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Blocknumber.sol +76 -18
- package/contracts/types/ChainId.sol +18 -10
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +56 -0
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +48 -11
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +156 -0
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +90 -0
- package/contracts/types/StateId.sol +105 -0
- package/contracts/types/Timestamp.sol +89 -17
- package/contracts/types/UFixed.sol +193 -75
- package/contracts/types/Version.sol +107 -0
- package/package.json +21 -6
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/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/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -440
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -12
- package/contracts/experiment/errors/Require.sol +0 -33
- package/contracts/experiment/errors/Revert.sol +0 -39
- package/contracts/experiment/inheritance/A.sol +0 -56
- package/contracts/experiment/inheritance/B.sol +0 -23
- package/contracts/experiment/inheritance/C.sol +0 -28
- package/contracts/experiment/inheritance/IA.sol +0 -18
- package/contracts/experiment/inheritance/IB.sol +0 -9
- package/contracts/experiment/inheritance/IC.sol +0 -11
- package/contracts/experiment/types/TypeA.sol +0 -42
- package/contracts/experiment/types/TypeB.sol +0 -24
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -248
- package/contracts/instance/component/IComponent.sol +0 -95
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -107
- package/contracts/instance/pool/IPoolModule.sol +0 -41
- package/contracts/instance/pool/PoolModule.sol +0 -86
- package/contracts/instance/product/IProductService.sol +0 -46
- package/contracts/instance/product/ProductService.sol +0 -108
- package/contracts/registry/IChainNft.sol +0 -18
@@ -4,68 +4,63 @@
|
|
4
4
|
"sourceName": "contracts/instance/IInstance.sol",
|
5
5
|
"abi": [
|
6
6
|
{
|
7
|
-
"anonymous": false,
|
8
7
|
"inputs": [
|
9
8
|
{
|
10
|
-
"indexed": false,
|
11
|
-
"internalType": "uint256",
|
12
|
-
"name": "idx",
|
13
|
-
"type": "uint256"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"indexed": false,
|
17
9
|
"internalType": "address",
|
18
|
-
"name": "
|
10
|
+
"name": "authority",
|
19
11
|
"type": "address"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"indexed": false,
|
23
|
-
"internalType": "string",
|
24
|
-
"name": "comment",
|
25
|
-
"type": "string"
|
26
12
|
}
|
27
13
|
],
|
28
|
-
"name": "
|
29
|
-
"type": "
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
30
16
|
},
|
31
17
|
{
|
32
|
-
"inputs": [
|
33
|
-
"name": "ORACLE_OWNER_ROLE",
|
34
|
-
"outputs": [
|
18
|
+
"inputs": [
|
35
19
|
{
|
36
|
-
"internalType": "
|
37
|
-
"name": "
|
38
|
-
"type": "
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
39
28
|
}
|
40
29
|
],
|
41
|
-
"
|
42
|
-
"type": "
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
43
32
|
},
|
44
33
|
{
|
45
|
-
"inputs": [
|
46
|
-
"name": "POOL_OWNER_ROLE",
|
47
|
-
"outputs": [
|
34
|
+
"inputs": [
|
48
35
|
{
|
49
|
-
"internalType": "
|
50
|
-
"name": "
|
51
|
-
"type": "
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
52
39
|
}
|
53
40
|
],
|
54
|
-
"
|
55
|
-
"type": "
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
56
43
|
},
|
57
44
|
{
|
58
|
-
"inputs": [
|
59
|
-
"name": "PRODUCT_OWNER_ROLE",
|
60
|
-
"outputs": [
|
45
|
+
"inputs": [
|
61
46
|
{
|
62
|
-
"internalType": "
|
63
|
-
"name": "
|
64
|
-
"type": "
|
47
|
+
"internalType": "ObjectType",
|
48
|
+
"name": "objectType",
|
49
|
+
"type": "uint8"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"internalType": "StateId",
|
53
|
+
"name": "fromStateId",
|
54
|
+
"type": "uint8"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"internalType": "StateId",
|
58
|
+
"name": "toStateId",
|
59
|
+
"type": "uint8"
|
65
60
|
}
|
66
61
|
],
|
67
|
-
"
|
68
|
-
"type": "
|
62
|
+
"name": "ErrorInvalidStateTransition",
|
63
|
+
"type": "error"
|
69
64
|
},
|
70
65
|
{
|
71
66
|
"inputs": [
|
@@ -75,94 +70,35 @@
|
|
75
70
|
"type": "uint96"
|
76
71
|
}
|
77
72
|
],
|
78
|
-
"name": "
|
79
|
-
"
|
80
|
-
"stateMutability": "nonpayable",
|
81
|
-
"type": "function"
|
73
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
74
|
+
"type": "error"
|
82
75
|
},
|
83
76
|
{
|
84
|
-
"inputs": [
|
85
|
-
"name": "components",
|
86
|
-
"outputs": [
|
77
|
+
"inputs": [
|
87
78
|
{
|
88
|
-
"internalType": "
|
89
|
-
"name": "
|
90
|
-
"type": "
|
79
|
+
"internalType": "address",
|
80
|
+
"name": "contractAddress",
|
81
|
+
"type": "address"
|
91
82
|
}
|
92
83
|
],
|
93
|
-
"
|
94
|
-
"type": "
|
84
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
90
|
+
"type": "error"
|
95
91
|
},
|
96
92
|
{
|
97
93
|
"inputs": [
|
98
|
-
{
|
99
|
-
"components": [
|
100
|
-
{
|
101
|
-
"internalType": "NftId",
|
102
|
-
"name": "nftId",
|
103
|
-
"type": "uint96"
|
104
|
-
},
|
105
|
-
{
|
106
|
-
"internalType": "NftId",
|
107
|
-
"name": "parentNftId",
|
108
|
-
"type": "uint96"
|
109
|
-
},
|
110
|
-
{
|
111
|
-
"internalType": "uint256",
|
112
|
-
"name": "objectType",
|
113
|
-
"type": "uint256"
|
114
|
-
},
|
115
|
-
{
|
116
|
-
"internalType": "address",
|
117
|
-
"name": "objectAddress",
|
118
|
-
"type": "address"
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"internalType": "address",
|
122
|
-
"name": "initialOwner",
|
123
|
-
"type": "address"
|
124
|
-
}
|
125
|
-
],
|
126
|
-
"internalType": "struct IRegistry.RegistryInfo",
|
127
|
-
"name": "productInfo",
|
128
|
-
"type": "tuple"
|
129
|
-
},
|
130
94
|
{
|
131
95
|
"internalType": "address",
|
132
|
-
"name": "
|
96
|
+
"name": "account",
|
133
97
|
"type": "address"
|
134
|
-
},
|
135
|
-
{
|
136
|
-
"internalType": "uint256",
|
137
|
-
"name": "sumInsuredAmount",
|
138
|
-
"type": "uint256"
|
139
|
-
},
|
140
|
-
{
|
141
|
-
"internalType": "uint256",
|
142
|
-
"name": "premiumAmount",
|
143
|
-
"type": "uint256"
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"internalType": "uint256",
|
147
|
-
"name": "lifetime",
|
148
|
-
"type": "uint256"
|
149
|
-
},
|
150
|
-
{
|
151
|
-
"internalType": "NftId",
|
152
|
-
"name": "bundleNftId",
|
153
|
-
"type": "uint96"
|
154
|
-
}
|
155
|
-
],
|
156
|
-
"name": "createApplication",
|
157
|
-
"outputs": [
|
158
|
-
{
|
159
|
-
"internalType": "NftId",
|
160
|
-
"name": "nftId",
|
161
|
-
"type": "uint96"
|
162
98
|
}
|
163
99
|
],
|
164
|
-
"
|
165
|
-
"type": "
|
100
|
+
"name": "ErrorNftOwnableNotOwner",
|
101
|
+
"type": "error"
|
166
102
|
},
|
167
103
|
{
|
168
104
|
"inputs": [
|
@@ -172,118 +108,175 @@
|
|
172
108
|
"type": "uint96"
|
173
109
|
},
|
174
110
|
{
|
175
|
-
"internalType": "
|
176
|
-
"name": "
|
177
|
-
"type": "
|
178
|
-
},
|
179
|
-
{
|
180
|
-
"internalType": "address",
|
181
|
-
"name": "token",
|
182
|
-
"type": "address"
|
111
|
+
"internalType": "ObjectType",
|
112
|
+
"name": "objectType",
|
113
|
+
"type": "uint8"
|
183
114
|
}
|
184
115
|
],
|
185
|
-
"name": "
|
186
|
-
"
|
187
|
-
"stateMutability": "nonpayable",
|
188
|
-
"type": "function"
|
116
|
+
"name": "ErrorNoLifecycle",
|
117
|
+
"type": "error"
|
189
118
|
},
|
190
119
|
{
|
191
120
|
"inputs": [
|
192
121
|
{
|
193
|
-
"internalType": "
|
194
|
-
"name": "
|
195
|
-
"type": "
|
196
|
-
}
|
197
|
-
],
|
198
|
-
"name": "createRole",
|
199
|
-
"outputs": [
|
200
|
-
{
|
201
|
-
"internalType": "bytes32",
|
202
|
-
"name": "role",
|
203
|
-
"type": "bytes32"
|
122
|
+
"internalType": "address",
|
123
|
+
"name": "registryAddress",
|
124
|
+
"type": "address"
|
204
125
|
}
|
205
126
|
],
|
206
|
-
"
|
207
|
-
"type": "
|
127
|
+
"name": "ErrorNotRegistry",
|
128
|
+
"type": "error"
|
208
129
|
},
|
209
130
|
{
|
131
|
+
"anonymous": false,
|
210
132
|
"inputs": [
|
211
133
|
{
|
212
|
-
"
|
213
|
-
"
|
214
|
-
"
|
134
|
+
"indexed": false,
|
135
|
+
"internalType": "address",
|
136
|
+
"name": "authority",
|
137
|
+
"type": "address"
|
215
138
|
}
|
216
139
|
],
|
217
|
-
"name": "
|
218
|
-
"
|
219
|
-
"stateMutability": "nonpayable",
|
220
|
-
"type": "function"
|
140
|
+
"name": "AuthorityUpdated",
|
141
|
+
"type": "event"
|
221
142
|
},
|
222
143
|
{
|
144
|
+
"anonymous": false,
|
223
145
|
"inputs": [
|
224
146
|
{
|
225
|
-
"
|
226
|
-
"
|
227
|
-
"
|
147
|
+
"indexed": false,
|
148
|
+
"internalType": "ObjectType",
|
149
|
+
"name": "objectType",
|
150
|
+
"type": "uint8"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"indexed": false,
|
154
|
+
"internalType": "KeyId",
|
155
|
+
"name": "keyId",
|
156
|
+
"type": "bytes31"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"indexed": false,
|
160
|
+
"internalType": "StateId",
|
161
|
+
"name": "state",
|
162
|
+
"type": "uint8"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"indexed": false,
|
166
|
+
"internalType": "address",
|
167
|
+
"name": "createdBy",
|
168
|
+
"type": "address"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"indexed": false,
|
172
|
+
"internalType": "address",
|
173
|
+
"name": "txOrigin",
|
174
|
+
"type": "address"
|
228
175
|
}
|
229
176
|
],
|
230
|
-
"name": "
|
231
|
-
"
|
232
|
-
"stateMutability": "nonpayable",
|
233
|
-
"type": "function"
|
177
|
+
"name": "LogInfoCreated",
|
178
|
+
"type": "event"
|
234
179
|
},
|
235
180
|
{
|
181
|
+
"anonymous": false,
|
236
182
|
"inputs": [
|
237
183
|
{
|
238
|
-
"
|
239
|
-
"
|
240
|
-
"
|
241
|
-
|
242
|
-
|
243
|
-
"name": "getBundleNftForPolicy",
|
244
|
-
"outputs": [
|
184
|
+
"indexed": false,
|
185
|
+
"internalType": "ObjectType",
|
186
|
+
"name": "objectType",
|
187
|
+
"type": "uint8"
|
188
|
+
},
|
245
189
|
{
|
246
|
-
"
|
247
|
-
"
|
248
|
-
"
|
190
|
+
"indexed": false,
|
191
|
+
"internalType": "KeyId",
|
192
|
+
"name": "keyId",
|
193
|
+
"type": "bytes31"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"indexed": false,
|
197
|
+
"internalType": "StateId",
|
198
|
+
"name": "state",
|
199
|
+
"type": "uint8"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"indexed": false,
|
203
|
+
"internalType": "address",
|
204
|
+
"name": "updatedBy",
|
205
|
+
"type": "address"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"indexed": false,
|
209
|
+
"internalType": "address",
|
210
|
+
"name": "txOrigin",
|
211
|
+
"type": "address"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"indexed": false,
|
215
|
+
"internalType": "Blocknumber",
|
216
|
+
"name": "lastUpdatedIn",
|
217
|
+
"type": "uint32"
|
249
218
|
}
|
250
219
|
],
|
251
|
-
"
|
252
|
-
"type": "
|
220
|
+
"name": "LogInfoUpdated",
|
221
|
+
"type": "event"
|
253
222
|
},
|
254
223
|
{
|
224
|
+
"anonymous": false,
|
255
225
|
"inputs": [
|
256
226
|
{
|
227
|
+
"indexed": false,
|
228
|
+
"internalType": "ObjectType",
|
229
|
+
"name": "objectType",
|
230
|
+
"type": "uint8"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"indexed": false,
|
234
|
+
"internalType": "KeyId",
|
235
|
+
"name": "keyId",
|
236
|
+
"type": "bytes31"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"indexed": false,
|
240
|
+
"internalType": "StateId",
|
241
|
+
"name": "stateOld",
|
242
|
+
"type": "uint8"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"indexed": false,
|
246
|
+
"internalType": "StateId",
|
247
|
+
"name": "stateNew",
|
248
|
+
"type": "uint8"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"indexed": false,
|
257
252
|
"internalType": "address",
|
258
|
-
"name": "
|
253
|
+
"name": "updatedBy",
|
259
254
|
"type": "address"
|
260
|
-
}
|
261
|
-
],
|
262
|
-
"name": "getComponentId",
|
263
|
-
"outputs": [
|
255
|
+
},
|
264
256
|
{
|
265
|
-
"
|
266
|
-
"
|
267
|
-
"
|
257
|
+
"indexed": false,
|
258
|
+
"internalType": "address",
|
259
|
+
"name": "txOrigin",
|
260
|
+
"type": "address"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"indexed": false,
|
264
|
+
"internalType": "Blocknumber",
|
265
|
+
"name": "lastUpdatedIn",
|
266
|
+
"type": "uint32"
|
268
267
|
}
|
269
268
|
],
|
270
|
-
"
|
271
|
-
"type": "
|
269
|
+
"name": "LogStateUpdated",
|
270
|
+
"type": "event"
|
272
271
|
},
|
273
272
|
{
|
274
|
-
"inputs": [
|
275
|
-
|
276
|
-
"internalType": "uint256",
|
277
|
-
"name": "idx",
|
278
|
-
"type": "uint256"
|
279
|
-
}
|
280
|
-
],
|
281
|
-
"name": "getComponentId",
|
273
|
+
"inputs": [],
|
274
|
+
"name": "authority",
|
282
275
|
"outputs": [
|
283
276
|
{
|
284
|
-
"internalType": "
|
285
|
-
"name": "
|
286
|
-
"type": "
|
277
|
+
"internalType": "address",
|
278
|
+
"name": "",
|
279
|
+
"type": "address"
|
287
280
|
}
|
288
281
|
],
|
289
282
|
"stateMutability": "view",
|
@@ -293,46 +286,975 @@
|
|
293
286
|
"inputs": [
|
294
287
|
{
|
295
288
|
"internalType": "NftId",
|
296
|
-
"name": "
|
289
|
+
"name": "applicationNftId",
|
297
290
|
"type": "uint96"
|
298
|
-
}
|
299
|
-
],
|
300
|
-
"name": "getComponentInfo",
|
301
|
-
"outputs": [
|
291
|
+
},
|
302
292
|
{
|
303
293
|
"components": [
|
304
294
|
{
|
305
295
|
"internalType": "NftId",
|
306
|
-
"name": "
|
296
|
+
"name": "productNftId",
|
307
297
|
"type": "uint96"
|
308
298
|
},
|
309
299
|
{
|
310
|
-
"internalType": "
|
311
|
-
"name": "
|
312
|
-
"type": "
|
313
|
-
}
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
300
|
+
"internalType": "NftId",
|
301
|
+
"name": "bundleNftId",
|
302
|
+
"type": "uint96"
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"internalType": "ReferralId",
|
306
|
+
"name": "referralId",
|
307
|
+
"type": "bytes8"
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"internalType": "RiskId",
|
311
|
+
"name": "riskId",
|
312
|
+
"type": "bytes8"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"internalType": "uint256",
|
316
|
+
"name": "sumInsuredAmount",
|
317
|
+
"type": "uint256"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"internalType": "uint256",
|
321
|
+
"name": "premiumAmount",
|
322
|
+
"type": "uint256"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"internalType": "uint256",
|
326
|
+
"name": "premiumPaidAmount",
|
327
|
+
"type": "uint256"
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"internalType": "uint256",
|
331
|
+
"name": "lifetime",
|
332
|
+
"type": "uint256"
|
333
|
+
},
|
334
|
+
{
|
335
|
+
"internalType": "bytes",
|
336
|
+
"name": "applicationData",
|
337
|
+
"type": "bytes"
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"internalType": "bytes",
|
341
|
+
"name": "policyData",
|
342
|
+
"type": "bytes"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"internalType": "uint16",
|
346
|
+
"name": "claimsCount",
|
347
|
+
"type": "uint16"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"internalType": "uint16",
|
351
|
+
"name": "openClaimsCount",
|
352
|
+
"type": "uint16"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"internalType": "uint256",
|
356
|
+
"name": "payoutAmount",
|
357
|
+
"type": "uint256"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"internalType": "Timestamp",
|
361
|
+
"name": "activatedAt",
|
362
|
+
"type": "uint40"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"internalType": "Timestamp",
|
366
|
+
"name": "expiredAt",
|
367
|
+
"type": "uint40"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"internalType": "Timestamp",
|
371
|
+
"name": "closedAt",
|
372
|
+
"type": "uint40"
|
373
|
+
}
|
374
|
+
],
|
375
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
376
|
+
"name": "policy",
|
377
|
+
"type": "tuple"
|
378
|
+
}
|
379
|
+
],
|
380
|
+
"name": "createApplication",
|
381
|
+
"outputs": [],
|
382
|
+
"stateMutability": "nonpayable",
|
383
|
+
"type": "function"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"inputs": [
|
387
|
+
{
|
388
|
+
"internalType": "NftId",
|
389
|
+
"name": "bundleNftId",
|
390
|
+
"type": "uint96"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"components": [
|
394
|
+
{
|
395
|
+
"internalType": "NftId",
|
396
|
+
"name": "poolNftId",
|
397
|
+
"type": "uint96"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"components": [
|
401
|
+
{
|
402
|
+
"internalType": "UFixed",
|
403
|
+
"name": "fractionalFee",
|
404
|
+
"type": "uint256"
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"internalType": "uint256",
|
408
|
+
"name": "fixedFee",
|
409
|
+
"type": "uint256"
|
410
|
+
}
|
411
|
+
],
|
412
|
+
"internalType": "struct Fee",
|
413
|
+
"name": "fee",
|
414
|
+
"type": "tuple"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"internalType": "bytes",
|
418
|
+
"name": "filter",
|
419
|
+
"type": "bytes"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"internalType": "uint256",
|
423
|
+
"name": "capitalAmount",
|
424
|
+
"type": "uint256"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"internalType": "uint256",
|
428
|
+
"name": "lockedAmount",
|
429
|
+
"type": "uint256"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"internalType": "uint256",
|
433
|
+
"name": "balanceAmount",
|
434
|
+
"type": "uint256"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"internalType": "uint256",
|
438
|
+
"name": "lifetime",
|
439
|
+
"type": "uint256"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"internalType": "Timestamp",
|
443
|
+
"name": "expiredAt",
|
444
|
+
"type": "uint40"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"internalType": "Timestamp",
|
448
|
+
"name": "closedAt",
|
449
|
+
"type": "uint40"
|
450
|
+
}
|
451
|
+
],
|
452
|
+
"internalType": "struct IBundle.BundleInfo",
|
453
|
+
"name": "bundle",
|
454
|
+
"type": "tuple"
|
455
|
+
}
|
456
|
+
],
|
457
|
+
"name": "createBundle",
|
458
|
+
"outputs": [],
|
459
|
+
"stateMutability": "nonpayable",
|
460
|
+
"type": "function"
|
461
|
+
},
|
462
|
+
{
|
463
|
+
"inputs": [
|
464
|
+
{
|
465
|
+
"internalType": "NftId",
|
466
|
+
"name": "distributionNftId",
|
467
|
+
"type": "uint96"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"components": [
|
471
|
+
{
|
472
|
+
"internalType": "NftId",
|
473
|
+
"name": "productNftId",
|
474
|
+
"type": "uint96"
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"internalType": "contract TokenHandler",
|
478
|
+
"name": "tokenHandler",
|
479
|
+
"type": "address"
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"components": [
|
483
|
+
{
|
484
|
+
"internalType": "UFixed",
|
485
|
+
"name": "fractionalFee",
|
486
|
+
"type": "uint256"
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"internalType": "uint256",
|
490
|
+
"name": "fixedFee",
|
491
|
+
"type": "uint256"
|
492
|
+
}
|
493
|
+
],
|
494
|
+
"internalType": "struct Fee",
|
495
|
+
"name": "distributionFee",
|
496
|
+
"type": "tuple"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"internalType": "address",
|
500
|
+
"name": "wallet",
|
501
|
+
"type": "address"
|
502
|
+
}
|
503
|
+
],
|
504
|
+
"internalType": "struct ISetup.DistributionSetupInfo",
|
505
|
+
"name": "setup",
|
506
|
+
"type": "tuple"
|
507
|
+
}
|
508
|
+
],
|
509
|
+
"name": "createDistributionSetup",
|
510
|
+
"outputs": [],
|
511
|
+
"stateMutability": "nonpayable",
|
512
|
+
"type": "function"
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"inputs": [
|
516
|
+
{
|
517
|
+
"internalType": "NftId",
|
518
|
+
"name": "nftId",
|
519
|
+
"type": "uint96"
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"components": [
|
523
|
+
{
|
524
|
+
"internalType": "DistributorType",
|
525
|
+
"name": "distributorType",
|
526
|
+
"type": "bytes8"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"internalType": "bool",
|
530
|
+
"name": "active",
|
531
|
+
"type": "bool"
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"internalType": "bytes",
|
535
|
+
"name": "data",
|
536
|
+
"type": "bytes"
|
537
|
+
}
|
538
|
+
],
|
539
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
540
|
+
"name": "info",
|
541
|
+
"type": "tuple"
|
542
|
+
}
|
543
|
+
],
|
544
|
+
"name": "createDistributor",
|
545
|
+
"outputs": [],
|
546
|
+
"stateMutability": "nonpayable",
|
547
|
+
"type": "function"
|
548
|
+
},
|
549
|
+
{
|
550
|
+
"inputs": [
|
551
|
+
{
|
552
|
+
"internalType": "Key32",
|
553
|
+
"name": "distributorKey",
|
554
|
+
"type": "bytes32"
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"components": [
|
558
|
+
{
|
559
|
+
"internalType": "string",
|
560
|
+
"name": "name",
|
561
|
+
"type": "string"
|
562
|
+
},
|
563
|
+
{
|
564
|
+
"internalType": "UFixed",
|
565
|
+
"name": "minDiscountPercentage",
|
566
|
+
"type": "uint256"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"internalType": "UFixed",
|
570
|
+
"name": "maxDiscountPercentage",
|
571
|
+
"type": "uint256"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"internalType": "UFixed",
|
575
|
+
"name": "commissionPercentage",
|
576
|
+
"type": "uint256"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"internalType": "uint32",
|
580
|
+
"name": "maxReferralCount",
|
581
|
+
"type": "uint32"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"internalType": "uint32",
|
585
|
+
"name": "maxReferralLifetime",
|
586
|
+
"type": "uint32"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"internalType": "bool",
|
590
|
+
"name": "allowSelfReferrals",
|
591
|
+
"type": "bool"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"internalType": "bool",
|
595
|
+
"name": "allowRenewals",
|
596
|
+
"type": "bool"
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"internalType": "bytes",
|
600
|
+
"name": "data",
|
601
|
+
"type": "bytes"
|
602
|
+
}
|
603
|
+
],
|
604
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
605
|
+
"name": "info",
|
606
|
+
"type": "tuple"
|
607
|
+
}
|
608
|
+
],
|
609
|
+
"name": "createDistributorType",
|
610
|
+
"outputs": [],
|
611
|
+
"stateMutability": "nonpayable",
|
612
|
+
"type": "function"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"inputs": [
|
616
|
+
{
|
617
|
+
"internalType": "NftId",
|
618
|
+
"name": "poolNftId",
|
619
|
+
"type": "uint96"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"components": [
|
623
|
+
{
|
624
|
+
"internalType": "NftId",
|
625
|
+
"name": "productNftId",
|
626
|
+
"type": "uint96"
|
627
|
+
},
|
628
|
+
{
|
629
|
+
"internalType": "contract TokenHandler",
|
630
|
+
"name": "tokenHandler",
|
631
|
+
"type": "address"
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"internalType": "bool",
|
635
|
+
"name": "isInterceptingBundleTransfers",
|
636
|
+
"type": "bool"
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"internalType": "bool",
|
640
|
+
"name": "isExternallyManaged",
|
641
|
+
"type": "bool"
|
642
|
+
},
|
643
|
+
{
|
644
|
+
"internalType": "bool",
|
645
|
+
"name": "isVerifyingApplications",
|
646
|
+
"type": "bool"
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"internalType": "UFixed",
|
650
|
+
"name": "collateralizationLevel",
|
651
|
+
"type": "uint256"
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"internalType": "UFixed",
|
655
|
+
"name": "retentionLevel",
|
656
|
+
"type": "uint256"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"components": [
|
660
|
+
{
|
661
|
+
"internalType": "UFixed",
|
662
|
+
"name": "fractionalFee",
|
663
|
+
"type": "uint256"
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"internalType": "uint256",
|
667
|
+
"name": "fixedFee",
|
668
|
+
"type": "uint256"
|
669
|
+
}
|
670
|
+
],
|
671
|
+
"internalType": "struct Fee",
|
672
|
+
"name": "poolFee",
|
673
|
+
"type": "tuple"
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"components": [
|
677
|
+
{
|
678
|
+
"internalType": "UFixed",
|
679
|
+
"name": "fractionalFee",
|
680
|
+
"type": "uint256"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"internalType": "uint256",
|
684
|
+
"name": "fixedFee",
|
685
|
+
"type": "uint256"
|
686
|
+
}
|
687
|
+
],
|
688
|
+
"internalType": "struct Fee",
|
689
|
+
"name": "stakingFee",
|
690
|
+
"type": "tuple"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"components": [
|
694
|
+
{
|
695
|
+
"internalType": "UFixed",
|
696
|
+
"name": "fractionalFee",
|
697
|
+
"type": "uint256"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"internalType": "uint256",
|
701
|
+
"name": "fixedFee",
|
702
|
+
"type": "uint256"
|
703
|
+
}
|
704
|
+
],
|
705
|
+
"internalType": "struct Fee",
|
706
|
+
"name": "performanceFee",
|
707
|
+
"type": "tuple"
|
708
|
+
},
|
709
|
+
{
|
710
|
+
"internalType": "address",
|
711
|
+
"name": "wallet",
|
712
|
+
"type": "address"
|
713
|
+
}
|
714
|
+
],
|
715
|
+
"internalType": "struct ISetup.PoolSetupInfo",
|
716
|
+
"name": "setup",
|
717
|
+
"type": "tuple"
|
718
|
+
}
|
719
|
+
],
|
720
|
+
"name": "createPoolSetup",
|
721
|
+
"outputs": [],
|
722
|
+
"stateMutability": "nonpayable",
|
723
|
+
"type": "function"
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"inputs": [
|
727
|
+
{
|
728
|
+
"internalType": "NftId",
|
729
|
+
"name": "productNftId",
|
730
|
+
"type": "uint96"
|
731
|
+
},
|
732
|
+
{
|
733
|
+
"components": [
|
734
|
+
{
|
735
|
+
"internalType": "contract IERC20Metadata",
|
736
|
+
"name": "token",
|
737
|
+
"type": "address"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"internalType": "contract TokenHandler",
|
741
|
+
"name": "tokenHandler",
|
742
|
+
"type": "address"
|
743
|
+
},
|
744
|
+
{
|
745
|
+
"internalType": "NftId",
|
746
|
+
"name": "distributionNftId",
|
747
|
+
"type": "uint96"
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"internalType": "NftId",
|
751
|
+
"name": "poolNftId",
|
752
|
+
"type": "uint96"
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"components": [
|
756
|
+
{
|
757
|
+
"internalType": "UFixed",
|
758
|
+
"name": "fractionalFee",
|
759
|
+
"type": "uint256"
|
760
|
+
},
|
761
|
+
{
|
762
|
+
"internalType": "uint256",
|
763
|
+
"name": "fixedFee",
|
764
|
+
"type": "uint256"
|
765
|
+
}
|
766
|
+
],
|
767
|
+
"internalType": "struct Fee",
|
768
|
+
"name": "distributionFee",
|
769
|
+
"type": "tuple"
|
770
|
+
},
|
771
|
+
{
|
772
|
+
"components": [
|
773
|
+
{
|
774
|
+
"internalType": "UFixed",
|
775
|
+
"name": "fractionalFee",
|
776
|
+
"type": "uint256"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"internalType": "uint256",
|
780
|
+
"name": "fixedFee",
|
781
|
+
"type": "uint256"
|
782
|
+
}
|
783
|
+
],
|
784
|
+
"internalType": "struct Fee",
|
785
|
+
"name": "productFee",
|
786
|
+
"type": "tuple"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"components": [
|
790
|
+
{
|
791
|
+
"internalType": "UFixed",
|
792
|
+
"name": "fractionalFee",
|
793
|
+
"type": "uint256"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"internalType": "uint256",
|
797
|
+
"name": "fixedFee",
|
798
|
+
"type": "uint256"
|
799
|
+
}
|
800
|
+
],
|
801
|
+
"internalType": "struct Fee",
|
802
|
+
"name": "processingFee",
|
803
|
+
"type": "tuple"
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"components": [
|
807
|
+
{
|
808
|
+
"internalType": "UFixed",
|
809
|
+
"name": "fractionalFee",
|
810
|
+
"type": "uint256"
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"internalType": "uint256",
|
814
|
+
"name": "fixedFee",
|
815
|
+
"type": "uint256"
|
816
|
+
}
|
817
|
+
],
|
818
|
+
"internalType": "struct Fee",
|
819
|
+
"name": "poolFee",
|
820
|
+
"type": "tuple"
|
821
|
+
},
|
822
|
+
{
|
823
|
+
"components": [
|
824
|
+
{
|
825
|
+
"internalType": "UFixed",
|
826
|
+
"name": "fractionalFee",
|
827
|
+
"type": "uint256"
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"internalType": "uint256",
|
831
|
+
"name": "fixedFee",
|
832
|
+
"type": "uint256"
|
833
|
+
}
|
834
|
+
],
|
835
|
+
"internalType": "struct Fee",
|
836
|
+
"name": "stakingFee",
|
837
|
+
"type": "tuple"
|
838
|
+
},
|
839
|
+
{
|
840
|
+
"components": [
|
841
|
+
{
|
842
|
+
"internalType": "UFixed",
|
843
|
+
"name": "fractionalFee",
|
844
|
+
"type": "uint256"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
"internalType": "uint256",
|
848
|
+
"name": "fixedFee",
|
849
|
+
"type": "uint256"
|
850
|
+
}
|
851
|
+
],
|
852
|
+
"internalType": "struct Fee",
|
853
|
+
"name": "performanceFee",
|
854
|
+
"type": "tuple"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"internalType": "bool",
|
858
|
+
"name": "isIntercepting",
|
859
|
+
"type": "bool"
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"internalType": "address",
|
863
|
+
"name": "wallet",
|
864
|
+
"type": "address"
|
865
|
+
}
|
866
|
+
],
|
867
|
+
"internalType": "struct ISetup.ProductSetupInfo",
|
868
|
+
"name": "setup",
|
869
|
+
"type": "tuple"
|
870
|
+
}
|
871
|
+
],
|
872
|
+
"name": "createProductSetup",
|
873
|
+
"outputs": [],
|
874
|
+
"stateMutability": "nonpayable",
|
875
|
+
"type": "function"
|
876
|
+
},
|
877
|
+
{
|
878
|
+
"inputs": [
|
879
|
+
{
|
880
|
+
"internalType": "Key32",
|
881
|
+
"name": "referralKey",
|
882
|
+
"type": "bytes32"
|
883
|
+
},
|
884
|
+
{
|
885
|
+
"components": [
|
886
|
+
{
|
887
|
+
"internalType": "NftId",
|
888
|
+
"name": "distributorNftId",
|
889
|
+
"type": "uint96"
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"internalType": "string",
|
893
|
+
"name": "referralCode",
|
894
|
+
"type": "string"
|
895
|
+
},
|
896
|
+
{
|
897
|
+
"internalType": "UFixed",
|
898
|
+
"name": "discountPercentage",
|
899
|
+
"type": "uint256"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"internalType": "uint32",
|
903
|
+
"name": "maxReferrals",
|
904
|
+
"type": "uint32"
|
905
|
+
},
|
906
|
+
{
|
907
|
+
"internalType": "uint32",
|
908
|
+
"name": "usedReferrals",
|
909
|
+
"type": "uint32"
|
910
|
+
},
|
911
|
+
{
|
912
|
+
"internalType": "Timestamp",
|
913
|
+
"name": "expiryAt",
|
914
|
+
"type": "uint40"
|
915
|
+
},
|
916
|
+
{
|
917
|
+
"internalType": "bytes",
|
918
|
+
"name": "data",
|
919
|
+
"type": "bytes"
|
920
|
+
}
|
921
|
+
],
|
922
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
923
|
+
"name": "referralInfo",
|
924
|
+
"type": "tuple"
|
925
|
+
}
|
926
|
+
],
|
927
|
+
"name": "createReferral",
|
928
|
+
"outputs": [],
|
929
|
+
"stateMutability": "nonpayable",
|
930
|
+
"type": "function"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"inputs": [
|
934
|
+
{
|
935
|
+
"internalType": "RiskId",
|
936
|
+
"name": "riskId",
|
937
|
+
"type": "bytes8"
|
938
|
+
},
|
939
|
+
{
|
940
|
+
"components": [
|
941
|
+
{
|
942
|
+
"internalType": "NftId",
|
943
|
+
"name": "productNftId",
|
944
|
+
"type": "uint96"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"internalType": "bytes",
|
948
|
+
"name": "data",
|
949
|
+
"type": "bytes"
|
950
|
+
}
|
951
|
+
],
|
952
|
+
"internalType": "struct IRisk.RiskInfo",
|
953
|
+
"name": "risk",
|
954
|
+
"type": "tuple"
|
955
|
+
}
|
956
|
+
],
|
957
|
+
"name": "createRisk",
|
958
|
+
"outputs": [],
|
959
|
+
"stateMutability": "nonpayable",
|
960
|
+
"type": "function"
|
961
|
+
},
|
962
|
+
{
|
963
|
+
"inputs": [
|
964
|
+
{
|
965
|
+
"internalType": "Key32",
|
966
|
+
"name": "key",
|
967
|
+
"type": "bytes32"
|
968
|
+
}
|
969
|
+
],
|
970
|
+
"name": "exists",
|
971
|
+
"outputs": [
|
972
|
+
{
|
973
|
+
"internalType": "bool",
|
974
|
+
"name": "",
|
975
|
+
"type": "bool"
|
976
|
+
}
|
977
|
+
],
|
978
|
+
"stateMutability": "view",
|
979
|
+
"type": "function"
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"inputs": [
|
983
|
+
{
|
984
|
+
"internalType": "Key32",
|
985
|
+
"name": "key",
|
986
|
+
"type": "bytes32"
|
987
|
+
}
|
988
|
+
],
|
989
|
+
"name": "get",
|
990
|
+
"outputs": [
|
991
|
+
{
|
992
|
+
"components": [
|
993
|
+
{
|
994
|
+
"components": [
|
995
|
+
{
|
996
|
+
"internalType": "ObjectType",
|
997
|
+
"name": "objectType",
|
998
|
+
"type": "uint8"
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
"internalType": "StateId",
|
1002
|
+
"name": "state",
|
1003
|
+
"type": "uint8"
|
1004
|
+
},
|
1005
|
+
{
|
1006
|
+
"internalType": "address",
|
1007
|
+
"name": "updatedBy",
|
1008
|
+
"type": "address"
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
"internalType": "Blocknumber",
|
1012
|
+
"name": "updatedIn",
|
1013
|
+
"type": "uint32"
|
1014
|
+
},
|
1015
|
+
{
|
1016
|
+
"internalType": "Blocknumber",
|
1017
|
+
"name": "createdIn",
|
1018
|
+
"type": "uint32"
|
1019
|
+
}
|
1020
|
+
],
|
1021
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
1022
|
+
"name": "metadata",
|
1023
|
+
"type": "tuple"
|
1024
|
+
},
|
1025
|
+
{
|
1026
|
+
"internalType": "bytes",
|
1027
|
+
"name": "data",
|
1028
|
+
"type": "bytes"
|
1029
|
+
}
|
1030
|
+
],
|
1031
|
+
"internalType": "struct IKeyValueStore.Value",
|
1032
|
+
"name": "value",
|
1033
|
+
"type": "tuple"
|
1034
|
+
}
|
1035
|
+
],
|
1036
|
+
"stateMutability": "view",
|
1037
|
+
"type": "function"
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
"inputs": [],
|
1041
|
+
"name": "getBundleManager",
|
1042
|
+
"outputs": [
|
1043
|
+
{
|
1044
|
+
"internalType": "contract BundleManager",
|
1045
|
+
"name": "",
|
1046
|
+
"type": "address"
|
1047
|
+
}
|
1048
|
+
],
|
1049
|
+
"stateMutability": "view",
|
1050
|
+
"type": "function"
|
1051
|
+
},
|
1052
|
+
{
|
1053
|
+
"inputs": [],
|
1054
|
+
"name": "getBundleService",
|
1055
|
+
"outputs": [
|
1056
|
+
{
|
1057
|
+
"internalType": "contract IBundleService",
|
1058
|
+
"name": "",
|
1059
|
+
"type": "address"
|
1060
|
+
}
|
1061
|
+
],
|
1062
|
+
"stateMutability": "view",
|
1063
|
+
"type": "function"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"inputs": [
|
1067
|
+
{
|
1068
|
+
"internalType": "Key32",
|
1069
|
+
"name": "key",
|
1070
|
+
"type": "bytes32"
|
1071
|
+
}
|
1072
|
+
],
|
1073
|
+
"name": "getData",
|
1074
|
+
"outputs": [
|
1075
|
+
{
|
1076
|
+
"internalType": "bytes",
|
1077
|
+
"name": "data",
|
1078
|
+
"type": "bytes"
|
1079
|
+
}
|
1080
|
+
],
|
1081
|
+
"stateMutability": "view",
|
1082
|
+
"type": "function"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"inputs": [],
|
1086
|
+
"name": "getDistributionService",
|
1087
|
+
"outputs": [
|
1088
|
+
{
|
1089
|
+
"internalType": "contract IDistributionService",
|
1090
|
+
"name": "",
|
1091
|
+
"type": "address"
|
1092
|
+
}
|
1093
|
+
],
|
1094
|
+
"stateMutability": "view",
|
1095
|
+
"type": "function"
|
1096
|
+
},
|
1097
|
+
{
|
1098
|
+
"inputs": [],
|
1099
|
+
"name": "getInitialInfo",
|
1100
|
+
"outputs": [
|
1101
|
+
{
|
1102
|
+
"components": [
|
1103
|
+
{
|
1104
|
+
"internalType": "NftId",
|
1105
|
+
"name": "nftId",
|
1106
|
+
"type": "uint96"
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"internalType": "NftId",
|
1110
|
+
"name": "parentNftId",
|
1111
|
+
"type": "uint96"
|
1112
|
+
},
|
1113
|
+
{
|
1114
|
+
"internalType": "ObjectType",
|
1115
|
+
"name": "objectType",
|
1116
|
+
"type": "uint8"
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"internalType": "bool",
|
1120
|
+
"name": "isInterceptor",
|
1121
|
+
"type": "bool"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"internalType": "address",
|
1125
|
+
"name": "objectAddress",
|
1126
|
+
"type": "address"
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
"internalType": "address",
|
1130
|
+
"name": "initialOwner",
|
1131
|
+
"type": "address"
|
1132
|
+
},
|
1133
|
+
{
|
1134
|
+
"internalType": "bytes",
|
1135
|
+
"name": "data",
|
1136
|
+
"type": "bytes"
|
1137
|
+
}
|
1138
|
+
],
|
1139
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1140
|
+
"name": "",
|
1141
|
+
"type": "tuple"
|
1142
|
+
}
|
1143
|
+
],
|
1144
|
+
"stateMutability": "view",
|
1145
|
+
"type": "function"
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"inputs": [
|
1149
|
+
{
|
1150
|
+
"internalType": "ObjectType",
|
1151
|
+
"name": "objectType",
|
1152
|
+
"type": "uint8"
|
1153
|
+
}
|
1154
|
+
],
|
1155
|
+
"name": "getInitialState",
|
1156
|
+
"outputs": [
|
1157
|
+
{
|
1158
|
+
"internalType": "StateId",
|
1159
|
+
"name": "",
|
1160
|
+
"type": "uint8"
|
1161
|
+
}
|
1162
|
+
],
|
1163
|
+
"stateMutability": "view",
|
1164
|
+
"type": "function"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"inputs": [],
|
1168
|
+
"name": "getInstanceReader",
|
1169
|
+
"outputs": [
|
1170
|
+
{
|
1171
|
+
"internalType": "contract InstanceReader",
|
1172
|
+
"name": "",
|
1173
|
+
"type": "address"
|
1174
|
+
}
|
1175
|
+
],
|
1176
|
+
"stateMutability": "view",
|
1177
|
+
"type": "function"
|
1178
|
+
},
|
1179
|
+
{
|
1180
|
+
"inputs": [],
|
1181
|
+
"name": "getMajorVersion",
|
1182
|
+
"outputs": [
|
1183
|
+
{
|
1184
|
+
"internalType": "VersionPart",
|
1185
|
+
"name": "majorVersion",
|
1186
|
+
"type": "uint8"
|
1187
|
+
}
|
1188
|
+
],
|
1189
|
+
"stateMutability": "pure",
|
1190
|
+
"type": "function"
|
1191
|
+
},
|
1192
|
+
{
|
1193
|
+
"inputs": [
|
1194
|
+
{
|
1195
|
+
"internalType": "Key32",
|
1196
|
+
"name": "key",
|
1197
|
+
"type": "bytes32"
|
1198
|
+
}
|
1199
|
+
],
|
1200
|
+
"name": "getMetadata",
|
1201
|
+
"outputs": [
|
1202
|
+
{
|
1203
|
+
"components": [
|
1204
|
+
{
|
1205
|
+
"internalType": "ObjectType",
|
1206
|
+
"name": "objectType",
|
1207
|
+
"type": "uint8"
|
1208
|
+
},
|
1209
|
+
{
|
1210
|
+
"internalType": "StateId",
|
1211
|
+
"name": "state",
|
1212
|
+
"type": "uint8"
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"internalType": "address",
|
1216
|
+
"name": "updatedBy",
|
1217
|
+
"type": "address"
|
1218
|
+
},
|
1219
|
+
{
|
1220
|
+
"internalType": "Blocknumber",
|
1221
|
+
"name": "updatedIn",
|
1222
|
+
"type": "uint32"
|
1223
|
+
},
|
1224
|
+
{
|
1225
|
+
"internalType": "Blocknumber",
|
1226
|
+
"name": "createdIn",
|
1227
|
+
"type": "uint32"
|
1228
|
+
}
|
1229
|
+
],
|
1230
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
1231
|
+
"name": "metadata",
|
1232
|
+
"type": "tuple"
|
1233
|
+
}
|
1234
|
+
],
|
1235
|
+
"stateMutability": "view",
|
1236
|
+
"type": "function"
|
1237
|
+
},
|
1238
|
+
{
|
1239
|
+
"inputs": [],
|
1240
|
+
"name": "getNftId",
|
1241
|
+
"outputs": [
|
1242
|
+
{
|
1243
|
+
"internalType": "NftId",
|
1244
|
+
"name": "",
|
1245
|
+
"type": "uint96"
|
1246
|
+
}
|
1247
|
+
],
|
1248
|
+
"stateMutability": "view",
|
1249
|
+
"type": "function"
|
1250
|
+
},
|
1251
|
+
{
|
1252
|
+
"inputs": [],
|
1253
|
+
"name": "getOwner",
|
1254
|
+
"outputs": [
|
1255
|
+
{
|
1256
|
+
"internalType": "address",
|
1257
|
+
"name": "",
|
336
1258
|
"type": "address"
|
337
1259
|
}
|
338
1260
|
],
|
@@ -341,10 +1263,10 @@
|
|
341
1263
|
},
|
342
1264
|
{
|
343
1265
|
"inputs": [],
|
344
|
-
"name": "
|
1266
|
+
"name": "getPolicyService",
|
345
1267
|
"outputs": [
|
346
1268
|
{
|
347
|
-
"internalType": "contract
|
1269
|
+
"internalType": "contract IPolicyService",
|
348
1270
|
"name": "",
|
349
1271
|
"type": "address"
|
350
1272
|
}
|
@@ -354,12 +1276,131 @@
|
|
354
1276
|
},
|
355
1277
|
{
|
356
1278
|
"inputs": [],
|
357
|
-
"name": "
|
1279
|
+
"name": "getPoolService",
|
358
1280
|
"outputs": [
|
359
1281
|
{
|
360
|
-
"internalType": "
|
361
|
-
"name": "
|
362
|
-
"type": "
|
1282
|
+
"internalType": "contract IPoolService",
|
1283
|
+
"name": "",
|
1284
|
+
"type": "address"
|
1285
|
+
}
|
1286
|
+
],
|
1287
|
+
"stateMutability": "view",
|
1288
|
+
"type": "function"
|
1289
|
+
},
|
1290
|
+
{
|
1291
|
+
"inputs": [],
|
1292
|
+
"name": "getProductService",
|
1293
|
+
"outputs": [
|
1294
|
+
{
|
1295
|
+
"internalType": "contract IProductService",
|
1296
|
+
"name": "",
|
1297
|
+
"type": "address"
|
1298
|
+
}
|
1299
|
+
],
|
1300
|
+
"stateMutability": "view",
|
1301
|
+
"type": "function"
|
1302
|
+
},
|
1303
|
+
{
|
1304
|
+
"inputs": [],
|
1305
|
+
"name": "getRegistry",
|
1306
|
+
"outputs": [
|
1307
|
+
{
|
1308
|
+
"internalType": "contract IRegistry",
|
1309
|
+
"name": "",
|
1310
|
+
"type": "address"
|
1311
|
+
}
|
1312
|
+
],
|
1313
|
+
"stateMutability": "view",
|
1314
|
+
"type": "function"
|
1315
|
+
},
|
1316
|
+
{
|
1317
|
+
"inputs": [],
|
1318
|
+
"name": "getRegistryAddress",
|
1319
|
+
"outputs": [
|
1320
|
+
{
|
1321
|
+
"internalType": "address",
|
1322
|
+
"name": "",
|
1323
|
+
"type": "address"
|
1324
|
+
}
|
1325
|
+
],
|
1326
|
+
"stateMutability": "view",
|
1327
|
+
"type": "function"
|
1328
|
+
},
|
1329
|
+
{
|
1330
|
+
"inputs": [
|
1331
|
+
{
|
1332
|
+
"internalType": "Key32",
|
1333
|
+
"name": "key",
|
1334
|
+
"type": "bytes32"
|
1335
|
+
}
|
1336
|
+
],
|
1337
|
+
"name": "getState",
|
1338
|
+
"outputs": [
|
1339
|
+
{
|
1340
|
+
"internalType": "StateId",
|
1341
|
+
"name": "state",
|
1342
|
+
"type": "uint8"
|
1343
|
+
}
|
1344
|
+
],
|
1345
|
+
"stateMutability": "view",
|
1346
|
+
"type": "function"
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
"inputs": [
|
1350
|
+
{
|
1351
|
+
"internalType": "ObjectType",
|
1352
|
+
"name": "objectType",
|
1353
|
+
"type": "uint8"
|
1354
|
+
}
|
1355
|
+
],
|
1356
|
+
"name": "hasLifecycle",
|
1357
|
+
"outputs": [
|
1358
|
+
{
|
1359
|
+
"internalType": "bool",
|
1360
|
+
"name": "",
|
1361
|
+
"type": "bool"
|
1362
|
+
}
|
1363
|
+
],
|
1364
|
+
"stateMutability": "view",
|
1365
|
+
"type": "function"
|
1366
|
+
},
|
1367
|
+
{
|
1368
|
+
"inputs": [],
|
1369
|
+
"name": "isConsumingScheduledOp",
|
1370
|
+
"outputs": [
|
1371
|
+
{
|
1372
|
+
"internalType": "bytes4",
|
1373
|
+
"name": "",
|
1374
|
+
"type": "bytes4"
|
1375
|
+
}
|
1376
|
+
],
|
1377
|
+
"stateMutability": "view",
|
1378
|
+
"type": "function"
|
1379
|
+
},
|
1380
|
+
{
|
1381
|
+
"inputs": [
|
1382
|
+
{
|
1383
|
+
"internalType": "ObjectType",
|
1384
|
+
"name": "objectType",
|
1385
|
+
"type": "uint8"
|
1386
|
+
},
|
1387
|
+
{
|
1388
|
+
"internalType": "StateId",
|
1389
|
+
"name": "fromId",
|
1390
|
+
"type": "uint8"
|
1391
|
+
},
|
1392
|
+
{
|
1393
|
+
"internalType": "StateId",
|
1394
|
+
"name": "toId",
|
1395
|
+
"type": "uint8"
|
1396
|
+
}
|
1397
|
+
],
|
1398
|
+
"name": "isValidTransition",
|
1399
|
+
"outputs": [
|
1400
|
+
{
|
1401
|
+
"internalType": "bool",
|
1402
|
+
"name": "",
|
1403
|
+
"type": "bool"
|
363
1404
|
}
|
364
1405
|
],
|
365
1406
|
"stateMutability": "view",
|
@@ -367,370 +1408,764 @@
|
|
367
1408
|
},
|
368
1409
|
{
|
369
1410
|
"inputs": [],
|
370
|
-
"name": "
|
1411
|
+
"name": "linkToRegisteredNftId",
|
1412
|
+
"outputs": [],
|
1413
|
+
"stateMutability": "nonpayable",
|
1414
|
+
"type": "function"
|
1415
|
+
},
|
1416
|
+
{
|
1417
|
+
"inputs": [
|
1418
|
+
{
|
1419
|
+
"internalType": "address",
|
1420
|
+
"name": "",
|
1421
|
+
"type": "address"
|
1422
|
+
}
|
1423
|
+
],
|
1424
|
+
"name": "setAuthority",
|
1425
|
+
"outputs": [],
|
1426
|
+
"stateMutability": "nonpayable",
|
1427
|
+
"type": "function"
|
1428
|
+
},
|
1429
|
+
{
|
1430
|
+
"inputs": [
|
1431
|
+
{
|
1432
|
+
"internalType": "bytes4",
|
1433
|
+
"name": "interfaceId",
|
1434
|
+
"type": "bytes4"
|
1435
|
+
}
|
1436
|
+
],
|
1437
|
+
"name": "supportsInterface",
|
1438
|
+
"outputs": [
|
1439
|
+
{
|
1440
|
+
"internalType": "bool",
|
1441
|
+
"name": "",
|
1442
|
+
"type": "bool"
|
1443
|
+
}
|
1444
|
+
],
|
1445
|
+
"stateMutability": "view",
|
1446
|
+
"type": "function"
|
1447
|
+
},
|
1448
|
+
{
|
1449
|
+
"inputs": [
|
1450
|
+
{
|
1451
|
+
"internalType": "ObjectType",
|
1452
|
+
"name": "objectType",
|
1453
|
+
"type": "uint8"
|
1454
|
+
},
|
1455
|
+
{
|
1456
|
+
"internalType": "KeyId",
|
1457
|
+
"name": "id",
|
1458
|
+
"type": "bytes31"
|
1459
|
+
}
|
1460
|
+
],
|
1461
|
+
"name": "toKey32",
|
371
1462
|
"outputs": [
|
372
1463
|
{
|
373
|
-
"internalType": "
|
374
|
-
"name": "
|
375
|
-
"type": "
|
1464
|
+
"internalType": "Key32",
|
1465
|
+
"name": "",
|
1466
|
+
"type": "bytes32"
|
1467
|
+
}
|
1468
|
+
],
|
1469
|
+
"stateMutability": "pure",
|
1470
|
+
"type": "function"
|
1471
|
+
},
|
1472
|
+
{
|
1473
|
+
"inputs": [
|
1474
|
+
{
|
1475
|
+
"internalType": "NftId",
|
1476
|
+
"name": "applicationNftId",
|
1477
|
+
"type": "uint96"
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"components": [
|
1481
|
+
{
|
1482
|
+
"internalType": "NftId",
|
1483
|
+
"name": "productNftId",
|
1484
|
+
"type": "uint96"
|
1485
|
+
},
|
1486
|
+
{
|
1487
|
+
"internalType": "NftId",
|
1488
|
+
"name": "bundleNftId",
|
1489
|
+
"type": "uint96"
|
1490
|
+
},
|
1491
|
+
{
|
1492
|
+
"internalType": "ReferralId",
|
1493
|
+
"name": "referralId",
|
1494
|
+
"type": "bytes8"
|
1495
|
+
},
|
1496
|
+
{
|
1497
|
+
"internalType": "RiskId",
|
1498
|
+
"name": "riskId",
|
1499
|
+
"type": "bytes8"
|
1500
|
+
},
|
1501
|
+
{
|
1502
|
+
"internalType": "uint256",
|
1503
|
+
"name": "sumInsuredAmount",
|
1504
|
+
"type": "uint256"
|
1505
|
+
},
|
1506
|
+
{
|
1507
|
+
"internalType": "uint256",
|
1508
|
+
"name": "premiumAmount",
|
1509
|
+
"type": "uint256"
|
1510
|
+
},
|
1511
|
+
{
|
1512
|
+
"internalType": "uint256",
|
1513
|
+
"name": "premiumPaidAmount",
|
1514
|
+
"type": "uint256"
|
1515
|
+
},
|
1516
|
+
{
|
1517
|
+
"internalType": "uint256",
|
1518
|
+
"name": "lifetime",
|
1519
|
+
"type": "uint256"
|
1520
|
+
},
|
1521
|
+
{
|
1522
|
+
"internalType": "bytes",
|
1523
|
+
"name": "applicationData",
|
1524
|
+
"type": "bytes"
|
1525
|
+
},
|
1526
|
+
{
|
1527
|
+
"internalType": "bytes",
|
1528
|
+
"name": "policyData",
|
1529
|
+
"type": "bytes"
|
1530
|
+
},
|
1531
|
+
{
|
1532
|
+
"internalType": "uint16",
|
1533
|
+
"name": "claimsCount",
|
1534
|
+
"type": "uint16"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"internalType": "uint16",
|
1538
|
+
"name": "openClaimsCount",
|
1539
|
+
"type": "uint16"
|
1540
|
+
},
|
1541
|
+
{
|
1542
|
+
"internalType": "uint256",
|
1543
|
+
"name": "payoutAmount",
|
1544
|
+
"type": "uint256"
|
1545
|
+
},
|
1546
|
+
{
|
1547
|
+
"internalType": "Timestamp",
|
1548
|
+
"name": "activatedAt",
|
1549
|
+
"type": "uint40"
|
1550
|
+
},
|
1551
|
+
{
|
1552
|
+
"internalType": "Timestamp",
|
1553
|
+
"name": "expiredAt",
|
1554
|
+
"type": "uint40"
|
1555
|
+
},
|
1556
|
+
{
|
1557
|
+
"internalType": "Timestamp",
|
1558
|
+
"name": "closedAt",
|
1559
|
+
"type": "uint40"
|
1560
|
+
}
|
1561
|
+
],
|
1562
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
1563
|
+
"name": "policy",
|
1564
|
+
"type": "tuple"
|
1565
|
+
},
|
1566
|
+
{
|
1567
|
+
"internalType": "StateId",
|
1568
|
+
"name": "newState",
|
1569
|
+
"type": "uint8"
|
376
1570
|
}
|
377
1571
|
],
|
378
|
-
"
|
1572
|
+
"name": "updateApplication",
|
1573
|
+
"outputs": [],
|
1574
|
+
"stateMutability": "nonpayable",
|
379
1575
|
"type": "function"
|
380
1576
|
},
|
381
1577
|
{
|
382
|
-
"inputs": [
|
383
|
-
"name": "getNftId",
|
384
|
-
"outputs": [
|
1578
|
+
"inputs": [
|
385
1579
|
{
|
386
1580
|
"internalType": "NftId",
|
387
|
-
"name": "
|
1581
|
+
"name": "applicationNftId",
|
388
1582
|
"type": "uint96"
|
389
|
-
}
|
390
|
-
],
|
391
|
-
"stateMutability": "view",
|
392
|
-
"type": "function"
|
393
|
-
},
|
394
|
-
{
|
395
|
-
"inputs": [],
|
396
|
-
"name": "getOwner",
|
397
|
-
"outputs": [
|
398
|
-
{
|
399
|
-
"internalType": "address",
|
400
|
-
"name": "owner",
|
401
|
-
"type": "address"
|
402
|
-
}
|
403
|
-
],
|
404
|
-
"stateMutability": "view",
|
405
|
-
"type": "function"
|
406
|
-
},
|
407
|
-
{
|
408
|
-
"inputs": [],
|
409
|
-
"name": "getParentNftId",
|
410
|
-
"outputs": [
|
1583
|
+
},
|
411
1584
|
{
|
412
|
-
"internalType": "
|
413
|
-
"name": "
|
414
|
-
"type": "
|
1585
|
+
"internalType": "StateId",
|
1586
|
+
"name": "newState",
|
1587
|
+
"type": "uint8"
|
415
1588
|
}
|
416
1589
|
],
|
417
|
-
"
|
1590
|
+
"name": "updateApplicationState",
|
1591
|
+
"outputs": [],
|
1592
|
+
"stateMutability": "nonpayable",
|
418
1593
|
"type": "function"
|
419
1594
|
},
|
420
1595
|
{
|
421
1596
|
"inputs": [
|
422
1597
|
{
|
423
1598
|
"internalType": "NftId",
|
424
|
-
"name": "
|
1599
|
+
"name": "bundleNftId",
|
425
1600
|
"type": "uint96"
|
426
|
-
}
|
427
|
-
],
|
428
|
-
"name": "getPolicyInfo",
|
429
|
-
"outputs": [
|
1601
|
+
},
|
430
1602
|
{
|
431
1603
|
"components": [
|
432
1604
|
{
|
433
1605
|
"internalType": "NftId",
|
434
|
-
"name": "
|
1606
|
+
"name": "poolNftId",
|
435
1607
|
"type": "uint96"
|
436
1608
|
},
|
437
1609
|
{
|
438
|
-
"
|
439
|
-
|
440
|
-
|
1610
|
+
"components": [
|
1611
|
+
{
|
1612
|
+
"internalType": "UFixed",
|
1613
|
+
"name": "fractionalFee",
|
1614
|
+
"type": "uint256"
|
1615
|
+
},
|
1616
|
+
{
|
1617
|
+
"internalType": "uint256",
|
1618
|
+
"name": "fixedFee",
|
1619
|
+
"type": "uint256"
|
1620
|
+
}
|
1621
|
+
],
|
1622
|
+
"internalType": "struct Fee",
|
1623
|
+
"name": "fee",
|
1624
|
+
"type": "tuple"
|
441
1625
|
},
|
442
1626
|
{
|
443
|
-
"internalType": "
|
444
|
-
"name": "
|
445
|
-
"type": "
|
1627
|
+
"internalType": "bytes",
|
1628
|
+
"name": "filter",
|
1629
|
+
"type": "bytes"
|
446
1630
|
},
|
447
1631
|
{
|
448
1632
|
"internalType": "uint256",
|
449
|
-
"name": "
|
1633
|
+
"name": "capitalAmount",
|
450
1634
|
"type": "uint256"
|
451
1635
|
},
|
452
1636
|
{
|
453
1637
|
"internalType": "uint256",
|
454
|
-
"name": "
|
1638
|
+
"name": "lockedAmount",
|
455
1639
|
"type": "uint256"
|
456
1640
|
},
|
457
1641
|
{
|
458
1642
|
"internalType": "uint256",
|
459
|
-
"name": "
|
1643
|
+
"name": "balanceAmount",
|
460
1644
|
"type": "uint256"
|
461
1645
|
},
|
462
1646
|
{
|
463
1647
|
"internalType": "uint256",
|
464
|
-
"name": "
|
1648
|
+
"name": "lifetime",
|
465
1649
|
"type": "uint256"
|
466
1650
|
},
|
467
1651
|
{
|
468
|
-
"internalType": "
|
1652
|
+
"internalType": "Timestamp",
|
469
1653
|
"name": "expiredAt",
|
470
|
-
"type": "
|
1654
|
+
"type": "uint40"
|
471
1655
|
},
|
472
1656
|
{
|
473
|
-
"internalType": "
|
1657
|
+
"internalType": "Timestamp",
|
474
1658
|
"name": "closedAt",
|
475
|
-
"type": "
|
1659
|
+
"type": "uint40"
|
476
1660
|
}
|
477
1661
|
],
|
478
|
-
"internalType": "struct
|
479
|
-
"name": "
|
1662
|
+
"internalType": "struct IBundle.BundleInfo",
|
1663
|
+
"name": "bundle",
|
480
1664
|
"type": "tuple"
|
1665
|
+
},
|
1666
|
+
{
|
1667
|
+
"internalType": "StateId",
|
1668
|
+
"name": "newState",
|
1669
|
+
"type": "uint8"
|
481
1670
|
}
|
482
1671
|
],
|
483
|
-
"
|
1672
|
+
"name": "updateBundle",
|
1673
|
+
"outputs": [],
|
1674
|
+
"stateMutability": "nonpayable",
|
484
1675
|
"type": "function"
|
485
1676
|
},
|
486
1677
|
{
|
487
1678
|
"inputs": [
|
488
1679
|
{
|
489
1680
|
"internalType": "NftId",
|
490
|
-
"name": "
|
1681
|
+
"name": "bundleNftId",
|
491
1682
|
"type": "uint96"
|
1683
|
+
},
|
1684
|
+
{
|
1685
|
+
"internalType": "StateId",
|
1686
|
+
"name": "newState",
|
1687
|
+
"type": "uint8"
|
492
1688
|
}
|
493
1689
|
],
|
494
|
-
"name": "
|
495
|
-
"outputs": [
|
1690
|
+
"name": "updateBundleState",
|
1691
|
+
"outputs": [],
|
1692
|
+
"stateMutability": "nonpayable",
|
1693
|
+
"type": "function"
|
1694
|
+
},
|
1695
|
+
{
|
1696
|
+
"inputs": [
|
1697
|
+
{
|
1698
|
+
"internalType": "NftId",
|
1699
|
+
"name": "distributionNftId",
|
1700
|
+
"type": "uint96"
|
1701
|
+
},
|
496
1702
|
{
|
497
1703
|
"components": [
|
498
1704
|
{
|
499
1705
|
"internalType": "NftId",
|
500
|
-
"name": "
|
1706
|
+
"name": "productNftId",
|
501
1707
|
"type": "uint96"
|
502
1708
|
},
|
503
1709
|
{
|
504
|
-
"internalType": "
|
505
|
-
"name": "
|
506
|
-
"type": "address"
|
507
|
-
},
|
508
|
-
{
|
509
|
-
"internalType": "address",
|
510
|
-
"name": "token",
|
1710
|
+
"internalType": "contract TokenHandler",
|
1711
|
+
"name": "tokenHandler",
|
511
1712
|
"type": "address"
|
512
1713
|
},
|
513
1714
|
{
|
514
|
-
"
|
515
|
-
|
516
|
-
|
1715
|
+
"components": [
|
1716
|
+
{
|
1717
|
+
"internalType": "UFixed",
|
1718
|
+
"name": "fractionalFee",
|
1719
|
+
"type": "uint256"
|
1720
|
+
},
|
1721
|
+
{
|
1722
|
+
"internalType": "uint256",
|
1723
|
+
"name": "fixedFee",
|
1724
|
+
"type": "uint256"
|
1725
|
+
}
|
1726
|
+
],
|
1727
|
+
"internalType": "struct Fee",
|
1728
|
+
"name": "distributionFee",
|
1729
|
+
"type": "tuple"
|
517
1730
|
},
|
518
1731
|
{
|
519
|
-
"internalType": "
|
520
|
-
"name": "
|
521
|
-
"type": "
|
1732
|
+
"internalType": "address",
|
1733
|
+
"name": "wallet",
|
1734
|
+
"type": "address"
|
522
1735
|
}
|
523
1736
|
],
|
524
|
-
"internalType": "struct
|
525
|
-
"name": "
|
1737
|
+
"internalType": "struct ISetup.DistributionSetupInfo",
|
1738
|
+
"name": "setup",
|
526
1739
|
"type": "tuple"
|
1740
|
+
},
|
1741
|
+
{
|
1742
|
+
"internalType": "StateId",
|
1743
|
+
"name": "newState",
|
1744
|
+
"type": "uint8"
|
527
1745
|
}
|
528
1746
|
],
|
529
|
-
"
|
1747
|
+
"name": "updateDistributionSetup",
|
1748
|
+
"outputs": [],
|
1749
|
+
"stateMutability": "nonpayable",
|
530
1750
|
"type": "function"
|
531
1751
|
},
|
532
1752
|
{
|
533
1753
|
"inputs": [
|
534
1754
|
{
|
535
1755
|
"internalType": "NftId",
|
536
|
-
"name": "
|
1756
|
+
"name": "distributionNftId",
|
537
1757
|
"type": "uint96"
|
1758
|
+
},
|
1759
|
+
{
|
1760
|
+
"internalType": "StateId",
|
1761
|
+
"name": "newState",
|
1762
|
+
"type": "uint8"
|
538
1763
|
}
|
539
1764
|
],
|
540
|
-
"name": "
|
541
|
-
"outputs": [
|
1765
|
+
"name": "updateDistributionSetupState",
|
1766
|
+
"outputs": [],
|
1767
|
+
"stateMutability": "nonpayable",
|
1768
|
+
"type": "function"
|
1769
|
+
},
|
1770
|
+
{
|
1771
|
+
"inputs": [
|
542
1772
|
{
|
543
1773
|
"internalType": "NftId",
|
544
|
-
"name": "
|
1774
|
+
"name": "nftId",
|
545
1775
|
"type": "uint96"
|
1776
|
+
},
|
1777
|
+
{
|
1778
|
+
"components": [
|
1779
|
+
{
|
1780
|
+
"internalType": "DistributorType",
|
1781
|
+
"name": "distributorType",
|
1782
|
+
"type": "bytes8"
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
"internalType": "bool",
|
1786
|
+
"name": "active",
|
1787
|
+
"type": "bool"
|
1788
|
+
},
|
1789
|
+
{
|
1790
|
+
"internalType": "bytes",
|
1791
|
+
"name": "data",
|
1792
|
+
"type": "bytes"
|
1793
|
+
}
|
1794
|
+
],
|
1795
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
1796
|
+
"name": "info",
|
1797
|
+
"type": "tuple"
|
1798
|
+
},
|
1799
|
+
{
|
1800
|
+
"internalType": "StateId",
|
1801
|
+
"name": "newState",
|
1802
|
+
"type": "uint8"
|
546
1803
|
}
|
547
1804
|
],
|
548
|
-
"
|
1805
|
+
"name": "updateDistributor",
|
1806
|
+
"outputs": [],
|
1807
|
+
"stateMutability": "nonpayable",
|
549
1808
|
"type": "function"
|
550
1809
|
},
|
551
1810
|
{
|
552
|
-
"inputs": [
|
553
|
-
"name": "getProductService",
|
554
|
-
"outputs": [
|
1811
|
+
"inputs": [
|
555
1812
|
{
|
556
|
-
"internalType": "
|
557
|
-
"name": "",
|
558
|
-
"type": "
|
1813
|
+
"internalType": "NftId",
|
1814
|
+
"name": "nftId",
|
1815
|
+
"type": "uint96"
|
1816
|
+
},
|
1817
|
+
{
|
1818
|
+
"internalType": "StateId",
|
1819
|
+
"name": "newState",
|
1820
|
+
"type": "uint8"
|
559
1821
|
}
|
560
1822
|
],
|
561
|
-
"
|
1823
|
+
"name": "updateDistributorState",
|
1824
|
+
"outputs": [],
|
1825
|
+
"stateMutability": "nonpayable",
|
562
1826
|
"type": "function"
|
563
1827
|
},
|
564
1828
|
{
|
565
|
-
"inputs": [
|
566
|
-
"name": "getRegistry",
|
567
|
-
"outputs": [
|
1829
|
+
"inputs": [
|
568
1830
|
{
|
569
|
-
"internalType": "
|
570
|
-
"name": "
|
571
|
-
"type": "
|
1831
|
+
"internalType": "Key32",
|
1832
|
+
"name": "distributorKey",
|
1833
|
+
"type": "bytes32"
|
1834
|
+
},
|
1835
|
+
{
|
1836
|
+
"components": [
|
1837
|
+
{
|
1838
|
+
"internalType": "string",
|
1839
|
+
"name": "name",
|
1840
|
+
"type": "string"
|
1841
|
+
},
|
1842
|
+
{
|
1843
|
+
"internalType": "UFixed",
|
1844
|
+
"name": "minDiscountPercentage",
|
1845
|
+
"type": "uint256"
|
1846
|
+
},
|
1847
|
+
{
|
1848
|
+
"internalType": "UFixed",
|
1849
|
+
"name": "maxDiscountPercentage",
|
1850
|
+
"type": "uint256"
|
1851
|
+
},
|
1852
|
+
{
|
1853
|
+
"internalType": "UFixed",
|
1854
|
+
"name": "commissionPercentage",
|
1855
|
+
"type": "uint256"
|
1856
|
+
},
|
1857
|
+
{
|
1858
|
+
"internalType": "uint32",
|
1859
|
+
"name": "maxReferralCount",
|
1860
|
+
"type": "uint32"
|
1861
|
+
},
|
1862
|
+
{
|
1863
|
+
"internalType": "uint32",
|
1864
|
+
"name": "maxReferralLifetime",
|
1865
|
+
"type": "uint32"
|
1866
|
+
},
|
1867
|
+
{
|
1868
|
+
"internalType": "bool",
|
1869
|
+
"name": "allowSelfReferrals",
|
1870
|
+
"type": "bool"
|
1871
|
+
},
|
1872
|
+
{
|
1873
|
+
"internalType": "bool",
|
1874
|
+
"name": "allowRenewals",
|
1875
|
+
"type": "bool"
|
1876
|
+
},
|
1877
|
+
{
|
1878
|
+
"internalType": "bytes",
|
1879
|
+
"name": "data",
|
1880
|
+
"type": "bytes"
|
1881
|
+
}
|
1882
|
+
],
|
1883
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
1884
|
+
"name": "info",
|
1885
|
+
"type": "tuple"
|
1886
|
+
},
|
1887
|
+
{
|
1888
|
+
"internalType": "StateId",
|
1889
|
+
"name": "newState",
|
1890
|
+
"type": "uint8"
|
572
1891
|
}
|
573
1892
|
],
|
574
|
-
"
|
1893
|
+
"name": "updateDistributorType",
|
1894
|
+
"outputs": [],
|
1895
|
+
"stateMutability": "nonpayable",
|
575
1896
|
"type": "function"
|
576
1897
|
},
|
577
1898
|
{
|
578
1899
|
"inputs": [
|
579
1900
|
{
|
580
|
-
"internalType": "
|
581
|
-
"name": "
|
582
|
-
"type": "uint256"
|
583
|
-
}
|
584
|
-
],
|
585
|
-
"name": "getRole",
|
586
|
-
"outputs": [
|
587
|
-
{
|
588
|
-
"internalType": "bytes32",
|
589
|
-
"name": "role",
|
1901
|
+
"internalType": "Key32",
|
1902
|
+
"name": "distributorKey",
|
590
1903
|
"type": "bytes32"
|
1904
|
+
},
|
1905
|
+
{
|
1906
|
+
"internalType": "StateId",
|
1907
|
+
"name": "newState",
|
1908
|
+
"type": "uint8"
|
591
1909
|
}
|
592
1910
|
],
|
593
|
-
"
|
1911
|
+
"name": "updateDistributorTypeState",
|
1912
|
+
"outputs": [],
|
1913
|
+
"stateMutability": "nonpayable",
|
594
1914
|
"type": "function"
|
595
1915
|
},
|
596
1916
|
{
|
597
|
-
"inputs": [
|
598
|
-
|
599
|
-
|
1917
|
+
"inputs": [
|
1918
|
+
{
|
1919
|
+
"internalType": "NftId",
|
1920
|
+
"name": "policyNftId",
|
1921
|
+
"type": "uint96"
|
1922
|
+
},
|
1923
|
+
{
|
1924
|
+
"components": [
|
1925
|
+
{
|
1926
|
+
"internalType": "NftId",
|
1927
|
+
"name": "productNftId",
|
1928
|
+
"type": "uint96"
|
1929
|
+
},
|
1930
|
+
{
|
1931
|
+
"internalType": "NftId",
|
1932
|
+
"name": "bundleNftId",
|
1933
|
+
"type": "uint96"
|
1934
|
+
},
|
1935
|
+
{
|
1936
|
+
"internalType": "ReferralId",
|
1937
|
+
"name": "referralId",
|
1938
|
+
"type": "bytes8"
|
1939
|
+
},
|
1940
|
+
{
|
1941
|
+
"internalType": "RiskId",
|
1942
|
+
"name": "riskId",
|
1943
|
+
"type": "bytes8"
|
1944
|
+
},
|
1945
|
+
{
|
1946
|
+
"internalType": "uint256",
|
1947
|
+
"name": "sumInsuredAmount",
|
1948
|
+
"type": "uint256"
|
1949
|
+
},
|
1950
|
+
{
|
1951
|
+
"internalType": "uint256",
|
1952
|
+
"name": "premiumAmount",
|
1953
|
+
"type": "uint256"
|
1954
|
+
},
|
1955
|
+
{
|
1956
|
+
"internalType": "uint256",
|
1957
|
+
"name": "premiumPaidAmount",
|
1958
|
+
"type": "uint256"
|
1959
|
+
},
|
1960
|
+
{
|
1961
|
+
"internalType": "uint256",
|
1962
|
+
"name": "lifetime",
|
1963
|
+
"type": "uint256"
|
1964
|
+
},
|
1965
|
+
{
|
1966
|
+
"internalType": "bytes",
|
1967
|
+
"name": "applicationData",
|
1968
|
+
"type": "bytes"
|
1969
|
+
},
|
1970
|
+
{
|
1971
|
+
"internalType": "bytes",
|
1972
|
+
"name": "policyData",
|
1973
|
+
"type": "bytes"
|
1974
|
+
},
|
1975
|
+
{
|
1976
|
+
"internalType": "uint16",
|
1977
|
+
"name": "claimsCount",
|
1978
|
+
"type": "uint16"
|
1979
|
+
},
|
1980
|
+
{
|
1981
|
+
"internalType": "uint16",
|
1982
|
+
"name": "openClaimsCount",
|
1983
|
+
"type": "uint16"
|
1984
|
+
},
|
1985
|
+
{
|
1986
|
+
"internalType": "uint256",
|
1987
|
+
"name": "payoutAmount",
|
1988
|
+
"type": "uint256"
|
1989
|
+
},
|
1990
|
+
{
|
1991
|
+
"internalType": "Timestamp",
|
1992
|
+
"name": "activatedAt",
|
1993
|
+
"type": "uint40"
|
1994
|
+
},
|
1995
|
+
{
|
1996
|
+
"internalType": "Timestamp",
|
1997
|
+
"name": "expiredAt",
|
1998
|
+
"type": "uint40"
|
1999
|
+
},
|
2000
|
+
{
|
2001
|
+
"internalType": "Timestamp",
|
2002
|
+
"name": "closedAt",
|
2003
|
+
"type": "uint40"
|
2004
|
+
}
|
2005
|
+
],
|
2006
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
2007
|
+
"name": "policy",
|
2008
|
+
"type": "tuple"
|
2009
|
+
},
|
600
2010
|
{
|
601
|
-
"internalType": "
|
602
|
-
"name": "
|
603
|
-
"type": "
|
2011
|
+
"internalType": "StateId",
|
2012
|
+
"name": "newState",
|
2013
|
+
"type": "uint8"
|
604
2014
|
}
|
605
2015
|
],
|
606
|
-
"
|
2016
|
+
"name": "updatePolicy",
|
2017
|
+
"outputs": [],
|
2018
|
+
"stateMutability": "nonpayable",
|
607
2019
|
"type": "function"
|
608
2020
|
},
|
609
2021
|
{
|
610
2022
|
"inputs": [
|
611
2023
|
{
|
612
|
-
"internalType": "
|
613
|
-
"name": "
|
614
|
-
"type": "
|
615
|
-
}
|
616
|
-
],
|
617
|
-
"name": "getRoleForName",
|
618
|
-
"outputs": [
|
2024
|
+
"internalType": "NftId",
|
2025
|
+
"name": "policyNftId",
|
2026
|
+
"type": "uint96"
|
2027
|
+
},
|
619
2028
|
{
|
620
|
-
"internalType": "
|
621
|
-
"name": "
|
622
|
-
"type": "
|
2029
|
+
"internalType": "StateId",
|
2030
|
+
"name": "newState",
|
2031
|
+
"type": "uint8"
|
623
2032
|
}
|
624
2033
|
],
|
625
|
-
"
|
2034
|
+
"name": "updatePolicyState",
|
2035
|
+
"outputs": [],
|
2036
|
+
"stateMutability": "nonpayable",
|
626
2037
|
"type": "function"
|
627
2038
|
},
|
628
2039
|
{
|
629
2040
|
"inputs": [
|
630
2041
|
{
|
631
|
-
"internalType": "
|
632
|
-
"name": "
|
633
|
-
"type": "
|
634
|
-
}
|
635
|
-
],
|
636
|
-
"name": "getRoleInfo",
|
637
|
-
"outputs": [
|
2042
|
+
"internalType": "NftId",
|
2043
|
+
"name": "poolNftId",
|
2044
|
+
"type": "uint96"
|
2045
|
+
},
|
638
2046
|
{
|
639
2047
|
"components": [
|
640
2048
|
{
|
641
|
-
"internalType": "
|
642
|
-
"name": "
|
643
|
-
"type": "
|
2049
|
+
"internalType": "NftId",
|
2050
|
+
"name": "productNftId",
|
2051
|
+
"type": "uint96"
|
644
2052
|
},
|
645
2053
|
{
|
646
|
-
"internalType": "
|
647
|
-
"name": "
|
648
|
-
"type": "
|
2054
|
+
"internalType": "contract TokenHandler",
|
2055
|
+
"name": "tokenHandler",
|
2056
|
+
"type": "address"
|
2057
|
+
},
|
2058
|
+
{
|
2059
|
+
"internalType": "bool",
|
2060
|
+
"name": "isInterceptingBundleTransfers",
|
2061
|
+
"type": "bool"
|
2062
|
+
},
|
2063
|
+
{
|
2064
|
+
"internalType": "bool",
|
2065
|
+
"name": "isExternallyManaged",
|
2066
|
+
"type": "bool"
|
649
2067
|
},
|
650
2068
|
{
|
651
2069
|
"internalType": "bool",
|
652
|
-
"name": "
|
2070
|
+
"name": "isVerifyingApplications",
|
653
2071
|
"type": "bool"
|
2072
|
+
},
|
2073
|
+
{
|
2074
|
+
"internalType": "UFixed",
|
2075
|
+
"name": "collateralizationLevel",
|
2076
|
+
"type": "uint256"
|
2077
|
+
},
|
2078
|
+
{
|
2079
|
+
"internalType": "UFixed",
|
2080
|
+
"name": "retentionLevel",
|
2081
|
+
"type": "uint256"
|
2082
|
+
},
|
2083
|
+
{
|
2084
|
+
"components": [
|
2085
|
+
{
|
2086
|
+
"internalType": "UFixed",
|
2087
|
+
"name": "fractionalFee",
|
2088
|
+
"type": "uint256"
|
2089
|
+
},
|
2090
|
+
{
|
2091
|
+
"internalType": "uint256",
|
2092
|
+
"name": "fixedFee",
|
2093
|
+
"type": "uint256"
|
2094
|
+
}
|
2095
|
+
],
|
2096
|
+
"internalType": "struct Fee",
|
2097
|
+
"name": "poolFee",
|
2098
|
+
"type": "tuple"
|
2099
|
+
},
|
2100
|
+
{
|
2101
|
+
"components": [
|
2102
|
+
{
|
2103
|
+
"internalType": "UFixed",
|
2104
|
+
"name": "fractionalFee",
|
2105
|
+
"type": "uint256"
|
2106
|
+
},
|
2107
|
+
{
|
2108
|
+
"internalType": "uint256",
|
2109
|
+
"name": "fixedFee",
|
2110
|
+
"type": "uint256"
|
2111
|
+
}
|
2112
|
+
],
|
2113
|
+
"internalType": "struct Fee",
|
2114
|
+
"name": "stakingFee",
|
2115
|
+
"type": "tuple"
|
2116
|
+
},
|
2117
|
+
{
|
2118
|
+
"components": [
|
2119
|
+
{
|
2120
|
+
"internalType": "UFixed",
|
2121
|
+
"name": "fractionalFee",
|
2122
|
+
"type": "uint256"
|
2123
|
+
},
|
2124
|
+
{
|
2125
|
+
"internalType": "uint256",
|
2126
|
+
"name": "fixedFee",
|
2127
|
+
"type": "uint256"
|
2128
|
+
}
|
2129
|
+
],
|
2130
|
+
"internalType": "struct Fee",
|
2131
|
+
"name": "performanceFee",
|
2132
|
+
"type": "tuple"
|
2133
|
+
},
|
2134
|
+
{
|
2135
|
+
"internalType": "address",
|
2136
|
+
"name": "wallet",
|
2137
|
+
"type": "address"
|
654
2138
|
}
|
655
2139
|
],
|
656
|
-
"internalType": "struct
|
657
|
-
"name": "
|
2140
|
+
"internalType": "struct ISetup.PoolSetupInfo",
|
2141
|
+
"name": "setup",
|
658
2142
|
"type": "tuple"
|
659
|
-
}
|
660
|
-
],
|
661
|
-
"stateMutability": "view",
|
662
|
-
"type": "function"
|
663
|
-
},
|
664
|
-
{
|
665
|
-
"inputs": [
|
666
|
-
{
|
667
|
-
"internalType": "bytes32",
|
668
|
-
"name": "role",
|
669
|
-
"type": "bytes32"
|
670
2143
|
},
|
671
2144
|
{
|
672
|
-
"internalType": "
|
673
|
-
"name": "
|
674
|
-
"type": "
|
675
|
-
}
|
676
|
-
],
|
677
|
-
"name": "getRoleMember",
|
678
|
-
"outputs": [
|
679
|
-
{
|
680
|
-
"internalType": "address",
|
681
|
-
"name": "roleMembers",
|
682
|
-
"type": "address"
|
683
|
-
}
|
684
|
-
],
|
685
|
-
"stateMutability": "view",
|
686
|
-
"type": "function"
|
687
|
-
},
|
688
|
-
{
|
689
|
-
"inputs": [
|
690
|
-
{
|
691
|
-
"internalType": "bytes32",
|
692
|
-
"name": "role",
|
693
|
-
"type": "bytes32"
|
694
|
-
}
|
695
|
-
],
|
696
|
-
"name": "getRoleMemberCount",
|
697
|
-
"outputs": [
|
698
|
-
{
|
699
|
-
"internalType": "uint256",
|
700
|
-
"name": "roleMembers",
|
701
|
-
"type": "uint256"
|
702
|
-
}
|
703
|
-
],
|
704
|
-
"stateMutability": "view",
|
705
|
-
"type": "function"
|
706
|
-
},
|
707
|
-
{
|
708
|
-
"inputs": [],
|
709
|
-
"name": "getType",
|
710
|
-
"outputs": [
|
711
|
-
{
|
712
|
-
"internalType": "uint256",
|
713
|
-
"name": "objectType",
|
714
|
-
"type": "uint256"
|
2145
|
+
"internalType": "StateId",
|
2146
|
+
"name": "newState",
|
2147
|
+
"type": "uint8"
|
715
2148
|
}
|
716
2149
|
],
|
717
|
-
"
|
2150
|
+
"name": "updatePoolSetup",
|
2151
|
+
"outputs": [],
|
2152
|
+
"stateMutability": "nonpayable",
|
718
2153
|
"type": "function"
|
719
2154
|
},
|
720
2155
|
{
|
721
2156
|
"inputs": [
|
722
2157
|
{
|
723
|
-
"internalType": "
|
724
|
-
"name": "
|
725
|
-
"type": "
|
2158
|
+
"internalType": "NftId",
|
2159
|
+
"name": "poolNftId",
|
2160
|
+
"type": "uint96"
|
726
2161
|
},
|
727
2162
|
{
|
728
|
-
"internalType": "
|
729
|
-
"name": "
|
730
|
-
"type": "
|
2163
|
+
"internalType": "StateId",
|
2164
|
+
"name": "newState",
|
2165
|
+
"type": "uint8"
|
731
2166
|
}
|
732
2167
|
],
|
733
|
-
"name": "
|
2168
|
+
"name": "updatePoolSetupState",
|
734
2169
|
"outputs": [],
|
735
2170
|
"stateMutability": "nonpayable",
|
736
2171
|
"type": "function"
|
@@ -738,148 +2173,305 @@
|
|
738
2173
|
{
|
739
2174
|
"inputs": [
|
740
2175
|
{
|
741
|
-
"internalType": "
|
742
|
-
"name": "
|
743
|
-
"type": "
|
2176
|
+
"internalType": "NftId",
|
2177
|
+
"name": "productNftId",
|
2178
|
+
"type": "uint96"
|
744
2179
|
},
|
745
2180
|
{
|
746
|
-
"
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
2181
|
+
"components": [
|
2182
|
+
{
|
2183
|
+
"internalType": "contract IERC20Metadata",
|
2184
|
+
"name": "token",
|
2185
|
+
"type": "address"
|
2186
|
+
},
|
2187
|
+
{
|
2188
|
+
"internalType": "contract TokenHandler",
|
2189
|
+
"name": "tokenHandler",
|
2190
|
+
"type": "address"
|
2191
|
+
},
|
2192
|
+
{
|
2193
|
+
"internalType": "NftId",
|
2194
|
+
"name": "distributionNftId",
|
2195
|
+
"type": "uint96"
|
2196
|
+
},
|
2197
|
+
{
|
2198
|
+
"internalType": "NftId",
|
2199
|
+
"name": "poolNftId",
|
2200
|
+
"type": "uint96"
|
2201
|
+
},
|
2202
|
+
{
|
2203
|
+
"components": [
|
2204
|
+
{
|
2205
|
+
"internalType": "UFixed",
|
2206
|
+
"name": "fractionalFee",
|
2207
|
+
"type": "uint256"
|
2208
|
+
},
|
2209
|
+
{
|
2210
|
+
"internalType": "uint256",
|
2211
|
+
"name": "fixedFee",
|
2212
|
+
"type": "uint256"
|
2213
|
+
}
|
2214
|
+
],
|
2215
|
+
"internalType": "struct Fee",
|
2216
|
+
"name": "distributionFee",
|
2217
|
+
"type": "tuple"
|
2218
|
+
},
|
2219
|
+
{
|
2220
|
+
"components": [
|
2221
|
+
{
|
2222
|
+
"internalType": "UFixed",
|
2223
|
+
"name": "fractionalFee",
|
2224
|
+
"type": "uint256"
|
2225
|
+
},
|
2226
|
+
{
|
2227
|
+
"internalType": "uint256",
|
2228
|
+
"name": "fixedFee",
|
2229
|
+
"type": "uint256"
|
2230
|
+
}
|
2231
|
+
],
|
2232
|
+
"internalType": "struct Fee",
|
2233
|
+
"name": "productFee",
|
2234
|
+
"type": "tuple"
|
2235
|
+
},
|
2236
|
+
{
|
2237
|
+
"components": [
|
2238
|
+
{
|
2239
|
+
"internalType": "UFixed",
|
2240
|
+
"name": "fractionalFee",
|
2241
|
+
"type": "uint256"
|
2242
|
+
},
|
2243
|
+
{
|
2244
|
+
"internalType": "uint256",
|
2245
|
+
"name": "fixedFee",
|
2246
|
+
"type": "uint256"
|
2247
|
+
}
|
2248
|
+
],
|
2249
|
+
"internalType": "struct Fee",
|
2250
|
+
"name": "processingFee",
|
2251
|
+
"type": "tuple"
|
2252
|
+
},
|
2253
|
+
{
|
2254
|
+
"components": [
|
2255
|
+
{
|
2256
|
+
"internalType": "UFixed",
|
2257
|
+
"name": "fractionalFee",
|
2258
|
+
"type": "uint256"
|
2259
|
+
},
|
2260
|
+
{
|
2261
|
+
"internalType": "uint256",
|
2262
|
+
"name": "fixedFee",
|
2263
|
+
"type": "uint256"
|
2264
|
+
}
|
2265
|
+
],
|
2266
|
+
"internalType": "struct Fee",
|
2267
|
+
"name": "poolFee",
|
2268
|
+
"type": "tuple"
|
2269
|
+
},
|
2270
|
+
{
|
2271
|
+
"components": [
|
2272
|
+
{
|
2273
|
+
"internalType": "UFixed",
|
2274
|
+
"name": "fractionalFee",
|
2275
|
+
"type": "uint256"
|
2276
|
+
},
|
2277
|
+
{
|
2278
|
+
"internalType": "uint256",
|
2279
|
+
"name": "fixedFee",
|
2280
|
+
"type": "uint256"
|
2281
|
+
}
|
2282
|
+
],
|
2283
|
+
"internalType": "struct Fee",
|
2284
|
+
"name": "stakingFee",
|
2285
|
+
"type": "tuple"
|
2286
|
+
},
|
2287
|
+
{
|
2288
|
+
"components": [
|
2289
|
+
{
|
2290
|
+
"internalType": "UFixed",
|
2291
|
+
"name": "fractionalFee",
|
2292
|
+
"type": "uint256"
|
2293
|
+
},
|
2294
|
+
{
|
2295
|
+
"internalType": "uint256",
|
2296
|
+
"name": "fixedFee",
|
2297
|
+
"type": "uint256"
|
2298
|
+
}
|
2299
|
+
],
|
2300
|
+
"internalType": "struct Fee",
|
2301
|
+
"name": "performanceFee",
|
2302
|
+
"type": "tuple"
|
2303
|
+
},
|
2304
|
+
{
|
2305
|
+
"internalType": "bool",
|
2306
|
+
"name": "isIntercepting",
|
2307
|
+
"type": "bool"
|
2308
|
+
},
|
2309
|
+
{
|
2310
|
+
"internalType": "address",
|
2311
|
+
"name": "wallet",
|
2312
|
+
"type": "address"
|
2313
|
+
}
|
2314
|
+
],
|
2315
|
+
"internalType": "struct ISetup.ProductSetupInfo",
|
2316
|
+
"name": "setup",
|
2317
|
+
"type": "tuple"
|
2318
|
+
},
|
779
2319
|
{
|
780
|
-
"internalType": "
|
781
|
-
"name": "",
|
782
|
-
"type": "
|
2320
|
+
"internalType": "StateId",
|
2321
|
+
"name": "newState",
|
2322
|
+
"type": "uint8"
|
783
2323
|
}
|
784
2324
|
],
|
785
|
-
"
|
2325
|
+
"name": "updateProductSetup",
|
2326
|
+
"outputs": [],
|
2327
|
+
"stateMutability": "nonpayable",
|
786
2328
|
"type": "function"
|
787
2329
|
},
|
788
2330
|
{
|
789
|
-
"inputs": [
|
790
|
-
"name": "register",
|
791
|
-
"outputs": [
|
2331
|
+
"inputs": [
|
792
2332
|
{
|
793
2333
|
"internalType": "NftId",
|
794
|
-
"name": "
|
2334
|
+
"name": "productNftId",
|
795
2335
|
"type": "uint96"
|
2336
|
+
},
|
2337
|
+
{
|
2338
|
+
"internalType": "StateId",
|
2339
|
+
"name": "newState",
|
2340
|
+
"type": "uint8"
|
796
2341
|
}
|
797
2342
|
],
|
2343
|
+
"name": "updateProductSetupState",
|
2344
|
+
"outputs": [],
|
798
2345
|
"stateMutability": "nonpayable",
|
799
2346
|
"type": "function"
|
800
2347
|
},
|
801
2348
|
{
|
802
2349
|
"inputs": [
|
803
2350
|
{
|
804
|
-
"internalType": "
|
805
|
-
"name": "
|
806
|
-
"type": "
|
807
|
-
}
|
808
|
-
],
|
809
|
-
"name": "registerComponent",
|
810
|
-
"outputs": [
|
2351
|
+
"internalType": "Key32",
|
2352
|
+
"name": "referralKey",
|
2353
|
+
"type": "bytes32"
|
2354
|
+
},
|
811
2355
|
{
|
812
|
-
"
|
813
|
-
|
814
|
-
|
2356
|
+
"components": [
|
2357
|
+
{
|
2358
|
+
"internalType": "NftId",
|
2359
|
+
"name": "distributorNftId",
|
2360
|
+
"type": "uint96"
|
2361
|
+
},
|
2362
|
+
{
|
2363
|
+
"internalType": "string",
|
2364
|
+
"name": "referralCode",
|
2365
|
+
"type": "string"
|
2366
|
+
},
|
2367
|
+
{
|
2368
|
+
"internalType": "UFixed",
|
2369
|
+
"name": "discountPercentage",
|
2370
|
+
"type": "uint256"
|
2371
|
+
},
|
2372
|
+
{
|
2373
|
+
"internalType": "uint32",
|
2374
|
+
"name": "maxReferrals",
|
2375
|
+
"type": "uint32"
|
2376
|
+
},
|
2377
|
+
{
|
2378
|
+
"internalType": "uint32",
|
2379
|
+
"name": "usedReferrals",
|
2380
|
+
"type": "uint32"
|
2381
|
+
},
|
2382
|
+
{
|
2383
|
+
"internalType": "Timestamp",
|
2384
|
+
"name": "expiryAt",
|
2385
|
+
"type": "uint40"
|
2386
|
+
},
|
2387
|
+
{
|
2388
|
+
"internalType": "bytes",
|
2389
|
+
"name": "data",
|
2390
|
+
"type": "bytes"
|
2391
|
+
}
|
2392
|
+
],
|
2393
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
2394
|
+
"name": "referralInfo",
|
2395
|
+
"type": "tuple"
|
2396
|
+
},
|
2397
|
+
{
|
2398
|
+
"internalType": "StateId",
|
2399
|
+
"name": "newState",
|
2400
|
+
"type": "uint8"
|
815
2401
|
}
|
816
2402
|
],
|
2403
|
+
"name": "updateReferral",
|
2404
|
+
"outputs": [],
|
817
2405
|
"stateMutability": "nonpayable",
|
818
2406
|
"type": "function"
|
819
2407
|
},
|
820
2408
|
{
|
821
2409
|
"inputs": [
|
822
2410
|
{
|
823
|
-
"internalType": "
|
824
|
-
"name": "
|
2411
|
+
"internalType": "Key32",
|
2412
|
+
"name": "referralKey",
|
825
2413
|
"type": "bytes32"
|
826
2414
|
},
|
827
2415
|
{
|
828
|
-
"internalType": "
|
829
|
-
"name": "
|
830
|
-
"type": "
|
2416
|
+
"internalType": "StateId",
|
2417
|
+
"name": "newState",
|
2418
|
+
"type": "uint8"
|
831
2419
|
}
|
832
2420
|
],
|
833
|
-
"name": "
|
2421
|
+
"name": "updateReferralState",
|
834
2422
|
"outputs": [],
|
835
2423
|
"stateMutability": "nonpayable",
|
836
2424
|
"type": "function"
|
837
2425
|
},
|
838
2426
|
{
|
839
2427
|
"inputs": [
|
2428
|
+
{
|
2429
|
+
"internalType": "RiskId",
|
2430
|
+
"name": "riskId",
|
2431
|
+
"type": "bytes8"
|
2432
|
+
},
|
840
2433
|
{
|
841
2434
|
"components": [
|
842
2435
|
{
|
843
2436
|
"internalType": "NftId",
|
844
|
-
"name": "
|
2437
|
+
"name": "productNftId",
|
845
2438
|
"type": "uint96"
|
846
2439
|
},
|
847
2440
|
{
|
848
|
-
"internalType": "
|
849
|
-
"name": "
|
850
|
-
"type": "
|
2441
|
+
"internalType": "bytes",
|
2442
|
+
"name": "data",
|
2443
|
+
"type": "bytes"
|
851
2444
|
}
|
852
2445
|
],
|
853
|
-
"internalType": "struct
|
854
|
-
"name": "
|
2446
|
+
"internalType": "struct IRisk.RiskInfo",
|
2447
|
+
"name": "risk",
|
855
2448
|
"type": "tuple"
|
856
|
-
}
|
857
|
-
],
|
858
|
-
"name": "setComponentInfo",
|
859
|
-
"outputs": [
|
2449
|
+
},
|
860
2450
|
{
|
861
|
-
"internalType": "
|
862
|
-
"name": "
|
863
|
-
"type": "
|
2451
|
+
"internalType": "StateId",
|
2452
|
+
"name": "newState",
|
2453
|
+
"type": "uint8"
|
864
2454
|
}
|
865
2455
|
],
|
2456
|
+
"name": "updateRisk",
|
2457
|
+
"outputs": [],
|
866
2458
|
"stateMutability": "nonpayable",
|
867
2459
|
"type": "function"
|
868
2460
|
},
|
869
2461
|
{
|
870
2462
|
"inputs": [
|
871
2463
|
{
|
872
|
-
"internalType": "
|
873
|
-
"name": "
|
874
|
-
"type": "
|
2464
|
+
"internalType": "RiskId",
|
2465
|
+
"name": "riskId",
|
2466
|
+
"type": "bytes8"
|
875
2467
|
},
|
876
2468
|
{
|
877
|
-
"internalType": "
|
878
|
-
"name": "
|
879
|
-
"type": "
|
2469
|
+
"internalType": "StateId",
|
2470
|
+
"name": "newState",
|
2471
|
+
"type": "uint8"
|
880
2472
|
}
|
881
2473
|
],
|
882
|
-
"name": "
|
2474
|
+
"name": "updateRiskState",
|
883
2475
|
"outputs": [],
|
884
2476
|
"stateMutability": "nonpayable",
|
885
2477
|
"type": "function"
|