mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
17 lines
493 B
Solidity
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);
|
|
}
|