// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IConvexToken is IERC20 { function operator() external view returns (address); function vecrvProxy() external view returns (address); function maxSupply() external view returns (uint256); function EMISSIONS_MAX_SUPPLY() external view returns (uint256); function totalCliffs() external view returns (uint256); function reductionPerCliff() external view returns (uint256); }