mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
c9bd6d97ff
- Fixed Burn event on AToken Closes #107 See merge request aave-tech/protocol-v2!117
352 lines
11 KiB
Solidity
352 lines
11 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.8;
|
|
|
|
import {IncentivizedERC20} from './IncentivizedERC20.sol';
|
|
import {ILendingPool} from '../interfaces/ILendingPool.sol';
|
|
import {WadRayMath} from '../libraries/math/WadRayMath.sol';
|
|
import {Errors} from '../libraries/helpers/Errors.sol';
|
|
import {VersionedInitializable} from '../libraries/aave-upgradeability/VersionedInitializable.sol';
|
|
import {IAToken} from './interfaces/IAToken.sol';
|
|
import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol';
|
|
import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol';
|
|
|
|
/**
|
|
* @title Aave ERC20 AToken
|
|
*
|
|
* @dev Implementation of the interest bearing token for the Aave protocol.
|
|
* @author Aave
|
|
*/
|
|
contract AToken is VersionedInitializable, IncentivizedERC20, IAToken {
|
|
using WadRayMath for uint256;
|
|
using SafeERC20 for IERC20;
|
|
|
|
bytes public constant EIP712_REVISION = bytes('1');
|
|
bytes32 internal constant EIP712_DOMAIN = keccak256(
|
|
'EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'
|
|
);
|
|
bytes32 public constant PERMIT_TYPEHASH = keccak256(
|
|
'Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)'
|
|
);
|
|
|
|
uint256 public constant UINT_MAX_VALUE = uint256(-1);
|
|
uint256 public constant ATOKEN_REVISION = 0x1;
|
|
address public immutable UNDERLYING_ASSET_ADDRESS;
|
|
address public immutable RESERVE_TREASURY_ADDRESS;
|
|
ILendingPool public immutable POOL;
|
|
|
|
/// @dev owner => next valid nonce to submit with permit()
|
|
mapping(address => uint256) public _nonces;
|
|
|
|
bytes32 public DOMAIN_SEPARATOR;
|
|
|
|
modifier onlyLendingPool {
|
|
require(_msgSender() == address(POOL), Errors.AT_CALLER_MUST_BE_LENDING_POOL);
|
|
_;
|
|
}
|
|
|
|
constructor(
|
|
ILendingPool pool,
|
|
address underlyingAssetAddress,
|
|
address reserveTreasuryAddress,
|
|
string memory tokenName,
|
|
string memory tokenSymbol,
|
|
address incentivesController
|
|
) public IncentivizedERC20(tokenName, tokenSymbol, 18, incentivesController) {
|
|
POOL = pool;
|
|
UNDERLYING_ASSET_ADDRESS = underlyingAssetAddress;
|
|
RESERVE_TREASURY_ADDRESS = reserveTreasuryAddress;
|
|
}
|
|
|
|
function getRevision() internal virtual override pure returns (uint256) {
|
|
return ATOKEN_REVISION;
|
|
}
|
|
|
|
function initialize(
|
|
uint8 underlyingAssetDecimals,
|
|
string calldata tokenName,
|
|
string calldata tokenSymbol
|
|
) external virtual initializer {
|
|
uint256 chainId;
|
|
|
|
//solium-disable-next-line
|
|
assembly {
|
|
chainId := chainid()
|
|
}
|
|
|
|
DOMAIN_SEPARATOR = keccak256(
|
|
abi.encode(
|
|
EIP712_DOMAIN,
|
|
keccak256(bytes(tokenName)),
|
|
keccak256(EIP712_REVISION),
|
|
chainId,
|
|
address(this)
|
|
)
|
|
);
|
|
|
|
_setName(tokenName);
|
|
_setSymbol(tokenSymbol);
|
|
_setDecimals(underlyingAssetDecimals);
|
|
}
|
|
|
|
/**
|
|
* @dev burns the aTokens and sends the equivalent amount of underlying to the target.
|
|
* only lending pools can call this function
|
|
* @param amount the amount being burned
|
|
**/
|
|
function burn(
|
|
address user,
|
|
address receiverOfUnderlying,
|
|
uint256 amount,
|
|
uint256 index
|
|
) external override onlyLendingPool {
|
|
uint256 amountScaled = amount.rayDiv(index);
|
|
require(amountScaled != 0, Errors.AT_INVALID_BURN_AMOUNT);
|
|
_burn(user, amountScaled);
|
|
|
|
//transfers the underlying to the target
|
|
IERC20(UNDERLYING_ASSET_ADDRESS).safeTransfer(receiverOfUnderlying, amount);
|
|
|
|
//transfer event to track balances
|
|
emit Transfer(user, address(0), amount);
|
|
emit Burn(user, receiverOfUnderlying, amount, index);
|
|
}
|
|
|
|
/**
|
|
* @dev mints aTokens to user
|
|
* only lending pools can call this function
|
|
* @param user the address receiving the minted tokens
|
|
* @param amount the amount of tokens to mint
|
|
* @param index the the last index of the reserve
|
|
* @return true if the the previous balance of the user is 0
|
|
*/
|
|
function mint(
|
|
address user,
|
|
uint256 amount,
|
|
uint256 index
|
|
) external override onlyLendingPool returns (bool) {
|
|
uint256 previousBalance = super.balanceOf(user);
|
|
|
|
uint256 amountScaled = amount.rayDiv(index);
|
|
require(amountScaled != 0, Errors.AT_INVALID_MINT_AMOUNT);
|
|
_mint(user, amountScaled);
|
|
|
|
//transfer event to track balances
|
|
emit Transfer(address(0), user, amount);
|
|
emit Mint(user, amount, index);
|
|
|
|
return previousBalance == 0;
|
|
}
|
|
|
|
/**
|
|
* @dev mints aTokens to reserve treasury
|
|
* only lending pools can call this function
|
|
* @param amount the amount of tokens to mint to the treasury
|
|
* @param index the the last index of the reserve
|
|
*/
|
|
function mintToTreasury(uint256 amount, uint256 index) external override onlyLendingPool {
|
|
if (amount == 0) {
|
|
return;
|
|
}
|
|
|
|
//compared to the normal mint, we don't check for rounding errors.
|
|
//the amount to mint can easily be very small since is a fraction of the interest
|
|
//accrued. in that case, the treasury will experience a (very small) loss, but it
|
|
//wont cause potentially valid transactions to fail.
|
|
|
|
_mint(RESERVE_TREASURY_ADDRESS, amount.rayDiv(index));
|
|
|
|
//transfer event to track balances
|
|
emit Transfer(address(0), RESERVE_TREASURY_ADDRESS, amount);
|
|
emit Mint(RESERVE_TREASURY_ADDRESS, amount, index);
|
|
}
|
|
|
|
/**
|
|
* @dev transfers tokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken
|
|
* only lending pools can call this function
|
|
* @param from the address from which transfer the aTokens
|
|
* @param to the destination address
|
|
* @param value the amount to transfer
|
|
**/
|
|
function transferOnLiquidation(
|
|
address from,
|
|
address to,
|
|
uint256 value
|
|
) external override onlyLendingPool {
|
|
//being a normal transfer, the Transfer() and BalanceTransfer() are emitted
|
|
//so no need to emit a specific event here
|
|
_transfer(from, to, value, false);
|
|
}
|
|
|
|
/**
|
|
* @dev calculates the balance of the user, which is the
|
|
* principal balance + interest generated by the principal balance
|
|
* @param user the user for which the balance is being calculated
|
|
* @return the total balance of the user
|
|
**/
|
|
function balanceOf(address user)
|
|
public
|
|
override(IncentivizedERC20, IERC20)
|
|
view
|
|
returns (uint256)
|
|
{
|
|
return super.balanceOf(user).rayMul(POOL.getReserveNormalizedIncome(UNDERLYING_ASSET_ADDRESS));
|
|
}
|
|
|
|
/**
|
|
* @dev returns the scaled balance of the user. The scaled balance is the sum of all the
|
|
* updated stored balance divided the reserve index at the moment of the update
|
|
* @param user the address of the user
|
|
* @return the scaled balance of the user
|
|
**/
|
|
function scaledBalanceOf(address user) external override view returns (uint256) {
|
|
return super.balanceOf(user);
|
|
}
|
|
|
|
/**
|
|
* @dev returns the principal balance of the user and principal total supply.
|
|
* @param user the address of the user
|
|
* @return the principal balance of the user
|
|
* @return the principal total supply
|
|
**/
|
|
function getScaledUserBalanceAndSupply(address user)
|
|
external
|
|
override
|
|
view
|
|
returns (uint256, uint256)
|
|
{
|
|
return (super.balanceOf(user), super.totalSupply());
|
|
}
|
|
|
|
/**
|
|
* @dev calculates the total supply of the specific aToken
|
|
* since the balance of every single user increases over time, the total supply
|
|
* does that too.
|
|
* @return the current total supply
|
|
**/
|
|
function totalSupply() public override(IncentivizedERC20, IERC20) view returns (uint256) {
|
|
uint256 currentSupplyScaled = super.totalSupply();
|
|
|
|
if (currentSupplyScaled == 0) {
|
|
return 0;
|
|
}
|
|
|
|
return currentSupplyScaled.rayMul(POOL.getReserveNormalizedIncome(UNDERLYING_ASSET_ADDRESS));
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the scaled total supply of the variable debt token. Represents sum(borrows/index)
|
|
* @return the scaled total supply
|
|
**/
|
|
function scaledTotalSupply() public virtual override view returns (uint256) {
|
|
return super.totalSupply();
|
|
}
|
|
|
|
/**
|
|
* @dev transfers the underlying asset to the target. Used by the lendingpool to transfer
|
|
* assets in borrow(), redeem() and flashLoan()
|
|
* @param target the target of the transfer
|
|
* @param amount the amount to transfer
|
|
* @return the amount transferred
|
|
**/
|
|
function transferUnderlyingTo(address target, uint256 amount)
|
|
external
|
|
override
|
|
onlyLendingPool
|
|
returns (uint256)
|
|
{
|
|
IERC20(UNDERLYING_ASSET_ADDRESS).safeTransfer(target, amount);
|
|
return amount;
|
|
}
|
|
|
|
/**
|
|
* @dev implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md
|
|
* @param owner the owner of the funds
|
|
* @param spender the spender
|
|
* @param value the amount
|
|
* @param deadline the deadline timestamp, type(uint256).max for max deadline
|
|
* @param v signature param
|
|
* @param s signature param
|
|
* @param r signature param
|
|
*/
|
|
function permit(
|
|
address owner,
|
|
address spender,
|
|
uint256 value,
|
|
uint256 deadline,
|
|
uint8 v,
|
|
bytes32 r,
|
|
bytes32 s
|
|
) external {
|
|
require(owner != address(0), 'INVALID_OWNER');
|
|
//solium-disable-next-line
|
|
require(block.timestamp <= deadline, 'INVALID_EXPIRATION');
|
|
uint256 currentValidNonce = _nonces[owner];
|
|
bytes32 digest = keccak256(
|
|
abi.encodePacked(
|
|
'\x19\x01',
|
|
DOMAIN_SEPARATOR,
|
|
keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, currentValidNonce, deadline))
|
|
)
|
|
);
|
|
require(owner == ecrecover(digest, v, r, s), 'INVALID_SIGNATURE');
|
|
_nonces[owner] = currentValidNonce.add(1);
|
|
_approve(owner, spender, value);
|
|
}
|
|
|
|
/**
|
|
* @dev transfers the aTokens between two users. Validates the transfer
|
|
* (ie checks for valid HF after the transfer) if required
|
|
* @param from the source address
|
|
* @param to the destination address
|
|
* @param amount the amount to transfer
|
|
* @param validate true if the transfer needs to be validated
|
|
**/
|
|
function _transfer(
|
|
address from,
|
|
address to,
|
|
uint256 amount,
|
|
bool validate
|
|
) internal {
|
|
uint256 index = POOL.getReserveNormalizedIncome(UNDERLYING_ASSET_ADDRESS);
|
|
|
|
uint256 fromBalanceBefore = super.balanceOf(from).rayMul(index);
|
|
uint256 toBalanceBefore = super.balanceOf(to).rayMul(index);
|
|
|
|
super._transfer(from, to, amount.rayDiv(index));
|
|
|
|
if (validate) {
|
|
POOL.finalizeTransfer(
|
|
UNDERLYING_ASSET_ADDRESS,
|
|
from,
|
|
to,
|
|
amount,
|
|
fromBalanceBefore,
|
|
toBalanceBefore
|
|
);
|
|
}
|
|
|
|
emit BalanceTransfer(from, to, amount, index);
|
|
}
|
|
|
|
/**
|
|
* @dev overrides the parent _transfer to force validated transfer() and transferFrom()
|
|
* @param from the source address
|
|
* @param to the destination address
|
|
* @param amount the amount to transfer
|
|
**/
|
|
function _transfer(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) internal override {
|
|
_transfer(from, to, amount, true);
|
|
}
|
|
|
|
/**
|
|
* @dev aTokens should not receive ETH
|
|
**/
|
|
receive() external payable {
|
|
revert();
|
|
}
|
|
}
|