mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
13 lines
443 B
Solidity
13 lines
443 B
Solidity
|
pragma solidity ^0.6.0;
|
||
|
|
||
|
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);
|
||
|
}
|