mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
88 lines
2.7 KiB
Solidity
88 lines
2.7 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.8;
|
|
|
|
import {Context} from '@openzeppelin/contracts/GSN/Context.sol';
|
|
import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
|
|
import {SafeMath} from '@openzeppelin/contracts/math/SafeMath.sol';
|
|
import {DebtTokenBase} from './base/DebtTokenBase.sol';
|
|
import {WadRayMath} from '../libraries/math/WadRayMath.sol';
|
|
import {IVariableDebtToken} from './interfaces/IVariableDebtToken.sol';
|
|
|
|
/**
|
|
* @title contract VariableDebtToken
|
|
* @notice Implements a variable debt token to track the user positions
|
|
* @author Aave
|
|
**/
|
|
contract VariableDebtToken is DebtTokenBase, IVariableDebtToken {
|
|
using WadRayMath for uint256;
|
|
|
|
uint256 public constant DEBT_TOKEN_REVISION = 0x1;
|
|
mapping(address => uint256) _userIndexes;
|
|
|
|
constructor(
|
|
address pool,
|
|
address underlyingAsset,
|
|
string memory name,
|
|
string memory symbol
|
|
) public DebtTokenBase(pool, underlyingAsset, name, symbol) {}
|
|
|
|
/**
|
|
* @dev gets the revision of the stable debt token implementation
|
|
* @return the debt token implementation revision
|
|
**/
|
|
function getRevision() internal virtual override pure returns (uint256) {
|
|
return DEBT_TOKEN_REVISION;
|
|
}
|
|
|
|
/**
|
|
* @dev calculates the accumulated debt balance of the user
|
|
* @return the debt balance of the user
|
|
**/
|
|
function balanceOf(address user) public virtual override view returns (uint256) {
|
|
uint256 scaledBalance = principalBalanceOf(user);
|
|
|
|
if (scaledBalance == 0) {
|
|
return 0;
|
|
}
|
|
|
|
return
|
|
scaledBalance
|
|
.rayMul(POOL.getReserveNormalizedVariableDebt(UNDERLYING_ASSET));
|
|
}
|
|
|
|
/**
|
|
* @dev mints new variable debt
|
|
* @param user the user receiving the debt
|
|
* @param amount the amount of debt being minted
|
|
**/
|
|
function mint(address user, uint256 amount) external override onlyLendingPool {
|
|
|
|
uint256 index = POOL.getReserveNormalizedVariableDebt(UNDERLYING_ASSET);
|
|
|
|
_mint(user, amount.rayDiv(index));
|
|
_userIndexes[user] = index;
|
|
emit MintDebt(user, amount, index);
|
|
}
|
|
|
|
/**
|
|
* @dev burns user variable debt
|
|
* @param user the user which debt is burnt
|
|
* @param amount the amount of debt being burned
|
|
**/
|
|
function burn(address user, uint256 amount) external override onlyLendingPool {
|
|
|
|
uint256 index = POOL.getReserveNormalizedVariableDebt(UNDERLYING_ASSET);
|
|
_burn(user, amount.rayDiv(index));
|
|
_userIndexes[user] = index;
|
|
emit BurnDebt(user, amount, index);
|
|
}
|
|
|
|
/**
|
|
* @dev Returns the principal debt balance of the user from
|
|
* @return The debt balance of the user since the last burn/mint action
|
|
**/
|
|
function principalBalanceOf(address user) public virtual override view returns (uint256) {
|
|
return super.balanceOf(user).rayMul(_userIndexes[user]);
|
|
}
|
|
}
|