tornado-pool-factory/contracts/interfaces/IGovernance.sol

8 lines
173 B
Solidity
Raw Normal View History

2022-02-16 14:50:46 +01:00
// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
interface IGovernance {
function propose(address target, string memory description) external returns (uint256);
}