idle_moloch/lib/Baal/contracts/interfaces/IGovernorShaman.sol
2024-11-01 11:55:27 +01:00

9 lines
252 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IGovernorShaman {
function isGovernor(address shaman) external view returns (bool);
// Governor Only
function setGovernanceConfig(bytes memory _governanceConfig) external;
}