proposal-36/contracts/interfaces/FeeManager.sol
2023-11-09 14:04:09 +00:00

12 lines
249 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
import { ITornadoInstance } from "./TornadoInstance.sol";
interface IFeeManager {
function instanceFeeWithUpdate(
ITornadoInstance _instance
) external returns (uint160);
}