// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface ICompLike is IERC20 { function getCurrentVotes(address account) external view returns (uint96); function delegate(address delegate) external; }