@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 | 
             
                  "name": "ErrorComponentNameLengthZero",
         | 
| @@ -59,43 +70,22 @@ | |
| 59 70 | 
             
                },
         | 
| 60 71 | 
             
                {
         | 
| 61 72 | 
             
                  "inputs": [],
         | 
| 62 | 
            -
                  "name": " | 
| 73 | 
            +
                  "name": "ErrorComponentProductNftIdNonzero",
         | 
| 63 74 | 
             
                  "type": "error"
         | 
| 64 75 | 
             
                },
         | 
| 65 76 | 
             
                {
         | 
| 66 77 | 
             
                  "inputs": [],
         | 
| 67 | 
            -
                  "name": " | 
| 78 | 
            +
                  "name": "ErrorComponentProductNftIdZero",
         | 
| 68 79 | 
             
                  "type": "error"
         | 
| 69 80 | 
             
                },
         | 
| 70 81 | 
             
                {
         | 
| 71 82 | 
             
                  "inputs": [],
         | 
| 72 | 
            -
                  "name": " | 
| 83 | 
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 73 84 | 
             
                  "type": "error"
         | 
| 74 85 | 
             
                },
         | 
| 75 86 | 
             
                {
         | 
| 76 | 
            -
                  "inputs": [
         | 
| 77 | 
            -
             | 
| 78 | 
            -
                      "internalType": "address",
         | 
| 79 | 
            -
                      "name": "oldWallet",
         | 
| 80 | 
            -
                      "type": "address"
         | 
| 81 | 
            -
                    },
         | 
| 82 | 
            -
                    {
         | 
| 83 | 
            -
                      "internalType": "address",
         | 
| 84 | 
            -
                      "name": "newWallet",
         | 
| 85 | 
            -
                      "type": "address"
         | 
| 86 | 
            -
                    },
         | 
| 87 | 
            -
                    {
         | 
| 88 | 
            -
                      "internalType": "uint256",
         | 
| 89 | 
            -
                      "name": "allowance",
         | 
| 90 | 
            -
                      "type": "uint256"
         | 
| 91 | 
            -
                    },
         | 
| 92 | 
            -
                    {
         | 
| 93 | 
            -
                      "internalType": "uint256",
         | 
| 94 | 
            -
                      "name": "balance",
         | 
| 95 | 
            -
                      "type": "uint256"
         | 
| 96 | 
            -
                    }
         | 
| 97 | 
            -
                  ],
         | 
| 98 | 
            -
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 87 | 
            +
                  "inputs": [],
         | 
| 88 | 
            +
                  "name": "ErrorComponentWalletAddressZero",
         | 
| 99 89 | 
             
                  "type": "error"
         | 
| 100 90 | 
             
                },
         | 
| 101 91 | 
             
                {
         | 
| @@ -130,6 +120,22 @@ | |
| 130 120 | 
             
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 131 121 | 
             
                  "type": "error"
         | 
| 132 122 | 
             
                },
         | 
| 123 | 
            +
                {
         | 
| 124 | 
            +
                  "inputs": [
         | 
| 125 | 
            +
                    {
         | 
| 126 | 
            +
                      "internalType": "NftId",
         | 
| 127 | 
            +
                      "name": "nftId",
         | 
| 128 | 
            +
                      "type": "uint96"
         | 
| 129 | 
            +
                    },
         | 
| 130 | 
            +
                    {
         | 
| 131 | 
            +
                      "internalType": "ObjectType",
         | 
| 132 | 
            +
                      "name": "expectedObjectType",
         | 
| 133 | 
            +
                      "type": "uint8"
         | 
| 134 | 
            +
                    }
         | 
| 135 | 
            +
                  ],
         | 
| 136 | 
            +
                  "name": "ErrorNftOwnableInvalidType",
         | 
| 137 | 
            +
                  "type": "error"
         | 
| 138 | 
            +
                },
         | 
| 133 139 | 
             
                {
         | 
| 134 140 | 
             
                  "inputs": [
         | 
| 135 141 | 
             
                    {
         | 
| @@ -152,6 +158,27 @@ | |
| 152 158 | 
             
                  "name": "ErrorNotRegistry",
         | 
| 153 159 | 
             
                  "type": "error"
         | 
| 154 160 | 
             
                },
         | 
| 161 | 
            +
                {
         | 
| 162 | 
            +
                  "inputs": [],
         | 
| 163 | 
            +
                  "name": "ErrorRegisterableNotActive",
         | 
| 164 | 
            +
                  "type": "error"
         | 
| 165 | 
            +
                },
         | 
| 166 | 
            +
                {
         | 
| 167 | 
            +
                  "inputs": [
         | 
| 168 | 
            +
                    {
         | 
| 169 | 
            +
                      "internalType": "NftId",
         | 
| 170 | 
            +
                      "name": "targetNftId",
         | 
| 171 | 
            +
                      "type": "uint96"
         | 
| 172 | 
            +
                    },
         | 
| 173 | 
            +
                    {
         | 
| 174 | 
            +
                      "internalType": "ObjectType",
         | 
| 175 | 
            +
                      "name": "objectType",
         | 
| 176 | 
            +
                      "type": "uint8"
         | 
| 177 | 
            +
                    }
         | 
| 178 | 
            +
                  ],
         | 
| 179 | 
            +
                  "name": "ErrorStakingCrossChainTargetsNotSupported",
         | 
| 180 | 
            +
                  "type": "error"
         | 
| 181 | 
            +
                },
         | 
| 155 182 | 
             
                {
         | 
| 156 183 | 
             
                  "inputs": [
         | 
| 157 184 | 
             
                    {
         | 
| @@ -206,40 +233,82 @@ | |
| 206 233 | 
             
                      "name": "targetNftId",
         | 
| 207 234 | 
             
                      "type": "uint96"
         | 
| 208 235 | 
             
                    },
         | 
| 236 | 
            +
                    {
         | 
| 237 | 
            +
                      "internalType": "Seconds",
         | 
| 238 | 
            +
                      "name": "lockingPeriod",
         | 
| 239 | 
            +
                      "type": "uint40"
         | 
| 240 | 
            +
                    },
         | 
| 241 | 
            +
                    {
         | 
| 242 | 
            +
                      "internalType": "Seconds",
         | 
| 243 | 
            +
                      "name": "minLockingPeriod",
         | 
| 244 | 
            +
                      "type": "uint40"
         | 
| 245 | 
            +
                    },
         | 
| 209 246 | 
             
                    {
         | 
| 210 247 | 
             
                      "internalType": "Seconds",
         | 
| 211 248 | 
             
                      "name": "maxLockingPeriod",
         | 
| 212 249 | 
             
                      "type": "uint40"
         | 
| 250 | 
            +
                    }
         | 
| 251 | 
            +
                  ],
         | 
| 252 | 
            +
                  "name": "ErrorStakingLockingPeriodInvalid",
         | 
| 253 | 
            +
                  "type": "error"
         | 
| 254 | 
            +
                },
         | 
| 255 | 
            +
                {
         | 
| 256 | 
            +
                  "inputs": [
         | 
| 257 | 
            +
                    {
         | 
| 258 | 
            +
                      "internalType": "Seconds",
         | 
| 259 | 
            +
                      "name": "minLockingPeriod",
         | 
| 260 | 
            +
                      "type": "uint40"
         | 
| 213 261 | 
             
                    },
         | 
| 214 262 | 
             
                    {
         | 
| 215 263 | 
             
                      "internalType": "Seconds",
         | 
| 216 | 
            -
                      "name": " | 
| 264 | 
            +
                      "name": "maxLockingPeriod",
         | 
| 217 265 | 
             
                      "type": "uint40"
         | 
| 218 266 | 
             
                    }
         | 
| 219 267 | 
             
                  ],
         | 
| 220 | 
            -
                  "name": " | 
| 268 | 
            +
                  "name": "ErrorStakingLockingPeriodsInvalid",
         | 
| 221 269 | 
             
                  "type": "error"
         | 
| 222 270 | 
             
                },
         | 
| 223 271 | 
             
                {
         | 
| 224 272 | 
             
                  "inputs": [
         | 
| 225 273 | 
             
                    {
         | 
| 226 274 | 
             
                      "internalType": "NftId",
         | 
| 227 | 
            -
                      "name": " | 
| 275 | 
            +
                      "name": "nftId",
         | 
| 228 276 | 
             
                      "type": "uint96"
         | 
| 229 277 | 
             
                    }
         | 
| 230 278 | 
             
                  ],
         | 
| 231 | 
            -
                  "name": " | 
| 279 | 
            +
                  "name": "ErrorStakingNotNftOwner",
         | 
| 232 280 | 
             
                  "type": "error"
         | 
| 233 281 | 
             
                },
         | 
| 234 282 | 
             
                {
         | 
| 235 283 | 
             
                  "inputs": [
         | 
| 236 284 | 
             
                    {
         | 
| 237 285 | 
             
                      "internalType": "NftId",
         | 
| 238 | 
            -
                      "name": " | 
| 286 | 
            +
                      "name": "stakeNftId",
         | 
| 239 287 | 
             
                      "type": "uint96"
         | 
| 288 | 
            +
                    },
         | 
| 289 | 
            +
                    {
         | 
| 290 | 
            +
                      "internalType": "address",
         | 
| 291 | 
            +
                      "name": "expectedOwner",
         | 
| 292 | 
            +
                      "type": "address"
         | 
| 293 | 
            +
                    },
         | 
| 294 | 
            +
                    {
         | 
| 295 | 
            +
                      "internalType": "address",
         | 
| 296 | 
            +
                      "name": "actualOwner",
         | 
| 297 | 
            +
                      "type": "address"
         | 
| 240 298 | 
             
                    }
         | 
| 241 299 | 
             
                  ],
         | 
| 242 | 
            -
                  "name": " | 
| 300 | 
            +
                  "name": "ErrorStakingNotOwner",
         | 
| 301 | 
            +
                  "type": "error"
         | 
| 302 | 
            +
                },
         | 
| 303 | 
            +
                {
         | 
| 304 | 
            +
                  "inputs": [
         | 
| 305 | 
            +
                    {
         | 
| 306 | 
            +
                      "internalType": "address",
         | 
| 307 | 
            +
                      "name": "registry",
         | 
| 308 | 
            +
                      "type": "address"
         | 
| 309 | 
            +
                    }
         | 
| 310 | 
            +
                  ],
         | 
| 311 | 
            +
                  "name": "ErrorStakingNotRegistry",
         | 
| 243 312 | 
             
                  "type": "error"
         | 
| 244 313 | 
             
                },
         | 
| 245 314 | 
             
                {
         | 
| @@ -269,6 +338,17 @@ | |
| 269 338 | 
             
                  "name": "ErrorStakingNotTarget",
         | 
| 270 339 | 
             
                  "type": "error"
         | 
| 271 340 | 
             
                },
         | 
| 341 | 
            +
                {
         | 
| 342 | 
            +
                  "inputs": [
         | 
| 343 | 
            +
                    {
         | 
| 344 | 
            +
                      "internalType": "VersionPart",
         | 
| 345 | 
            +
                      "name": "release",
         | 
| 346 | 
            +
                      "type": "uint8"
         | 
| 347 | 
            +
                    }
         | 
| 348 | 
            +
                  ],
         | 
| 349 | 
            +
                  "name": "ErrorStakingReleaseNotActive",
         | 
| 350 | 
            +
                  "type": "error"
         | 
| 351 | 
            +
                },
         | 
| 272 352 | 
             
                {
         | 
| 273 353 | 
             
                  "inputs": [
         | 
| 274 354 | 
             
                    {
         | 
| @@ -276,18 +356,50 @@ | |
| 276 356 | 
             
                      "name": "targetNftId",
         | 
| 277 357 | 
             
                      "type": "uint96"
         | 
| 278 358 | 
             
                    },
         | 
| 359 | 
            +
                    {
         | 
| 360 | 
            +
                      "internalType": "UFixed",
         | 
| 361 | 
            +
                      "name": "rewardRate",
         | 
| 362 | 
            +
                      "type": "uint160"
         | 
| 363 | 
            +
                    },
         | 
| 364 | 
            +
                    {
         | 
| 365 | 
            +
                      "internalType": "UFixed",
         | 
| 366 | 
            +
                      "name": "minRewardRate",
         | 
| 367 | 
            +
                      "type": "uint160"
         | 
| 368 | 
            +
                    },
         | 
| 279 369 | 
             
                    {
         | 
| 280 370 | 
             
                      "internalType": "UFixed",
         | 
| 281 371 | 
             
                      "name": "maxRewardRate",
         | 
| 282 | 
            -
                      "type": " | 
| 372 | 
            +
                      "type": "uint160"
         | 
| 373 | 
            +
                    }
         | 
| 374 | 
            +
                  ],
         | 
| 375 | 
            +
                  "name": "ErrorStakingRewardRateInvalid",
         | 
| 376 | 
            +
                  "type": "error"
         | 
| 377 | 
            +
                },
         | 
| 378 | 
            +
                {
         | 
| 379 | 
            +
                  "inputs": [
         | 
| 380 | 
            +
                    {
         | 
| 381 | 
            +
                      "internalType": "UFixed",
         | 
| 382 | 
            +
                      "name": "minRewardRate",
         | 
| 383 | 
            +
                      "type": "uint160"
         | 
| 283 384 | 
             
                    },
         | 
| 284 385 | 
             
                    {
         | 
| 285 386 | 
             
                      "internalType": "UFixed",
         | 
| 286 | 
            -
                      "name": " | 
| 287 | 
            -
                      "type": " | 
| 387 | 
            +
                      "name": "maxRewardRate",
         | 
| 388 | 
            +
                      "type": "uint160"
         | 
| 389 | 
            +
                    }
         | 
| 390 | 
            +
                  ],
         | 
| 391 | 
            +
                  "name": "ErrorStakingRewardRatesInvalid",
         | 
| 392 | 
            +
                  "type": "error"
         | 
| 393 | 
            +
                },
         | 
| 394 | 
            +
                {
         | 
| 395 | 
            +
                  "inputs": [
         | 
| 396 | 
            +
                    {
         | 
| 397 | 
            +
                      "internalType": "VersionPart",
         | 
| 398 | 
            +
                      "name": "release",
         | 
| 399 | 
            +
                      "type": "uint8"
         | 
| 288 400 | 
             
                    }
         | 
| 289 401 | 
             
                  ],
         | 
| 290 | 
            -
                  "name": " | 
| 402 | 
            +
                  "name": "ErrorStakingServiceNotFound",
         | 
| 291 403 | 
             
                  "type": "error"
         | 
| 292 404 | 
             
                },
         | 
| 293 405 | 
             
                {
         | 
| @@ -301,6 +413,38 @@ | |
| 301 413 | 
             
                  "name": "ErrorStakingStakeAmountZero",
         | 
| 302 414 | 
             
                  "type": "error"
         | 
| 303 415 | 
             
                },
         | 
| 416 | 
            +
                {
         | 
| 417 | 
            +
                  "inputs": [
         | 
| 418 | 
            +
                    {
         | 
| 419 | 
            +
                      "internalType": "NftId",
         | 
| 420 | 
            +
                      "name": "stakeNftId",
         | 
| 421 | 
            +
                      "type": "uint96"
         | 
| 422 | 
            +
                    },
         | 
| 423 | 
            +
                    {
         | 
| 424 | 
            +
                      "internalType": "Timestamp",
         | 
| 425 | 
            +
                      "name": "lockedUntil",
         | 
| 426 | 
            +
                      "type": "uint40"
         | 
| 427 | 
            +
                    }
         | 
| 428 | 
            +
                  ],
         | 
| 429 | 
            +
                  "name": "ErrorStakingStakeLocked",
         | 
| 430 | 
            +
                  "type": "error"
         | 
| 431 | 
            +
                },
         | 
| 432 | 
            +
                {
         | 
| 433 | 
            +
                  "inputs": [
         | 
| 434 | 
            +
                    {
         | 
| 435 | 
            +
                      "internalType": "Amount",
         | 
| 436 | 
            +
                      "name": "minStakingAmount",
         | 
| 437 | 
            +
                      "type": "uint96"
         | 
| 438 | 
            +
                    },
         | 
| 439 | 
            +
                    {
         | 
| 440 | 
            +
                      "internalType": "Amount",
         | 
| 441 | 
            +
                      "name": "maxStakingAmount",
         | 
| 442 | 
            +
                      "type": "uint96"
         | 
| 443 | 
            +
                    }
         | 
| 444 | 
            +
                  ],
         | 
| 445 | 
            +
                  "name": "ErrorStakingStakingAmountsInvalid",
         | 
| 446 | 
            +
                  "type": "error"
         | 
| 447 | 
            +
                },
         | 
| 304 448 | 
             
                {
         | 
| 305 449 | 
             
                  "inputs": [
         | 
| 306 450 | 
             
                    {
         | 
| @@ -312,6 +456,17 @@ | |
| 312 456 | 
             
                  "name": "ErrorStakingStakingReaderStakingMismatch",
         | 
| 313 457 | 
             
                  "type": "error"
         | 
| 314 458 | 
             
                },
         | 
| 459 | 
            +
                {
         | 
| 460 | 
            +
                  "inputs": [
         | 
| 461 | 
            +
                    {
         | 
| 462 | 
            +
                      "internalType": "ObjectType",
         | 
| 463 | 
            +
                      "name": "targetType",
         | 
| 464 | 
            +
                      "type": "uint8"
         | 
| 465 | 
            +
                    }
         | 
| 466 | 
            +
                  ],
         | 
| 467 | 
            +
                  "name": "ErrorStakingSupportTypeInvalid",
         | 
| 468 | 
            +
                  "type": "error"
         | 
| 469 | 
            +
                },
         | 
| 315 470 | 
             
                {
         | 
| 316 471 | 
             
                  "inputs": [
         | 
| 317 472 | 
             
                    {
         | 
| @@ -323,20 +478,30 @@ | |
| 323 478 | 
             
                  "name": "ErrorStakingTargetAlreadyRegistered",
         | 
| 324 479 | 
             
                  "type": "error"
         | 
| 325 480 | 
             
                },
         | 
| 326 | 
            -
                {
         | 
| 327 | 
            -
                  "inputs": [],
         | 
| 328 | 
            -
                  "name": "ErrorStakingTargetNftIdZero",
         | 
| 329 | 
            -
                  "type": "error"
         | 
| 330 | 
            -
                },
         | 
| 331 481 | 
             
                {
         | 
| 332 482 | 
             
                  "inputs": [
         | 
| 333 483 | 
             
                    {
         | 
| 334 484 | 
             
                      "internalType": "NftId",
         | 
| 335 485 | 
             
                      "name": "targetNftId",
         | 
| 336 486 | 
             
                      "type": "uint96"
         | 
| 487 | 
            +
                    },
         | 
| 488 | 
            +
                    {
         | 
| 489 | 
            +
                      "internalType": "Amount",
         | 
| 490 | 
            +
                      "name": "stakeLimitAmount",
         | 
| 491 | 
            +
                      "type": "uint96"
         | 
| 492 | 
            +
                    },
         | 
| 493 | 
            +
                    {
         | 
| 494 | 
            +
                      "internalType": "Amount",
         | 
| 495 | 
            +
                      "name": "stakedAmount",
         | 
| 496 | 
            +
                      "type": "uint96"
         | 
| 337 497 | 
             
                    }
         | 
| 338 498 | 
             
                  ],
         | 
| 339 | 
            -
                  "name": " | 
| 499 | 
            +
                  "name": "ErrorStakingTargetMaxStakedAmountExceeded",
         | 
| 500 | 
            +
                  "type": "error"
         | 
| 501 | 
            +
                },
         | 
| 502 | 
            +
                {
         | 
| 503 | 
            +
                  "inputs": [],
         | 
| 504 | 
            +
                  "name": "ErrorStakingTargetNftIdZero",
         | 
| 340 505 | 
             
                  "type": "error"
         | 
| 341 506 | 
             
                },
         | 
| 342 507 | 
             
                {
         | 
| @@ -358,9 +523,9 @@ | |
| 358 523 | 
             
                      "type": "uint96"
         | 
| 359 524 | 
             
                    },
         | 
| 360 525 | 
             
                    {
         | 
| 361 | 
            -
                      "internalType": " | 
| 526 | 
            +
                      "internalType": "ChainId",
         | 
| 362 527 | 
             
                      "name": "chainId",
         | 
| 363 | 
            -
                      "type": " | 
| 528 | 
            +
                      "type": "uint96"
         | 
| 364 529 | 
             
                    },
         | 
| 365 530 | 
             
                    {
         | 
| 366 531 | 
             
                      "internalType": "address",
         | 
| @@ -411,9 +576,9 @@ | |
| 411 576 | 
             
                {
         | 
| 412 577 | 
             
                  "inputs": [
         | 
| 413 578 | 
             
                    {
         | 
| 414 | 
            -
                      "internalType": " | 
| 579 | 
            +
                      "internalType": "ChainId",
         | 
| 415 580 | 
             
                      "name": "chainId",
         | 
| 416 | 
            -
                      "type": " | 
| 581 | 
            +
                      "type": "uint96"
         | 
| 417 582 | 
             
                    },
         | 
| 418 583 | 
             
                    {
         | 
| 419 584 | 
             
                      "internalType": "address",
         | 
| @@ -424,6 +589,16 @@ | |
| 424 589 | 
             
                  "name": "ErrorStakingTokenNotRegistered",
         | 
| 425 590 | 
             
                  "type": "error"
         | 
| 426 591 | 
             
                },
         | 
| 592 | 
            +
                {
         | 
| 593 | 
            +
                  "inputs": [],
         | 
| 594 | 
            +
                  "name": "ErrorVersionableInitializeNotImplemented",
         | 
| 595 | 
            +
                  "type": "error"
         | 
| 596 | 
            +
                },
         | 
| 597 | 
            +
                {
         | 
| 598 | 
            +
                  "inputs": [],
         | 
| 599 | 
            +
                  "name": "ErrorVersionableUpgradeNotImplemented",
         | 
| 600 | 
            +
                  "type": "error"
         | 
| 601 | 
            +
                },
         | 
| 427 602 | 
             
                {
         | 
| 428 603 | 
             
                  "anonymous": false,
         | 
| 429 604 | 
             
                  "inputs": [
         | 
| @@ -440,6 +615,12 @@ | |
| 440 615 | 
             
                {
         | 
| 441 616 | 
             
                  "anonymous": false,
         | 
| 442 617 | 
             
                  "inputs": [
         | 
| 618 | 
            +
                    {
         | 
| 619 | 
            +
                      "indexed": false,
         | 
| 620 | 
            +
                      "internalType": "address",
         | 
| 621 | 
            +
                      "name": "tokenHandler",
         | 
| 622 | 
            +
                      "type": "address"
         | 
| 623 | 
            +
                    },
         | 
| 443 624 | 
             
                    {
         | 
| 444 625 | 
             
                      "indexed": false,
         | 
| 445 626 | 
             
                      "internalType": "address",
         | 
| @@ -451,6 +632,12 @@ | |
| 451 632 | 
             
                      "internalType": "Amount",
         | 
| 452 633 | 
             
                      "name": "limit",
         | 
| 453 634 | 
             
                      "type": "uint96"
         | 
| 635 | 
            +
                    },
         | 
| 636 | 
            +
                    {
         | 
| 637 | 
            +
                      "indexed": false,
         | 
| 638 | 
            +
                      "internalType": "bool",
         | 
| 639 | 
            +
                      "name": "isMaxAmount",
         | 
| 640 | 
            +
                      "type": "bool"
         | 
| 454 641 | 
             
                    }
         | 
| 455 642 | 
             
                  ],
         | 
| 456 643 | 
             
                  "name": "LogComponentTokenHandlerApproved",
         | 
| @@ -506,23 +693,17 @@ | |
| 506 693 | 
             
                    {
         | 
| 507 694 | 
             
                      "indexed": false,
         | 
| 508 695 | 
             
                      "internalType": "NftId",
         | 
| 509 | 
            -
                      "name": " | 
| 696 | 
            +
                      "name": "nftId",
         | 
| 510 697 | 
             
                      "type": "uint96"
         | 
| 511 698 | 
             
                    },
         | 
| 512 699 | 
             
                    {
         | 
| 513 700 | 
             
                      "indexed": false,
         | 
| 514 | 
            -
                      "internalType": " | 
| 515 | 
            -
                      "name": " | 
| 516 | 
            -
                      "type": " | 
| 517 | 
            -
                    },
         | 
| 518 | 
            -
                    {
         | 
| 519 | 
            -
                      "indexed": false,
         | 
| 520 | 
            -
                      "internalType": "Seconds",
         | 
| 521 | 
            -
                      "name": "lockingPeriod",
         | 
| 522 | 
            -
                      "type": "uint40"
         | 
| 701 | 
            +
                      "internalType": "address",
         | 
| 702 | 
            +
                      "name": "owner",
         | 
| 703 | 
            +
                      "type": "address"
         | 
| 523 704 | 
             
                    }
         | 
| 524 705 | 
             
                  ],
         | 
| 525 | 
            -
                  "name": " | 
| 706 | 
            +
                  "name": "LogNftOwnableNftLinkedToAddress",
         | 
| 526 707 | 
             
                  "type": "event"
         | 
| 527 708 | 
             
                },
         | 
| 528 709 | 
             
                {
         | 
| @@ -536,18 +717,24 @@ | |
| 536 717 | 
             
                    },
         | 
| 537 718 | 
             
                    {
         | 
| 538 719 | 
             
                      "indexed": false,
         | 
| 539 | 
            -
                      "internalType": " | 
| 540 | 
            -
                      "name": " | 
| 541 | 
            -
                      "type": " | 
| 720 | 
            +
                      "internalType": "Amount",
         | 
| 721 | 
            +
                      "name": "marginAmount",
         | 
| 722 | 
            +
                      "type": "uint96"
         | 
| 542 723 | 
             
                    },
         | 
| 543 724 | 
             
                    {
         | 
| 544 725 | 
             
                      "indexed": false,
         | 
| 545 | 
            -
                      "internalType": " | 
| 546 | 
            -
                      "name": " | 
| 547 | 
            -
                      "type": " | 
| 726 | 
            +
                      "internalType": "Amount",
         | 
| 727 | 
            +
                      "name": "hardLimitAmount",
         | 
| 728 | 
            +
                      "type": "uint96"
         | 
| 729 | 
            +
                    },
         | 
| 730 | 
            +
                    {
         | 
| 731 | 
            +
                      "indexed": false,
         | 
| 732 | 
            +
                      "internalType": "Blocknumber",
         | 
| 733 | 
            +
                      "name": "lastUpdateIn",
         | 
| 734 | 
            +
                      "type": "uint40"
         | 
| 548 735 | 
             
                    }
         | 
| 549 736 | 
             
                  ],
         | 
| 550 | 
            -
                  "name": " | 
| 737 | 
            +
                  "name": "LogStakingLimitsSet",
         | 
| 551 738 | 
             
                  "type": "event"
         | 
| 552 739 | 
             
                },
         | 
| 553 740 | 
             
                {
         | 
| @@ -555,9 +742,825 @@ | |
| 555 742 | 
             
                  "inputs": [
         | 
| 556 743 | 
             
                    {
         | 
| 557 744 | 
             
                      "indexed": false,
         | 
| 558 | 
            -
                      "internalType": " | 
| 559 | 
            -
                      "name": " | 
| 560 | 
            -
                      "type": " | 
| 745 | 
            +
                      "internalType": "NftId",
         | 
| 746 | 
            +
                      "name": "targetNftId",
         | 
| 747 | 
            +
                      "type": "uint96"
         | 
| 748 | 
            +
                    },
         | 
| 749 | 
            +
                    {
         | 
| 750 | 
            +
                      "indexed": false,
         | 
| 751 | 
            +
                      "internalType": "Amount",
         | 
| 752 | 
            +
                      "name": "dipAmount",
         | 
| 753 | 
            +
                      "type": "uint96"
         | 
| 754 | 
            +
                    },
         | 
| 755 | 
            +
                    {
         | 
| 756 | 
            +
                      "indexed": false,
         | 
| 757 | 
            +
                      "internalType": "address",
         | 
| 758 | 
            +
                      "name": "targetOwner",
         | 
| 759 | 
            +
                      "type": "address"
         | 
| 760 | 
            +
                    },
         | 
| 761 | 
            +
                    {
         | 
| 762 | 
            +
                      "indexed": false,
         | 
| 763 | 
            +
                      "internalType": "Amount",
         | 
| 764 | 
            +
                      "name": "reserveBalance",
         | 
| 765 | 
            +
                      "type": "uint96"
         | 
| 766 | 
            +
                    },
         | 
| 767 | 
            +
                    {
         | 
| 768 | 
            +
                      "indexed": false,
         | 
| 769 | 
            +
                      "internalType": "Blocknumber",
         | 
| 770 | 
            +
                      "name": "lastUpdateIn",
         | 
| 771 | 
            +
                      "type": "uint40"
         | 
| 772 | 
            +
                    }
         | 
| 773 | 
            +
                  ],
         | 
| 774 | 
            +
                  "name": "LogStakingRewardReservesRefilled",
         | 
| 775 | 
            +
                  "type": "event"
         | 
| 776 | 
            +
                },
         | 
| 777 | 
            +
                {
         | 
| 778 | 
            +
                  "anonymous": false,
         | 
| 779 | 
            +
                  "inputs": [
         | 
| 780 | 
            +
                    {
         | 
| 781 | 
            +
                      "indexed": false,
         | 
| 782 | 
            +
                      "internalType": "NftId",
         | 
| 783 | 
            +
                      "name": "targetNftId",
         | 
| 784 | 
            +
                      "type": "uint96"
         | 
| 785 | 
            +
                    },
         | 
| 786 | 
            +
                    {
         | 
| 787 | 
            +
                      "indexed": false,
         | 
| 788 | 
            +
                      "internalType": "Amount",
         | 
| 789 | 
            +
                      "name": "dipAmount",
         | 
| 790 | 
            +
                      "type": "uint96"
         | 
| 791 | 
            +
                    },
         | 
| 792 | 
            +
                    {
         | 
| 793 | 
            +
                      "indexed": false,
         | 
| 794 | 
            +
                      "internalType": "Amount",
         | 
| 795 | 
            +
                      "name": "reserveBalance",
         | 
| 796 | 
            +
                      "type": "uint96"
         | 
| 797 | 
            +
                    },
         | 
| 798 | 
            +
                    {
         | 
| 799 | 
            +
                      "indexed": false,
         | 
| 800 | 
            +
                      "internalType": "Blocknumber",
         | 
| 801 | 
            +
                      "name": "lastUpdateIn",
         | 
| 802 | 
            +
                      "type": "uint40"
         | 
| 803 | 
            +
                    }
         | 
| 804 | 
            +
                  ],
         | 
| 805 | 
            +
                  "name": "LogStakingRewardReservesSpent",
         | 
| 806 | 
            +
                  "type": "event"
         | 
| 807 | 
            +
                },
         | 
| 808 | 
            +
                {
         | 
| 809 | 
            +
                  "anonymous": false,
         | 
| 810 | 
            +
                  "inputs": [
         | 
| 811 | 
            +
                    {
         | 
| 812 | 
            +
                      "indexed": false,
         | 
| 813 | 
            +
                      "internalType": "NftId",
         | 
| 814 | 
            +
                      "name": "targetNftId",
         | 
| 815 | 
            +
                      "type": "uint96"
         | 
| 816 | 
            +
                    },
         | 
| 817 | 
            +
                    {
         | 
| 818 | 
            +
                      "indexed": false,
         | 
| 819 | 
            +
                      "internalType": "Amount",
         | 
| 820 | 
            +
                      "name": "dipAmount",
         | 
| 821 | 
            +
                      "type": "uint96"
         | 
| 822 | 
            +
                    },
         | 
| 823 | 
            +
                    {
         | 
| 824 | 
            +
                      "indexed": false,
         | 
| 825 | 
            +
                      "internalType": "address",
         | 
| 826 | 
            +
                      "name": "targetOwner",
         | 
| 827 | 
            +
                      "type": "address"
         | 
| 828 | 
            +
                    },
         | 
| 829 | 
            +
                    {
         | 
| 830 | 
            +
                      "indexed": false,
         | 
| 831 | 
            +
                      "internalType": "Amount",
         | 
| 832 | 
            +
                      "name": "reserveBalance",
         | 
| 833 | 
            +
                      "type": "uint96"
         | 
| 834 | 
            +
                    },
         | 
| 835 | 
            +
                    {
         | 
| 836 | 
            +
                      "indexed": false,
         | 
| 837 | 
            +
                      "internalType": "Blocknumber",
         | 
| 838 | 
            +
                      "name": "lastUpdateIn",
         | 
| 839 | 
            +
                      "type": "uint40"
         | 
| 840 | 
            +
                    }
         | 
| 841 | 
            +
                  ],
         | 
| 842 | 
            +
                  "name": "LogStakingRewardReservesWithdrawn",
         | 
| 843 | 
            +
                  "type": "event"
         | 
| 844 | 
            +
                },
         | 
| 845 | 
            +
                {
         | 
| 846 | 
            +
                  "anonymous": false,
         | 
| 847 | 
            +
                  "inputs": [
         | 
| 848 | 
            +
                    {
         | 
| 849 | 
            +
                      "indexed": false,
         | 
| 850 | 
            +
                      "internalType": "NftId",
         | 
| 851 | 
            +
                      "name": "stakeNftId",
         | 
| 852 | 
            +
                      "type": "uint96"
         | 
| 853 | 
            +
                    },
         | 
| 854 | 
            +
                    {
         | 
| 855 | 
            +
                      "indexed": false,
         | 
| 856 | 
            +
                      "internalType": "Amount",
         | 
| 857 | 
            +
                      "name": "claimedAmount",
         | 
| 858 | 
            +
                      "type": "uint96"
         | 
| 859 | 
            +
                    },
         | 
| 860 | 
            +
                    {
         | 
| 861 | 
            +
                      "indexed": false,
         | 
| 862 | 
            +
                      "internalType": "Amount",
         | 
| 863 | 
            +
                      "name": "stakeBalance",
         | 
| 864 | 
            +
                      "type": "uint96"
         | 
| 865 | 
            +
                    },
         | 
| 866 | 
            +
                    {
         | 
| 867 | 
            +
                      "indexed": false,
         | 
| 868 | 
            +
                      "internalType": "Amount",
         | 
| 869 | 
            +
                      "name": "rewardBalance",
         | 
| 870 | 
            +
                      "type": "uint96"
         | 
| 871 | 
            +
                    },
         | 
| 872 | 
            +
                    {
         | 
| 873 | 
            +
                      "indexed": false,
         | 
| 874 | 
            +
                      "internalType": "Timestamp",
         | 
| 875 | 
            +
                      "name": "lockedUntil",
         | 
| 876 | 
            +
                      "type": "uint40"
         | 
| 877 | 
            +
                    },
         | 
| 878 | 
            +
                    {
         | 
| 879 | 
            +
                      "indexed": false,
         | 
| 880 | 
            +
                      "internalType": "Blocknumber",
         | 
| 881 | 
            +
                      "name": "lastUpdateIn",
         | 
| 882 | 
            +
                      "type": "uint40"
         | 
| 883 | 
            +
                    }
         | 
| 884 | 
            +
                  ],
         | 
| 885 | 
            +
                  "name": "LogStakingRewardsClaimed",
         | 
| 886 | 
            +
                  "type": "event"
         | 
| 887 | 
            +
                },
         | 
| 888 | 
            +
                {
         | 
| 889 | 
            +
                  "anonymous": false,
         | 
| 890 | 
            +
                  "inputs": [
         | 
| 891 | 
            +
                    {
         | 
| 892 | 
            +
                      "indexed": false,
         | 
| 893 | 
            +
                      "internalType": "NftId",
         | 
| 894 | 
            +
                      "name": "stakeNftId",
         | 
| 895 | 
            +
                      "type": "uint96"
         | 
| 896 | 
            +
                    },
         | 
| 897 | 
            +
                    {
         | 
| 898 | 
            +
                      "indexed": false,
         | 
| 899 | 
            +
                      "internalType": "Amount",
         | 
| 900 | 
            +
                      "name": "restakedAmount",
         | 
| 901 | 
            +
                      "type": "uint96"
         | 
| 902 | 
            +
                    },
         | 
| 903 | 
            +
                    {
         | 
| 904 | 
            +
                      "indexed": false,
         | 
| 905 | 
            +
                      "internalType": "Amount",
         | 
| 906 | 
            +
                      "name": "stakeBalance",
         | 
| 907 | 
            +
                      "type": "uint96"
         | 
| 908 | 
            +
                    },
         | 
| 909 | 
            +
                    {
         | 
| 910 | 
            +
                      "indexed": false,
         | 
| 911 | 
            +
                      "internalType": "Amount",
         | 
| 912 | 
            +
                      "name": "rewardBalance",
         | 
| 913 | 
            +
                      "type": "uint96"
         | 
| 914 | 
            +
                    },
         | 
| 915 | 
            +
                    {
         | 
| 916 | 
            +
                      "indexed": false,
         | 
| 917 | 
            +
                      "internalType": "Timestamp",
         | 
| 918 | 
            +
                      "name": "lockedUntil",
         | 
| 919 | 
            +
                      "type": "uint40"
         | 
| 920 | 
            +
                    },
         | 
| 921 | 
            +
                    {
         | 
| 922 | 
            +
                      "indexed": false,
         | 
| 923 | 
            +
                      "internalType": "Blocknumber",
         | 
| 924 | 
            +
                      "name": "lastUpdateIn",
         | 
| 925 | 
            +
                      "type": "uint40"
         | 
| 926 | 
            +
                    }
         | 
| 927 | 
            +
                  ],
         | 
| 928 | 
            +
                  "name": "LogStakingRewardsRestaked",
         | 
| 929 | 
            +
                  "type": "event"
         | 
| 930 | 
            +
                },
         | 
| 931 | 
            +
                {
         | 
| 932 | 
            +
                  "anonymous": false,
         | 
| 933 | 
            +
                  "inputs": [
         | 
| 934 | 
            +
                    {
         | 
| 935 | 
            +
                      "indexed": false,
         | 
| 936 | 
            +
                      "internalType": "NftId",
         | 
| 937 | 
            +
                      "name": "stakeNftId",
         | 
| 938 | 
            +
                      "type": "uint96"
         | 
| 939 | 
            +
                    },
         | 
| 940 | 
            +
                    {
         | 
| 941 | 
            +
                      "indexed": false,
         | 
| 942 | 
            +
                      "internalType": "NftId",
         | 
| 943 | 
            +
                      "name": "targetNftId",
         | 
| 944 | 
            +
                      "type": "uint96"
         | 
| 945 | 
            +
                    },
         | 
| 946 | 
            +
                    {
         | 
| 947 | 
            +
                      "indexed": false,
         | 
| 948 | 
            +
                      "internalType": "Amount",
         | 
| 949 | 
            +
                      "name": "stakeAmount",
         | 
| 950 | 
            +
                      "type": "uint96"
         | 
| 951 | 
            +
                    },
         | 
| 952 | 
            +
                    {
         | 
| 953 | 
            +
                      "indexed": false,
         | 
| 954 | 
            +
                      "internalType": "Timestamp",
         | 
| 955 | 
            +
                      "name": "lockedUntil",
         | 
| 956 | 
            +
                      "type": "uint40"
         | 
| 957 | 
            +
                    },
         | 
| 958 | 
            +
                    {
         | 
| 959 | 
            +
                      "indexed": false,
         | 
| 960 | 
            +
                      "internalType": "address",
         | 
| 961 | 
            +
                      "name": "stakeOwner",
         | 
| 962 | 
            +
                      "type": "address"
         | 
| 963 | 
            +
                    }
         | 
| 964 | 
            +
                  ],
         | 
| 965 | 
            +
                  "name": "LogStakingStakeCreated",
         | 
| 966 | 
            +
                  "type": "event"
         | 
| 967 | 
            +
                },
         | 
| 968 | 
            +
                {
         | 
| 969 | 
            +
                  "anonymous": false,
         | 
| 970 | 
            +
                  "inputs": [
         | 
| 971 | 
            +
                    {
         | 
| 972 | 
            +
                      "indexed": false,
         | 
| 973 | 
            +
                      "internalType": "NftId",
         | 
| 974 | 
            +
                      "name": "stakeNftId",
         | 
| 975 | 
            +
                      "type": "uint96"
         | 
| 976 | 
            +
                    },
         | 
| 977 | 
            +
                    {
         | 
| 978 | 
            +
                      "indexed": false,
         | 
| 979 | 
            +
                      "internalType": "NftId",
         | 
| 980 | 
            +
                      "name": "targetNftId",
         | 
| 981 | 
            +
                      "type": "uint96"
         | 
| 982 | 
            +
                    },
         | 
| 983 | 
            +
                    {
         | 
| 984 | 
            +
                      "indexed": false,
         | 
| 985 | 
            +
                      "internalType": "Amount",
         | 
| 986 | 
            +
                      "name": "stakeAmount",
         | 
| 987 | 
            +
                      "type": "uint96"
         | 
| 988 | 
            +
                    },
         | 
| 989 | 
            +
                    {
         | 
| 990 | 
            +
                      "indexed": false,
         | 
| 991 | 
            +
                      "internalType": "address",
         | 
| 992 | 
            +
                      "name": "owner",
         | 
| 993 | 
            +
                      "type": "address"
         | 
| 994 | 
            +
                    },
         | 
| 995 | 
            +
                    {
         | 
| 996 | 
            +
                      "indexed": false,
         | 
| 997 | 
            +
                      "internalType": "NftId",
         | 
| 998 | 
            +
                      "name": "oldStakeNftId",
         | 
| 999 | 
            +
                      "type": "uint96"
         | 
| 1000 | 
            +
                    }
         | 
| 1001 | 
            +
                  ],
         | 
| 1002 | 
            +
                  "name": "LogStakingStakeRestaked",
         | 
| 1003 | 
            +
                  "type": "event"
         | 
| 1004 | 
            +
                },
         | 
| 1005 | 
            +
                {
         | 
| 1006 | 
            +
                  "anonymous": false,
         | 
| 1007 | 
            +
                  "inputs": [
         | 
| 1008 | 
            +
                    {
         | 
| 1009 | 
            +
                      "indexed": false,
         | 
| 1010 | 
            +
                      "internalType": "NftId",
         | 
| 1011 | 
            +
                      "name": "stakeNftId",
         | 
| 1012 | 
            +
                      "type": "uint96"
         | 
| 1013 | 
            +
                    },
         | 
| 1014 | 
            +
                    {
         | 
| 1015 | 
            +
                      "indexed": false,
         | 
| 1016 | 
            +
                      "internalType": "Amount",
         | 
| 1017 | 
            +
                      "name": "rewardIncrementAmount",
         | 
| 1018 | 
            +
                      "type": "uint96"
         | 
| 1019 | 
            +
                    },
         | 
| 1020 | 
            +
                    {
         | 
| 1021 | 
            +
                      "indexed": false,
         | 
| 1022 | 
            +
                      "internalType": "Amount",
         | 
| 1023 | 
            +
                      "name": "stakeBalance",
         | 
| 1024 | 
            +
                      "type": "uint96"
         | 
| 1025 | 
            +
                    },
         | 
| 1026 | 
            +
                    {
         | 
| 1027 | 
            +
                      "indexed": false,
         | 
| 1028 | 
            +
                      "internalType": "Amount",
         | 
| 1029 | 
            +
                      "name": "rewardBalance",
         | 
| 1030 | 
            +
                      "type": "uint96"
         | 
| 1031 | 
            +
                    },
         | 
| 1032 | 
            +
                    {
         | 
| 1033 | 
            +
                      "indexed": false,
         | 
| 1034 | 
            +
                      "internalType": "Timestamp",
         | 
| 1035 | 
            +
                      "name": "lockedUntil",
         | 
| 1036 | 
            +
                      "type": "uint40"
         | 
| 1037 | 
            +
                    },
         | 
| 1038 | 
            +
                    {
         | 
| 1039 | 
            +
                      "indexed": false,
         | 
| 1040 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1041 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1042 | 
            +
                      "type": "uint40"
         | 
| 1043 | 
            +
                    }
         | 
| 1044 | 
            +
                  ],
         | 
| 1045 | 
            +
                  "name": "LogStakingStakeRewardsUpdated",
         | 
| 1046 | 
            +
                  "type": "event"
         | 
| 1047 | 
            +
                },
         | 
| 1048 | 
            +
                {
         | 
| 1049 | 
            +
                  "anonymous": false,
         | 
| 1050 | 
            +
                  "inputs": [
         | 
| 1051 | 
            +
                    {
         | 
| 1052 | 
            +
                      "indexed": false,
         | 
| 1053 | 
            +
                      "internalType": "NftId",
         | 
| 1054 | 
            +
                      "name": "stakeNftId",
         | 
| 1055 | 
            +
                      "type": "uint96"
         | 
| 1056 | 
            +
                    },
         | 
| 1057 | 
            +
                    {
         | 
| 1058 | 
            +
                      "indexed": false,
         | 
| 1059 | 
            +
                      "internalType": "Amount",
         | 
| 1060 | 
            +
                      "name": "stakedAmount",
         | 
| 1061 | 
            +
                      "type": "uint96"
         | 
| 1062 | 
            +
                    },
         | 
| 1063 | 
            +
                    {
         | 
| 1064 | 
            +
                      "indexed": false,
         | 
| 1065 | 
            +
                      "internalType": "Amount",
         | 
| 1066 | 
            +
                      "name": "stakeBalance",
         | 
| 1067 | 
            +
                      "type": "uint96"
         | 
| 1068 | 
            +
                    },
         | 
| 1069 | 
            +
                    {
         | 
| 1070 | 
            +
                      "indexed": false,
         | 
| 1071 | 
            +
                      "internalType": "Amount",
         | 
| 1072 | 
            +
                      "name": "rewardBalance",
         | 
| 1073 | 
            +
                      "type": "uint96"
         | 
| 1074 | 
            +
                    },
         | 
| 1075 | 
            +
                    {
         | 
| 1076 | 
            +
                      "indexed": false,
         | 
| 1077 | 
            +
                      "internalType": "Timestamp",
         | 
| 1078 | 
            +
                      "name": "lockedUntil",
         | 
| 1079 | 
            +
                      "type": "uint40"
         | 
| 1080 | 
            +
                    },
         | 
| 1081 | 
            +
                    {
         | 
| 1082 | 
            +
                      "indexed": false,
         | 
| 1083 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1084 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1085 | 
            +
                      "type": "uint40"
         | 
| 1086 | 
            +
                    }
         | 
| 1087 | 
            +
                  ],
         | 
| 1088 | 
            +
                  "name": "LogStakingStaked",
         | 
| 1089 | 
            +
                  "type": "event"
         | 
| 1090 | 
            +
                },
         | 
| 1091 | 
            +
                {
         | 
| 1092 | 
            +
                  "anonymous": false,
         | 
| 1093 | 
            +
                  "inputs": [
         | 
| 1094 | 
            +
                    {
         | 
| 1095 | 
            +
                      "indexed": false,
         | 
| 1096 | 
            +
                      "internalType": "ChainId",
         | 
| 1097 | 
            +
                      "name": "chainId",
         | 
| 1098 | 
            +
                      "type": "uint96"
         | 
| 1099 | 
            +
                    },
         | 
| 1100 | 
            +
                    {
         | 
| 1101 | 
            +
                      "indexed": false,
         | 
| 1102 | 
            +
                      "internalType": "address",
         | 
| 1103 | 
            +
                      "name": "token",
         | 
| 1104 | 
            +
                      "type": "address"
         | 
| 1105 | 
            +
                    },
         | 
| 1106 | 
            +
                    {
         | 
| 1107 | 
            +
                      "indexed": false,
         | 
| 1108 | 
            +
                      "internalType": "UFixed",
         | 
| 1109 | 
            +
                      "name": "newStakingRate",
         | 
| 1110 | 
            +
                      "type": "uint160"
         | 
| 1111 | 
            +
                    },
         | 
| 1112 | 
            +
                    {
         | 
| 1113 | 
            +
                      "indexed": false,
         | 
| 1114 | 
            +
                      "internalType": "UFixed",
         | 
| 1115 | 
            +
                      "name": "oldStakingRate",
         | 
| 1116 | 
            +
                      "type": "uint160"
         | 
| 1117 | 
            +
                    },
         | 
| 1118 | 
            +
                    {
         | 
| 1119 | 
            +
                      "indexed": false,
         | 
| 1120 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1121 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1122 | 
            +
                      "type": "uint40"
         | 
| 1123 | 
            +
                    }
         | 
| 1124 | 
            +
                  ],
         | 
| 1125 | 
            +
                  "name": "LogStakingStakingRateSet",
         | 
| 1126 | 
            +
                  "type": "event"
         | 
| 1127 | 
            +
                },
         | 
| 1128 | 
            +
                {
         | 
| 1129 | 
            +
                  "anonymous": false,
         | 
| 1130 | 
            +
                  "inputs": [
         | 
| 1131 | 
            +
                    {
         | 
| 1132 | 
            +
                      "indexed": false,
         | 
| 1133 | 
            +
                      "internalType": "address",
         | 
| 1134 | 
            +
                      "name": "stakingReader",
         | 
| 1135 | 
            +
                      "type": "address"
         | 
| 1136 | 
            +
                    },
         | 
| 1137 | 
            +
                    {
         | 
| 1138 | 
            +
                      "indexed": false,
         | 
| 1139 | 
            +
                      "internalType": "address",
         | 
| 1140 | 
            +
                      "name": "oldStakingReader",
         | 
| 1141 | 
            +
                      "type": "address"
         | 
| 1142 | 
            +
                    }
         | 
| 1143 | 
            +
                  ],
         | 
| 1144 | 
            +
                  "name": "LogStakingStakingReaderSet",
         | 
| 1145 | 
            +
                  "type": "event"
         | 
| 1146 | 
            +
                },
         | 
| 1147 | 
            +
                {
         | 
| 1148 | 
            +
                  "anonymous": false,
         | 
| 1149 | 
            +
                  "inputs": [
         | 
| 1150 | 
            +
                    {
         | 
| 1151 | 
            +
                      "indexed": false,
         | 
| 1152 | 
            +
                      "internalType": "address",
         | 
| 1153 | 
            +
                      "name": "stakingService",
         | 
| 1154 | 
            +
                      "type": "address"
         | 
| 1155 | 
            +
                    },
         | 
| 1156 | 
            +
                    {
         | 
| 1157 | 
            +
                      "indexed": false,
         | 
| 1158 | 
            +
                      "internalType": "VersionPart",
         | 
| 1159 | 
            +
                      "name": "release",
         | 
| 1160 | 
            +
                      "type": "uint8"
         | 
| 1161 | 
            +
                    },
         | 
| 1162 | 
            +
                    {
         | 
| 1163 | 
            +
                      "indexed": false,
         | 
| 1164 | 
            +
                      "internalType": "address",
         | 
| 1165 | 
            +
                      "name": "oldStakingService",
         | 
| 1166 | 
            +
                      "type": "address"
         | 
| 1167 | 
            +
                    }
         | 
| 1168 | 
            +
                  ],
         | 
| 1169 | 
            +
                  "name": "LogStakingStakingServiceSet",
         | 
| 1170 | 
            +
                  "type": "event"
         | 
| 1171 | 
            +
                },
         | 
| 1172 | 
            +
                {
         | 
| 1173 | 
            +
                  "anonymous": false,
         | 
| 1174 | 
            +
                  "inputs": [
         | 
| 1175 | 
            +
                    {
         | 
| 1176 | 
            +
                      "indexed": false,
         | 
| 1177 | 
            +
                      "internalType": "ObjectType",
         | 
| 1178 | 
            +
                      "name": "objectType",
         | 
| 1179 | 
            +
                      "type": "uint8"
         | 
| 1180 | 
            +
                    },
         | 
| 1181 | 
            +
                    {
         | 
| 1182 | 
            +
                      "indexed": false,
         | 
| 1183 | 
            +
                      "internalType": "bool",
         | 
| 1184 | 
            +
                      "name": "isSupported",
         | 
| 1185 | 
            +
                      "type": "bool"
         | 
| 1186 | 
            +
                    },
         | 
| 1187 | 
            +
                    {
         | 
| 1188 | 
            +
                      "indexed": false,
         | 
| 1189 | 
            +
                      "internalType": "bool",
         | 
| 1190 | 
            +
                      "name": "allowNewTargets",
         | 
| 1191 | 
            +
                      "type": "bool"
         | 
| 1192 | 
            +
                    },
         | 
| 1193 | 
            +
                    {
         | 
| 1194 | 
            +
                      "indexed": false,
         | 
| 1195 | 
            +
                      "internalType": "bool",
         | 
| 1196 | 
            +
                      "name": "allowCrossChain",
         | 
| 1197 | 
            +
                      "type": "bool"
         | 
| 1198 | 
            +
                    },
         | 
| 1199 | 
            +
                    {
         | 
| 1200 | 
            +
                      "indexed": false,
         | 
| 1201 | 
            +
                      "internalType": "Amount",
         | 
| 1202 | 
            +
                      "name": "minStakingAmount",
         | 
| 1203 | 
            +
                      "type": "uint96"
         | 
| 1204 | 
            +
                    },
         | 
| 1205 | 
            +
                    {
         | 
| 1206 | 
            +
                      "indexed": false,
         | 
| 1207 | 
            +
                      "internalType": "Amount",
         | 
| 1208 | 
            +
                      "name": "maxStakingAmount",
         | 
| 1209 | 
            +
                      "type": "uint96"
         | 
| 1210 | 
            +
                    },
         | 
| 1211 | 
            +
                    {
         | 
| 1212 | 
            +
                      "indexed": false,
         | 
| 1213 | 
            +
                      "internalType": "Seconds",
         | 
| 1214 | 
            +
                      "name": "minLockingPeriod",
         | 
| 1215 | 
            +
                      "type": "uint40"
         | 
| 1216 | 
            +
                    },
         | 
| 1217 | 
            +
                    {
         | 
| 1218 | 
            +
                      "indexed": false,
         | 
| 1219 | 
            +
                      "internalType": "Seconds",
         | 
| 1220 | 
            +
                      "name": "maxLockingPeriod",
         | 
| 1221 | 
            +
                      "type": "uint40"
         | 
| 1222 | 
            +
                    },
         | 
| 1223 | 
            +
                    {
         | 
| 1224 | 
            +
                      "indexed": false,
         | 
| 1225 | 
            +
                      "internalType": "UFixed",
         | 
| 1226 | 
            +
                      "name": "minRewardRate",
         | 
| 1227 | 
            +
                      "type": "uint160"
         | 
| 1228 | 
            +
                    },
         | 
| 1229 | 
            +
                    {
         | 
| 1230 | 
            +
                      "indexed": false,
         | 
| 1231 | 
            +
                      "internalType": "UFixed",
         | 
| 1232 | 
            +
                      "name": "maxRewardRate",
         | 
| 1233 | 
            +
                      "type": "uint160"
         | 
| 1234 | 
            +
                    },
         | 
| 1235 | 
            +
                    {
         | 
| 1236 | 
            +
                      "indexed": false,
         | 
| 1237 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1238 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1239 | 
            +
                      "type": "uint40"
         | 
| 1240 | 
            +
                    }
         | 
| 1241 | 
            +
                  ],
         | 
| 1242 | 
            +
                  "name": "LogStakingSupportInfoSet",
         | 
| 1243 | 
            +
                  "type": "event"
         | 
| 1244 | 
            +
                },
         | 
| 1245 | 
            +
                {
         | 
| 1246 | 
            +
                  "anonymous": false,
         | 
| 1247 | 
            +
                  "inputs": [
         | 
| 1248 | 
            +
                    {
         | 
| 1249 | 
            +
                      "indexed": false,
         | 
| 1250 | 
            +
                      "internalType": "NftId",
         | 
| 1251 | 
            +
                      "name": "targetNftId",
         | 
| 1252 | 
            +
                      "type": "uint96"
         | 
| 1253 | 
            +
                    },
         | 
| 1254 | 
            +
                    {
         | 
| 1255 | 
            +
                      "indexed": false,
         | 
| 1256 | 
            +
                      "internalType": "ObjectType",
         | 
| 1257 | 
            +
                      "name": "objectType",
         | 
| 1258 | 
            +
                      "type": "uint8"
         | 
| 1259 | 
            +
                    },
         | 
| 1260 | 
            +
                    {
         | 
| 1261 | 
            +
                      "indexed": false,
         | 
| 1262 | 
            +
                      "internalType": "Seconds",
         | 
| 1263 | 
            +
                      "name": "lockingPeriod",
         | 
| 1264 | 
            +
                      "type": "uint40"
         | 
| 1265 | 
            +
                    },
         | 
| 1266 | 
            +
                    {
         | 
| 1267 | 
            +
                      "indexed": false,
         | 
| 1268 | 
            +
                      "internalType": "UFixed",
         | 
| 1269 | 
            +
                      "name": "rewardRate",
         | 
| 1270 | 
            +
                      "type": "uint160"
         | 
| 1271 | 
            +
                    }
         | 
| 1272 | 
            +
                  ],
         | 
| 1273 | 
            +
                  "name": "LogStakingTargetCreated",
         | 
| 1274 | 
            +
                  "type": "event"
         | 
| 1275 | 
            +
                },
         | 
| 1276 | 
            +
                {
         | 
| 1277 | 
            +
                  "anonymous": false,
         | 
| 1278 | 
            +
                  "inputs": [
         | 
| 1279 | 
            +
                    {
         | 
| 1280 | 
            +
                      "indexed": false,
         | 
| 1281 | 
            +
                      "internalType": "address",
         | 
| 1282 | 
            +
                      "name": "targetManager",
         | 
| 1283 | 
            +
                      "type": "address"
         | 
| 1284 | 
            +
                    },
         | 
| 1285 | 
            +
                    {
         | 
| 1286 | 
            +
                      "indexed": false,
         | 
| 1287 | 
            +
                      "internalType": "address",
         | 
| 1288 | 
            +
                      "name": "oldTargetHandler",
         | 
| 1289 | 
            +
                      "type": "address"
         | 
| 1290 | 
            +
                    }
         | 
| 1291 | 
            +
                  ],
         | 
| 1292 | 
            +
                  "name": "LogStakingTargetHandlerSet",
         | 
| 1293 | 
            +
                  "type": "event"
         | 
| 1294 | 
            +
                },
         | 
| 1295 | 
            +
                {
         | 
| 1296 | 
            +
                  "anonymous": false,
         | 
| 1297 | 
            +
                  "inputs": [
         | 
| 1298 | 
            +
                    {
         | 
| 1299 | 
            +
                      "indexed": false,
         | 
| 1300 | 
            +
                      "internalType": "NftId",
         | 
| 1301 | 
            +
                      "name": "targetNftId",
         | 
| 1302 | 
            +
                      "type": "uint96"
         | 
| 1303 | 
            +
                    },
         | 
| 1304 | 
            +
                    {
         | 
| 1305 | 
            +
                      "indexed": false,
         | 
| 1306 | 
            +
                      "internalType": "Amount",
         | 
| 1307 | 
            +
                      "name": "limitAmount",
         | 
| 1308 | 
            +
                      "type": "uint96"
         | 
| 1309 | 
            +
                    },
         | 
| 1310 | 
            +
                    {
         | 
| 1311 | 
            +
                      "indexed": false,
         | 
| 1312 | 
            +
                      "internalType": "Amount",
         | 
| 1313 | 
            +
                      "name": "hardLimitAmount",
         | 
| 1314 | 
            +
                      "type": "uint96"
         | 
| 1315 | 
            +
                    },
         | 
| 1316 | 
            +
                    {
         | 
| 1317 | 
            +
                      "indexed": false,
         | 
| 1318 | 
            +
                      "internalType": "Amount",
         | 
| 1319 | 
            +
                      "name": "requiredStakeAmount",
         | 
| 1320 | 
            +
                      "type": "uint96"
         | 
| 1321 | 
            +
                    },
         | 
| 1322 | 
            +
                    {
         | 
| 1323 | 
            +
                      "indexed": false,
         | 
| 1324 | 
            +
                      "internalType": "Amount",
         | 
| 1325 | 
            +
                      "name": "actualStakeAmount",
         | 
| 1326 | 
            +
                      "type": "uint96"
         | 
| 1327 | 
            +
                    },
         | 
| 1328 | 
            +
                    {
         | 
| 1329 | 
            +
                      "indexed": false,
         | 
| 1330 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1331 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1332 | 
            +
                      "type": "uint40"
         | 
| 1333 | 
            +
                    }
         | 
| 1334 | 
            +
                  ],
         | 
| 1335 | 
            +
                  "name": "LogStakingTargetLimitUpdated",
         | 
| 1336 | 
            +
                  "type": "event"
         | 
| 1337 | 
            +
                },
         | 
| 1338 | 
            +
                {
         | 
| 1339 | 
            +
                  "anonymous": false,
         | 
| 1340 | 
            +
                  "inputs": [
         | 
| 1341 | 
            +
                    {
         | 
| 1342 | 
            +
                      "indexed": false,
         | 
| 1343 | 
            +
                      "internalType": "NftId",
         | 
| 1344 | 
            +
                      "name": "targetNftId",
         | 
| 1345 | 
            +
                      "type": "uint96"
         | 
| 1346 | 
            +
                    },
         | 
| 1347 | 
            +
                    {
         | 
| 1348 | 
            +
                      "indexed": false,
         | 
| 1349 | 
            +
                      "internalType": "Amount",
         | 
| 1350 | 
            +
                      "name": "stakeLimitAmount",
         | 
| 1351 | 
            +
                      "type": "uint96"
         | 
| 1352 | 
            +
                    },
         | 
| 1353 | 
            +
                    {
         | 
| 1354 | 
            +
                      "indexed": false,
         | 
| 1355 | 
            +
                      "internalType": "Amount",
         | 
| 1356 | 
            +
                      "name": "marginAmount",
         | 
| 1357 | 
            +
                      "type": "uint96"
         | 
| 1358 | 
            +
                    },
         | 
| 1359 | 
            +
                    {
         | 
| 1360 | 
            +
                      "indexed": false,
         | 
| 1361 | 
            +
                      "internalType": "Amount",
         | 
| 1362 | 
            +
                      "name": "limitAmount",
         | 
| 1363 | 
            +
                      "type": "uint96"
         | 
| 1364 | 
            +
                    }
         | 
| 1365 | 
            +
                  ],
         | 
| 1366 | 
            +
                  "name": "LogStakingTargetLimitsSet",
         | 
| 1367 | 
            +
                  "type": "event"
         | 
| 1368 | 
            +
                },
         | 
| 1369 | 
            +
                {
         | 
| 1370 | 
            +
                  "anonymous": false,
         | 
| 1371 | 
            +
                  "inputs": [
         | 
| 1372 | 
            +
                    {
         | 
| 1373 | 
            +
                      "indexed": false,
         | 
| 1374 | 
            +
                      "internalType": "NftId",
         | 
| 1375 | 
            +
                      "name": "targetNftId",
         | 
| 1376 | 
            +
                      "type": "uint96"
         | 
| 1377 | 
            +
                    },
         | 
| 1378 | 
            +
                    {
         | 
| 1379 | 
            +
                      "indexed": false,
         | 
| 1380 | 
            +
                      "internalType": "Amount",
         | 
| 1381 | 
            +
                      "name": "marginAmount",
         | 
| 1382 | 
            +
                      "type": "uint96"
         | 
| 1383 | 
            +
                    },
         | 
| 1384 | 
            +
                    {
         | 
| 1385 | 
            +
                      "indexed": false,
         | 
| 1386 | 
            +
                      "internalType": "Amount",
         | 
| 1387 | 
            +
                      "name": "hardLimitAmount",
         | 
| 1388 | 
            +
                      "type": "uint96"
         | 
| 1389 | 
            +
                    },
         | 
| 1390 | 
            +
                    {
         | 
| 1391 | 
            +
                      "indexed": false,
         | 
| 1392 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1393 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1394 | 
            +
                      "type": "uint40"
         | 
| 1395 | 
            +
                    }
         | 
| 1396 | 
            +
                  ],
         | 
| 1397 | 
            +
                  "name": "LogStakingTargetLimitsUpdated",
         | 
| 1398 | 
            +
                  "type": "event"
         | 
| 1399 | 
            +
                },
         | 
| 1400 | 
            +
                {
         | 
| 1401 | 
            +
                  "anonymous": false,
         | 
| 1402 | 
            +
                  "inputs": [
         | 
| 1403 | 
            +
                    {
         | 
| 1404 | 
            +
                      "indexed": false,
         | 
| 1405 | 
            +
                      "internalType": "NftId",
         | 
| 1406 | 
            +
                      "name": "targetNftId",
         | 
| 1407 | 
            +
                      "type": "uint96"
         | 
| 1408 | 
            +
                    },
         | 
| 1409 | 
            +
                    {
         | 
| 1410 | 
            +
                      "indexed": false,
         | 
| 1411 | 
            +
                      "internalType": "Seconds",
         | 
| 1412 | 
            +
                      "name": "oldLockingPeriod",
         | 
| 1413 | 
            +
                      "type": "uint40"
         | 
| 1414 | 
            +
                    },
         | 
| 1415 | 
            +
                    {
         | 
| 1416 | 
            +
                      "indexed": false,
         | 
| 1417 | 
            +
                      "internalType": "Seconds",
         | 
| 1418 | 
            +
                      "name": "lockingPeriod",
         | 
| 1419 | 
            +
                      "type": "uint40"
         | 
| 1420 | 
            +
                    },
         | 
| 1421 | 
            +
                    {
         | 
| 1422 | 
            +
                      "indexed": false,
         | 
| 1423 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1424 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1425 | 
            +
                      "type": "uint40"
         | 
| 1426 | 
            +
                    }
         | 
| 1427 | 
            +
                  ],
         | 
| 1428 | 
            +
                  "name": "LogStakingTargetLockingPeriodSet",
         | 
| 1429 | 
            +
                  "type": "event"
         | 
| 1430 | 
            +
                },
         | 
| 1431 | 
            +
                {
         | 
| 1432 | 
            +
                  "anonymous": false,
         | 
| 1433 | 
            +
                  "inputs": [
         | 
| 1434 | 
            +
                    {
         | 
| 1435 | 
            +
                      "indexed": false,
         | 
| 1436 | 
            +
                      "internalType": "NftId",
         | 
| 1437 | 
            +
                      "name": "targetNftId",
         | 
| 1438 | 
            +
                      "type": "uint96"
         | 
| 1439 | 
            +
                    },
         | 
| 1440 | 
            +
                    {
         | 
| 1441 | 
            +
                      "indexed": false,
         | 
| 1442 | 
            +
                      "internalType": "Amount",
         | 
| 1443 | 
            +
                      "name": "stakeLimitAmount",
         | 
| 1444 | 
            +
                      "type": "uint96"
         | 
| 1445 | 
            +
                    },
         | 
| 1446 | 
            +
                    {
         | 
| 1447 | 
            +
                      "indexed": false,
         | 
| 1448 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1449 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1450 | 
            +
                      "type": "uint40"
         | 
| 1451 | 
            +
                    }
         | 
| 1452 | 
            +
                  ],
         | 
| 1453 | 
            +
                  "name": "LogStakingTargetMaxStakedAmountSet",
         | 
| 1454 | 
            +
                  "type": "event"
         | 
| 1455 | 
            +
                },
         | 
| 1456 | 
            +
                {
         | 
| 1457 | 
            +
                  "anonymous": false,
         | 
| 1458 | 
            +
                  "inputs": [
         | 
| 1459 | 
            +
                    {
         | 
| 1460 | 
            +
                      "indexed": false,
         | 
| 1461 | 
            +
                      "internalType": "NftId",
         | 
| 1462 | 
            +
                      "name": "targetNftId",
         | 
| 1463 | 
            +
                      "type": "uint96"
         | 
| 1464 | 
            +
                    },
         | 
| 1465 | 
            +
                    {
         | 
| 1466 | 
            +
                      "indexed": false,
         | 
| 1467 | 
            +
                      "internalType": "UFixed",
         | 
| 1468 | 
            +
                      "name": "rewardRate",
         | 
| 1469 | 
            +
                      "type": "uint160"
         | 
| 1470 | 
            +
                    },
         | 
| 1471 | 
            +
                    {
         | 
| 1472 | 
            +
                      "indexed": false,
         | 
| 1473 | 
            +
                      "internalType": "UFixed",
         | 
| 1474 | 
            +
                      "name": "oldRewardRate",
         | 
| 1475 | 
            +
                      "type": "uint160"
         | 
| 1476 | 
            +
                    },
         | 
| 1477 | 
            +
                    {
         | 
| 1478 | 
            +
                      "indexed": false,
         | 
| 1479 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1480 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1481 | 
            +
                      "type": "uint40"
         | 
| 1482 | 
            +
                    }
         | 
| 1483 | 
            +
                  ],
         | 
| 1484 | 
            +
                  "name": "LogStakingTargetRewardRateSet",
         | 
| 1485 | 
            +
                  "type": "event"
         | 
| 1486 | 
            +
                },
         | 
| 1487 | 
            +
                {
         | 
| 1488 | 
            +
                  "anonymous": false,
         | 
| 1489 | 
            +
                  "inputs": [
         | 
| 1490 | 
            +
                    {
         | 
| 1491 | 
            +
                      "indexed": false,
         | 
| 1492 | 
            +
                      "internalType": "NftId",
         | 
| 1493 | 
            +
                      "name": "targetNftId",
         | 
| 1494 | 
            +
                      "type": "uint96"
         | 
| 1495 | 
            +
                    },
         | 
| 1496 | 
            +
                    {
         | 
| 1497 | 
            +
                      "indexed": false,
         | 
| 1498 | 
            +
                      "internalType": "ChainId",
         | 
| 1499 | 
            +
                      "name": "chainId",
         | 
| 1500 | 
            +
                      "type": "uint96"
         | 
| 1501 | 
            +
                    },
         | 
| 1502 | 
            +
                    {
         | 
| 1503 | 
            +
                      "indexed": false,
         | 
| 1504 | 
            +
                      "internalType": "address",
         | 
| 1505 | 
            +
                      "name": "token",
         | 
| 1506 | 
            +
                      "type": "address"
         | 
| 1507 | 
            +
                    }
         | 
| 1508 | 
            +
                  ],
         | 
| 1509 | 
            +
                  "name": "LogStakingTargetTokenAdded",
         | 
| 1510 | 
            +
                  "type": "event"
         | 
| 1511 | 
            +
                },
         | 
| 1512 | 
            +
                {
         | 
| 1513 | 
            +
                  "anonymous": false,
         | 
| 1514 | 
            +
                  "inputs": [
         | 
| 1515 | 
            +
                    {
         | 
| 1516 | 
            +
                      "indexed": false,
         | 
| 1517 | 
            +
                      "internalType": "ChainId",
         | 
| 1518 | 
            +
                      "name": "chainId",
         | 
| 1519 | 
            +
                      "type": "uint96"
         | 
| 1520 | 
            +
                    },
         | 
| 1521 | 
            +
                    {
         | 
| 1522 | 
            +
                      "indexed": false,
         | 
| 1523 | 
            +
                      "internalType": "address",
         | 
| 1524 | 
            +
                      "name": "token",
         | 
| 1525 | 
            +
                      "type": "address"
         | 
| 1526 | 
            +
                    }
         | 
| 1527 | 
            +
                  ],
         | 
| 1528 | 
            +
                  "name": "LogStakingTokenAdded",
         | 
| 1529 | 
            +
                  "type": "event"
         | 
| 1530 | 
            +
                },
         | 
| 1531 | 
            +
                {
         | 
| 1532 | 
            +
                  "anonymous": false,
         | 
| 1533 | 
            +
                  "inputs": [
         | 
| 1534 | 
            +
                    {
         | 
| 1535 | 
            +
                      "indexed": false,
         | 
| 1536 | 
            +
                      "internalType": "address",
         | 
| 1537 | 
            +
                      "name": "token",
         | 
| 1538 | 
            +
                      "type": "address"
         | 
| 1539 | 
            +
                    },
         | 
| 1540 | 
            +
                    {
         | 
| 1541 | 
            +
                      "indexed": false,
         | 
| 1542 | 
            +
                      "internalType": "Amount",
         | 
| 1543 | 
            +
                      "name": "approvalAmount",
         | 
| 1544 | 
            +
                      "type": "uint96"
         | 
| 1545 | 
            +
                    },
         | 
| 1546 | 
            +
                    {
         | 
| 1547 | 
            +
                      "indexed": false,
         | 
| 1548 | 
            +
                      "internalType": "Amount",
         | 
| 1549 | 
            +
                      "name": "oldApprovalAmount",
         | 
| 1550 | 
            +
                      "type": "uint96"
         | 
| 1551 | 
            +
                    }
         | 
| 1552 | 
            +
                  ],
         | 
| 1553 | 
            +
                  "name": "LogStakingTokenHandlerApproved",
         | 
| 1554 | 
            +
                  "type": "event"
         | 
| 1555 | 
            +
                },
         | 
| 1556 | 
            +
                {
         | 
| 1557 | 
            +
                  "anonymous": false,
         | 
| 1558 | 
            +
                  "inputs": [
         | 
| 1559 | 
            +
                    {
         | 
| 1560 | 
            +
                      "indexed": false,
         | 
| 1561 | 
            +
                      "internalType": "NftId",
         | 
| 1562 | 
            +
                      "name": "targetNftId",
         | 
| 1563 | 
            +
                      "type": "uint96"
         | 
| 561 1564 | 
             
                    },
         | 
| 562 1565 | 
             
                    {
         | 
| 563 1566 | 
             
                      "indexed": false,
         | 
| @@ -567,25 +1570,152 @@ | |
| 567 1570 | 
             
                    },
         | 
| 568 1571 | 
             
                    {
         | 
| 569 1572 | 
             
                      "indexed": false,
         | 
| 570 | 
            -
                      "internalType": " | 
| 571 | 
            -
                      "name": " | 
| 572 | 
            -
                      "type": " | 
| 1573 | 
            +
                      "internalType": "Amount",
         | 
| 1574 | 
            +
                      "name": "amount",
         | 
| 1575 | 
            +
                      "type": "uint96"
         | 
| 573 1576 | 
             
                    },
         | 
| 574 1577 | 
             
                    {
         | 
| 575 1578 | 
             
                      "indexed": false,
         | 
| 576 | 
            -
                      "internalType": " | 
| 577 | 
            -
                      "name": " | 
| 578 | 
            -
                      "type": " | 
| 1579 | 
            +
                      "internalType": "Amount",
         | 
| 1580 | 
            +
                      "name": "newBalance",
         | 
| 1581 | 
            +
                      "type": "uint96"
         | 
| 1582 | 
            +
                    },
         | 
| 1583 | 
            +
                    {
         | 
| 1584 | 
            +
                      "indexed": false,
         | 
| 1585 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1586 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1587 | 
            +
                      "type": "uint40"
         | 
| 579 1588 | 
             
                    }
         | 
| 580 1589 | 
             
                  ],
         | 
| 581 | 
            -
                  "name": " | 
| 1590 | 
            +
                  "name": "LogStakingTvlDecreased",
         | 
| 1591 | 
            +
                  "type": "event"
         | 
| 1592 | 
            +
                },
         | 
| 1593 | 
            +
                {
         | 
| 1594 | 
            +
                  "anonymous": false,
         | 
| 1595 | 
            +
                  "inputs": [
         | 
| 1596 | 
            +
                    {
         | 
| 1597 | 
            +
                      "indexed": false,
         | 
| 1598 | 
            +
                      "internalType": "NftId",
         | 
| 1599 | 
            +
                      "name": "targetNftId",
         | 
| 1600 | 
            +
                      "type": "uint96"
         | 
| 1601 | 
            +
                    },
         | 
| 1602 | 
            +
                    {
         | 
| 1603 | 
            +
                      "indexed": false,
         | 
| 1604 | 
            +
                      "internalType": "address",
         | 
| 1605 | 
            +
                      "name": "token",
         | 
| 1606 | 
            +
                      "type": "address"
         | 
| 1607 | 
            +
                    },
         | 
| 1608 | 
            +
                    {
         | 
| 1609 | 
            +
                      "indexed": false,
         | 
| 1610 | 
            +
                      "internalType": "Amount",
         | 
| 1611 | 
            +
                      "name": "amount",
         | 
| 1612 | 
            +
                      "type": "uint96"
         | 
| 1613 | 
            +
                    },
         | 
| 1614 | 
            +
                    {
         | 
| 1615 | 
            +
                      "indexed": false,
         | 
| 1616 | 
            +
                      "internalType": "Amount",
         | 
| 1617 | 
            +
                      "name": "newBalance",
         | 
| 1618 | 
            +
                      "type": "uint96"
         | 
| 1619 | 
            +
                    },
         | 
| 1620 | 
            +
                    {
         | 
| 1621 | 
            +
                      "indexed": false,
         | 
| 1622 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1623 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1624 | 
            +
                      "type": "uint40"
         | 
| 1625 | 
            +
                    }
         | 
| 1626 | 
            +
                  ],
         | 
| 1627 | 
            +
                  "name": "LogStakingTvlIncreased",
         | 
| 582 1628 | 
             
                  "type": "event"
         | 
| 583 1629 | 
             
                },
         | 
| 1630 | 
            +
                {
         | 
| 1631 | 
            +
                  "anonymous": false,
         | 
| 1632 | 
            +
                  "inputs": [
         | 
| 1633 | 
            +
                    {
         | 
| 1634 | 
            +
                      "indexed": false,
         | 
| 1635 | 
            +
                      "internalType": "NftId",
         | 
| 1636 | 
            +
                      "name": "stakeNftId",
         | 
| 1637 | 
            +
                      "type": "uint96"
         | 
| 1638 | 
            +
                    },
         | 
| 1639 | 
            +
                    {
         | 
| 1640 | 
            +
                      "indexed": false,
         | 
| 1641 | 
            +
                      "internalType": "Amount",
         | 
| 1642 | 
            +
                      "name": "unstakedAmount",
         | 
| 1643 | 
            +
                      "type": "uint96"
         | 
| 1644 | 
            +
                    },
         | 
| 1645 | 
            +
                    {
         | 
| 1646 | 
            +
                      "indexed": false,
         | 
| 1647 | 
            +
                      "internalType": "Amount",
         | 
| 1648 | 
            +
                      "name": "stakeBalance",
         | 
| 1649 | 
            +
                      "type": "uint96"
         | 
| 1650 | 
            +
                    },
         | 
| 1651 | 
            +
                    {
         | 
| 1652 | 
            +
                      "indexed": false,
         | 
| 1653 | 
            +
                      "internalType": "Amount",
         | 
| 1654 | 
            +
                      "name": "rewardBalance",
         | 
| 1655 | 
            +
                      "type": "uint96"
         | 
| 1656 | 
            +
                    },
         | 
| 1657 | 
            +
                    {
         | 
| 1658 | 
            +
                      "indexed": false,
         | 
| 1659 | 
            +
                      "internalType": "Timestamp",
         | 
| 1660 | 
            +
                      "name": "lockedUntil",
         | 
| 1661 | 
            +
                      "type": "uint40"
         | 
| 1662 | 
            +
                    },
         | 
| 1663 | 
            +
                    {
         | 
| 1664 | 
            +
                      "indexed": false,
         | 
| 1665 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1666 | 
            +
                      "name": "lastUpdateIn",
         | 
| 1667 | 
            +
                      "type": "uint40"
         | 
| 1668 | 
            +
                    }
         | 
| 1669 | 
            +
                  ],
         | 
| 1670 | 
            +
                  "name": "LogStakingUnstaked",
         | 
| 1671 | 
            +
                  "type": "event"
         | 
| 1672 | 
            +
                },
         | 
| 1673 | 
            +
                {
         | 
| 1674 | 
            +
                  "inputs": [
         | 
| 1675 | 
            +
                    {
         | 
| 1676 | 
            +
                      "internalType": "NftId",
         | 
| 1677 | 
            +
                      "name": "targetNftId",
         | 
| 1678 | 
            +
                      "type": "uint96"
         | 
| 1679 | 
            +
                    },
         | 
| 1680 | 
            +
                    {
         | 
| 1681 | 
            +
                      "internalType": "address",
         | 
| 1682 | 
            +
                      "name": "token",
         | 
| 1683 | 
            +
                      "type": "address"
         | 
| 1684 | 
            +
                    }
         | 
| 1685 | 
            +
                  ],
         | 
| 1686 | 
            +
                  "name": "addTargetToken",
         | 
| 1687 | 
            +
                  "outputs": [],
         | 
| 1688 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1689 | 
            +
                  "type": "function"
         | 
| 1690 | 
            +
                },
         | 
| 1691 | 
            +
                {
         | 
| 1692 | 
            +
                  "inputs": [
         | 
| 1693 | 
            +
                    {
         | 
| 1694 | 
            +
                      "internalType": "ChainId",
         | 
| 1695 | 
            +
                      "name": "chainId",
         | 
| 1696 | 
            +
                      "type": "uint96"
         | 
| 1697 | 
            +
                    },
         | 
| 1698 | 
            +
                    {
         | 
| 1699 | 
            +
                      "internalType": "address",
         | 
| 1700 | 
            +
                      "name": "token",
         | 
| 1701 | 
            +
                      "type": "address"
         | 
| 1702 | 
            +
                    }
         | 
| 1703 | 
            +
                  ],
         | 
| 1704 | 
            +
                  "name": "addToken",
         | 
| 1705 | 
            +
                  "outputs": [],
         | 
| 1706 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1707 | 
            +
                  "type": "function"
         | 
| 1708 | 
            +
                },
         | 
| 584 1709 | 
             
                {
         | 
| 585 1710 | 
             
                  "inputs": [
         | 
| 1711 | 
            +
                    {
         | 
| 1712 | 
            +
                      "internalType": "contract IERC20Metadata",
         | 
| 1713 | 
            +
                      "name": "token",
         | 
| 1714 | 
            +
                      "type": "address"
         | 
| 1715 | 
            +
                    },
         | 
| 586 1716 | 
             
                    {
         | 
| 587 1717 | 
             
                      "internalType": "Amount",
         | 
| 588 | 
            -
                      "name": " | 
| 1718 | 
            +
                      "name": "amount",
         | 
| 589 1719 | 
             
                      "type": "uint96"
         | 
| 590 1720 | 
             
                    }
         | 
| 591 1721 | 
             
                  ],
         | 
| @@ -629,41 +1759,29 @@ | |
| 629 1759 | 
             
                {
         | 
| 630 1760 | 
             
                  "inputs": [
         | 
| 631 1761 | 
             
                    {
         | 
| 632 | 
            -
                      "internalType": " | 
| 633 | 
            -
                      "name": " | 
| 634 | 
            -
                      "type": " | 
| 1762 | 
            +
                      "internalType": "NftId",
         | 
| 1763 | 
            +
                      "name": "targetNftId",
         | 
| 1764 | 
            +
                      "type": "uint96"
         | 
| 635 1765 | 
             
                    },
         | 
| 636 1766 | 
             
                    {
         | 
| 637 1767 | 
             
                      "internalType": "Amount",
         | 
| 638 1768 | 
             
                      "name": "dipAmount",
         | 
| 639 1769 | 
             
                      "type": "uint96"
         | 
| 1770 | 
            +
                    },
         | 
| 1771 | 
            +
                    {
         | 
| 1772 | 
            +
                      "internalType": "address",
         | 
| 1773 | 
            +
                      "name": "stakeOwner",
         | 
| 1774 | 
            +
                      "type": "address"
         | 
| 640 1775 | 
             
                    }
         | 
| 641 1776 | 
             
                  ],
         | 
| 642 | 
            -
                  "name": " | 
| 643 | 
            -
                  "outputs": [ | 
| 644 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 645 | 
            -
                  "type": "function"
         | 
| 646 | 
            -
                },
         | 
| 647 | 
            -
                {
         | 
| 648 | 
            -
                  "inputs": [
         | 
| 1777 | 
            +
                  "name": "createStake",
         | 
| 1778 | 
            +
                  "outputs": [
         | 
| 649 1779 | 
             
                    {
         | 
| 650 1780 | 
             
                      "internalType": "NftId",
         | 
| 651 1781 | 
             
                      "name": "stakeNftId",
         | 
| 652 1782 | 
             
                      "type": "uint96"
         | 
| 653 | 
            -
                    },
         | 
| 654 | 
            -
                    {
         | 
| 655 | 
            -
                      "internalType": "NftId",
         | 
| 656 | 
            -
                      "name": "targetNftId",
         | 
| 657 | 
            -
                      "type": "uint96"
         | 
| 658 | 
            -
                    },
         | 
| 659 | 
            -
                    {
         | 
| 660 | 
            -
                      "internalType": "Amount",
         | 
| 661 | 
            -
                      "name": "dipAmount",
         | 
| 662 | 
            -
                      "type": "uint96"
         | 
| 663 1783 | 
             
                    }
         | 
| 664 1784 | 
             
                  ],
         | 
| 665 | 
            -
                  "name": "createStake",
         | 
| 666 | 
            -
                  "outputs": [],
         | 
| 667 1785 | 
             
                  "stateMutability": "nonpayable",
         | 
| 668 1786 | 
             
                  "type": "function"
         | 
| 669 1787 | 
             
                },
         | 
| @@ -686,13 +1804,7 @@ | |
| 686 1804 | 
             
                    }
         | 
| 687 1805 | 
             
                  ],
         | 
| 688 1806 | 
             
                  "name": "decreaseTotalValueLocked",
         | 
| 689 | 
            -
                  "outputs": [
         | 
| 690 | 
            -
                    {
         | 
| 691 | 
            -
                      "internalType": "Amount",
         | 
| 692 | 
            -
                      "name": "newBalance",
         | 
| 693 | 
            -
                      "type": "uint96"
         | 
| 694 | 
            -
                    }
         | 
| 695 | 
            -
                  ],
         | 
| 1807 | 
            +
                  "outputs": [],
         | 
| 696 1808 | 
             
                  "stateMutability": "nonpayable",
         | 
| 697 1809 | 
             
                  "type": "function"
         | 
| 698 1810 | 
             
                },
         | 
| @@ -707,30 +1819,10 @@ | |
| 707 1819 | 
             
                          "name": "name",
         | 
| 708 1820 | 
             
                          "type": "string"
         | 
| 709 1821 | 
             
                        },
         | 
| 710 | 
            -
                        {
         | 
| 711 | 
            -
                          "internalType": "NftId",
         | 
| 712 | 
            -
                          "name": "productNftId",
         | 
| 713 | 
            -
                          "type": "uint96"
         | 
| 714 | 
            -
                        },
         | 
| 715 | 
            -
                        {
         | 
| 716 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 717 | 
            -
                          "name": "token",
         | 
| 718 | 
            -
                          "type": "address"
         | 
| 719 | 
            -
                        },
         | 
| 720 1822 | 
             
                        {
         | 
| 721 1823 | 
             
                          "internalType": "contract TokenHandler",
         | 
| 722 1824 | 
             
                          "name": "tokenHandler",
         | 
| 723 1825 | 
             
                          "type": "address"
         | 
| 724 | 
            -
                        },
         | 
| 725 | 
            -
                        {
         | 
| 726 | 
            -
                          "internalType": "address",
         | 
| 727 | 
            -
                          "name": "wallet",
         | 
| 728 | 
            -
                          "type": "address"
         | 
| 729 | 
            -
                        },
         | 
| 730 | 
            -
                        {
         | 
| 731 | 
            -
                          "internalType": "bytes",
         | 
| 732 | 
            -
                          "name": "data",
         | 
| 733 | 
            -
                          "type": "bytes"
         | 
| 734 1826 | 
             
                        }
         | 
| 735 1827 | 
             
                      ],
         | 
| 736 1828 | 
             
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| @@ -752,30 +1844,10 @@ | |
| 752 1844 | 
             
                          "name": "name",
         | 
| 753 1845 | 
             
                          "type": "string"
         | 
| 754 1846 | 
             
                        },
         | 
| 755 | 
            -
                        {
         | 
| 756 | 
            -
                          "internalType": "NftId",
         | 
| 757 | 
            -
                          "name": "productNftId",
         | 
| 758 | 
            -
                          "type": "uint96"
         | 
| 759 | 
            -
                        },
         | 
| 760 | 
            -
                        {
         | 
| 761 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 762 | 
            -
                          "name": "token",
         | 
| 763 | 
            -
                          "type": "address"
         | 
| 764 | 
            -
                        },
         | 
| 765 1847 | 
             
                        {
         | 
| 766 1848 | 
             
                          "internalType": "contract TokenHandler",
         | 
| 767 1849 | 
             
                          "name": "tokenHandler",
         | 
| 768 1850 | 
             
                          "type": "address"
         | 
| 769 | 
            -
                        },
         | 
| 770 | 
            -
                        {
         | 
| 771 | 
            -
                          "internalType": "address",
         | 
| 772 | 
            -
                          "name": "wallet",
         | 
| 773 | 
            -
                          "type": "address"
         | 
| 774 | 
            -
                        },
         | 
| 775 | 
            -
                        {
         | 
| 776 | 
            -
                          "internalType": "bytes",
         | 
| 777 | 
            -
                          "name": "data",
         | 
| 778 | 
            -
                          "type": "bytes"
         | 
| 779 1851 | 
             
                        }
         | 
| 780 1852 | 
             
                      ],
         | 
| 781 1853 | 
             
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| @@ -888,6 +1960,19 @@ | |
| 888 1960 | 
             
                  "stateMutability": "view",
         | 
| 889 1961 | 
             
                  "type": "function"
         | 
| 890 1962 | 
             
                },
         | 
| 1963 | 
            +
                {
         | 
| 1964 | 
            +
                  "inputs": [],
         | 
| 1965 | 
            +
                  "name": "getRelease",
         | 
| 1966 | 
            +
                  "outputs": [
         | 
| 1967 | 
            +
                    {
         | 
| 1968 | 
            +
                      "internalType": "VersionPart",
         | 
| 1969 | 
            +
                      "name": "release",
         | 
| 1970 | 
            +
                      "type": "uint8"
         | 
| 1971 | 
            +
                    }
         | 
| 1972 | 
            +
                  ],
         | 
| 1973 | 
            +
                  "stateMutability": "view",
         | 
| 1974 | 
            +
                  "type": "function"
         | 
| 1975 | 
            +
                },
         | 
| 891 1976 | 
             
                {
         | 
| 892 1977 | 
             
                  "inputs": [],
         | 
| 893 1978 | 
             
                  "name": "getStakingReader",
         | 
| @@ -914,6 +1999,19 @@ | |
| 914 1999 | 
             
                  "stateMutability": "view",
         | 
| 915 2000 | 
             
                  "type": "function"
         | 
| 916 2001 | 
             
                },
         | 
| 2002 | 
            +
                {
         | 
| 2003 | 
            +
                  "inputs": [],
         | 
| 2004 | 
            +
                  "name": "getTargetHandler",
         | 
| 2005 | 
            +
                  "outputs": [
         | 
| 2006 | 
            +
                    {
         | 
| 2007 | 
            +
                      "internalType": "contract TargetHandler",
         | 
| 2008 | 
            +
                      "name": "targetHandler",
         | 
| 2009 | 
            +
                      "type": "address"
         | 
| 2010 | 
            +
                    }
         | 
| 2011 | 
            +
                  ],
         | 
| 2012 | 
            +
                  "stateMutability": "view",
         | 
| 2013 | 
            +
                  "type": "function"
         | 
| 2014 | 
            +
                },
         | 
| 917 2015 | 
             
                {
         | 
| 918 2016 | 
             
                  "inputs": [],
         | 
| 919 2017 | 
             
                  "name": "getToken",
         | 
| @@ -985,13 +2083,14 @@ | |
| 985 2083 | 
             
                    }
         | 
| 986 2084 | 
             
                  ],
         | 
| 987 2085 | 
             
                  "name": "increaseTotalValueLocked",
         | 
| 988 | 
            -
                  "outputs": [
         | 
| 989 | 
            -
             | 
| 990 | 
            -
             | 
| 991 | 
            -
             | 
| 992 | 
            -
             | 
| 993 | 
            -
             | 
| 994 | 
            -
                   | 
| 2086 | 
            +
                  "outputs": [],
         | 
| 2087 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2088 | 
            +
                  "type": "function"
         | 
| 2089 | 
            +
                },
         | 
| 2090 | 
            +
                {
         | 
| 2091 | 
            +
                  "inputs": [],
         | 
| 2092 | 
            +
                  "name": "initializeTokenHandler",
         | 
| 2093 | 
            +
                  "outputs": [],
         | 
| 995 2094 | 
             
                  "stateMutability": "nonpayable",
         | 
| 996 2095 | 
             
                  "type": "function"
         | 
| 997 2096 | 
             
                },
         | 
| @@ -1008,9 +2107,22 @@ | |
| 1008 2107 | 
             
                      "type": "bytes"
         | 
| 1009 2108 | 
             
                    }
         | 
| 1010 2109 | 
             
                  ],
         | 
| 1011 | 
            -
                  "name": "initializeVersionable",
         | 
| 1012 | 
            -
                  "outputs": [],
         | 
| 1013 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 2110 | 
            +
                  "name": "initializeVersionable",
         | 
| 2111 | 
            +
                  "outputs": [],
         | 
| 2112 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2113 | 
            +
                  "type": "function"
         | 
| 2114 | 
            +
                },
         | 
| 2115 | 
            +
                {
         | 
| 2116 | 
            +
                  "inputs": [],
         | 
| 2117 | 
            +
                  "name": "isActive",
         | 
| 2118 | 
            +
                  "outputs": [
         | 
| 2119 | 
            +
                    {
         | 
| 2120 | 
            +
                      "internalType": "bool",
         | 
| 2121 | 
            +
                      "name": "active",
         | 
| 2122 | 
            +
                      "type": "bool"
         | 
| 2123 | 
            +
                    }
         | 
| 2124 | 
            +
                  ],
         | 
| 2125 | 
            +
                  "stateMutability": "view",
         | 
| 1014 2126 | 
             
                  "type": "function"
         | 
| 1015 2127 | 
             
                },
         | 
| 1016 2128 | 
             
                {
         | 
| @@ -1067,6 +2179,11 @@ | |
| 1067 2179 | 
             
                },
         | 
| 1068 2180 | 
             
                {
         | 
| 1069 2181 | 
             
                  "inputs": [
         | 
| 2182 | 
            +
                    {
         | 
| 2183 | 
            +
                      "internalType": "address",
         | 
| 2184 | 
            +
                      "name": "from",
         | 
| 2185 | 
            +
                      "type": "address"
         | 
| 2186 | 
            +
                    },
         | 
| 1070 2187 | 
             
                    {
         | 
| 1071 2188 | 
             
                      "internalType": "address",
         | 
| 1072 2189 | 
             
                      "name": "to",
         | 
| @@ -1076,9 +2193,14 @@ | |
| 1076 2193 | 
             
                      "internalType": "uint256",
         | 
| 1077 2194 | 
             
                      "name": "tokenId",
         | 
| 1078 2195 | 
             
                      "type": "uint256"
         | 
| 2196 | 
            +
                    },
         | 
| 2197 | 
            +
                    {
         | 
| 2198 | 
            +
                      "internalType": "address",
         | 
| 2199 | 
            +
                      "name": "operator",
         | 
| 2200 | 
            +
                      "type": "address"
         | 
| 1079 2201 | 
             
                    }
         | 
| 1080 2202 | 
             
                  ],
         | 
| 1081 | 
            -
                  "name": " | 
| 2203 | 
            +
                  "name": "nftTransferFrom",
         | 
| 1082 2204 | 
             
                  "outputs": [],
         | 
| 1083 2205 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1084 2206 | 
             
                  "type": "function"
         | 
| @@ -1086,23 +2208,24 @@ | |
| 1086 2208 | 
             
                {
         | 
| 1087 2209 | 
             
                  "inputs": [
         | 
| 1088 2210 | 
             
                    {
         | 
| 1089 | 
            -
                      "internalType": " | 
| 1090 | 
            -
                      "name": " | 
| 1091 | 
            -
                      "type": " | 
| 2211 | 
            +
                      "internalType": "NftId",
         | 
| 2212 | 
            +
                      "name": "targetNftId",
         | 
| 2213 | 
            +
                      "type": "uint96"
         | 
| 1092 2214 | 
             
                    },
         | 
| 1093 2215 | 
             
                    {
         | 
| 1094 | 
            -
                      "internalType": " | 
| 1095 | 
            -
                      "name": " | 
| 1096 | 
            -
                      "type": " | 
| 1097 | 
            -
                    } | 
| 2216 | 
            +
                      "internalType": "Amount",
         | 
| 2217 | 
            +
                      "name": "dipAmount",
         | 
| 2218 | 
            +
                      "type": "uint96"
         | 
| 2219 | 
            +
                    }
         | 
| 2220 | 
            +
                  ],
         | 
| 2221 | 
            +
                  "name": "refillRewardReserves",
         | 
| 2222 | 
            +
                  "outputs": [
         | 
| 1098 2223 | 
             
                    {
         | 
| 1099 | 
            -
                      "internalType": " | 
| 1100 | 
            -
                      "name": " | 
| 1101 | 
            -
                      "type": " | 
| 2224 | 
            +
                      "internalType": "Amount",
         | 
| 2225 | 
            +
                      "name": "newBalance",
         | 
| 2226 | 
            +
                      "type": "uint96"
         | 
| 1102 2227 | 
             
                    }
         | 
| 1103 2228 | 
             
                  ],
         | 
| 1104 | 
            -
                  "name": "nftTransferFrom",
         | 
| 1105 | 
            -
                  "outputs": [],
         | 
| 1106 2229 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1107 2230 | 
             
                  "type": "function"
         | 
| 1108 2231 | 
             
                },
         | 
| @@ -1117,9 +2240,14 @@ | |
| 1117 2240 | 
             
                      "internalType": "Amount",
         | 
| 1118 2241 | 
             
                      "name": "dipAmount",
         | 
| 1119 2242 | 
             
                      "type": "uint96"
         | 
| 2243 | 
            +
                    },
         | 
| 2244 | 
            +
                    {
         | 
| 2245 | 
            +
                      "internalType": "address",
         | 
| 2246 | 
            +
                      "name": "transferFrom",
         | 
| 2247 | 
            +
                      "type": "address"
         | 
| 1120 2248 | 
             
                    }
         | 
| 1121 2249 | 
             
                  ],
         | 
| 1122 | 
            -
                  "name": " | 
| 2250 | 
            +
                  "name": "refillRewardReservesByService",
         | 
| 1123 2251 | 
             
                  "outputs": [
         | 
| 1124 2252 | 
             
                    {
         | 
| 1125 2253 | 
             
                      "internalType": "Amount",
         | 
| @@ -1142,11 +2270,6 @@ | |
| 1142 2270 | 
             
                      "name": "expectedObjectType",
         | 
| 1143 2271 | 
             
                      "type": "uint8"
         | 
| 1144 2272 | 
             
                    },
         | 
| 1145 | 
            -
                    {
         | 
| 1146 | 
            -
                      "internalType": "uint256",
         | 
| 1147 | 
            -
                      "name": "chainId",
         | 
| 1148 | 
            -
                      "type": "uint256"
         | 
| 1149 | 
            -
                    },
         | 
| 1150 2273 | 
             
                    {
         | 
| 1151 2274 | 
             
                      "internalType": "Seconds",
         | 
| 1152 2275 | 
             
                      "name": "initialLockingPeriod",
         | 
| @@ -1155,7 +2278,7 @@ | |
| 1155 2278 | 
             
                    {
         | 
| 1156 2279 | 
             
                      "internalType": "UFixed",
         | 
| 1157 2280 | 
             
                      "name": "initialRewardRate",
         | 
| 1158 | 
            -
                      "type": " | 
| 2281 | 
            +
                      "type": "uint160"
         | 
| 1159 2282 | 
             
                    }
         | 
| 1160 2283 | 
             
                  ],
         | 
| 1161 2284 | 
             
                  "name": "registerTarget",
         | 
| @@ -1182,6 +2305,11 @@ | |
| 1182 2305 | 
             
                      "internalType": "NftId",
         | 
| 1183 2306 | 
             
                      "name": "newStakeNftId",
         | 
| 1184 2307 | 
             
                      "type": "uint96"
         | 
| 2308 | 
            +
                    },
         | 
| 2309 | 
            +
                    {
         | 
| 2310 | 
            +
                      "internalType": "Amount",
         | 
| 2311 | 
            +
                      "name": "newStakeBalance",
         | 
| 2312 | 
            +
                      "type": "uint96"
         | 
| 1185 2313 | 
             
                    }
         | 
| 1186 2314 | 
             
                  ],
         | 
| 1187 2315 | 
             
                  "stateMutability": "nonpayable",
         | 
| @@ -1218,6 +2346,50 @@ | |
| 1218 2346 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1219 2347 | 
             
                  "type": "function"
         | 
| 1220 2348 | 
             
                },
         | 
| 2349 | 
            +
                {
         | 
| 2350 | 
            +
                  "inputs": [
         | 
| 2351 | 
            +
                    {
         | 
| 2352 | 
            +
                      "internalType": "NftId",
         | 
| 2353 | 
            +
                      "name": "targetNftId",
         | 
| 2354 | 
            +
                      "type": "uint96"
         | 
| 2355 | 
            +
                    },
         | 
| 2356 | 
            +
                    {
         | 
| 2357 | 
            +
                      "internalType": "Amount",
         | 
| 2358 | 
            +
                      "name": "stakeLimitAmount",
         | 
| 2359 | 
            +
                      "type": "uint96"
         | 
| 2360 | 
            +
                    }
         | 
| 2361 | 
            +
                  ],
         | 
| 2362 | 
            +
                  "name": "setMaxStakedAmount",
         | 
| 2363 | 
            +
                  "outputs": [],
         | 
| 2364 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2365 | 
            +
                  "type": "function"
         | 
| 2366 | 
            +
                },
         | 
| 2367 | 
            +
                {
         | 
| 2368 | 
            +
                  "inputs": [
         | 
| 2369 | 
            +
                    {
         | 
| 2370 | 
            +
                      "internalType": "Seconds",
         | 
| 2371 | 
            +
                      "name": "lockingPeriod",
         | 
| 2372 | 
            +
                      "type": "uint40"
         | 
| 2373 | 
            +
                    }
         | 
| 2374 | 
            +
                  ],
         | 
| 2375 | 
            +
                  "name": "setProtocolLockingPeriod",
         | 
| 2376 | 
            +
                  "outputs": [],
         | 
| 2377 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2378 | 
            +
                  "type": "function"
         | 
| 2379 | 
            +
                },
         | 
| 2380 | 
            +
                {
         | 
| 2381 | 
            +
                  "inputs": [
         | 
| 2382 | 
            +
                    {
         | 
| 2383 | 
            +
                      "internalType": "UFixed",
         | 
| 2384 | 
            +
                      "name": "rewardRate",
         | 
| 2385 | 
            +
                      "type": "uint160"
         | 
| 2386 | 
            +
                    }
         | 
| 2387 | 
            +
                  ],
         | 
| 2388 | 
            +
                  "name": "setProtocolRewardRate",
         | 
| 2389 | 
            +
                  "outputs": [],
         | 
| 2390 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2391 | 
            +
                  "type": "function"
         | 
| 2392 | 
            +
                },
         | 
| 1221 2393 | 
             
                {
         | 
| 1222 2394 | 
             
                  "inputs": [
         | 
| 1223 2395 | 
             
                    {
         | 
| @@ -1228,7 +2400,7 @@ | |
| 1228 2400 | 
             
                    {
         | 
| 1229 2401 | 
             
                      "internalType": "UFixed",
         | 
| 1230 2402 | 
             
                      "name": "rewardRate",
         | 
| 1231 | 
            -
                      "type": " | 
| 2403 | 
            +
                      "type": "uint160"
         | 
| 1232 2404 | 
             
                    }
         | 
| 1233 2405 | 
             
                  ],
         | 
| 1234 2406 | 
             
                  "name": "setRewardRate",
         | 
| @@ -1239,9 +2411,9 @@ | |
| 1239 2411 | 
             
                {
         | 
| 1240 2412 | 
             
                  "inputs": [
         | 
| 1241 2413 | 
             
                    {
         | 
| 1242 | 
            -
                      "internalType": " | 
| 2414 | 
            +
                      "internalType": "ChainId",
         | 
| 1243 2415 | 
             
                      "name": "chainId",
         | 
| 1244 | 
            -
                      "type": " | 
| 2416 | 
            +
                      "type": "uint96"
         | 
| 1245 2417 | 
             
                    },
         | 
| 1246 2418 | 
             
                    {
         | 
| 1247 2419 | 
             
                      "internalType": "address",
         | 
| @@ -1251,7 +2423,7 @@ | |
| 1251 2423 | 
             
                    {
         | 
| 1252 2424 | 
             
                      "internalType": "UFixed",
         | 
| 1253 2425 | 
             
                      "name": "stakingRate",
         | 
| 1254 | 
            -
                      "type": " | 
| 2426 | 
            +
                      "type": "uint160"
         | 
| 1255 2427 | 
             
                    }
         | 
| 1256 2428 | 
             
                  ],
         | 
| 1257 2429 | 
             
                  "name": "setStakingRate",
         | 
| @@ -1263,11 +2435,123 @@ | |
| 1263 2435 | 
             
                  "inputs": [
         | 
| 1264 2436 | 
             
                    {
         | 
| 1265 2437 | 
             
                      "internalType": "address",
         | 
| 1266 | 
            -
                      "name": " | 
| 2438 | 
            +
                      "name": "stakingReader",
         | 
| 1267 2439 | 
             
                      "type": "address"
         | 
| 1268 2440 | 
             
                    }
         | 
| 1269 2441 | 
             
                  ],
         | 
| 1270 | 
            -
                  "name": " | 
| 2442 | 
            +
                  "name": "setStakingReader",
         | 
| 2443 | 
            +
                  "outputs": [],
         | 
| 2444 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2445 | 
            +
                  "type": "function"
         | 
| 2446 | 
            +
                },
         | 
| 2447 | 
            +
                {
         | 
| 2448 | 
            +
                  "inputs": [
         | 
| 2449 | 
            +
                    {
         | 
| 2450 | 
            +
                      "internalType": "VersionPart",
         | 
| 2451 | 
            +
                      "name": "release",
         | 
| 2452 | 
            +
                      "type": "uint8"
         | 
| 2453 | 
            +
                    }
         | 
| 2454 | 
            +
                  ],
         | 
| 2455 | 
            +
                  "name": "setStakingService",
         | 
| 2456 | 
            +
                  "outputs": [],
         | 
| 2457 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2458 | 
            +
                  "type": "function"
         | 
| 2459 | 
            +
                },
         | 
| 2460 | 
            +
                {
         | 
| 2461 | 
            +
                  "inputs": [
         | 
| 2462 | 
            +
                    {
         | 
| 2463 | 
            +
                      "internalType": "ObjectType",
         | 
| 2464 | 
            +
                      "name": "targetType",
         | 
| 2465 | 
            +
                      "type": "uint8"
         | 
| 2466 | 
            +
                    },
         | 
| 2467 | 
            +
                    {
         | 
| 2468 | 
            +
                      "internalType": "bool",
         | 
| 2469 | 
            +
                      "name": "isSupported",
         | 
| 2470 | 
            +
                      "type": "bool"
         | 
| 2471 | 
            +
                    },
         | 
| 2472 | 
            +
                    {
         | 
| 2473 | 
            +
                      "internalType": "bool",
         | 
| 2474 | 
            +
                      "name": "allowNewTargets",
         | 
| 2475 | 
            +
                      "type": "bool"
         | 
| 2476 | 
            +
                    },
         | 
| 2477 | 
            +
                    {
         | 
| 2478 | 
            +
                      "internalType": "bool",
         | 
| 2479 | 
            +
                      "name": "allowCrossChain",
         | 
| 2480 | 
            +
                      "type": "bool"
         | 
| 2481 | 
            +
                    },
         | 
| 2482 | 
            +
                    {
         | 
| 2483 | 
            +
                      "internalType": "Amount",
         | 
| 2484 | 
            +
                      "name": "minStakingAmount",
         | 
| 2485 | 
            +
                      "type": "uint96"
         | 
| 2486 | 
            +
                    },
         | 
| 2487 | 
            +
                    {
         | 
| 2488 | 
            +
                      "internalType": "Amount",
         | 
| 2489 | 
            +
                      "name": "maxStakingAmount",
         | 
| 2490 | 
            +
                      "type": "uint96"
         | 
| 2491 | 
            +
                    },
         | 
| 2492 | 
            +
                    {
         | 
| 2493 | 
            +
                      "internalType": "Seconds",
         | 
| 2494 | 
            +
                      "name": "minLockingPeriod",
         | 
| 2495 | 
            +
                      "type": "uint40"
         | 
| 2496 | 
            +
                    },
         | 
| 2497 | 
            +
                    {
         | 
| 2498 | 
            +
                      "internalType": "Seconds",
         | 
| 2499 | 
            +
                      "name": "maxLockingPeriod",
         | 
| 2500 | 
            +
                      "type": "uint40"
         | 
| 2501 | 
            +
                    },
         | 
| 2502 | 
            +
                    {
         | 
| 2503 | 
            +
                      "internalType": "UFixed",
         | 
| 2504 | 
            +
                      "name": "minRewardRate",
         | 
| 2505 | 
            +
                      "type": "uint160"
         | 
| 2506 | 
            +
                    },
         | 
| 2507 | 
            +
                    {
         | 
| 2508 | 
            +
                      "internalType": "UFixed",
         | 
| 2509 | 
            +
                      "name": "maxRewardRate",
         | 
| 2510 | 
            +
                      "type": "uint160"
         | 
| 2511 | 
            +
                    }
         | 
| 2512 | 
            +
                  ],
         | 
| 2513 | 
            +
                  "name": "setSupportInfo",
         | 
| 2514 | 
            +
                  "outputs": [],
         | 
| 2515 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2516 | 
            +
                  "type": "function"
         | 
| 2517 | 
            +
                },
         | 
| 2518 | 
            +
                {
         | 
| 2519 | 
            +
                  "inputs": [
         | 
| 2520 | 
            +
                    {
         | 
| 2521 | 
            +
                      "internalType": "NftId",
         | 
| 2522 | 
            +
                      "name": "targetNftId",
         | 
| 2523 | 
            +
                      "type": "uint96"
         | 
| 2524 | 
            +
                    },
         | 
| 2525 | 
            +
                    {
         | 
| 2526 | 
            +
                      "internalType": "Amount",
         | 
| 2527 | 
            +
                      "name": "marginAmount",
         | 
| 2528 | 
            +
                      "type": "uint96"
         | 
| 2529 | 
            +
                    },
         | 
| 2530 | 
            +
                    {
         | 
| 2531 | 
            +
                      "internalType": "Amount",
         | 
| 2532 | 
            +
                      "name": "limitAmount",
         | 
| 2533 | 
            +
                      "type": "uint96"
         | 
| 2534 | 
            +
                    }
         | 
| 2535 | 
            +
                  ],
         | 
| 2536 | 
            +
                  "name": "setTargetLimits",
         | 
| 2537 | 
            +
                  "outputs": [],
         | 
| 2538 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2539 | 
            +
                  "type": "function"
         | 
| 2540 | 
            +
                },
         | 
| 2541 | 
            +
                {
         | 
| 2542 | 
            +
                  "inputs": [
         | 
| 2543 | 
            +
                    {
         | 
| 2544 | 
            +
                      "internalType": "uint16",
         | 
| 2545 | 
            +
                      "name": "tvlUpdatesTrigger",
         | 
| 2546 | 
            +
                      "type": "uint16"
         | 
| 2547 | 
            +
                    },
         | 
| 2548 | 
            +
                    {
         | 
| 2549 | 
            +
                      "internalType": "UFixed",
         | 
| 2550 | 
            +
                      "name": "minTvlRatioTrigger",
         | 
| 2551 | 
            +
                      "type": "uint160"
         | 
| 2552 | 
            +
                    }
         | 
| 2553 | 
            +
                  ],
         | 
| 2554 | 
            +
                  "name": "setUpdateTriggers",
         | 
| 1271 2555 | 
             
                  "outputs": [],
         | 
| 1272 2556 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1273 2557 | 
             
                  "type": "function"
         | 
| @@ -1289,7 +2573,7 @@ | |
| 1289 2573 | 
             
                  "outputs": [
         | 
| 1290 2574 | 
             
                    {
         | 
| 1291 2575 | 
             
                      "internalType": "Amount",
         | 
| 1292 | 
            -
                      "name": " | 
| 2576 | 
            +
                      "name": "newStakeBalance",
         | 
| 1293 2577 | 
             
                      "type": "uint96"
         | 
| 1294 2578 | 
             
                    }
         | 
| 1295 2579 | 
             
                  ],
         | 
| @@ -1315,24 +2599,6 @@ | |
| 1315 2599 | 
             
                  "stateMutability": "view",
         | 
| 1316 2600 | 
             
                  "type": "function"
         | 
| 1317 2601 | 
             
                },
         | 
| 1318 | 
            -
                {
         | 
| 1319 | 
            -
                  "inputs": [
         | 
| 1320 | 
            -
                    {
         | 
| 1321 | 
            -
                      "internalType": "address",
         | 
| 1322 | 
            -
                      "name": "to",
         | 
| 1323 | 
            -
                      "type": "address"
         | 
| 1324 | 
            -
                    },
         | 
| 1325 | 
            -
                    {
         | 
| 1326 | 
            -
                      "internalType": "Amount",
         | 
| 1327 | 
            -
                      "name": "dipAmount",
         | 
| 1328 | 
            -
                      "type": "uint96"
         | 
| 1329 | 
            -
                    }
         | 
| 1330 | 
            -
                  ],
         | 
| 1331 | 
            -
                  "name": "transferDipAmount",
         | 
| 1332 | 
            -
                  "outputs": [],
         | 
| 1333 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1334 | 
            -
                  "type": "function"
         | 
| 1335 | 
            -
                },
         | 
| 1336 2602 | 
             
                {
         | 
| 1337 2603 | 
             
                  "inputs": [
         | 
| 1338 2604 | 
             
                    {
         | 
| @@ -1347,11 +2613,6 @@ | |
| 1347 2613 | 
             
                      "internalType": "Amount",
         | 
| 1348 2614 | 
             
                      "name": "unstakedAmount",
         | 
| 1349 2615 | 
             
                      "type": "uint96"
         | 
| 1350 | 
            -
                    },
         | 
| 1351 | 
            -
                    {
         | 
| 1352 | 
            -
                      "internalType": "Amount",
         | 
| 1353 | 
            -
                      "name": "rewardsClaimedAmount",
         | 
| 1354 | 
            -
                      "type": "uint96"
         | 
| 1355 2616 | 
             
                    }
         | 
| 1356 2617 | 
             
                  ],
         | 
| 1357 2618 | 
             
                  "stateMutability": "nonpayable",
         | 
| @@ -1389,6 +2650,25 @@ | |
| 1389 2650 | 
             
                    }
         | 
| 1390 2651 | 
             
                  ],
         | 
| 1391 2652 | 
             
                  "name": "updateRewards",
         | 
| 2653 | 
            +
                  "outputs": [
         | 
| 2654 | 
            +
                    {
         | 
| 2655 | 
            +
                      "internalType": "Amount",
         | 
| 2656 | 
            +
                      "name": "newRewardAmount",
         | 
| 2657 | 
            +
                      "type": "uint96"
         | 
| 2658 | 
            +
                    }
         | 
| 2659 | 
            +
                  ],
         | 
| 2660 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2661 | 
            +
                  "type": "function"
         | 
| 2662 | 
            +
                },
         | 
| 2663 | 
            +
                {
         | 
| 2664 | 
            +
                  "inputs": [
         | 
| 2665 | 
            +
                    {
         | 
| 2666 | 
            +
                      "internalType": "NftId",
         | 
| 2667 | 
            +
                      "name": "targetNftId",
         | 
| 2668 | 
            +
                      "type": "uint96"
         | 
| 2669 | 
            +
                    }
         | 
| 2670 | 
            +
                  ],
         | 
| 2671 | 
            +
                  "name": "updateTargetLimit",
         | 
| 1392 2672 | 
             
                  "outputs": [],
         | 
| 1393 2673 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1394 2674 | 
             
                  "type": "function"
         | 
| @@ -1429,6 +2709,35 @@ | |
| 1429 2709 | 
             
                  ],
         | 
| 1430 2710 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1431 2711 | 
             
                  "type": "function"
         | 
| 2712 | 
            +
                },
         | 
| 2713 | 
            +
                {
         | 
| 2714 | 
            +
                  "inputs": [
         | 
| 2715 | 
            +
                    {
         | 
| 2716 | 
            +
                      "internalType": "NftId",
         | 
| 2717 | 
            +
                      "name": "targetNftId",
         | 
| 2718 | 
            +
                      "type": "uint96"
         | 
| 2719 | 
            +
                    },
         | 
| 2720 | 
            +
                    {
         | 
| 2721 | 
            +
                      "internalType": "Amount",
         | 
| 2722 | 
            +
                      "name": "dipAmount",
         | 
| 2723 | 
            +
                      "type": "uint96"
         | 
| 2724 | 
            +
                    },
         | 
| 2725 | 
            +
                    {
         | 
| 2726 | 
            +
                      "internalType": "address",
         | 
| 2727 | 
            +
                      "name": "transferTo",
         | 
| 2728 | 
            +
                      "type": "address"
         | 
| 2729 | 
            +
                    }
         | 
| 2730 | 
            +
                  ],
         | 
| 2731 | 
            +
                  "name": "withdrawRewardReservesByService",
         | 
| 2732 | 
            +
                  "outputs": [
         | 
| 2733 | 
            +
                    {
         | 
| 2734 | 
            +
                      "internalType": "Amount",
         | 
| 2735 | 
            +
                      "name": "newBalance",
         | 
| 2736 | 
            +
                      "type": "uint96"
         | 
| 2737 | 
            +
                    }
         | 
| 2738 | 
            +
                  ],
         | 
| 2739 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2740 | 
            +
                  "type": "function"
         | 
| 1432 2741 | 
             
                }
         | 
| 1433 2742 | 
             
              ],
         | 
| 1434 2743 | 
             
              "bytecode": "0x",
         |