aave-protocol-v2/contracts/interfaces/IDelegationToken.sol

12 lines
269 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.6.12;
/**
* @title IDelegationToken
* @dev Implements an interface for tokens that have a delegation function
* @author Aave
**/
interface IDelegationToken {
function delegate(address delegatee) external;
}