forked from mico/idle_moloch
9 lines
252 B
Solidity
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;
|
|
}
|