proposal-36/contracts/interfaces/FeeManager.sol

12 lines
249 B
Solidity
Raw Permalink Normal View History

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