proposal-34/contracts/interfaces/FeeManager.sol

12 lines
249 B
Solidity
Raw Normal View History

2023-11-03 22:31:24 +03:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
import { ITornadoInstance } from "./TornadoInstance.sol";
interface IFeeManager {
function instanceFeeWithUpdate(
ITornadoInstance _instance
) external returns (uint160);
}