This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// Medium Guide Gist | |
pragma solidity ^0.8.14; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
import "./OpsTaskCreator.sol"; | |
interface IUniswapV2Locker { | |
function incrementLock(uint256 _lockID, uint256 _amount) external; |