@etherisc/gif-next 0.0.2-f1e0c66-773 → 0.0.2-f1e6957-384
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 +137 -333
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +810 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +760 -278
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2008 -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 +485 -26
- 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 +588 -220
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +227 -20
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +275 -16
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +479 -17
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +183 -497
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +475 -41
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +102 -397
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +644 -392
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +227 -131
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +96 -201
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +476 -137
- 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 +1474 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2043 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +844 -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 +1429 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1161 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1637 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2575 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/IKeyValueStore.sol/IKeyValueStore.json → instance/BaseStore.sol/BaseStore.json} +55 -197
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/KeyValueStore.sol/KeyValueStore.json → instance/IBaseStore.sol/IBaseStore.json} +34 -227
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +587 -64
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +405 -60
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +625 -182
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1154 -380
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +363 -92
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1645 -849
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +419 -231
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +160 -102
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1300 -1842
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
- 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 +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
- 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 +127 -365
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +473 -42
- 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 +103 -143
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +98 -11
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +103 -333
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +198 -190
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +195 -95
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +160 -448
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +474 -40
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +502 -364
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +212 -112
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +340 -112
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +139 -246
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +711 -340
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +129 -426
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +925 -545
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +246 -102
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +353 -180
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +177 -97
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +266 -435
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +474 -40
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +466 -245
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +204 -120
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +301 -9
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +350 -18
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +405 -102
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +183 -80
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +257 -236
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{shared/ComponentVerifyingService.sol/ComponentVerifyingService.json → product/IRiskService.sol/IRiskService.json} +283 -157
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +511 -303
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +213 -105
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +247 -332
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +177 -129
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +258 -427
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +794 -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 +359 -48
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +169 -37
- 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 +565 -109
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +913 -404
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1137 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +136 -290
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +159 -87
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -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 +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +495 -253
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +511 -20
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +86 -287
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +493 -638
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +198 -128
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -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 +92 -103
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +432 -290
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +103 -143
- 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 +35 -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 +167 -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 +84 -2
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -22
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +102 -332
- 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 +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +41 -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 +141 -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 +86 -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 +1513 -204
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +235 -123
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1635 -465
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +211 -105
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +295 -183
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +282 -281
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +162 -94
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1645 -790
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +180 -77
- 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 +35 -11
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +64 -19
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- 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 +94 -38
- 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 +42 -157
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +93 -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/String.sol/StrLib.json +50 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +24 -5
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +73 -36
- 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 +101 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +134 -79
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
- package/contracts/accounting/AccountingService.sol +274 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +47 -0
- package/contracts/authorization/AccessAdmin.sol +401 -313
- package/contracts/authorization/AccessAdminLib.sol +678 -0
- package/contracts/authorization/AccessManagerCloneable.sol +128 -4
- package/contracts/authorization/Authorization.sol +179 -207
- package/contracts/authorization/IAccess.sol +29 -11
- package/contracts/authorization/IAccessAdmin.sol +89 -83
- package/contracts/authorization/IAuthorization.sol +9 -37
- package/contracts/authorization/IServiceAuthorization.sol +57 -17
- package/contracts/authorization/ServiceAuthorization.sol +235 -25
- package/contracts/distribution/BasicDistribution.sol +21 -19
- package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
- package/contracts/distribution/Distribution.sol +46 -96
- package/contracts/distribution/DistributionService.sol +243 -132
- package/contracts/distribution/DistributionServiceManager.sol +6 -6
- package/contracts/distribution/IDistributionComponent.sol +4 -11
- package/contracts/distribution/IDistributionService.sol +47 -29
- 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 +437 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/BundleSet.sol +42 -38
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +113 -43
- package/contracts/instance/IInstanceService.sol +61 -34
- package/contracts/instance/Instance.sol +201 -104
- package/contracts/instance/InstanceAdmin.sol +218 -177
- package/contracts/instance/InstanceAuthorizationV3.sol +154 -83
- package/contracts/instance/InstanceReader.sol +456 -255
- package/contracts/instance/InstanceService.sol +333 -262
- package/contracts/instance/InstanceServiceManager.sol +6 -7
- package/contracts/instance/InstanceStore.sol +153 -107
- package/contracts/instance/ProductStore.sol +290 -0
- package/contracts/instance/RiskSet.sol +126 -0
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +4 -6
- package/contracts/instance/base/ObjectCounter.sol +1 -2
- package/contracts/instance/base/ObjectLifecycle.sol +13 -10
- package/contracts/instance/base/ObjectSet.sol +31 -33
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +29 -20
- package/contracts/instance/module/IDistribution.sol +21 -8
- 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 +3 -7
- package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +11 -25
- package/contracts/oracle/OracleService.sol +119 -87
- package/contracts/oracle/OracleServiceManager.sol +6 -6
- package/contracts/pool/BasicPool.sol +40 -43
- package/contracts/pool/BasicPoolAuthorization.sol +39 -13
- package/contracts/pool/BundleService.sol +200 -155
- package/contracts/pool/BundleServiceManager.sol +6 -6
- package/contracts/pool/IBundleService.sol +42 -46
- package/contracts/pool/IPoolComponent.sol +19 -15
- package/contracts/pool/IPoolService.sol +97 -77
- package/contracts/pool/Pool.sol +145 -142
- package/contracts/pool/PoolLib.sol +341 -0
- package/contracts/pool/PoolService.sol +413 -233
- package/contracts/pool/PoolServiceManager.sol +4 -4
- package/contracts/product/ApplicationService.sol +144 -47
- package/contracts/product/ApplicationServiceManager.sol +4 -4
- package/contracts/product/BasicProduct.sol +11 -15
- package/contracts/product/BasicProductAuthorization.sol +32 -12
- package/contracts/product/ClaimService.sol +394 -185
- package/contracts/product/ClaimServiceManager.sol +4 -4
- package/contracts/product/IApplicationService.sol +29 -3
- package/contracts/product/IClaimService.sol +48 -11
- package/contracts/product/IPolicyService.sol +61 -39
- package/contracts/product/IPricingService.sol +11 -10
- package/contracts/product/IProductComponent.sol +27 -5
- package/contracts/product/IRiskService.sol +48 -0
- package/contracts/product/PolicyService.sol +434 -288
- package/contracts/product/PolicyServiceLib.sol +139 -0
- package/contracts/product/PolicyServiceManager.sol +4 -4
- package/contracts/product/PricingService.sol +90 -84
- package/contracts/product/PricingServiceManager.sol +4 -4
- package/contracts/product/Product.sol +198 -108
- package/contracts/product/RiskService.sol +189 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +72 -40
- package/contracts/registry/IRegistry.sol +70 -32
- package/contracts/registry/IRegistryService.sol +5 -12
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +367 -207
- package/contracts/registry/RegistryAdmin.sol +99 -291
- package/contracts/registry/RegistryAuthorization.sol +337 -0
- package/contracts/registry/RegistryService.sol +38 -49
- package/contracts/registry/RegistryServiceManager.sol +3 -3
- package/contracts/registry/ReleaseAdmin.sol +199 -0
- package/contracts/registry/ReleaseLifecycle.sol +8 -3
- package/contracts/registry/ReleaseRegistry.sol +279 -239
- package/contracts/registry/ServiceAuthorizationV3.sol +205 -63
- package/contracts/registry/TokenRegistry.sol +61 -59
- package/contracts/shared/Component.sol +72 -142
- package/contracts/shared/ComponentService.sol +428 -388
- package/contracts/shared/ComponentServiceManager.sol +8 -5
- package/contracts/shared/ContractLib.sol +312 -0
- package/contracts/shared/IComponent.sol +6 -18
- package/contracts/shared/IComponentService.sol +43 -40
- package/contracts/shared/IInstanceLinkedComponent.sol +6 -32
- package/contracts/shared/ILifecycle.sol +3 -1
- package/contracts/shared/INftOwnable.sol +4 -0
- package/contracts/shared/IPolicyHolder.sol +12 -22
- package/contracts/shared/IRegisterable.sol +22 -1
- package/contracts/shared/IService.sol +3 -5
- package/contracts/shared/InitializableERC165.sol +10 -2
- package/contracts/shared/InstanceLinkedComponent.sol +74 -54
- package/contracts/shared/Lifecycle.sol +15 -4
- package/contracts/shared/NftOwnable.sol +31 -9
- package/contracts/shared/PolicyHolder.sol +18 -54
- package/contracts/shared/Registerable.sol +52 -21
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +20 -35
- package/contracts/shared/TokenHandler.sol +310 -26
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +270 -71
- package/contracts/staking/IStakingService.sol +45 -78
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +526 -245
- package/contracts/staking/StakingLib.sol +195 -0
- package/contracts/staking/StakingManager.sol +12 -9
- package/contracts/staking/StakingReader.sol +70 -82
- package/contracts/staking/StakingService.sol +62 -152
- package/contracts/staking/StakingServiceManager.sol +7 -5
- package/contracts/staking/StakingStore.sol +1093 -330
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +73 -46
- package/contracts/type/Amount.sol +19 -0
- package/contracts/type/Blocknumber.sol +24 -23
- package/contracts/type/ChainId.sol +101 -0
- 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 +73 -37
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/RiskId.sol +38 -6
- package/contracts/type/RoleId.sol +61 -55
- package/contracts/type/Seconds.sol +40 -1
- package/contracts/type/Selector.sol +5 -0
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/String.sol +12 -0
- package/contracts/type/Timestamp.sol +14 -7
- package/contracts/type/UFixed.sol +38 -126
- package/contracts/type/Version.sol +54 -5
- package/contracts/upgradeability/IVersionable.sol +3 -0
- package/contracts/upgradeability/ProxyManager.sol +94 -46
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
- package/contracts/upgradeability/Versionable.sol +8 -5
- 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/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/IProductService.sol/IProductService.json +0 -400
- 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/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.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/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -470
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -164
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
- package/contracts/authorization/IModuleAuthorization.sol +0 -21
- package/contracts/authorization/ModuleAuthorization.sol +0 -78
- package/contracts/instance/module/IAccess.sol +0 -46
- package/contracts/product/IProductService.sol +0 -33
- package/contracts/product/ProductService.sol +0 -99
- package/contracts/product/ProductServiceManager.sol +0 -39
- package/contracts/shared/ComponentVerifyingService.sol +0 -117
- package/contracts/shared/IKeyValueStore.sol +0 -54
- package/contracts/shared/InitializableCustom.sol +0 -177
- package/contracts/shared/KeyValueStore.sol +0 -131
- package/contracts/staking/StakeManagerLib.sol +0 -231
- package/contracts/staking/StakingLifecycle.sol +0 -23
| @@ -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,77 @@ | |
| 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",
         | 
| 240 | 
            +
                  "type": "error"
         | 
| 241 | 
            +
                },
         | 
| 242 | 
            +
                {
         | 
| 243 | 
            +
                  "inputs": [],
         | 
| 244 | 
            +
                  "name": "ErrorVersionableInitializeNotImplemented",
         | 
| 245 | 
            +
                  "type": "error"
         | 
| 246 | 
            +
                },
         | 
| 247 | 
            +
                {
         | 
| 248 | 
            +
                  "inputs": [],
         | 
| 249 | 
            +
                  "name": "ErrorVersionableUpgradeNotImplemented",
         | 
| 123 250 | 
             
                  "type": "error"
         | 
| 124 251 | 
             
                },
         | 
| 125 252 | 
             
                {
         | 
| @@ -132,7 +259,274 @@ | |
| 132 259 | 
             
                      "type": "address"
         | 
| 133 260 | 
             
                    }
         | 
| 134 261 | 
             
                  ],
         | 
| 135 | 
            -
                  "name": "AuthorityUpdated",
         | 
| 262 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 263 | 
            +
                  "type": "event"
         | 
| 264 | 
            +
                },
         | 
| 265 | 
            +
                {
         | 
| 266 | 
            +
                  "anonymous": false,
         | 
| 267 | 
            +
                  "inputs": [
         | 
| 268 | 
            +
                    {
         | 
| 269 | 
            +
                      "indexed": false,
         | 
| 270 | 
            +
                      "internalType": "NftId",
         | 
| 271 | 
            +
                      "name": "nftId",
         | 
| 272 | 
            +
                      "type": "uint96"
         | 
| 273 | 
            +
                    },
         | 
| 274 | 
            +
                    {
         | 
| 275 | 
            +
                      "indexed": false,
         | 
| 276 | 
            +
                      "internalType": "address",
         | 
| 277 | 
            +
                      "name": "owner",
         | 
| 278 | 
            +
                      "type": "address"
         | 
| 279 | 
            +
                    }
         | 
| 280 | 
            +
                  ],
         | 
| 281 | 
            +
                  "name": "LogNftOwnableNftLinkedToAddress",
         | 
| 282 | 
            +
                  "type": "event"
         | 
| 283 | 
            +
                },
         | 
| 284 | 
            +
                {
         | 
| 285 | 
            +
                  "anonymous": false,
         | 
| 286 | 
            +
                  "inputs": [
         | 
| 287 | 
            +
                    {
         | 
| 288 | 
            +
                      "indexed": false,
         | 
| 289 | 
            +
                      "internalType": "NftId",
         | 
| 290 | 
            +
                      "name": "poolNftId",
         | 
| 291 | 
            +
                      "type": "uint96"
         | 
| 292 | 
            +
                    },
         | 
| 293 | 
            +
                    {
         | 
| 294 | 
            +
                      "indexed": false,
         | 
| 295 | 
            +
                      "internalType": "NftId",
         | 
| 296 | 
            +
                      "name": "bundleNftId",
         | 
| 297 | 
            +
                      "type": "uint96"
         | 
| 298 | 
            +
                    },
         | 
| 299 | 
            +
                    {
         | 
| 300 | 
            +
                      "indexed": false,
         | 
| 301 | 
            +
                      "internalType": "NftId",
         | 
| 302 | 
            +
                      "name": "applicationNftId",
         | 
| 303 | 
            +
                      "type": "uint96"
         | 
| 304 | 
            +
                    },
         | 
| 305 | 
            +
                    {
         | 
| 306 | 
            +
                      "indexed": false,
         | 
| 307 | 
            +
                      "internalType": "Amount",
         | 
| 308 | 
            +
                      "name": "totalCollateralAmount",
         | 
| 309 | 
            +
                      "type": "uint96"
         | 
| 310 | 
            +
                    }
         | 
| 311 | 
            +
                  ],
         | 
| 312 | 
            +
                  "name": "LogPoolServiceApplicationVerified",
         | 
| 313 | 
            +
                  "type": "event"
         | 
| 314 | 
            +
                },
         | 
| 315 | 
            +
                {
         | 
| 316 | 
            +
                  "anonymous": false,
         | 
| 317 | 
            +
                  "inputs": [
         | 
| 318 | 
            +
                    {
         | 
| 319 | 
            +
                      "indexed": false,
         | 
| 320 | 
            +
                      "internalType": "NftId",
         | 
| 321 | 
            +
                      "name": "instanceNftId",
         | 
| 322 | 
            +
                      "type": "uint96"
         | 
| 323 | 
            +
                    },
         | 
| 324 | 
            +
                    {
         | 
| 325 | 
            +
                      "indexed": false,
         | 
| 326 | 
            +
                      "internalType": "NftId",
         | 
| 327 | 
            +
                      "name": "poolNftId",
         | 
| 328 | 
            +
                      "type": "uint96"
         | 
| 329 | 
            +
                    },
         | 
| 330 | 
            +
                    {
         | 
| 331 | 
            +
                      "indexed": false,
         | 
| 332 | 
            +
                      "internalType": "NftId",
         | 
| 333 | 
            +
                      "name": "bundleNftId",
         | 
| 334 | 
            +
                      "type": "uint96"
         | 
| 335 | 
            +
                    }
         | 
| 336 | 
            +
                  ],
         | 
| 337 | 
            +
                  "name": "LogPoolServiceBundleClosed",
         | 
| 338 | 
            +
                  "type": "event"
         | 
| 339 | 
            +
                },
         | 
| 340 | 
            +
                {
         | 
| 341 | 
            +
                  "anonymous": false,
         | 
| 342 | 
            +
                  "inputs": [
         | 
| 343 | 
            +
                    {
         | 
| 344 | 
            +
                      "indexed": false,
         | 
| 345 | 
            +
                      "internalType": "NftId",
         | 
| 346 | 
            +
                      "name": "instanceNftId",
         | 
| 347 | 
            +
                      "type": "uint96"
         | 
| 348 | 
            +
                    },
         | 
| 349 | 
            +
                    {
         | 
| 350 | 
            +
                      "indexed": false,
         | 
| 351 | 
            +
                      "internalType": "NftId",
         | 
| 352 | 
            +
                      "name": "poolNftId",
         | 
| 353 | 
            +
                      "type": "uint96"
         | 
| 354 | 
            +
                    },
         | 
| 355 | 
            +
                    {
         | 
| 356 | 
            +
                      "indexed": false,
         | 
| 357 | 
            +
                      "internalType": "NftId",
         | 
| 358 | 
            +
                      "name": "bundleNftId",
         | 
| 359 | 
            +
                      "type": "uint96"
         | 
| 360 | 
            +
                    }
         | 
| 361 | 
            +
                  ],
         | 
| 362 | 
            +
                  "name": "LogPoolServiceBundleCreated",
         | 
| 363 | 
            +
                  "type": "event"
         | 
| 364 | 
            +
                },
         | 
| 365 | 
            +
                {
         | 
| 366 | 
            +
                  "anonymous": false,
         | 
| 367 | 
            +
                  "inputs": [
         | 
| 368 | 
            +
                    {
         | 
| 369 | 
            +
                      "indexed": false,
         | 
| 370 | 
            +
                      "internalType": "NftId",
         | 
| 371 | 
            +
                      "name": "instanceNftId",
         | 
| 372 | 
            +
                      "type": "uint96"
         | 
| 373 | 
            +
                    },
         | 
| 374 | 
            +
                    {
         | 
| 375 | 
            +
                      "indexed": false,
         | 
| 376 | 
            +
                      "internalType": "NftId",
         | 
| 377 | 
            +
                      "name": "poolNftId",
         | 
| 378 | 
            +
                      "type": "uint96"
         | 
| 379 | 
            +
                    },
         | 
| 380 | 
            +
                    {
         | 
| 381 | 
            +
                      "indexed": false,
         | 
| 382 | 
            +
                      "internalType": "NftId",
         | 
| 383 | 
            +
                      "name": "bundleNftId",
         | 
| 384 | 
            +
                      "type": "uint96"
         | 
| 385 | 
            +
                    },
         | 
| 386 | 
            +
                    {
         | 
| 387 | 
            +
                      "indexed": false,
         | 
| 388 | 
            +
                      "internalType": "Amount",
         | 
| 389 | 
            +
                      "name": "amount",
         | 
| 390 | 
            +
                      "type": "uint96"
         | 
| 391 | 
            +
                    },
         | 
| 392 | 
            +
                    {
         | 
| 393 | 
            +
                      "indexed": false,
         | 
| 394 | 
            +
                      "internalType": "Amount",
         | 
| 395 | 
            +
                      "name": "netAmount",
         | 
| 396 | 
            +
                      "type": "uint96"
         | 
| 397 | 
            +
                    }
         | 
| 398 | 
            +
                  ],
         | 
| 399 | 
            +
                  "name": "LogPoolServiceBundleStaked",
         | 
| 400 | 
            +
                  "type": "event"
         | 
| 401 | 
            +
                },
         | 
| 402 | 
            +
                {
         | 
| 403 | 
            +
                  "anonymous": false,
         | 
| 404 | 
            +
                  "inputs": [
         | 
| 405 | 
            +
                    {
         | 
| 406 | 
            +
                      "indexed": false,
         | 
| 407 | 
            +
                      "internalType": "NftId",
         | 
| 408 | 
            +
                      "name": "instanceNftId",
         | 
| 409 | 
            +
                      "type": "uint96"
         | 
| 410 | 
            +
                    },
         | 
| 411 | 
            +
                    {
         | 
| 412 | 
            +
                      "indexed": false,
         | 
| 413 | 
            +
                      "internalType": "NftId",
         | 
| 414 | 
            +
                      "name": "poolNftId",
         | 
| 415 | 
            +
                      "type": "uint96"
         | 
| 416 | 
            +
                    },
         | 
| 417 | 
            +
                    {
         | 
| 418 | 
            +
                      "indexed": false,
         | 
| 419 | 
            +
                      "internalType": "NftId",
         | 
| 420 | 
            +
                      "name": "bundleNftId",
         | 
| 421 | 
            +
                      "type": "uint96"
         | 
| 422 | 
            +
                    },
         | 
| 423 | 
            +
                    {
         | 
| 424 | 
            +
                      "indexed": false,
         | 
| 425 | 
            +
                      "internalType": "Amount",
         | 
| 426 | 
            +
                      "name": "amount",
         | 
| 427 | 
            +
                      "type": "uint96"
         | 
| 428 | 
            +
                    },
         | 
| 429 | 
            +
                    {
         | 
| 430 | 
            +
                      "indexed": false,
         | 
| 431 | 
            +
                      "internalType": "Amount",
         | 
| 432 | 
            +
                      "name": "netAmount",
         | 
| 433 | 
            +
                      "type": "uint96"
         | 
| 434 | 
            +
                    }
         | 
| 435 | 
            +
                  ],
         | 
| 436 | 
            +
                  "name": "LogPoolServiceBundleUnstaked",
         | 
| 437 | 
            +
                  "type": "event"
         | 
| 438 | 
            +
                },
         | 
| 439 | 
            +
                {
         | 
| 440 | 
            +
                  "anonymous": false,
         | 
| 441 | 
            +
                  "inputs": [
         | 
| 442 | 
            +
                    {
         | 
| 443 | 
            +
                      "indexed": false,
         | 
| 444 | 
            +
                      "internalType": "NftId",
         | 
| 445 | 
            +
                      "name": "poolNftId",
         | 
| 446 | 
            +
                      "type": "uint96"
         | 
| 447 | 
            +
                    },
         | 
| 448 | 
            +
                    {
         | 
| 449 | 
            +
                      "indexed": false,
         | 
| 450 | 
            +
                      "internalType": "NftId",
         | 
| 451 | 
            +
                      "name": "bundleNftId",
         | 
| 452 | 
            +
                      "type": "uint96"
         | 
| 453 | 
            +
                    },
         | 
| 454 | 
            +
                    {
         | 
| 455 | 
            +
                      "indexed": false,
         | 
| 456 | 
            +
                      "internalType": "NftId",
         | 
| 457 | 
            +
                      "name": "applicationNftId",
         | 
| 458 | 
            +
                      "type": "uint96"
         | 
| 459 | 
            +
                    },
         | 
| 460 | 
            +
                    {
         | 
| 461 | 
            +
                      "indexed": false,
         | 
| 462 | 
            +
                      "internalType": "Amount",
         | 
| 463 | 
            +
                      "name": "totalCollateralAmount",
         | 
| 464 | 
            +
                      "type": "uint96"
         | 
| 465 | 
            +
                    },
         | 
| 466 | 
            +
                    {
         | 
| 467 | 
            +
                      "indexed": false,
         | 
| 468 | 
            +
                      "internalType": "Amount",
         | 
| 469 | 
            +
                      "name": "lockedCollateralAmount",
         | 
| 470 | 
            +
                      "type": "uint96"
         | 
| 471 | 
            +
                    }
         | 
| 472 | 
            +
                  ],
         | 
| 473 | 
            +
                  "name": "LogPoolServiceCollateralLocked",
         | 
| 474 | 
            +
                  "type": "event"
         | 
| 475 | 
            +
                },
         | 
| 476 | 
            +
                {
         | 
| 477 | 
            +
                  "anonymous": false,
         | 
| 478 | 
            +
                  "inputs": [
         | 
| 479 | 
            +
                    {
         | 
| 480 | 
            +
                      "indexed": false,
         | 
| 481 | 
            +
                      "internalType": "NftId",
         | 
| 482 | 
            +
                      "name": "bundleNftId",
         | 
| 483 | 
            +
                      "type": "uint96"
         | 
| 484 | 
            +
                    },
         | 
| 485 | 
            +
                    {
         | 
| 486 | 
            +
                      "indexed": false,
         | 
| 487 | 
            +
                      "internalType": "NftId",
         | 
| 488 | 
            +
                      "name": "policyNftId",
         | 
| 489 | 
            +
                      "type": "uint96"
         | 
| 490 | 
            +
                    },
         | 
| 491 | 
            +
                    {
         | 
| 492 | 
            +
                      "indexed": false,
         | 
| 493 | 
            +
                      "internalType": "Amount",
         | 
| 494 | 
            +
                      "name": "remainingCollateralAmount",
         | 
| 495 | 
            +
                      "type": "uint96"
         | 
| 496 | 
            +
                    }
         | 
| 497 | 
            +
                  ],
         | 
| 498 | 
            +
                  "name": "LogPoolServiceCollateralReleased",
         | 
| 499 | 
            +
                  "type": "event"
         | 
| 500 | 
            +
                },
         | 
| 501 | 
            +
                {
         | 
| 502 | 
            +
                  "anonymous": false,
         | 
| 503 | 
            +
                  "inputs": [
         | 
| 504 | 
            +
                    {
         | 
| 505 | 
            +
                      "indexed": false,
         | 
| 506 | 
            +
                      "internalType": "NftId",
         | 
| 507 | 
            +
                      "name": "bundleNftId",
         | 
| 508 | 
            +
                      "type": "uint96"
         | 
| 509 | 
            +
                    },
         | 
| 510 | 
            +
                    {
         | 
| 511 | 
            +
                      "indexed": false,
         | 
| 512 | 
            +
                      "internalType": "address",
         | 
| 513 | 
            +
                      "name": "recipient",
         | 
| 514 | 
            +
                      "type": "address"
         | 
| 515 | 
            +
                    },
         | 
| 516 | 
            +
                    {
         | 
| 517 | 
            +
                      "indexed": false,
         | 
| 518 | 
            +
                      "internalType": "address",
         | 
| 519 | 
            +
                      "name": "tokenAddress",
         | 
| 520 | 
            +
                      "type": "address"
         | 
| 521 | 
            +
                    },
         | 
| 522 | 
            +
                    {
         | 
| 523 | 
            +
                      "indexed": false,
         | 
| 524 | 
            +
                      "internalType": "Amount",
         | 
| 525 | 
            +
                      "name": "amount",
         | 
| 526 | 
            +
                      "type": "uint96"
         | 
| 527 | 
            +
                    }
         | 
| 528 | 
            +
                  ],
         | 
| 529 | 
            +
                  "name": "LogPoolServiceFeesWithdrawn",
         | 
| 136 530 | 
             
                  "type": "event"
         | 
| 137 531 | 
             
                },
         | 
| 138 532 | 
             
                {
         | 
| @@ -141,23 +535,23 @@ | |
| 141 535 | 
             
                    {
         | 
| 142 536 | 
             
                      "indexed": false,
         | 
| 143 537 | 
             
                      "internalType": "NftId",
         | 
| 144 | 
            -
                      "name": " | 
| 538 | 
            +
                      "name": "poolNftId",
         | 
| 145 539 | 
             
                      "type": "uint96"
         | 
| 146 540 | 
             
                    },
         | 
| 147 541 | 
             
                    {
         | 
| 148 542 | 
             
                      "indexed": false,
         | 
| 149 | 
            -
                      "internalType": " | 
| 150 | 
            -
                      "name": " | 
| 543 | 
            +
                      "internalType": "Amount",
         | 
| 544 | 
            +
                      "name": "previousMaxCapitalAmount",
         | 
| 151 545 | 
             
                      "type": "uint96"
         | 
| 152 546 | 
             
                    },
         | 
| 153 547 | 
             
                    {
         | 
| 154 548 | 
             
                      "indexed": false,
         | 
| 155 | 
            -
                      "internalType": " | 
| 156 | 
            -
                      "name": " | 
| 549 | 
            +
                      "internalType": "Amount",
         | 
| 550 | 
            +
                      "name": "currentMaxCapitalAmount",
         | 
| 157 551 | 
             
                      "type": "uint96"
         | 
| 158 552 | 
             
                    }
         | 
| 159 553 | 
             
                  ],
         | 
| 160 | 
            -
                  "name": " | 
| 554 | 
            +
                  "name": "LogPoolServiceMaxBalanceAmountUpdated",
         | 
| 161 555 | 
             
                  "type": "event"
         | 
| 162 556 | 
             
                },
         | 
| 163 557 | 
             
                {
         | 
| @@ -166,42 +560,47 @@ | |
| 166 560 | 
             
                    {
         | 
| 167 561 | 
             
                      "indexed": false,
         | 
| 168 562 | 
             
                      "internalType": "NftId",
         | 
| 169 | 
            -
                      "name": " | 
| 563 | 
            +
                      "name": "poolNftId",
         | 
| 170 564 | 
             
                      "type": "uint96"
         | 
| 171 565 | 
             
                    },
         | 
| 172 566 | 
             
                    {
         | 
| 173 567 | 
             
                      "indexed": false,
         | 
| 174 568 | 
             
                      "internalType": "NftId",
         | 
| 175 | 
            -
                      "name": " | 
| 569 | 
            +
                      "name": "bundleNftId",
         | 
| 176 570 | 
             
                      "type": "uint96"
         | 
| 177 571 | 
             
                    },
         | 
| 178 572 | 
             
                    {
         | 
| 179 573 | 
             
                      "indexed": false,
         | 
| 180 574 | 
             
                      "internalType": "NftId",
         | 
| 181 | 
            -
                      "name": " | 
| 575 | 
            +
                      "name": "policyNftId",
         | 
| 182 576 | 
             
                      "type": "uint96"
         | 
| 183 | 
            -
                    }
         | 
| 184 | 
            -
                  ],
         | 
| 185 | 
            -
                  "name": "LogPoolServiceBundleCreated",
         | 
| 186 | 
            -
                  "type": "event"
         | 
| 187 | 
            -
                },
         | 
| 188 | 
            -
                {
         | 
| 189 | 
            -
                  "anonymous": false,
         | 
| 190 | 
            -
                  "inputs": [
         | 
| 577 | 
            +
                    },
         | 
| 191 578 | 
             
                    {
         | 
| 192 579 | 
             
                      "indexed": false,
         | 
| 193 | 
            -
                      "internalType": " | 
| 194 | 
            -
                      "name": " | 
| 580 | 
            +
                      "internalType": "PayoutId",
         | 
| 581 | 
            +
                      "name": "payoutId",
         | 
| 582 | 
            +
                      "type": "uint40"
         | 
| 583 | 
            +
                    },
         | 
| 584 | 
            +
                    {
         | 
| 585 | 
            +
                      "indexed": false,
         | 
| 586 | 
            +
                      "internalType": "Amount",
         | 
| 587 | 
            +
                      "name": "netPayoutAmount",
         | 
| 195 588 | 
             
                      "type": "uint96"
         | 
| 196 589 | 
             
                    },
         | 
| 197 590 | 
             
                    {
         | 
| 198 591 | 
             
                      "indexed": false,
         | 
| 199 | 
            -
                      "internalType": " | 
| 200 | 
            -
                      "name": " | 
| 201 | 
            -
                      "type": " | 
| 592 | 
            +
                      "internalType": "Amount",
         | 
| 593 | 
            +
                      "name": "processingFeeAmount",
         | 
| 594 | 
            +
                      "type": "uint96"
         | 
| 595 | 
            +
                    },
         | 
| 596 | 
            +
                    {
         | 
| 597 | 
            +
                      "indexed": false,
         | 
| 598 | 
            +
                      "internalType": "address",
         | 
| 599 | 
            +
                      "name": "payoutBeneficiary",
         | 
| 600 | 
            +
                      "type": "address"
         | 
| 202 601 | 
             
                    }
         | 
| 203 602 | 
             
                  ],
         | 
| 204 | 
            -
                  "name": " | 
| 603 | 
            +
                  "name": "LogPoolServicePayoutProcessed",
         | 
| 205 604 | 
             
                  "type": "event"
         | 
| 206 605 | 
             
                },
         | 
| 207 606 | 
             
                {
         | 
| @@ -210,103 +609,122 @@ | |
| 210 609 | 
             
                    {
         | 
| 211 610 | 
             
                      "indexed": false,
         | 
| 212 611 | 
             
                      "internalType": "NftId",
         | 
| 213 | 
            -
                      "name": " | 
| 612 | 
            +
                      "name": "policyNftId",
         | 
| 214 613 | 
             
                      "type": "uint96"
         | 
| 215 614 | 
             
                    },
         | 
| 216 615 | 
             
                    {
         | 
| 217 616 | 
             
                      "indexed": false,
         | 
| 218 | 
            -
                      "internalType": " | 
| 219 | 
            -
                      "name": " | 
| 220 | 
            -
                      "type": " | 
| 617 | 
            +
                      "internalType": "ClaimId",
         | 
| 618 | 
            +
                      "name": "claimId",
         | 
| 619 | 
            +
                      "type": "uint16"
         | 
| 221 620 | 
             
                    },
         | 
| 222 621 | 
             
                    {
         | 
| 223 622 | 
             
                      "indexed": false,
         | 
| 224 623 | 
             
                      "internalType": "Amount",
         | 
| 225 | 
            -
                      "name": " | 
| 624 | 
            +
                      "name": "availableAmount",
         | 
| 226 625 | 
             
                      "type": "uint96"
         | 
| 227 626 | 
             
                    }
         | 
| 228 627 | 
             
                  ],
         | 
| 229 | 
            -
                  "name": " | 
| 628 | 
            +
                  "name": "LogPoolServiceProcessFundedClaim",
         | 
| 230 629 | 
             
                  "type": "event"
         | 
| 231 630 | 
             
                },
         | 
| 232 631 | 
             
                {
         | 
| 233 | 
            -
                  " | 
| 234 | 
            -
                  "name": "authority",
         | 
| 235 | 
            -
                  "outputs": [
         | 
| 236 | 
            -
                    {
         | 
| 237 | 
            -
                      "internalType": "address",
         | 
| 238 | 
            -
                      "name": "",
         | 
| 239 | 
            -
                      "type": "address"
         | 
| 240 | 
            -
                    }
         | 
| 241 | 
            -
                  ],
         | 
| 242 | 
            -
                  "stateMutability": "view",
         | 
| 243 | 
            -
                  "type": "function"
         | 
| 244 | 
            -
                },
         | 
| 245 | 
            -
                {
         | 
| 632 | 
            +
                  "anonymous": false,
         | 
| 246 633 | 
             
                  "inputs": [
         | 
| 247 634 | 
             
                    {
         | 
| 248 | 
            -
                      " | 
| 249 | 
            -
                      " | 
| 250 | 
            -
                      " | 
| 635 | 
            +
                      "indexed": false,
         | 
| 636 | 
            +
                      "internalType": "NftId",
         | 
| 637 | 
            +
                      "name": "poolNftId",
         | 
| 638 | 
            +
                      "type": "uint96"
         | 
| 251 639 | 
             
                    },
         | 
| 252 640 | 
             
                    {
         | 
| 253 | 
            -
                      " | 
| 254 | 
            -
                      " | 
| 255 | 
            -
                      " | 
| 641 | 
            +
                      "indexed": false,
         | 
| 642 | 
            +
                      "internalType": "NftId",
         | 
| 643 | 
            +
                      "name": "bundleNftId",
         | 
| 644 | 
            +
                      "type": "uint96"
         | 
| 256 645 | 
             
                    },
         | 
| 257 646 | 
             
                    {
         | 
| 647 | 
            +
                      "indexed": false,
         | 
| 258 648 | 
             
                      "internalType": "Amount",
         | 
| 259 | 
            -
                      "name": " | 
| 649 | 
            +
                      "name": "bundleNetAmount",
         | 
| 260 650 | 
             
                      "type": "uint96"
         | 
| 261 | 
            -
                    }
         | 
| 262 | 
            -
                  ],
         | 
| 263 | 
            -
                  "name": "calculateRequiredCollateral",
         | 
| 264 | 
            -
                  "outputs": [
         | 
| 651 | 
            +
                    },
         | 
| 265 652 | 
             
                    {
         | 
| 653 | 
            +
                      "indexed": false,
         | 
| 266 654 | 
             
                      "internalType": "Amount",
         | 
| 267 | 
            -
                      "name": " | 
| 655 | 
            +
                      "name": "bundleFeeAmount",
         | 
| 268 656 | 
             
                      "type": "uint96"
         | 
| 269 657 | 
             
                    },
         | 
| 270 658 | 
             
                    {
         | 
| 659 | 
            +
                      "indexed": false,
         | 
| 271 660 | 
             
                      "internalType": "Amount",
         | 
| 272 | 
            -
                      "name": " | 
| 661 | 
            +
                      "name": "poolFeeAmount",
         | 
| 273 662 | 
             
                      "type": "uint96"
         | 
| 274 663 | 
             
                    }
         | 
| 275 664 | 
             
                  ],
         | 
| 276 | 
            -
                  " | 
| 277 | 
            -
                  "type": " | 
| 665 | 
            +
                  "name": "LogPoolServiceSaleProcessed",
         | 
| 666 | 
            +
                  "type": "event"
         | 
| 278 667 | 
             
                },
         | 
| 279 668 | 
             
                {
         | 
| 669 | 
            +
                  "anonymous": false,
         | 
| 280 670 | 
             
                  "inputs": [
         | 
| 281 671 | 
             
                    {
         | 
| 282 | 
            -
                      " | 
| 283 | 
            -
                      "name": "instanceReader",
         | 
| 284 | 
            -
                      "type": "address"
         | 
| 285 | 
            -
                    },
         | 
| 286 | 
            -
                    {
         | 
| 672 | 
            +
                      "indexed": false,
         | 
| 287 673 | 
             
                      "internalType": "NftId",
         | 
| 288 | 
            -
                      "name": " | 
| 674 | 
            +
                      "name": "poolNftId",
         | 
| 289 675 | 
             
                      "type": "uint96"
         | 
| 290 676 | 
             
                    },
         | 
| 291 677 | 
             
                    {
         | 
| 678 | 
            +
                      "indexed": false,
         | 
| 679 | 
            +
                      "internalType": "address",
         | 
| 680 | 
            +
                      "name": "poolOwner",
         | 
| 681 | 
            +
                      "type": "address"
         | 
| 682 | 
            +
                    },
         | 
| 683 | 
            +
                    {
         | 
| 684 | 
            +
                      "indexed": false,
         | 
| 292 685 | 
             
                      "internalType": "Amount",
         | 
| 293 | 
            -
                      "name": " | 
| 686 | 
            +
                      "name": "amount",
         | 
| 294 687 | 
             
                      "type": "uint96"
         | 
| 295 688 | 
             
                    }
         | 
| 296 689 | 
             
                  ],
         | 
| 297 | 
            -
                  "name": " | 
| 298 | 
            -
                  " | 
| 690 | 
            +
                  "name": "LogPoolServiceWalletDefunded",
         | 
| 691 | 
            +
                  "type": "event"
         | 
| 692 | 
            +
                },
         | 
| 693 | 
            +
                {
         | 
| 694 | 
            +
                  "anonymous": false,
         | 
| 695 | 
            +
                  "inputs": [
         | 
| 299 696 | 
             
                    {
         | 
| 300 | 
            -
                      " | 
| 301 | 
            -
                      " | 
| 697 | 
            +
                      "indexed": false,
         | 
| 698 | 
            +
                      "internalType": "NftId",
         | 
| 699 | 
            +
                      "name": "poolNftId",
         | 
| 302 700 | 
             
                      "type": "uint96"
         | 
| 303 701 | 
             
                    },
         | 
| 304 702 | 
             
                    {
         | 
| 703 | 
            +
                      "indexed": false,
         | 
| 704 | 
            +
                      "internalType": "address",
         | 
| 705 | 
            +
                      "name": "poolOwner",
         | 
| 706 | 
            +
                      "type": "address"
         | 
| 707 | 
            +
                    },
         | 
| 708 | 
            +
                    {
         | 
| 709 | 
            +
                      "indexed": false,
         | 
| 305 710 | 
             
                      "internalType": "Amount",
         | 
| 306 | 
            -
                      "name": " | 
| 711 | 
            +
                      "name": "amount",
         | 
| 307 712 | 
             
                      "type": "uint96"
         | 
| 308 713 | 
             
                    }
         | 
| 309 714 | 
             
                  ],
         | 
| 715 | 
            +
                  "name": "LogPoolServiceWalletFunded",
         | 
| 716 | 
            +
                  "type": "event"
         | 
| 717 | 
            +
                },
         | 
| 718 | 
            +
                {
         | 
| 719 | 
            +
                  "inputs": [],
         | 
| 720 | 
            +
                  "name": "authority",
         | 
| 721 | 
            +
                  "outputs": [
         | 
| 722 | 
            +
                    {
         | 
| 723 | 
            +
                      "internalType": "address",
         | 
| 724 | 
            +
                      "name": "",
         | 
| 725 | 
            +
                      "type": "address"
         | 
| 726 | 
            +
                    }
         | 
| 727 | 
            +
                  ],
         | 
| 310 728 | 
             
                  "stateMutability": "view",
         | 
| 311 729 | 
             
                  "type": "function"
         | 
| 312 730 | 
             
                },
         | 
| @@ -325,52 +743,27 @@ | |
| 325 743 | 
             
                },
         | 
| 326 744 | 
             
                {
         | 
| 327 745 | 
             
                  "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 746 | 
             
                    {
         | 
| 351 747 | 
             
                      "internalType": "Amount",
         | 
| 352 | 
            -
                      "name": " | 
| 748 | 
            +
                      "name": "amount",
         | 
| 353 749 | 
             
                      "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 750 | 
             
                    }
         | 
| 365 751 | 
             
                  ],
         | 
| 366 | 
            -
                  "name": " | 
| 367 | 
            -
                  "outputs": [
         | 
| 752 | 
            +
                  "name": "defundPoolWallet",
         | 
| 753 | 
            +
                  "outputs": [],
         | 
| 754 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 755 | 
            +
                  "type": "function"
         | 
| 756 | 
            +
                },
         | 
| 757 | 
            +
                {
         | 
| 758 | 
            +
                  "inputs": [
         | 
| 368 759 | 
             
                    {
         | 
| 369 | 
            -
                      "internalType": " | 
| 370 | 
            -
                      "name": " | 
| 760 | 
            +
                      "internalType": "Amount",
         | 
| 761 | 
            +
                      "name": "amount",
         | 
| 371 762 | 
             
                      "type": "uint96"
         | 
| 372 763 | 
             
                    }
         | 
| 373 764 | 
             
                  ],
         | 
| 765 | 
            +
                  "name": "fundPoolWallet",
         | 
| 766 | 
            +
                  "outputs": [],
         | 
| 374 767 | 
             
                  "stateMutability": "nonpayable",
         | 
| 375 768 | 
             
                  "type": "function"
         | 
| 376 769 | 
             
                },
         | 
| @@ -476,6 +869,19 @@ | |
| 476 869 | 
             
                  "stateMutability": "view",
         | 
| 477 870 | 
             
                  "type": "function"
         | 
| 478 871 | 
             
                },
         | 
| 872 | 
            +
                {
         | 
| 873 | 
            +
                  "inputs": [],
         | 
| 874 | 
            +
                  "name": "getRelease",
         | 
| 875 | 
            +
                  "outputs": [
         | 
| 876 | 
            +
                    {
         | 
| 877 | 
            +
                      "internalType": "VersionPart",
         | 
| 878 | 
            +
                      "name": "release",
         | 
| 879 | 
            +
                      "type": "uint8"
         | 
| 880 | 
            +
                    }
         | 
| 881 | 
            +
                  ],
         | 
| 882 | 
            +
                  "stateMutability": "view",
         | 
| 883 | 
            +
                  "type": "function"
         | 
| 884 | 
            +
                },
         | 
| 479 885 | 
             
                {
         | 
| 480 886 | 
             
                  "inputs": [],
         | 
| 481 887 | 
             
                  "name": "getRoleId",
         | 
| @@ -486,7 +892,7 @@ | |
| 486 892 | 
             
                      "type": "uint64"
         | 
| 487 893 | 
             
                    }
         | 
| 488 894 | 
             
                  ],
         | 
| 489 | 
            -
                  "stateMutability": " | 
| 895 | 
            +
                  "stateMutability": "view",
         | 
| 490 896 | 
             
                  "type": "function"
         | 
| 491 897 | 
             
                },
         | 
| 492 898 | 
             
                {
         | 
| @@ -520,6 +926,19 @@ | |
| 520 926 | 
             
                  "stateMutability": "nonpayable",
         | 
| 521 927 | 
             
                  "type": "function"
         | 
| 522 928 | 
             
                },
         | 
| 929 | 
            +
                {
         | 
| 930 | 
            +
                  "inputs": [],
         | 
| 931 | 
            +
                  "name": "isActive",
         | 
| 932 | 
            +
                  "outputs": [
         | 
| 933 | 
            +
                    {
         | 
| 934 | 
            +
                      "internalType": "bool",
         | 
| 935 | 
            +
                      "name": "active",
         | 
| 936 | 
            +
                      "type": "bool"
         | 
| 937 | 
            +
                    }
         | 
| 938 | 
            +
                  ],
         | 
| 939 | 
            +
                  "stateMutability": "view",
         | 
| 940 | 
            +
                  "type": "function"
         | 
| 941 | 
            +
                },
         | 
| 523 942 | 
             
                {
         | 
| 524 943 | 
             
                  "inputs": [],
         | 
| 525 944 | 
             
                  "name": "isConsumingScheduledOp",
         | 
| @@ -588,7 +1007,89 @@ | |
| 588 1007 | 
             
                    },
         | 
| 589 1008 | 
             
                    {
         | 
| 590 1009 | 
             
                      "internalType": "Amount",
         | 
| 591 | 
            -
                      "name": "totalCollateralAmount",
         | 
| 1010 | 
            +
                      "name": "totalCollateralAmount",
         | 
| 1011 | 
            +
                      "type": "uint96"
         | 
| 1012 | 
            +
                    }
         | 
| 1013 | 
            +
                  ],
         | 
| 1014 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1015 | 
            +
                  "type": "function"
         | 
| 1016 | 
            +
                },
         | 
| 1017 | 
            +
                {
         | 
| 1018 | 
            +
                  "inputs": [
         | 
| 1019 | 
            +
                    {
         | 
| 1020 | 
            +
                      "internalType": "NftId",
         | 
| 1021 | 
            +
                      "name": "policyNftId",
         | 
| 1022 | 
            +
                      "type": "uint96"
         | 
| 1023 | 
            +
                    },
         | 
| 1024 | 
            +
                    {
         | 
| 1025 | 
            +
                      "internalType": "ClaimId",
         | 
| 1026 | 
            +
                      "name": "claimId",
         | 
| 1027 | 
            +
                      "type": "uint16"
         | 
| 1028 | 
            +
                    },
         | 
| 1029 | 
            +
                    {
         | 
| 1030 | 
            +
                      "internalType": "Amount",
         | 
| 1031 | 
            +
                      "name": "availableAmount",
         | 
| 1032 | 
            +
                      "type": "uint96"
         | 
| 1033 | 
            +
                    }
         | 
| 1034 | 
            +
                  ],
         | 
| 1035 | 
            +
                  "name": "processFundedClaim",
         | 
| 1036 | 
            +
                  "outputs": [],
         | 
| 1037 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1038 | 
            +
                  "type": "function"
         | 
| 1039 | 
            +
                },
         | 
| 1040 | 
            +
                {
         | 
| 1041 | 
            +
                  "inputs": [
         | 
| 1042 | 
            +
                    {
         | 
| 1043 | 
            +
                      "internalType": "contract InstanceReader",
         | 
| 1044 | 
            +
                      "name": "instanceReader",
         | 
| 1045 | 
            +
                      "type": "address"
         | 
| 1046 | 
            +
                    },
         | 
| 1047 | 
            +
                    {
         | 
| 1048 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 1049 | 
            +
                      "name": "instanceStore",
         | 
| 1050 | 
            +
                      "type": "address"
         | 
| 1051 | 
            +
                    },
         | 
| 1052 | 
            +
                    {
         | 
| 1053 | 
            +
                      "internalType": "NftId",
         | 
| 1054 | 
            +
                      "name": "productNftId",
         | 
| 1055 | 
            +
                      "type": "uint96"
         | 
| 1056 | 
            +
                    },
         | 
| 1057 | 
            +
                    {
         | 
| 1058 | 
            +
                      "internalType": "NftId",
         | 
| 1059 | 
            +
                      "name": "policyNftId",
         | 
| 1060 | 
            +
                      "type": "uint96"
         | 
| 1061 | 
            +
                    },
         | 
| 1062 | 
            +
                    {
         | 
| 1063 | 
            +
                      "internalType": "NftId",
         | 
| 1064 | 
            +
                      "name": "bundleNftId",
         | 
| 1065 | 
            +
                      "type": "uint96"
         | 
| 1066 | 
            +
                    },
         | 
| 1067 | 
            +
                    {
         | 
| 1068 | 
            +
                      "internalType": "PayoutId",
         | 
| 1069 | 
            +
                      "name": "payoutId",
         | 
| 1070 | 
            +
                      "type": "uint40"
         | 
| 1071 | 
            +
                    },
         | 
| 1072 | 
            +
                    {
         | 
| 1073 | 
            +
                      "internalType": "Amount",
         | 
| 1074 | 
            +
                      "name": "payoutAmount",
         | 
| 1075 | 
            +
                      "type": "uint96"
         | 
| 1076 | 
            +
                    },
         | 
| 1077 | 
            +
                    {
         | 
| 1078 | 
            +
                      "internalType": "address",
         | 
| 1079 | 
            +
                      "name": "payoutBeneficiary",
         | 
| 1080 | 
            +
                      "type": "address"
         | 
| 1081 | 
            +
                    }
         | 
| 1082 | 
            +
                  ],
         | 
| 1083 | 
            +
                  "name": "processPayout",
         | 
| 1084 | 
            +
                  "outputs": [
         | 
| 1085 | 
            +
                    {
         | 
| 1086 | 
            +
                      "internalType": "Amount",
         | 
| 1087 | 
            +
                      "name": "netPayoutAmount",
         | 
| 1088 | 
            +
                      "type": "uint96"
         | 
| 1089 | 
            +
                    },
         | 
| 1090 | 
            +
                    {
         | 
| 1091 | 
            +
                      "internalType": "Amount",
         | 
| 1092 | 
            +
                      "name": "processingFeeAmount",
         | 
| 592 1093 | 
             
                      "type": "uint96"
         | 
| 593 1094 | 
             
                    }
         | 
| 594 1095 | 
             
                  ],
         | 
| @@ -620,82 +1121,82 @@ | |
| 620 1121 | 
             
                          "type": "uint96"
         | 
| 621 1122 | 
             
                        },
         | 
| 622 1123 | 
             
                        {
         | 
| 623 | 
            -
                          "internalType": " | 
| 1124 | 
            +
                          "internalType": "Amount",
         | 
| 624 1125 | 
             
                          "name": "netPremiumAmount",
         | 
| 625 | 
            -
                          "type": " | 
| 1126 | 
            +
                          "type": "uint96"
         | 
| 626 1127 | 
             
                        },
         | 
| 627 1128 | 
             
                        {
         | 
| 628 | 
            -
                          "internalType": " | 
| 1129 | 
            +
                          "internalType": "Amount",
         | 
| 629 1130 | 
             
                          "name": "fullPremiumAmount",
         | 
| 630 | 
            -
                          "type": " | 
| 1131 | 
            +
                          "type": "uint96"
         | 
| 631 1132 | 
             
                        },
         | 
| 632 1133 | 
             
                        {
         | 
| 633 | 
            -
                          "internalType": " | 
| 1134 | 
            +
                          "internalType": "Amount",
         | 
| 634 1135 | 
             
                          "name": "premiumAmount",
         | 
| 635 | 
            -
                          "type": " | 
| 1136 | 
            +
                          "type": "uint96"
         | 
| 636 1137 | 
             
                        },
         | 
| 637 1138 | 
             
                        {
         | 
| 638 | 
            -
                          "internalType": " | 
| 1139 | 
            +
                          "internalType": "Amount",
         | 
| 639 1140 | 
             
                          "name": "productFeeFixAmount",
         | 
| 640 | 
            -
                          "type": " | 
| 1141 | 
            +
                          "type": "uint96"
         | 
| 641 1142 | 
             
                        },
         | 
| 642 1143 | 
             
                        {
         | 
| 643 | 
            -
                          "internalType": " | 
| 1144 | 
            +
                          "internalType": "Amount",
         | 
| 644 1145 | 
             
                          "name": "poolFeeFixAmount",
         | 
| 645 | 
            -
                          "type": " | 
| 1146 | 
            +
                          "type": "uint96"
         | 
| 646 1147 | 
             
                        },
         | 
| 647 1148 | 
             
                        {
         | 
| 648 | 
            -
                          "internalType": " | 
| 1149 | 
            +
                          "internalType": "Amount",
         | 
| 649 1150 | 
             
                          "name": "bundleFeeFixAmount",
         | 
| 650 | 
            -
                          "type": " | 
| 1151 | 
            +
                          "type": "uint96"
         | 
| 651 1152 | 
             
                        },
         | 
| 652 1153 | 
             
                        {
         | 
| 653 | 
            -
                          "internalType": " | 
| 1154 | 
            +
                          "internalType": "Amount",
         | 
| 654 1155 | 
             
                          "name": "distributionFeeFixAmount",
         | 
| 655 | 
            -
                          "type": " | 
| 1156 | 
            +
                          "type": "uint96"
         | 
| 656 1157 | 
             
                        },
         | 
| 657 1158 | 
             
                        {
         | 
| 658 | 
            -
                          "internalType": " | 
| 1159 | 
            +
                          "internalType": "Amount",
         | 
| 659 1160 | 
             
                          "name": "productFeeVarAmount",
         | 
| 660 | 
            -
                          "type": " | 
| 1161 | 
            +
                          "type": "uint96"
         | 
| 661 1162 | 
             
                        },
         | 
| 662 1163 | 
             
                        {
         | 
| 663 | 
            -
                          "internalType": " | 
| 1164 | 
            +
                          "internalType": "Amount",
         | 
| 664 1165 | 
             
                          "name": "poolFeeVarAmount",
         | 
| 665 | 
            -
                          "type": " | 
| 1166 | 
            +
                          "type": "uint96"
         | 
| 666 1167 | 
             
                        },
         | 
| 667 1168 | 
             
                        {
         | 
| 668 | 
            -
                          "internalType": " | 
| 1169 | 
            +
                          "internalType": "Amount",
         | 
| 669 1170 | 
             
                          "name": "bundleFeeVarAmount",
         | 
| 670 | 
            -
                          "type": " | 
| 1171 | 
            +
                          "type": "uint96"
         | 
| 671 1172 | 
             
                        },
         | 
| 672 1173 | 
             
                        {
         | 
| 673 | 
            -
                          "internalType": " | 
| 1174 | 
            +
                          "internalType": "Amount",
         | 
| 674 1175 | 
             
                          "name": "distributionFeeVarAmount",
         | 
| 675 | 
            -
                          "type": " | 
| 1176 | 
            +
                          "type": "uint96"
         | 
| 676 1177 | 
             
                        },
         | 
| 677 1178 | 
             
                        {
         | 
| 678 | 
            -
                          "internalType": " | 
| 1179 | 
            +
                          "internalType": "Amount",
         | 
| 679 1180 | 
             
                          "name": "distributionOwnerFeeFixAmount",
         | 
| 680 | 
            -
                          "type": " | 
| 1181 | 
            +
                          "type": "uint96"
         | 
| 681 1182 | 
             
                        },
         | 
| 682 1183 | 
             
                        {
         | 
| 683 | 
            -
                          "internalType": " | 
| 1184 | 
            +
                          "internalType": "Amount",
         | 
| 684 1185 | 
             
                          "name": "distributionOwnerFeeVarAmount",
         | 
| 685 | 
            -
                          "type": " | 
| 1186 | 
            +
                          "type": "uint96"
         | 
| 686 1187 | 
             
                        },
         | 
| 687 1188 | 
             
                        {
         | 
| 688 | 
            -
                          "internalType": " | 
| 1189 | 
            +
                          "internalType": "Amount",
         | 
| 689 1190 | 
             
                          "name": "commissionAmount",
         | 
| 690 | 
            -
                          "type": " | 
| 1191 | 
            +
                          "type": "uint96"
         | 
| 691 1192 | 
             
                        },
         | 
| 692 1193 | 
             
                        {
         | 
| 693 | 
            -
                          "internalType": " | 
| 1194 | 
            +
                          "internalType": "Amount",
         | 
| 694 1195 | 
             
                          "name": "discountAmount",
         | 
| 695 | 
            -
                          "type": " | 
| 1196 | 
            +
                          "type": "uint96"
         | 
| 696 1197 | 
             
                        }
         | 
| 697 1198 | 
             
                      ],
         | 
| 698 | 
            -
                      "internalType": "struct IPolicy. | 
| 1199 | 
            +
                      "internalType": "struct IPolicy.PremiumInfo",
         | 
| 699 1200 | 
             
                      "name": "premium",
         | 
| 700 1201 | 
             
                      "type": "tuple"
         | 
| 701 1202 | 
             
                    }
         | 
| @@ -712,11 +1213,6 @@ | |
| 712 1213 | 
             
                      "name": "instance",
         | 
| 713 1214 | 
             
                      "type": "address"
         | 
| 714 1215 | 
             
                    },
         | 
| 715 | 
            -
                    {
         | 
| 716 | 
            -
                      "internalType": "address",
         | 
| 717 | 
            -
                      "name": "token",
         | 
| 718 | 
            -
                      "type": "address"
         | 
| 719 | 
            -
                    },
         | 
| 720 1216 | 
             
                    {
         | 
| 721 1217 | 
             
                      "internalType": "NftId",
         | 
| 722 1218 | 
             
                      "name": "policyNftId",
         | 
| @@ -734,11 +1230,6 @@ | |
| 734 1230 | 
             
                          "name": "bundleNftId",
         | 
| 735 1231 | 
             
                          "type": "uint96"
         | 
| 736 1232 | 
             
                        },
         | 
| 737 | 
            -
                        {
         | 
| 738 | 
            -
                          "internalType": "ReferralId",
         | 
| 739 | 
            -
                          "name": "referralId",
         | 
| 740 | 
            -
                          "type": "bytes8"
         | 
| 741 | 
            -
                        },
         | 
| 742 1233 | 
             
                        {
         | 
| 743 1234 | 
             
                          "internalType": "RiskId",
         | 
| 744 1235 | 
             
                          "name": "riskId",
         | 
| @@ -755,24 +1246,9 @@ | |
| 755 1246 | 
             
                          "type": "uint96"
         | 
| 756 1247 | 
             
                        },
         | 
| 757 1248 | 
             
                        {
         | 
| 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"
         | 
| 1249 | 
            +
                          "internalType": "ReferralId",
         | 
| 1250 | 
            +
                          "name": "referralId",
         | 
| 1251 | 
            +
                          "type": "bytes8"
         | 
| 776 1252 | 
             
                        },
         | 
| 777 1253 | 
             
                        {
         | 
| 778 1254 | 
             
                          "internalType": "uint16",
         | 
| @@ -800,88 +1276,18 @@ | |
| 800 1276 | 
             
                          "type": "uint40"
         | 
| 801 1277 | 
             
                        },
         | 
| 802 1278 | 
             
                        {
         | 
| 803 | 
            -
                          "internalType": " | 
| 804 | 
            -
                          "name": " | 
| 1279 | 
            +
                          "internalType": "Seconds",
         | 
| 1280 | 
            +
                          "name": "lifetime",
         | 
| 805 1281 | 
             
                          "type": "uint40"
         | 
| 806 1282 | 
             
                        },
         | 
| 807 1283 | 
             
                        {
         | 
| 808 1284 | 
             
                          "internalType": "Timestamp",
         | 
| 809 | 
            -
                          "name": " | 
| 1285 | 
            +
                          "name": "expiredAt",
         | 
| 810 1286 | 
             
                          "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 1287 | 
             
                        },
         | 
| 882 1288 | 
             
                        {
         | 
| 883 | 
            -
                          "internalType": " | 
| 884 | 
            -
                          "name": " | 
| 1289 | 
            +
                          "internalType": "Timestamp",
         | 
| 1290 | 
            +
                          "name": "closedAt",
         | 
| 885 1291 | 
             
                          "type": "uint40"
         | 
| 886 1292 | 
             
                        },
         | 
| 887 1293 | 
             
                        {
         | 
| @@ -893,41 +1299,6 @@ | |
| 893 1299 | 
             
                          "internalType": "bytes",
         | 
| 894 1300 | 
             
                          "name": "processData",
         | 
| 895 1301 | 
             
                          "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 1302 | 
             
                        }
         | 
| 932 1303 | 
             
                      ],
         | 
| 933 1304 | 
             
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| @@ -956,12 +1327,12 @@ | |
| 956 1327 | 
             
                {
         | 
| 957 1328 | 
             
                  "inputs": [
         | 
| 958 1329 | 
             
                    {
         | 
| 959 | 
            -
                      "internalType": " | 
| 960 | 
            -
                      "name": " | 
| 961 | 
            -
                      "type": " | 
| 1330 | 
            +
                      "internalType": "Amount",
         | 
| 1331 | 
            +
                      "name": "maxBalanceAmount",
         | 
| 1332 | 
            +
                      "type": "uint96"
         | 
| 962 1333 | 
             
                    }
         | 
| 963 1334 | 
             
                  ],
         | 
| 964 | 
            -
                  "name": " | 
| 1335 | 
            +
                  "name": "setMaxBalanceAmount",
         | 
| 965 1336 | 
             
                  "outputs": [],
         | 
| 966 1337 | 
             
                  "stateMutability": "nonpayable",
         | 
| 967 1338 | 
             
                  "type": "function"
         | 
| @@ -969,72 +1340,24 @@ | |
| 969 1340 | 
             
                {
         | 
| 970 1341 | 
             
                  "inputs": [
         | 
| 971 1342 | 
             
                    {
         | 
| 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"
         | 
| 1343 | 
            +
                      "internalType": "NftId",
         | 
| 1344 | 
            +
                      "name": "bundleNftId",
         | 
| 1345 | 
            +
                      "type": "uint96"
         | 
| 1004 1346 | 
             
                    },
         | 
| 1005 1347 | 
             
                    {
         | 
| 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"
         | 
| 1348 | 
            +
                      "internalType": "Amount",
         | 
| 1349 | 
            +
                      "name": "amount",
         | 
| 1350 | 
            +
                      "type": "uint96"
         | 
| 1021 1351 | 
             
                    }
         | 
| 1022 1352 | 
             
                  ],
         | 
| 1023 | 
            -
                  "name": " | 
| 1024 | 
            -
                  "outputs": [ | 
| 1025 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1026 | 
            -
                  "type": "function"
         | 
| 1027 | 
            -
                },
         | 
| 1028 | 
            -
                {
         | 
| 1029 | 
            -
                  "inputs": [
         | 
| 1353 | 
            +
                  "name": "stake",
         | 
| 1354 | 
            +
                  "outputs": [
         | 
| 1030 1355 | 
             
                    {
         | 
| 1031 1356 | 
             
                      "internalType": "Amount",
         | 
| 1032 | 
            -
                      "name": " | 
| 1357 | 
            +
                      "name": "netAmount",
         | 
| 1033 1358 | 
             
                      "type": "uint96"
         | 
| 1034 1359 | 
             
                    }
         | 
| 1035 1360 | 
             
                  ],
         | 
| 1036 | 
            -
                  "name": "setMaxCapitalAmount",
         | 
| 1037 | 
            -
                  "outputs": [],
         | 
| 1038 1361 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1039 1362 | 
             
                  "type": "function"
         | 
| 1040 1363 | 
             
                },
         | 
| @@ -1057,6 +1380,30 @@ | |
| 1057 1380 | 
             
                  "stateMutability": "view",
         | 
| 1058 1381 | 
             
                  "type": "function"
         | 
| 1059 1382 | 
             
                },
         | 
| 1383 | 
            +
                {
         | 
| 1384 | 
            +
                  "inputs": [
         | 
| 1385 | 
            +
                    {
         | 
| 1386 | 
            +
                      "internalType": "NftId",
         | 
| 1387 | 
            +
                      "name": "bundleNftId",
         | 
| 1388 | 
            +
                      "type": "uint96"
         | 
| 1389 | 
            +
                    },
         | 
| 1390 | 
            +
                    {
         | 
| 1391 | 
            +
                      "internalType": "Amount",
         | 
| 1392 | 
            +
                      "name": "amount",
         | 
| 1393 | 
            +
                      "type": "uint96"
         | 
| 1394 | 
            +
                    }
         | 
| 1395 | 
            +
                  ],
         | 
| 1396 | 
            +
                  "name": "unstake",
         | 
| 1397 | 
            +
                  "outputs": [
         | 
| 1398 | 
            +
                    {
         | 
| 1399 | 
            +
                      "internalType": "Amount",
         | 
| 1400 | 
            +
                      "name": "netAmount",
         | 
| 1401 | 
            +
                      "type": "uint96"
         | 
| 1402 | 
            +
                    }
         | 
| 1403 | 
            +
                  ],
         | 
| 1404 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1405 | 
            +
                  "type": "function"
         | 
| 1406 | 
            +
                },
         | 
| 1060 1407 | 
             
                {
         | 
| 1061 1408 | 
             
                  "inputs": [
         | 
| 1062 1409 | 
             
                    {
         | 
| @@ -1069,6 +1416,30 @@ | |
| 1069 1416 | 
             
                  "outputs": [],
         | 
| 1070 1417 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1071 1418 | 
             
                  "type": "function"
         | 
| 1419 | 
            +
                },
         | 
| 1420 | 
            +
                {
         | 
| 1421 | 
            +
                  "inputs": [
         | 
| 1422 | 
            +
                    {
         | 
| 1423 | 
            +
                      "internalType": "NftId",
         | 
| 1424 | 
            +
                      "name": "bundleNftId",
         | 
| 1425 | 
            +
                      "type": "uint96"
         | 
| 1426 | 
            +
                    },
         | 
| 1427 | 
            +
                    {
         | 
| 1428 | 
            +
                      "internalType": "Amount",
         | 
| 1429 | 
            +
                      "name": "amount",
         | 
| 1430 | 
            +
                      "type": "uint96"
         | 
| 1431 | 
            +
                    }
         | 
| 1432 | 
            +
                  ],
         | 
| 1433 | 
            +
                  "name": "withdrawBundleFees",
         | 
| 1434 | 
            +
                  "outputs": [
         | 
| 1435 | 
            +
                    {
         | 
| 1436 | 
            +
                      "internalType": "Amount",
         | 
| 1437 | 
            +
                      "name": "withdrawnAmount",
         | 
| 1438 | 
            +
                      "type": "uint96"
         | 
| 1439 | 
            +
                    }
         | 
| 1440 | 
            +
                  ],
         | 
| 1441 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1442 | 
            +
                  "type": "function"
         | 
| 1072 1443 | 
             
                }
         | 
| 1073 1444 | 
             
              ],
         | 
| 1074 1445 | 
             
              "bytecode": "0x",
         |