1
0
forked from mico/idle_moloch
idle_moloch/lib/Baal/contracts/interfaces/IAdminShaman.sol
2024-11-01 11:55:27 +01:00

10 lines
241 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IAdminShaman {
function isAdmin(address shaman) external view returns (bool);
// Admin Only
function setAdminConfig(bool pauseShares, bool pauseLoot) external;
}