Files
core/contracts/interfaces/ILensMultiState.sol
donosonaumczuk 7f86fde00f misc: Natspec improved
Co-authored-by: Victor Naumik <vicnaum@gmail.com>
2023-03-28 20:04:31 +01:00

17 lines
493 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import {Types} from 'contracts/libraries/constants/Types.sol';
interface ILensMultiState {
/**
* @notice Gets the state currently set in the protocol. It could be a global pause, a publishing pause or an
* unpaused state.
* @custom:permissions Anyone.
*
* @return Types.ProtocolState The state currently set in the protocol.
*/
function getState() external view returns (Types.ProtocolState);
}