mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
50 lines
1.4 KiB
Solidity
50 lines
1.4 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity 0.6.12;
|
|
|
|
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
|
|
import {IDelegationToken} from '../../interfaces/IDelegationToken.sol';
|
|
import {Errors} from '../libraries/helpers/Errors.sol';
|
|
import {AToken} from './AToken.sol';
|
|
|
|
/**
|
|
* @title Aave AToken enabled to delegate voting power of the underlying asset to a different address
|
|
* @dev The underlying asset needs to be compatible with the COMP delegation interface
|
|
* @author Aave
|
|
*/
|
|
contract DelegationAwareAToken is AToken {
|
|
modifier onlyPoolAdmin {
|
|
require(
|
|
_msgSender() == ILendingPool(POOL).getAddressesProvider().getPoolAdmin(),
|
|
Errors.CALLER_NOT_POOL_ADMIN
|
|
);
|
|
_;
|
|
}
|
|
|
|
constructor(
|
|
ILendingPool pool,
|
|
address underlyingAssetAddress,
|
|
address reserveTreasury,
|
|
string memory tokenName,
|
|
string memory tokenSymbol,
|
|
address incentivesController
|
|
)
|
|
public
|
|
AToken(
|
|
pool,
|
|
underlyingAssetAddress,
|
|
reserveTreasury,
|
|
tokenName,
|
|
tokenSymbol,
|
|
incentivesController
|
|
)
|
|
{}
|
|
|
|
/**
|
|
* @dev Delegates voting power of the underlying asset to a `delegatee` address
|
|
* @param delegatee The address that will receive the delegation
|
|
**/
|
|
function delegateUnderlyingTo(address delegatee) external onlyPoolAdmin {
|
|
IDelegationToken(UNDERLYING_ASSET_ADDRESS).delegate(delegatee);
|
|
}
|
|
}
|