@etherisc/gif-next 0.0.2-f18fb8b-243 → 0.0.2-f1b01e0-214
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -8
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +496 -255
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +277 -20
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +395 -203
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +143 -19
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +19 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +68 -5
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +180 -476
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +265 -31
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +119 -380
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +473 -287
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +151 -109
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +123 -194
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +318 -90
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1445 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2002 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1388 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2389 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +242 -45
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +147 -96
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +263 -130
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +738 -328
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +209 -94
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1080 -357
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +175 -281
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +96 -96
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +863 -726
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +46 -5
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +133 -350
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +247 -33
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +117 -136
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +69 -11
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +109 -318
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +153 -190
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +122 -88
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +175 -421
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +265 -31
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +337 -210
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +143 -97
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +212 -35
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +139 -212
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +460 -308
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +129 -392
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +673 -552
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +163 -97
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +194 -178
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +100 -90
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +276 -435
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +265 -31
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +415 -234
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +140 -114
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +136 -9
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +308 -16
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +365 -104
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +157 -83
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +260 -229
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/product/{IProductService.sol/IProductService.json → IRiskService.sol/IRiskService.json} +88 -8
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +459 -309
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +141 -99
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +232 -333
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +109 -131
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +268 -427
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +370 -22
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +72 -152
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +597 -80
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +645 -373
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +109 -292
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +94 -80
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +47 -6
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +66 -8
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -4
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +67 -277
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +608 -539
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +142 -110
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +57 -111
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +597 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +80 -100
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +568 -252
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +106 -136
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +36 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +36 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +16 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +15 -47
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +148 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +55 -2
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +98 -318
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +42 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/{NftIdSetManager.sol/NftIdSetManager.json → NftIdSet.sol/NftIdSet.json} +4 -4
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +22 -57
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +19 -141
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +122 -97
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +57 -111
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +585 -12
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +196 -143
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +152 -20
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +274 -391
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +46 -5
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +126 -95
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +35 -67
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +205 -168
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +103 -85
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +198 -138
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +82 -36
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +63 -10
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +28 -4
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +98 -37
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +19 -19
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +125 -7
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +79 -15
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +50 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +15 -2
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +23 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +109 -35
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +120 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +3 -3
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/accounting/AccountingService.sol +262 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +338 -225
- package/contracts/authorization/AccessAdminLib.sol +183 -0
- package/contracts/authorization/AccessManagerCloneable.sol +146 -4
- package/contracts/authorization/Authorization.sol +350 -203
- package/contracts/authorization/IAccess.sol +13 -4
- package/contracts/authorization/IAccessAdmin.sol +69 -35
- package/contracts/authorization/IAuthorization.sol +33 -7
- package/contracts/authorization/IServiceAuthorization.sol +3 -1
- package/contracts/authorization/ServiceAuthorization.sol +26 -10
- package/contracts/distribution/BasicDistribution.sol +20 -28
- package/contracts/distribution/BasicDistributionAuthorization.sol +26 -9
- package/contracts/distribution/Distribution.sol +41 -80
- package/contracts/distribution/DistributionService.sol +206 -123
- package/contracts/distribution/DistributionServiceManager.sol +8 -11
- package/contracts/distribution/IDistributionComponent.sol +9 -14
- package/contracts/distribution/IDistributionService.sol +40 -22
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +86 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +433 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +68 -48
- package/contracts/instance/IInstanceService.sol +30 -34
- package/contracts/instance/Instance.sol +121 -71
- package/contracts/instance/InstanceAdmin.sol +289 -105
- package/contracts/instance/InstanceAuthorizationV3.sol +99 -66
- package/contracts/instance/InstanceReader.sol +288 -43
- package/contracts/instance/InstanceService.sol +209 -193
- package/contracts/instance/InstanceServiceManager.sol +8 -13
- package/contracts/instance/InstanceStore.sol +24 -2
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/ObjectCounter.sol +1 -2
- package/contracts/instance/base/ObjectLifecycle.sol +11 -4
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +30 -20
- package/contracts/instance/module/IDistribution.sol +21 -9
- package/contracts/instance/module/IPolicy.sol +50 -29
- package/contracts/instance/module/IRisk.sol +5 -0
- package/contracts/mock/Dip.sol +1 -1
- package/contracts/oracle/BasicOracle.sol +1 -4
- package/contracts/oracle/BasicOracleAuthorization.sol +3 -12
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/IOracleComponent.sol +2 -1
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +21 -24
- package/contracts/oracle/OracleService.sol +113 -81
- package/contracts/oracle/OracleServiceManager.sol +8 -11
- package/contracts/pool/BasicPool.sol +37 -28
- package/contracts/pool/BasicPoolAuthorization.sol +36 -9
- package/contracts/pool/BundleService.sol +204 -105
- package/contracts/pool/BundleServiceManager.sol +8 -11
- package/contracts/pool/IBundleService.sol +31 -22
- package/contracts/pool/IPoolComponent.sol +20 -10
- package/contracts/pool/IPoolService.sol +90 -75
- package/contracts/pool/Pool.sol +145 -113
- package/contracts/pool/PoolLib.sol +216 -0
- package/contracts/pool/PoolService.sol +544 -241
- package/contracts/pool/PoolServiceManager.sol +6 -9
- package/contracts/product/ApplicationService.sol +98 -78
- package/contracts/product/ApplicationServiceManager.sol +6 -6
- package/contracts/product/BasicProduct.sol +12 -45
- package/contracts/product/BasicProductAuthorization.sol +25 -9
- package/contracts/product/ClaimService.sol +365 -175
- package/contracts/product/ClaimServiceManager.sol +6 -6
- package/contracts/product/IApplicationService.sol +9 -2
- package/contracts/product/IClaimService.sol +44 -8
- package/contracts/product/IPolicyService.sol +53 -36
- package/contracts/product/IPricingService.sol +11 -10
- package/contracts/product/IProductComponent.sol +28 -5
- package/contracts/product/{IProductService.sol → IRiskService.sol} +8 -8
- package/contracts/product/PolicyService.sol +458 -269
- package/contracts/product/PolicyServiceLib.sol +65 -0
- package/contracts/product/PolicyServiceManager.sol +6 -9
- package/contracts/product/PricingService.sol +69 -60
- package/contracts/product/PricingServiceManager.sol +6 -9
- package/contracts/product/Product.sol +168 -93
- package/contracts/product/RiskService.sol +154 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +72 -40
- package/contracts/registry/IRegistry.sol +78 -29
- package/contracts/registry/IRegistryService.sol +3 -10
- package/contracts/registry/IRelease.sol +26 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +368 -216
- package/contracts/registry/RegistryAdmin.sol +166 -273
- package/contracts/registry/RegistryAuthorization.sol +267 -0
- package/contracts/registry/RegistryService.sol +41 -66
- package/contracts/registry/RegistryServiceManager.sol +5 -5
- package/contracts/registry/ReleaseAdmin.sol +253 -0
- package/contracts/registry/ReleaseLifecycle.sol +8 -3
- package/contracts/registry/ReleaseRegistry.sol +517 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +183 -52
- package/contracts/registry/TokenRegistry.sol +8 -10
- package/contracts/shared/Component.sol +65 -136
- package/contracts/shared/ComponentService.sol +463 -336
- package/contracts/shared/ComponentServiceManager.sol +10 -7
- package/contracts/shared/ComponentVerifyingService.sol +28 -17
- package/contracts/shared/ContractLib.sol +281 -0
- package/contracts/shared/IComponent.sol +5 -17
- package/contracts/shared/IComponentService.sol +51 -41
- package/contracts/shared/IInstanceLinkedComponent.sol +7 -27
- package/contracts/shared/ILifecycle.sol +3 -1
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IPolicyHolder.sol +12 -22
- package/contracts/shared/IRegisterable.sol +23 -1
- package/contracts/shared/IService.sol +4 -6
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +11 -3
- package/contracts/shared/InstanceLinkedComponent.sol +81 -37
- package/contracts/shared/KeyValueStore.sol +1 -1
- package/contracts/shared/Lifecycle.sol +15 -4
- package/contracts/shared/{NftIdSetManager.sol → NftIdSet.sol} +1 -1
- package/contracts/shared/NftOwnable.sol +31 -11
- package/contracts/shared/PolicyHolder.sol +17 -57
- package/contracts/shared/Registerable.sol +52 -21
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +18 -36
- package/contracts/shared/TokenHandler.sol +310 -26
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +20 -13
- package/contracts/staking/IStakingService.sol +28 -9
- package/contracts/staking/Staking.sol +118 -85
- package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +95 -45
- package/contracts/staking/StakingManager.sol +10 -12
- package/contracts/staking/StakingReader.sol +26 -33
- package/contracts/staking/StakingService.sol +90 -37
- package/contracts/staking/StakingServiceManager.sol +8 -7
- package/contracts/staking/StakingStore.sol +14 -23
- package/contracts/staking/TargetManagerLib.sol +7 -3
- package/contracts/type/Amount.sol +27 -5
- package/contracts/type/Blocknumber.sol +7 -1
- package/contracts/type/ClaimId.sol +6 -1
- package/contracts/type/Fee.sol +8 -8
- package/contracts/type/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/type/NftId.sol +7 -0
- package/contracts/type/ObjectType.sol +60 -41
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/Referral.sol +1 -0
- package/contracts/type/RiskId.sol +38 -6
- package/contracts/type/RoleId.sol +23 -15
- package/contracts/type/Seconds.sol +21 -1
- package/contracts/type/Selector.sol +5 -0
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/Timestamp.sol +10 -5
- package/contracts/type/UFixed.sol +56 -126
- package/contracts/type/Version.sol +57 -6
- package/contracts/{shared → upgradeability}/ProxyManager.sol +71 -38
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +2 -2
- package/package.json +5 -4
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +0 -4
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +0 -290
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +0 -4
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +0 -390
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -703
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +0 -181
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -708
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -702
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -1159
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -617
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -460
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -10
- package/contracts/authorization/IModuleAuthorization.sol +0 -21
- package/contracts/authorization/ModuleAuthorization.sol +0 -78
- package/contracts/instance/BundleManager.sol +0 -126
- package/contracts/instance/base/ObjectManager.sol +0 -79
- package/contracts/instance/module/IAccess.sol +0 -46
- package/contracts/product/ProductService.sol +0 -124
- package/contracts/product/ProductServiceManager.sol +0 -42
- package/contracts/registry/ReleaseManager.sol +0 -487
- package/contracts/shared/InitializableCustom.sol +0 -177
- /package/contracts/{shared → upgradeability}/IVersionable.sol +0 -0
| @@ -41,6 +41,17 @@ | |
| 41 41 | 
             
                  "name": "AccessManagedUnauthorized",
         | 
| 42 42 | 
             
                  "type": "error"
         | 
| 43 43 | 
             
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "address",
         | 
| 48 | 
            +
                      "name": "authority",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorAuthorityInvalid",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 44 55 | 
             
                {
         | 
| 45 56 | 
             
                  "inputs": [
         | 
| 46 57 | 
             
                    {
         | 
| @@ -68,6 +79,22 @@ | |
| 68 79 | 
             
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 69 80 | 
             
                  "type": "error"
         | 
| 70 81 | 
             
                },
         | 
| 82 | 
            +
                {
         | 
| 83 | 
            +
                  "inputs": [
         | 
| 84 | 
            +
                    {
         | 
| 85 | 
            +
                      "internalType": "NftId",
         | 
| 86 | 
            +
                      "name": "nftId",
         | 
| 87 | 
            +
                      "type": "uint96"
         | 
| 88 | 
            +
                    },
         | 
| 89 | 
            +
                    {
         | 
| 90 | 
            +
                      "internalType": "ObjectType",
         | 
| 91 | 
            +
                      "name": "expectedObjectType",
         | 
| 92 | 
            +
                      "type": "uint8"
         | 
| 93 | 
            +
                    }
         | 
| 94 | 
            +
                  ],
         | 
| 95 | 
            +
                  "name": "ErrorNftOwnableInvalidType",
         | 
| 96 | 
            +
                  "type": "error"
         | 
| 97 | 
            +
                },
         | 
| 71 98 | 
             
                {
         | 
| 72 99 | 
             
                  "inputs": [
         | 
| 73 100 | 
             
                    {
         | 
| @@ -101,6 +128,38 @@ | |
| 101 128 | 
             
                  "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
         | 
| 102 129 | 
             
                  "type": "error"
         | 
| 103 130 | 
             
                },
         | 
| 131 | 
            +
                {
         | 
| 132 | 
            +
                  "inputs": [
         | 
| 133 | 
            +
                    {
         | 
| 134 | 
            +
                      "internalType": "NftId",
         | 
| 135 | 
            +
                      "name": "bundleNftId",
         | 
| 136 | 
            +
                      "type": "uint96"
         | 
| 137 | 
            +
                    },
         | 
| 138 | 
            +
                    {
         | 
| 139 | 
            +
                      "internalType": "NftId",
         | 
| 140 | 
            +
                      "name": "poolNftId",
         | 
| 141 | 
            +
                      "type": "uint96"
         | 
| 142 | 
            +
                    }
         | 
| 143 | 
            +
                  ],
         | 
| 144 | 
            +
                  "name": "ErrorPoolServiceBundlePoolMismatch",
         | 
| 145 | 
            +
                  "type": "error"
         | 
| 146 | 
            +
                },
         | 
| 147 | 
            +
                {
         | 
| 148 | 
            +
                  "inputs": [
         | 
| 149 | 
            +
                    {
         | 
| 150 | 
            +
                      "internalType": "Amount",
         | 
| 151 | 
            +
                      "name": "amount",
         | 
| 152 | 
            +
                      "type": "uint96"
         | 
| 153 | 
            +
                    },
         | 
| 154 | 
            +
                    {
         | 
| 155 | 
            +
                      "internalType": "Amount",
         | 
| 156 | 
            +
                      "name": "limit",
         | 
| 157 | 
            +
                      "type": "uint96"
         | 
| 158 | 
            +
                    }
         | 
| 159 | 
            +
                  ],
         | 
| 160 | 
            +
                  "name": "ErrorPoolServiceFeesWithdrawAmountExceedsLimit",
         | 
| 161 | 
            +
                  "type": "error"
         | 
| 162 | 
            +
                },
         | 
| 104 163 | 
             
                {
         | 
| 105 164 | 
             
                  "inputs": [
         | 
| 106 165 | 
             
                    {
         | 
| @@ -117,9 +176,67 @@ | |
| 117 176 | 
             
                  "name": "ErrorPoolServiceInvalidTransferAmount",
         | 
| 118 177 | 
             
                  "type": "error"
         | 
| 119 178 | 
             
                },
         | 
| 179 | 
            +
                {
         | 
| 180 | 
            +
                  "inputs": [
         | 
| 181 | 
            +
                    {
         | 
| 182 | 
            +
                      "internalType": "NftId",
         | 
| 183 | 
            +
                      "name": "poolNftId",
         | 
| 184 | 
            +
                      "type": "uint96"
         | 
| 185 | 
            +
                    },
         | 
| 186 | 
            +
                    {
         | 
| 187 | 
            +
                      "internalType": "Amount",
         | 
| 188 | 
            +
                      "name": "maxBalanceAmount",
         | 
| 189 | 
            +
                      "type": "uint96"
         | 
| 190 | 
            +
                    },
         | 
| 191 | 
            +
                    {
         | 
| 192 | 
            +
                      "internalType": "Amount",
         | 
| 193 | 
            +
                      "name": "currentBalanceAmount",
         | 
| 194 | 
            +
                      "type": "uint96"
         | 
| 195 | 
            +
                    },
         | 
| 196 | 
            +
                    {
         | 
| 197 | 
            +
                      "internalType": "Amount",
         | 
| 198 | 
            +
                      "name": "transferAmount",
         | 
| 199 | 
            +
                      "type": "uint96"
         | 
| 200 | 
            +
                    }
         | 
| 201 | 
            +
                  ],
         | 
| 202 | 
            +
                  "name": "ErrorPoolServiceMaxBalanceAmountExceeded",
         | 
| 203 | 
            +
                  "type": "error"
         | 
| 204 | 
            +
                },
         | 
| 205 | 
            +
                {
         | 
| 206 | 
            +
                  "inputs": [
         | 
| 207 | 
            +
                    {
         | 
| 208 | 
            +
                      "internalType": "NftId",
         | 
| 209 | 
            +
                      "name": "policyNftId",
         | 
| 210 | 
            +
                      "type": "uint96"
         | 
| 211 | 
            +
                    },
         | 
| 212 | 
            +
                    {
         | 
| 213 | 
            +
                      "internalType": "NftId",
         | 
| 214 | 
            +
                      "name": "productNftId",
         | 
| 215 | 
            +
                      "type": "uint96"
         | 
| 216 | 
            +
                    },
         | 
| 217 | 
            +
                    {
         | 
| 218 | 
            +
                      "internalType": "NftId",
         | 
| 219 | 
            +
                      "name": "expectedProductNftId",
         | 
| 220 | 
            +
                      "type": "uint96"
         | 
| 221 | 
            +
                    }
         | 
| 222 | 
            +
                  ],
         | 
| 223 | 
            +
                  "name": "ErrorPoolServicePolicyPoolMismatch",
         | 
| 224 | 
            +
                  "type": "error"
         | 
| 225 | 
            +
                },
         | 
| 226 | 
            +
                {
         | 
| 227 | 
            +
                  "inputs": [
         | 
| 228 | 
            +
                    {
         | 
| 229 | 
            +
                      "internalType": "NftId",
         | 
| 230 | 
            +
                      "name": "poolNftId",
         | 
| 231 | 
            +
                      "type": "uint96"
         | 
| 232 | 
            +
                    }
         | 
| 233 | 
            +
                  ],
         | 
| 234 | 
            +
                  "name": "ErrorPoolServicePoolNotExternallyManaged",
         | 
| 235 | 
            +
                  "type": "error"
         | 
| 236 | 
            +
                },
         | 
| 120 237 | 
             
                {
         | 
| 121 238 | 
             
                  "inputs": [],
         | 
| 122 | 
            -
                  "name": " | 
| 239 | 
            +
                  "name": "ErrorRegisterableNotActive",
         | 
| 123 240 | 
             
                  "type": "error"
         | 
| 124 241 | 
             
                },
         | 
| 125 242 | 
             
                {
         | 
| @@ -188,6 +305,12 @@ | |
| 188 305 | 
             
                {
         | 
| 189 306 | 
             
                  "anonymous": false,
         | 
| 190 307 | 
             
                  "inputs": [
         | 
| 308 | 
            +
                    {
         | 
| 309 | 
            +
                      "indexed": false,
         | 
| 310 | 
            +
                      "internalType": "NftId",
         | 
| 311 | 
            +
                      "name": "instanceNftId",
         | 
| 312 | 
            +
                      "type": "uint96"
         | 
| 313 | 
            +
                    },
         | 
| 191 314 | 
             
                    {
         | 
| 192 315 | 
             
                      "indexed": false,
         | 
| 193 316 | 
             
                      "internalType": "NftId",
         | 
| @@ -196,117 +319,204 @@ | |
| 196 319 | 
             
                    },
         | 
| 197 320 | 
             
                    {
         | 
| 198 321 | 
             
                      "indexed": false,
         | 
| 199 | 
            -
                      "internalType": " | 
| 200 | 
            -
                      "name": " | 
| 201 | 
            -
                      "type": " | 
| 322 | 
            +
                      "internalType": "NftId",
         | 
| 323 | 
            +
                      "name": "bundleNftId",
         | 
| 324 | 
            +
                      "type": "uint96"
         | 
| 325 | 
            +
                    },
         | 
| 326 | 
            +
                    {
         | 
| 327 | 
            +
                      "indexed": false,
         | 
| 328 | 
            +
                      "internalType": "Amount",
         | 
| 329 | 
            +
                      "name": "amount",
         | 
| 330 | 
            +
                      "type": "uint96"
         | 
| 331 | 
            +
                    },
         | 
| 332 | 
            +
                    {
         | 
| 333 | 
            +
                      "indexed": false,
         | 
| 334 | 
            +
                      "internalType": "Amount",
         | 
| 335 | 
            +
                      "name": "netAmount",
         | 
| 336 | 
            +
                      "type": "uint96"
         | 
| 202 337 | 
             
                    }
         | 
| 203 338 | 
             
                  ],
         | 
| 204 | 
            -
                  "name": " | 
| 339 | 
            +
                  "name": "LogPoolServiceBundleStaked",
         | 
| 205 340 | 
             
                  "type": "event"
         | 
| 206 341 | 
             
                },
         | 
| 207 342 | 
             
                {
         | 
| 208 343 | 
             
                  "anonymous": false,
         | 
| 209 344 | 
             
                  "inputs": [
         | 
| 345 | 
            +
                    {
         | 
| 346 | 
            +
                      "indexed": false,
         | 
| 347 | 
            +
                      "internalType": "NftId",
         | 
| 348 | 
            +
                      "name": "instanceNftId",
         | 
| 349 | 
            +
                      "type": "uint96"
         | 
| 350 | 
            +
                    },
         | 
| 210 351 | 
             
                    {
         | 
| 211 352 | 
             
                      "indexed": false,
         | 
| 212 353 | 
             
                      "internalType": "NftId",
         | 
| 213 354 | 
             
                      "name": "poolNftId",
         | 
| 214 355 | 
             
                      "type": "uint96"
         | 
| 215 356 | 
             
                    },
         | 
| 357 | 
            +
                    {
         | 
| 358 | 
            +
                      "indexed": false,
         | 
| 359 | 
            +
                      "internalType": "NftId",
         | 
| 360 | 
            +
                      "name": "bundleNftId",
         | 
| 361 | 
            +
                      "type": "uint96"
         | 
| 362 | 
            +
                    },
         | 
| 216 363 | 
             
                    {
         | 
| 217 364 | 
             
                      "indexed": false,
         | 
| 218 365 | 
             
                      "internalType": "Amount",
         | 
| 219 | 
            -
                      "name": " | 
| 366 | 
            +
                      "name": "amount",
         | 
| 220 367 | 
             
                      "type": "uint96"
         | 
| 221 368 | 
             
                    },
         | 
| 222 369 | 
             
                    {
         | 
| 223 370 | 
             
                      "indexed": false,
         | 
| 224 371 | 
             
                      "internalType": "Amount",
         | 
| 225 | 
            -
                      "name": " | 
| 372 | 
            +
                      "name": "netAmount",
         | 
| 226 373 | 
             
                      "type": "uint96"
         | 
| 227 374 | 
             
                    }
         | 
| 228 375 | 
             
                  ],
         | 
| 229 | 
            -
                  "name": " | 
| 376 | 
            +
                  "name": "LogPoolServiceBundleUnstaked",
         | 
| 230 377 | 
             
                  "type": "event"
         | 
| 231 378 | 
             
                },
         | 
| 232 379 | 
             
                {
         | 
| 233 | 
            -
                  " | 
| 234 | 
            -
                  " | 
| 235 | 
            -
             | 
| 380 | 
            +
                  "anonymous": false,
         | 
| 381 | 
            +
                  "inputs": [
         | 
| 382 | 
            +
                    {
         | 
| 383 | 
            +
                      "indexed": false,
         | 
| 384 | 
            +
                      "internalType": "NftId",
         | 
| 385 | 
            +
                      "name": "bundleNftId",
         | 
| 386 | 
            +
                      "type": "uint96"
         | 
| 387 | 
            +
                    },
         | 
| 236 388 | 
             
                    {
         | 
| 389 | 
            +
                      "indexed": false,
         | 
| 237 390 | 
             
                      "internalType": "address",
         | 
| 238 | 
            -
                      "name": "",
         | 
| 391 | 
            +
                      "name": "recipient",
         | 
| 392 | 
            +
                      "type": "address"
         | 
| 393 | 
            +
                    },
         | 
| 394 | 
            +
                    {
         | 
| 395 | 
            +
                      "indexed": false,
         | 
| 396 | 
            +
                      "internalType": "address",
         | 
| 397 | 
            +
                      "name": "tokenAddress",
         | 
| 239 398 | 
             
                      "type": "address"
         | 
| 399 | 
            +
                    },
         | 
| 400 | 
            +
                    {
         | 
| 401 | 
            +
                      "indexed": false,
         | 
| 402 | 
            +
                      "internalType": "Amount",
         | 
| 403 | 
            +
                      "name": "amount",
         | 
| 404 | 
            +
                      "type": "uint96"
         | 
| 240 405 | 
             
                    }
         | 
| 241 406 | 
             
                  ],
         | 
| 242 | 
            -
                  " | 
| 243 | 
            -
                  "type": " | 
| 407 | 
            +
                  "name": "LogPoolServiceFeesWithdrawn",
         | 
| 408 | 
            +
                  "type": "event"
         | 
| 244 409 | 
             
                },
         | 
| 245 410 | 
             
                {
         | 
| 411 | 
            +
                  "anonymous": false,
         | 
| 246 412 | 
             
                  "inputs": [
         | 
| 247 413 | 
             
                    {
         | 
| 248 | 
            -
                      " | 
| 249 | 
            -
                      " | 
| 250 | 
            -
                      " | 
| 414 | 
            +
                      "indexed": false,
         | 
| 415 | 
            +
                      "internalType": "NftId",
         | 
| 416 | 
            +
                      "name": "poolNftId",
         | 
| 417 | 
            +
                      "type": "uint96"
         | 
| 251 418 | 
             
                    },
         | 
| 252 419 | 
             
                    {
         | 
| 253 | 
            -
                      " | 
| 254 | 
            -
                      " | 
| 255 | 
            -
                      " | 
| 420 | 
            +
                      "indexed": false,
         | 
| 421 | 
            +
                      "internalType": "Amount",
         | 
| 422 | 
            +
                      "name": "previousMaxCapitalAmount",
         | 
| 423 | 
            +
                      "type": "uint96"
         | 
| 256 424 | 
             
                    },
         | 
| 257 425 | 
             
                    {
         | 
| 426 | 
            +
                      "indexed": false,
         | 
| 258 427 | 
             
                      "internalType": "Amount",
         | 
| 259 | 
            -
                      "name": " | 
| 428 | 
            +
                      "name": "currentMaxCapitalAmount",
         | 
| 260 429 | 
             
                      "type": "uint96"
         | 
| 261 430 | 
             
                    }
         | 
| 262 431 | 
             
                  ],
         | 
| 263 | 
            -
                  "name": " | 
| 264 | 
            -
                  " | 
| 432 | 
            +
                  "name": "LogPoolServiceMaxBalanceAmountUpdated",
         | 
| 433 | 
            +
                  "type": "event"
         | 
| 434 | 
            +
                },
         | 
| 435 | 
            +
                {
         | 
| 436 | 
            +
                  "anonymous": false,
         | 
| 437 | 
            +
                  "inputs": [
         | 
| 265 438 | 
             
                    {
         | 
| 266 | 
            -
                      " | 
| 267 | 
            -
                      " | 
| 439 | 
            +
                      "indexed": false,
         | 
| 440 | 
            +
                      "internalType": "NftId",
         | 
| 441 | 
            +
                      "name": "policyNftId",
         | 
| 268 442 | 
             
                      "type": "uint96"
         | 
| 269 443 | 
             
                    },
         | 
| 270 444 | 
             
                    {
         | 
| 445 | 
            +
                      "indexed": false,
         | 
| 446 | 
            +
                      "internalType": "ClaimId",
         | 
| 447 | 
            +
                      "name": "claimId",
         | 
| 448 | 
            +
                      "type": "uint16"
         | 
| 449 | 
            +
                    },
         | 
| 450 | 
            +
                    {
         | 
| 451 | 
            +
                      "indexed": false,
         | 
| 271 452 | 
             
                      "internalType": "Amount",
         | 
| 272 | 
            -
                      "name": " | 
| 453 | 
            +
                      "name": "availableAmount",
         | 
| 273 454 | 
             
                      "type": "uint96"
         | 
| 274 455 | 
             
                    }
         | 
| 275 456 | 
             
                  ],
         | 
| 276 | 
            -
                  " | 
| 277 | 
            -
                  "type": " | 
| 457 | 
            +
                  "name": "LogPoolServiceProcessFundedClaim",
         | 
| 458 | 
            +
                  "type": "event"
         | 
| 278 459 | 
             
                },
         | 
| 279 460 | 
             
                {
         | 
| 461 | 
            +
                  "anonymous": false,
         | 
| 280 462 | 
             
                  "inputs": [
         | 
| 281 463 | 
             
                    {
         | 
| 282 | 
            -
                      " | 
| 283 | 
            -
                      "name": "instanceReader",
         | 
| 284 | 
            -
                      "type": "address"
         | 
| 285 | 
            -
                    },
         | 
| 286 | 
            -
                    {
         | 
| 464 | 
            +
                      "indexed": false,
         | 
| 287 465 | 
             
                      "internalType": "NftId",
         | 
| 288 | 
            -
                      "name": " | 
| 466 | 
            +
                      "name": "poolNftId",
         | 
| 289 467 | 
             
                      "type": "uint96"
         | 
| 290 468 | 
             
                    },
         | 
| 291 469 | 
             
                    {
         | 
| 470 | 
            +
                      "indexed": false,
         | 
| 471 | 
            +
                      "internalType": "address",
         | 
| 472 | 
            +
                      "name": "poolOwner",
         | 
| 473 | 
            +
                      "type": "address"
         | 
| 474 | 
            +
                    },
         | 
| 475 | 
            +
                    {
         | 
| 476 | 
            +
                      "indexed": false,
         | 
| 292 477 | 
             
                      "internalType": "Amount",
         | 
| 293 | 
            -
                      "name": " | 
| 478 | 
            +
                      "name": "amount",
         | 
| 294 479 | 
             
                      "type": "uint96"
         | 
| 295 480 | 
             
                    }
         | 
| 296 481 | 
             
                  ],
         | 
| 297 | 
            -
                  "name": " | 
| 298 | 
            -
                  " | 
| 482 | 
            +
                  "name": "LogPoolServiceWalletDefunded",
         | 
| 483 | 
            +
                  "type": "event"
         | 
| 484 | 
            +
                },
         | 
| 485 | 
            +
                {
         | 
| 486 | 
            +
                  "anonymous": false,
         | 
| 487 | 
            +
                  "inputs": [
         | 
| 299 488 | 
             
                    {
         | 
| 300 | 
            -
                      " | 
| 301 | 
            -
                      " | 
| 489 | 
            +
                      "indexed": false,
         | 
| 490 | 
            +
                      "internalType": "NftId",
         | 
| 491 | 
            +
                      "name": "poolNftId",
         | 
| 302 492 | 
             
                      "type": "uint96"
         | 
| 303 493 | 
             
                    },
         | 
| 304 494 | 
             
                    {
         | 
| 495 | 
            +
                      "indexed": false,
         | 
| 496 | 
            +
                      "internalType": "address",
         | 
| 497 | 
            +
                      "name": "poolOwner",
         | 
| 498 | 
            +
                      "type": "address"
         | 
| 499 | 
            +
                    },
         | 
| 500 | 
            +
                    {
         | 
| 501 | 
            +
                      "indexed": false,
         | 
| 305 502 | 
             
                      "internalType": "Amount",
         | 
| 306 | 
            -
                      "name": " | 
| 503 | 
            +
                      "name": "amount",
         | 
| 307 504 | 
             
                      "type": "uint96"
         | 
| 308 505 | 
             
                    }
         | 
| 309 506 | 
             
                  ],
         | 
| 507 | 
            +
                  "name": "LogPoolServiceWalletFunded",
         | 
| 508 | 
            +
                  "type": "event"
         | 
| 509 | 
            +
                },
         | 
| 510 | 
            +
                {
         | 
| 511 | 
            +
                  "inputs": [],
         | 
| 512 | 
            +
                  "name": "authority",
         | 
| 513 | 
            +
                  "outputs": [
         | 
| 514 | 
            +
                    {
         | 
| 515 | 
            +
                      "internalType": "address",
         | 
| 516 | 
            +
                      "name": "",
         | 
| 517 | 
            +
                      "type": "address"
         | 
| 518 | 
            +
                    }
         | 
| 519 | 
            +
                  ],
         | 
| 310 520 | 
             
                  "stateMutability": "view",
         | 
| 311 521 | 
             
                  "type": "function"
         | 
| 312 522 | 
             
                },
         | 
| @@ -325,52 +535,27 @@ | |
| 325 535 | 
             
                },
         | 
| 326 536 | 
             
                {
         | 
| 327 537 | 
             
                  "inputs": [
         | 
| 328 | 
            -
                    {
         | 
| 329 | 
            -
                      "internalType": "address",
         | 
| 330 | 
            -
                      "name": "owner",
         | 
| 331 | 
            -
                      "type": "address"
         | 
| 332 | 
            -
                    },
         | 
| 333 | 
            -
                    {
         | 
| 334 | 
            -
                      "components": [
         | 
| 335 | 
            -
                        {
         | 
| 336 | 
            -
                          "internalType": "UFixed",
         | 
| 337 | 
            -
                          "name": "fractionalFee",
         | 
| 338 | 
            -
                          "type": "uint256"
         | 
| 339 | 
            -
                        },
         | 
| 340 | 
            -
                        {
         | 
| 341 | 
            -
                          "internalType": "uint256",
         | 
| 342 | 
            -
                          "name": "fixedFee",
         | 
| 343 | 
            -
                          "type": "uint256"
         | 
| 344 | 
            -
                        }
         | 
| 345 | 
            -
                      ],
         | 
| 346 | 
            -
                      "internalType": "struct Fee",
         | 
| 347 | 
            -
                      "name": "fee",
         | 
| 348 | 
            -
                      "type": "tuple"
         | 
| 349 | 
            -
                    },
         | 
| 350 538 | 
             
                    {
         | 
| 351 539 | 
             
                      "internalType": "Amount",
         | 
| 352 | 
            -
                      "name": " | 
| 540 | 
            +
                      "name": "amount",
         | 
| 353 541 | 
             
                      "type": "uint96"
         | 
| 354 | 
            -
                    },
         | 
| 355 | 
            -
                    {
         | 
| 356 | 
            -
                      "internalType": "Seconds",
         | 
| 357 | 
            -
                      "name": "lifetime",
         | 
| 358 | 
            -
                      "type": "uint40"
         | 
| 359 | 
            -
                    },
         | 
| 360 | 
            -
                    {
         | 
| 361 | 
            -
                      "internalType": "bytes",
         | 
| 362 | 
            -
                      "name": "filter",
         | 
| 363 | 
            -
                      "type": "bytes"
         | 
| 364 542 | 
             
                    }
         | 
| 365 543 | 
             
                  ],
         | 
| 366 | 
            -
                  "name": " | 
| 367 | 
            -
                  "outputs": [
         | 
| 544 | 
            +
                  "name": "defundPoolWallet",
         | 
| 545 | 
            +
                  "outputs": [],
         | 
| 546 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 547 | 
            +
                  "type": "function"
         | 
| 548 | 
            +
                },
         | 
| 549 | 
            +
                {
         | 
| 550 | 
            +
                  "inputs": [
         | 
| 368 551 | 
             
                    {
         | 
| 369 | 
            -
                      "internalType": " | 
| 370 | 
            -
                      "name": " | 
| 552 | 
            +
                      "internalType": "Amount",
         | 
| 553 | 
            +
                      "name": "amount",
         | 
| 371 554 | 
             
                      "type": "uint96"
         | 
| 372 555 | 
             
                    }
         | 
| 373 556 | 
             
                  ],
         | 
| 557 | 
            +
                  "name": "fundPoolWallet",
         | 
| 558 | 
            +
                  "outputs": [],
         | 
| 374 559 | 
             
                  "stateMutability": "nonpayable",
         | 
| 375 560 | 
             
                  "type": "function"
         | 
| 376 561 | 
             
                },
         | 
| @@ -476,6 +661,19 @@ | |
| 476 661 | 
             
                  "stateMutability": "view",
         | 
| 477 662 | 
             
                  "type": "function"
         | 
| 478 663 | 
             
                },
         | 
| 664 | 
            +
                {
         | 
| 665 | 
            +
                  "inputs": [],
         | 
| 666 | 
            +
                  "name": "getRelease",
         | 
| 667 | 
            +
                  "outputs": [
         | 
| 668 | 
            +
                    {
         | 
| 669 | 
            +
                      "internalType": "VersionPart",
         | 
| 670 | 
            +
                      "name": "release",
         | 
| 671 | 
            +
                      "type": "uint8"
         | 
| 672 | 
            +
                    }
         | 
| 673 | 
            +
                  ],
         | 
| 674 | 
            +
                  "stateMutability": "view",
         | 
| 675 | 
            +
                  "type": "function"
         | 
| 676 | 
            +
                },
         | 
| 479 677 | 
             
                {
         | 
| 480 678 | 
             
                  "inputs": [],
         | 
| 481 679 | 
             
                  "name": "getRoleId",
         | 
| @@ -486,7 +684,7 @@ | |
| 486 684 | 
             
                      "type": "uint64"
         | 
| 487 685 | 
             
                    }
         | 
| 488 686 | 
             
                  ],
         | 
| 489 | 
            -
                  "stateMutability": " | 
| 687 | 
            +
                  "stateMutability": "view",
         | 
| 490 688 | 
             
                  "type": "function"
         | 
| 491 689 | 
             
                },
         | 
| 492 690 | 
             
                {
         | 
| @@ -520,6 +718,19 @@ | |
| 520 718 | 
             
                  "stateMutability": "nonpayable",
         | 
| 521 719 | 
             
                  "type": "function"
         | 
| 522 720 | 
             
                },
         | 
| 721 | 
            +
                {
         | 
| 722 | 
            +
                  "inputs": [],
         | 
| 723 | 
            +
                  "name": "isActive",
         | 
| 724 | 
            +
                  "outputs": [
         | 
| 725 | 
            +
                    {
         | 
| 726 | 
            +
                      "internalType": "bool",
         | 
| 727 | 
            +
                      "name": "active",
         | 
| 728 | 
            +
                      "type": "bool"
         | 
| 729 | 
            +
                    }
         | 
| 730 | 
            +
                  ],
         | 
| 731 | 
            +
                  "stateMutability": "view",
         | 
| 732 | 
            +
                  "type": "function"
         | 
| 733 | 
            +
                },
         | 
| 523 734 | 
             
                {
         | 
| 524 735 | 
             
                  "inputs": [],
         | 
| 525 736 | 
             
                  "name": "isConsumingScheduledOp",
         | 
| @@ -595,6 +806,77 @@ | |
| 595 806 | 
             
                  "stateMutability": "nonpayable",
         | 
| 596 807 | 
             
                  "type": "function"
         | 
| 597 808 | 
             
                },
         | 
| 809 | 
            +
                {
         | 
| 810 | 
            +
                  "inputs": [
         | 
| 811 | 
            +
                    {
         | 
| 812 | 
            +
                      "internalType": "NftId",
         | 
| 813 | 
            +
                      "name": "policyNftId",
         | 
| 814 | 
            +
                      "type": "uint96"
         | 
| 815 | 
            +
                    },
         | 
| 816 | 
            +
                    {
         | 
| 817 | 
            +
                      "internalType": "ClaimId",
         | 
| 818 | 
            +
                      "name": "claimId",
         | 
| 819 | 
            +
                      "type": "uint16"
         | 
| 820 | 
            +
                    },
         | 
| 821 | 
            +
                    {
         | 
| 822 | 
            +
                      "internalType": "Amount",
         | 
| 823 | 
            +
                      "name": "availableAmount",
         | 
| 824 | 
            +
                      "type": "uint96"
         | 
| 825 | 
            +
                    }
         | 
| 826 | 
            +
                  ],
         | 
| 827 | 
            +
                  "name": "processFundedClaim",
         | 
| 828 | 
            +
                  "outputs": [],
         | 
| 829 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 830 | 
            +
                  "type": "function"
         | 
| 831 | 
            +
                },
         | 
| 832 | 
            +
                {
         | 
| 833 | 
            +
                  "inputs": [
         | 
| 834 | 
            +
                    {
         | 
| 835 | 
            +
                      "internalType": "contract InstanceReader",
         | 
| 836 | 
            +
                      "name": "instanceReader",
         | 
| 837 | 
            +
                      "type": "address"
         | 
| 838 | 
            +
                    },
         | 
| 839 | 
            +
                    {
         | 
| 840 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 841 | 
            +
                      "name": "instanceStore",
         | 
| 842 | 
            +
                      "type": "address"
         | 
| 843 | 
            +
                    },
         | 
| 844 | 
            +
                    {
         | 
| 845 | 
            +
                      "internalType": "NftId",
         | 
| 846 | 
            +
                      "name": "productNftId",
         | 
| 847 | 
            +
                      "type": "uint96"
         | 
| 848 | 
            +
                    },
         | 
| 849 | 
            +
                    {
         | 
| 850 | 
            +
                      "internalType": "NftId",
         | 
| 851 | 
            +
                      "name": "policyNftId",
         | 
| 852 | 
            +
                      "type": "uint96"
         | 
| 853 | 
            +
                    },
         | 
| 854 | 
            +
                    {
         | 
| 855 | 
            +
                      "internalType": "NftId",
         | 
| 856 | 
            +
                      "name": "bundleNftId",
         | 
| 857 | 
            +
                      "type": "uint96"
         | 
| 858 | 
            +
                    },
         | 
| 859 | 
            +
                    {
         | 
| 860 | 
            +
                      "internalType": "PayoutId",
         | 
| 861 | 
            +
                      "name": "payoutId",
         | 
| 862 | 
            +
                      "type": "uint40"
         | 
| 863 | 
            +
                    },
         | 
| 864 | 
            +
                    {
         | 
| 865 | 
            +
                      "internalType": "Amount",
         | 
| 866 | 
            +
                      "name": "payoutAmount",
         | 
| 867 | 
            +
                      "type": "uint96"
         | 
| 868 | 
            +
                    },
         | 
| 869 | 
            +
                    {
         | 
| 870 | 
            +
                      "internalType": "address",
         | 
| 871 | 
            +
                      "name": "payoutBeneficiary",
         | 
| 872 | 
            +
                      "type": "address"
         | 
| 873 | 
            +
                    }
         | 
| 874 | 
            +
                  ],
         | 
| 875 | 
            +
                  "name": "processPayout",
         | 
| 876 | 
            +
                  "outputs": [],
         | 
| 877 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 878 | 
            +
                  "type": "function"
         | 
| 879 | 
            +
                },
         | 
| 598 880 | 
             
                {
         | 
| 599 881 | 
             
                  "inputs": [
         | 
| 600 882 | 
             
                    {
         | 
| @@ -620,82 +902,82 @@ | |
| 620 902 | 
             
                          "type": "uint96"
         | 
| 621 903 | 
             
                        },
         | 
| 622 904 | 
             
                        {
         | 
| 623 | 
            -
                          "internalType": " | 
| 905 | 
            +
                          "internalType": "Amount",
         | 
| 624 906 | 
             
                          "name": "netPremiumAmount",
         | 
| 625 | 
            -
                          "type": " | 
| 907 | 
            +
                          "type": "uint96"
         | 
| 626 908 | 
             
                        },
         | 
| 627 909 | 
             
                        {
         | 
| 628 | 
            -
                          "internalType": " | 
| 910 | 
            +
                          "internalType": "Amount",
         | 
| 629 911 | 
             
                          "name": "fullPremiumAmount",
         | 
| 630 | 
            -
                          "type": " | 
| 912 | 
            +
                          "type": "uint96"
         | 
| 631 913 | 
             
                        },
         | 
| 632 914 | 
             
                        {
         | 
| 633 | 
            -
                          "internalType": " | 
| 915 | 
            +
                          "internalType": "Amount",
         | 
| 634 916 | 
             
                          "name": "premiumAmount",
         | 
| 635 | 
            -
                          "type": " | 
| 917 | 
            +
                          "type": "uint96"
         | 
| 636 918 | 
             
                        },
         | 
| 637 919 | 
             
                        {
         | 
| 638 | 
            -
                          "internalType": " | 
| 920 | 
            +
                          "internalType": "Amount",
         | 
| 639 921 | 
             
                          "name": "productFeeFixAmount",
         | 
| 640 | 
            -
                          "type": " | 
| 922 | 
            +
                          "type": "uint96"
         | 
| 641 923 | 
             
                        },
         | 
| 642 924 | 
             
                        {
         | 
| 643 | 
            -
                          "internalType": " | 
| 925 | 
            +
                          "internalType": "Amount",
         | 
| 644 926 | 
             
                          "name": "poolFeeFixAmount",
         | 
| 645 | 
            -
                          "type": " | 
| 927 | 
            +
                          "type": "uint96"
         | 
| 646 928 | 
             
                        },
         | 
| 647 929 | 
             
                        {
         | 
| 648 | 
            -
                          "internalType": " | 
| 930 | 
            +
                          "internalType": "Amount",
         | 
| 649 931 | 
             
                          "name": "bundleFeeFixAmount",
         | 
| 650 | 
            -
                          "type": " | 
| 932 | 
            +
                          "type": "uint96"
         | 
| 651 933 | 
             
                        },
         | 
| 652 934 | 
             
                        {
         | 
| 653 | 
            -
                          "internalType": " | 
| 935 | 
            +
                          "internalType": "Amount",
         | 
| 654 936 | 
             
                          "name": "distributionFeeFixAmount",
         | 
| 655 | 
            -
                          "type": " | 
| 937 | 
            +
                          "type": "uint96"
         | 
| 656 938 | 
             
                        },
         | 
| 657 939 | 
             
                        {
         | 
| 658 | 
            -
                          "internalType": " | 
| 940 | 
            +
                          "internalType": "Amount",
         | 
| 659 941 | 
             
                          "name": "productFeeVarAmount",
         | 
| 660 | 
            -
                          "type": " | 
| 942 | 
            +
                          "type": "uint96"
         | 
| 661 943 | 
             
                        },
         | 
| 662 944 | 
             
                        {
         | 
| 663 | 
            -
                          "internalType": " | 
| 945 | 
            +
                          "internalType": "Amount",
         | 
| 664 946 | 
             
                          "name": "poolFeeVarAmount",
         | 
| 665 | 
            -
                          "type": " | 
| 947 | 
            +
                          "type": "uint96"
         | 
| 666 948 | 
             
                        },
         | 
| 667 949 | 
             
                        {
         | 
| 668 | 
            -
                          "internalType": " | 
| 950 | 
            +
                          "internalType": "Amount",
         | 
| 669 951 | 
             
                          "name": "bundleFeeVarAmount",
         | 
| 670 | 
            -
                          "type": " | 
| 952 | 
            +
                          "type": "uint96"
         | 
| 671 953 | 
             
                        },
         | 
| 672 954 | 
             
                        {
         | 
| 673 | 
            -
                          "internalType": " | 
| 955 | 
            +
                          "internalType": "Amount",
         | 
| 674 956 | 
             
                          "name": "distributionFeeVarAmount",
         | 
| 675 | 
            -
                          "type": " | 
| 957 | 
            +
                          "type": "uint96"
         | 
| 676 958 | 
             
                        },
         | 
| 677 959 | 
             
                        {
         | 
| 678 | 
            -
                          "internalType": " | 
| 960 | 
            +
                          "internalType": "Amount",
         | 
| 679 961 | 
             
                          "name": "distributionOwnerFeeFixAmount",
         | 
| 680 | 
            -
                          "type": " | 
| 962 | 
            +
                          "type": "uint96"
         | 
| 681 963 | 
             
                        },
         | 
| 682 964 | 
             
                        {
         | 
| 683 | 
            -
                          "internalType": " | 
| 965 | 
            +
                          "internalType": "Amount",
         | 
| 684 966 | 
             
                          "name": "distributionOwnerFeeVarAmount",
         | 
| 685 | 
            -
                          "type": " | 
| 967 | 
            +
                          "type": "uint96"
         | 
| 686 968 | 
             
                        },
         | 
| 687 969 | 
             
                        {
         | 
| 688 | 
            -
                          "internalType": " | 
| 970 | 
            +
                          "internalType": "Amount",
         | 
| 689 971 | 
             
                          "name": "commissionAmount",
         | 
| 690 | 
            -
                          "type": " | 
| 972 | 
            +
                          "type": "uint96"
         | 
| 691 973 | 
             
                        },
         | 
| 692 974 | 
             
                        {
         | 
| 693 | 
            -
                          "internalType": " | 
| 975 | 
            +
                          "internalType": "Amount",
         | 
| 694 976 | 
             
                          "name": "discountAmount",
         | 
| 695 | 
            -
                          "type": " | 
| 977 | 
            +
                          "type": "uint96"
         | 
| 696 978 | 
             
                        }
         | 
| 697 979 | 
             
                      ],
         | 
| 698 | 
            -
                      "internalType": "struct IPolicy. | 
| 980 | 
            +
                      "internalType": "struct IPolicy.PremiumInfo",
         | 
| 699 981 | 
             
                      "name": "premium",
         | 
| 700 982 | 
             
                      "type": "tuple"
         | 
| 701 983 | 
             
                    }
         | 
| @@ -712,11 +994,6 @@ | |
| 712 994 | 
             
                      "name": "instance",
         | 
| 713 995 | 
             
                      "type": "address"
         | 
| 714 996 | 
             
                    },
         | 
| 715 | 
            -
                    {
         | 
| 716 | 
            -
                      "internalType": "address",
         | 
| 717 | 
            -
                      "name": "token",
         | 
| 718 | 
            -
                      "type": "address"
         | 
| 719 | 
            -
                    },
         | 
| 720 997 | 
             
                    {
         | 
| 721 998 | 
             
                      "internalType": "NftId",
         | 
| 722 999 | 
             
                      "name": "policyNftId",
         | 
| @@ -734,11 +1011,6 @@ | |
| 734 1011 | 
             
                          "name": "bundleNftId",
         | 
| 735 1012 | 
             
                          "type": "uint96"
         | 
| 736 1013 | 
             
                        },
         | 
| 737 | 
            -
                        {
         | 
| 738 | 
            -
                          "internalType": "ReferralId",
         | 
| 739 | 
            -
                          "name": "referralId",
         | 
| 740 | 
            -
                          "type": "bytes8"
         | 
| 741 | 
            -
                        },
         | 
| 742 1014 | 
             
                        {
         | 
| 743 1015 | 
             
                          "internalType": "RiskId",
         | 
| 744 1016 | 
             
                          "name": "riskId",
         | 
| @@ -755,24 +1027,9 @@ | |
| 755 1027 | 
             
                          "type": "uint96"
         | 
| 756 1028 | 
             
                        },
         | 
| 757 1029 | 
             
                        {
         | 
| 758 | 
            -
                          "internalType": " | 
| 759 | 
            -
                          "name": " | 
| 760 | 
            -
                          "type": " | 
| 761 | 
            -
                        },
         | 
| 762 | 
            -
                        {
         | 
| 763 | 
            -
                          "internalType": "Seconds",
         | 
| 764 | 
            -
                          "name": "lifetime",
         | 
| 765 | 
            -
                          "type": "uint40"
         | 
| 766 | 
            -
                        },
         | 
| 767 | 
            -
                        {
         | 
| 768 | 
            -
                          "internalType": "bytes",
         | 
| 769 | 
            -
                          "name": "applicationData",
         | 
| 770 | 
            -
                          "type": "bytes"
         | 
| 771 | 
            -
                        },
         | 
| 772 | 
            -
                        {
         | 
| 773 | 
            -
                          "internalType": "bytes",
         | 
| 774 | 
            -
                          "name": "processData",
         | 
| 775 | 
            -
                          "type": "bytes"
         | 
| 1030 | 
            +
                          "internalType": "ReferralId",
         | 
| 1031 | 
            +
                          "name": "referralId",
         | 
| 1032 | 
            +
                          "type": "bytes8"
         | 
| 776 1033 | 
             
                        },
         | 
| 777 1034 | 
             
                        {
         | 
| 778 1035 | 
             
                          "internalType": "uint16",
         | 
| @@ -800,88 +1057,18 @@ | |
| 800 1057 | 
             
                          "type": "uint40"
         | 
| 801 1058 | 
             
                        },
         | 
| 802 1059 | 
             
                        {
         | 
| 803 | 
            -
                          "internalType": " | 
| 804 | 
            -
                          "name": " | 
| 1060 | 
            +
                          "internalType": "Seconds",
         | 
| 1061 | 
            +
                          "name": "lifetime",
         | 
| 805 1062 | 
             
                          "type": "uint40"
         | 
| 806 1063 | 
             
                        },
         | 
| 807 1064 | 
             
                        {
         | 
| 808 1065 | 
             
                          "internalType": "Timestamp",
         | 
| 809 | 
            -
                          "name": " | 
| 1066 | 
            +
                          "name": "expiredAt",
         | 
| 810 1067 | 
             
                          "type": "uint40"
         | 
| 811 | 
            -
                        }
         | 
| 812 | 
            -
                      ],
         | 
| 813 | 
            -
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 814 | 
            -
                      "name": "policyInfo",
         | 
| 815 | 
            -
                      "type": "tuple"
         | 
| 816 | 
            -
                    },
         | 
| 817 | 
            -
                    {
         | 
| 818 | 
            -
                      "internalType": "Amount",
         | 
| 819 | 
            -
                      "name": "payoutAmount",
         | 
| 820 | 
            -
                      "type": "uint96"
         | 
| 821 | 
            -
                    }
         | 
| 822 | 
            -
                  ],
         | 
| 823 | 
            -
                  "name": "reduceCollateral",
         | 
| 824 | 
            -
                  "outputs": [],
         | 
| 825 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 826 | 
            -
                  "type": "function"
         | 
| 827 | 
            -
                },
         | 
| 828 | 
            -
                {
         | 
| 829 | 
            -
                  "inputs": [
         | 
| 830 | 
            -
                    {
         | 
| 831 | 
            -
                      "internalType": "contract IInstance",
         | 
| 832 | 
            -
                      "name": "instance",
         | 
| 833 | 
            -
                      "type": "address"
         | 
| 834 | 
            -
                    },
         | 
| 835 | 
            -
                    {
         | 
| 836 | 
            -
                      "internalType": "address",
         | 
| 837 | 
            -
                      "name": "token",
         | 
| 838 | 
            -
                      "type": "address"
         | 
| 839 | 
            -
                    },
         | 
| 840 | 
            -
                    {
         | 
| 841 | 
            -
                      "internalType": "NftId",
         | 
| 842 | 
            -
                      "name": "policyNftId",
         | 
| 843 | 
            -
                      "type": "uint96"
         | 
| 844 | 
            -
                    },
         | 
| 845 | 
            -
                    {
         | 
| 846 | 
            -
                      "components": [
         | 
| 847 | 
            -
                        {
         | 
| 848 | 
            -
                          "internalType": "NftId",
         | 
| 849 | 
            -
                          "name": "productNftId",
         | 
| 850 | 
            -
                          "type": "uint96"
         | 
| 851 | 
            -
                        },
         | 
| 852 | 
            -
                        {
         | 
| 853 | 
            -
                          "internalType": "NftId",
         | 
| 854 | 
            -
                          "name": "bundleNftId",
         | 
| 855 | 
            -
                          "type": "uint96"
         | 
| 856 | 
            -
                        },
         | 
| 857 | 
            -
                        {
         | 
| 858 | 
            -
                          "internalType": "ReferralId",
         | 
| 859 | 
            -
                          "name": "referralId",
         | 
| 860 | 
            -
                          "type": "bytes8"
         | 
| 861 | 
            -
                        },
         | 
| 862 | 
            -
                        {
         | 
| 863 | 
            -
                          "internalType": "RiskId",
         | 
| 864 | 
            -
                          "name": "riskId",
         | 
| 865 | 
            -
                          "type": "bytes8"
         | 
| 866 | 
            -
                        },
         | 
| 867 | 
            -
                        {
         | 
| 868 | 
            -
                          "internalType": "Amount",
         | 
| 869 | 
            -
                          "name": "sumInsuredAmount",
         | 
| 870 | 
            -
                          "type": "uint96"
         | 
| 871 | 
            -
                        },
         | 
| 872 | 
            -
                        {
         | 
| 873 | 
            -
                          "internalType": "Amount",
         | 
| 874 | 
            -
                          "name": "premiumAmount",
         | 
| 875 | 
            -
                          "type": "uint96"
         | 
| 876 | 
            -
                        },
         | 
| 877 | 
            -
                        {
         | 
| 878 | 
            -
                          "internalType": "Amount",
         | 
| 879 | 
            -
                          "name": "premiumPaidAmount",
         | 
| 880 | 
            -
                          "type": "uint96"
         | 
| 881 1068 | 
             
                        },
         | 
| 882 1069 | 
             
                        {
         | 
| 883 | 
            -
                          "internalType": " | 
| 884 | 
            -
                          "name": " | 
| 1070 | 
            +
                          "internalType": "Timestamp",
         | 
| 1071 | 
            +
                          "name": "closedAt",
         | 
| 885 1072 | 
             
                          "type": "uint40"
         | 
| 886 1073 | 
             
                        },
         | 
| 887 1074 | 
             
                        {
         | 
| @@ -893,41 +1080,6 @@ | |
| 893 1080 | 
             
                          "internalType": "bytes",
         | 
| 894 1081 | 
             
                          "name": "processData",
         | 
| 895 1082 | 
             
                          "type": "bytes"
         | 
| 896 | 
            -
                        },
         | 
| 897 | 
            -
                        {
         | 
| 898 | 
            -
                          "internalType": "uint16",
         | 
| 899 | 
            -
                          "name": "claimsCount",
         | 
| 900 | 
            -
                          "type": "uint16"
         | 
| 901 | 
            -
                        },
         | 
| 902 | 
            -
                        {
         | 
| 903 | 
            -
                          "internalType": "uint16",
         | 
| 904 | 
            -
                          "name": "openClaimsCount",
         | 
| 905 | 
            -
                          "type": "uint16"
         | 
| 906 | 
            -
                        },
         | 
| 907 | 
            -
                        {
         | 
| 908 | 
            -
                          "internalType": "Amount",
         | 
| 909 | 
            -
                          "name": "claimAmount",
         | 
| 910 | 
            -
                          "type": "uint96"
         | 
| 911 | 
            -
                        },
         | 
| 912 | 
            -
                        {
         | 
| 913 | 
            -
                          "internalType": "Amount",
         | 
| 914 | 
            -
                          "name": "payoutAmount",
         | 
| 915 | 
            -
                          "type": "uint96"
         | 
| 916 | 
            -
                        },
         | 
| 917 | 
            -
                        {
         | 
| 918 | 
            -
                          "internalType": "Timestamp",
         | 
| 919 | 
            -
                          "name": "activatedAt",
         | 
| 920 | 
            -
                          "type": "uint40"
         | 
| 921 | 
            -
                        },
         | 
| 922 | 
            -
                        {
         | 
| 923 | 
            -
                          "internalType": "Timestamp",
         | 
| 924 | 
            -
                          "name": "expiredAt",
         | 
| 925 | 
            -
                          "type": "uint40"
         | 
| 926 | 
            -
                        },
         | 
| 927 | 
            -
                        {
         | 
| 928 | 
            -
                          "internalType": "Timestamp",
         | 
| 929 | 
            -
                          "name": "closedAt",
         | 
| 930 | 
            -
                          "type": "uint40"
         | 
| 931 1083 | 
             
                        }
         | 
| 932 1084 | 
             
                      ],
         | 
| 933 1085 | 
             
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| @@ -956,12 +1108,12 @@ | |
| 956 1108 | 
             
                {
         | 
| 957 1109 | 
             
                  "inputs": [
         | 
| 958 1110 | 
             
                    {
         | 
| 959 | 
            -
                      "internalType": " | 
| 960 | 
            -
                      "name": " | 
| 961 | 
            -
                      "type": " | 
| 1111 | 
            +
                      "internalType": "Amount",
         | 
| 1112 | 
            +
                      "name": "maxBalanceAmount",
         | 
| 1113 | 
            +
                      "type": "uint96"
         | 
| 962 1114 | 
             
                    }
         | 
| 963 1115 | 
             
                  ],
         | 
| 964 | 
            -
                  "name": " | 
| 1116 | 
            +
                  "name": "setMaxBalanceAmount",
         | 
| 965 1117 | 
             
                  "outputs": [],
         | 
| 966 1118 | 
             
                  "stateMutability": "nonpayable",
         | 
| 967 1119 | 
             
                  "type": "function"
         | 
| @@ -969,72 +1121,24 @@ | |
| 969 1121 | 
             
                {
         | 
| 970 1122 | 
             
                  "inputs": [
         | 
| 971 1123 | 
             
                    {
         | 
| 972 | 
            -
                      " | 
| 973 | 
            -
             | 
| 974 | 
            -
             | 
| 975 | 
            -
                          "name": "fractionalFee",
         | 
| 976 | 
            -
                          "type": "uint256"
         | 
| 977 | 
            -
                        },
         | 
| 978 | 
            -
                        {
         | 
| 979 | 
            -
                          "internalType": "uint256",
         | 
| 980 | 
            -
                          "name": "fixedFee",
         | 
| 981 | 
            -
                          "type": "uint256"
         | 
| 982 | 
            -
                        }
         | 
| 983 | 
            -
                      ],
         | 
| 984 | 
            -
                      "internalType": "struct Fee",
         | 
| 985 | 
            -
                      "name": "poolFee",
         | 
| 986 | 
            -
                      "type": "tuple"
         | 
| 987 | 
            -
                    },
         | 
| 988 | 
            -
                    {
         | 
| 989 | 
            -
                      "components": [
         | 
| 990 | 
            -
                        {
         | 
| 991 | 
            -
                          "internalType": "UFixed",
         | 
| 992 | 
            -
                          "name": "fractionalFee",
         | 
| 993 | 
            -
                          "type": "uint256"
         | 
| 994 | 
            -
                        },
         | 
| 995 | 
            -
                        {
         | 
| 996 | 
            -
                          "internalType": "uint256",
         | 
| 997 | 
            -
                          "name": "fixedFee",
         | 
| 998 | 
            -
                          "type": "uint256"
         | 
| 999 | 
            -
                        }
         | 
| 1000 | 
            -
                      ],
         | 
| 1001 | 
            -
                      "internalType": "struct Fee",
         | 
| 1002 | 
            -
                      "name": "stakingFee",
         | 
| 1003 | 
            -
                      "type": "tuple"
         | 
| 1124 | 
            +
                      "internalType": "NftId",
         | 
| 1125 | 
            +
                      "name": "bundleNftId",
         | 
| 1126 | 
            +
                      "type": "uint96"
         | 
| 1004 1127 | 
             
                    },
         | 
| 1005 1128 | 
             
                    {
         | 
| 1006 | 
            -
                      " | 
| 1007 | 
            -
             | 
| 1008 | 
            -
             | 
| 1009 | 
            -
                          "name": "fractionalFee",
         | 
| 1010 | 
            -
                          "type": "uint256"
         | 
| 1011 | 
            -
                        },
         | 
| 1012 | 
            -
                        {
         | 
| 1013 | 
            -
                          "internalType": "uint256",
         | 
| 1014 | 
            -
                          "name": "fixedFee",
         | 
| 1015 | 
            -
                          "type": "uint256"
         | 
| 1016 | 
            -
                        }
         | 
| 1017 | 
            -
                      ],
         | 
| 1018 | 
            -
                      "internalType": "struct Fee",
         | 
| 1019 | 
            -
                      "name": "performanceFee",
         | 
| 1020 | 
            -
                      "type": "tuple"
         | 
| 1129 | 
            +
                      "internalType": "Amount",
         | 
| 1130 | 
            +
                      "name": "amount",
         | 
| 1131 | 
            +
                      "type": "uint96"
         | 
| 1021 1132 | 
             
                    }
         | 
| 1022 1133 | 
             
                  ],
         | 
| 1023 | 
            -
                  "name": " | 
| 1024 | 
            -
                  "outputs": [ | 
| 1025 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1026 | 
            -
                  "type": "function"
         | 
| 1027 | 
            -
                },
         | 
| 1028 | 
            -
                {
         | 
| 1029 | 
            -
                  "inputs": [
         | 
| 1134 | 
            +
                  "name": "stake",
         | 
| 1135 | 
            +
                  "outputs": [
         | 
| 1030 1136 | 
             
                    {
         | 
| 1031 1137 | 
             
                      "internalType": "Amount",
         | 
| 1032 | 
            -
                      "name": " | 
| 1138 | 
            +
                      "name": "netAmount",
         | 
| 1033 1139 | 
             
                      "type": "uint96"
         | 
| 1034 1140 | 
             
                    }
         | 
| 1035 1141 | 
             
                  ],
         | 
| 1036 | 
            -
                  "name": "setMaxCapitalAmount",
         | 
| 1037 | 
            -
                  "outputs": [],
         | 
| 1038 1142 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1039 1143 | 
             
                  "type": "function"
         | 
| 1040 1144 | 
             
                },
         | 
| @@ -1057,6 +1161,30 @@ | |
| 1057 1161 | 
             
                  "stateMutability": "view",
         | 
| 1058 1162 | 
             
                  "type": "function"
         | 
| 1059 1163 | 
             
                },
         | 
| 1164 | 
            +
                {
         | 
| 1165 | 
            +
                  "inputs": [
         | 
| 1166 | 
            +
                    {
         | 
| 1167 | 
            +
                      "internalType": "NftId",
         | 
| 1168 | 
            +
                      "name": "bundleNftId",
         | 
| 1169 | 
            +
                      "type": "uint96"
         | 
| 1170 | 
            +
                    },
         | 
| 1171 | 
            +
                    {
         | 
| 1172 | 
            +
                      "internalType": "Amount",
         | 
| 1173 | 
            +
                      "name": "amount",
         | 
| 1174 | 
            +
                      "type": "uint96"
         | 
| 1175 | 
            +
                    }
         | 
| 1176 | 
            +
                  ],
         | 
| 1177 | 
            +
                  "name": "unstake",
         | 
| 1178 | 
            +
                  "outputs": [
         | 
| 1179 | 
            +
                    {
         | 
| 1180 | 
            +
                      "internalType": "Amount",
         | 
| 1181 | 
            +
                      "name": "netAmount",
         | 
| 1182 | 
            +
                      "type": "uint96"
         | 
| 1183 | 
            +
                    }
         | 
| 1184 | 
            +
                  ],
         | 
| 1185 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1186 | 
            +
                  "type": "function"
         | 
| 1187 | 
            +
                },
         | 
| 1060 1188 | 
             
                {
         | 
| 1061 1189 | 
             
                  "inputs": [
         | 
| 1062 1190 | 
             
                    {
         | 
| @@ -1069,6 +1197,30 @@ | |
| 1069 1197 | 
             
                  "outputs": [],
         | 
| 1070 1198 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1071 1199 | 
             
                  "type": "function"
         | 
| 1200 | 
            +
                },
         | 
| 1201 | 
            +
                {
         | 
| 1202 | 
            +
                  "inputs": [
         | 
| 1203 | 
            +
                    {
         | 
| 1204 | 
            +
                      "internalType": "NftId",
         | 
| 1205 | 
            +
                      "name": "bundleNftId",
         | 
| 1206 | 
            +
                      "type": "uint96"
         | 
| 1207 | 
            +
                    },
         | 
| 1208 | 
            +
                    {
         | 
| 1209 | 
            +
                      "internalType": "Amount",
         | 
| 1210 | 
            +
                      "name": "amount",
         | 
| 1211 | 
            +
                      "type": "uint96"
         | 
| 1212 | 
            +
                    }
         | 
| 1213 | 
            +
                  ],
         | 
| 1214 | 
            +
                  "name": "withdrawBundleFees",
         | 
| 1215 | 
            +
                  "outputs": [
         | 
| 1216 | 
            +
                    {
         | 
| 1217 | 
            +
                      "internalType": "Amount",
         | 
| 1218 | 
            +
                      "name": "withdrawnAmount",
         | 
| 1219 | 
            +
                      "type": "uint96"
         | 
| 1220 | 
            +
                    }
         | 
| 1221 | 
            +
                  ],
         | 
| 1222 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1223 | 
            +
                  "type": "function"
         | 
| 1072 1224 | 
             
                }
         | 
| 1073 1225 | 
             
              ],
         | 
| 1074 1226 | 
             
              "bytecode": "0x",
         |