bom-contracts/contracts/interfaces/ITreasury.sol

8 lines
210 B
Solidity
Raw Permalink Normal View History

2022-07-25 15:40:16 +00:00
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.14;
interface ITreasury {
function isAdmin(address who) external returns (bool);
function isOperator(address who) external returns (bool);
}