pragma ever-solidity >= 0.68.0; /// @title Target Balance Interface /// @notice Interface for interaction with contract with target balance interface ITargetBalance { /// @notice Get the target balance of the contract /// @return uint128 Balance which keeps on the contract function getTargetBalance() external view responsible returns (uint128); }