tornado-pool-factory/contracts/interfaces/IGovernance.sol
2022-02-16 16:50:46 +03:00

8 lines
173 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
interface IGovernance {
function propose(address target, string memory description) external returns (uint256);
}