10 lines
241 B
Solidity
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;
|
|
}
|