dsa-connectors/contracts/connectors/COMP/interface.sol

13 lines
443 B
Solidity
Raw Normal View History

2021-02-05 18:33:49 +00:00
pragma solidity ^0.6.5;
2021-02-05 17:07:07 +00:00
interface ComptrollerInterface {
function claimComp(address holder) external;
function claimComp(address holder, address[] calldata) external;
function claimComp(address[] calldata holders, address[] calldata cTokens, bool borrowers, bool suppliers) external;
}
interface COMPInterface {
function delegate(address delegatee) external;
function delegates(address) external view returns(address);
}