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