aave-protocol-v2/contracts/tokenization/StableDebtToken.sol

233 lines
6.7 KiB
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.6.8;
2020-06-30 12:09:28 +00:00
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';
2020-06-30 12:09:28 +00:00
import {DebtTokenBase} from './base/DebtTokenBase.sol';
2020-08-20 07:51:21 +00:00
import {MathUtils} from '../libraries/math/MathUtils.sol';
import {WadRayMath} from '../libraries/math/WadRayMath.sol';
2020-06-30 12:09:28 +00:00
import {IStableDebtToken} from './interfaces/IStableDebtToken.sol';
/**
2020-07-13 08:54:08 +00:00
* @title contract StableDebtToken
*
* @notice defines the interface for the stable debt token
*
* @dev it does not inherit from IERC20 to save in code size
*
* @author Aave
*
**/
2020-06-30 12:09:28 +00:00
contract StableDebtToken is IStableDebtToken, DebtTokenBase {
using SafeMath for uint256;
using WadRayMath for uint256;
2020-08-17 19:28:50 +00:00
uint256 public constant DEBT_TOKEN_REVISION = 0x1;
2020-06-30 12:09:28 +00:00
struct UserData {
uint256 currentRate;
uint40 lastUpdateTimestamp;
}
uint256 private avgStableRate;
mapping(address => UserData) private _usersData;
2020-06-30 12:09:28 +00:00
/**
2020-07-13 08:54:08 +00:00
* @dev emitted when new stable debt is minted
* @param user the address of the user
* @param amount the amount minted
* @param previousBalance the previous balance of the user
* @param currentBalance the current balance of the user
* @param balanceIncrease the debt increase since the last update
* @param newRate the rate of the debt after the minting
2020-07-13 08:54:08 +00:00
**/
2020-08-20 14:26:06 +00:00
event MintDebt(
address user,
uint256 amount,
uint256 previousBalance,
uint256 currentBalance,
uint256 balanceIncrease,
uint256 newRate
2020-06-30 12:09:28 +00:00
);
/**
2020-07-13 08:54:08 +00:00
* @dev emitted when new stable debt is burned
* @param user the address of the user
* @param amount the amount minted
* @param previousBalance the previous balance of the user
* @param currentBalance the current balance of the user
* @param balanceIncrease the debt increase since the last update
2020-07-13 08:54:08 +00:00
**/
2020-08-20 14:26:06 +00:00
event BurnDebt(
address user,
uint256 amount,
uint256 previousBalance,
uint256 currentBalance,
uint256 balanceIncrease
2020-06-30 12:09:28 +00:00
);
2020-08-18 09:39:34 +00:00
constructor(
address pool,
address underlyingAsset,
string memory name,
string memory symbol
) public DebtTokenBase(pool, underlyingAsset, name, symbol) {}
2020-08-11 07:36:46 +00:00
2020-08-17 19:28:50 +00:00
/**
* @dev gets the revision of the stable debt token implementation
* @return the debt token implementation revision
**/
2020-08-18 09:39:34 +00:00
function getRevision() internal virtual override pure returns (uint256) {
2020-08-17 19:28:50 +00:00
return DEBT_TOKEN_REVISION;
}
2020-07-13 08:54:08 +00:00
/**
* @dev returns the average stable rate across all the stable rate debt
* @return the average stable rate
**/
2020-06-30 12:09:28 +00:00
function getAverageStableRate() external virtual override view returns (uint256) {
return avgStableRate;
}
2020-07-13 08:54:08 +00:00
/**
* @dev returns the timestamp of the last user action
* @return the last update timestamp
**/
function getUserLastUpdated(address user) external virtual override view returns (uint40) {
return _usersData[user].lastUpdateTimestamp;
2020-07-03 21:20:02 +00:00
}
2020-07-13 08:54:08 +00:00
/**
* @dev returns the stable rate of the user
* @param user the address of the user
* @return the stable rate of user
2020-07-13 08:54:08 +00:00
**/
function getUserStableRate(address user) external virtual override view returns (uint256) {
return _usersData[user].currentRate;
2020-06-30 12:09:28 +00:00
}
/**
2020-07-13 08:54:08 +00:00
* @dev calculates the current user debt balance
* @return the accumulated debt of the user
**/
2020-06-30 12:09:28 +00:00
function balanceOf(address account) public virtual override view returns (uint256) {
uint256 accountBalance = _balances[account];
if (accountBalance == 0) {
2020-07-13 08:54:08 +00:00
return 0;
2020-06-30 12:09:28 +00:00
}
UserData storage userData = _usersData[account];
2020-06-30 12:09:28 +00:00
uint256 cumulatedInterest = MathUtils.calculateCompoundedInterest(
userData.currentRate,
userData.lastUpdateTimestamp
);
return accountBalance.wadToRay().rayMul(cumulatedInterest).rayToWad();
2020-06-30 12:09:28 +00:00
}
struct MintLocalVars {
uint256 supplyAfterMint;
uint256 supplyBeforeMint;
uint256 amountInRay;
uint256 newStableRate;
}
/**
2020-07-13 08:54:08 +00:00
* @dev mints debt token to the target user. The resulting rate is the weighted average
* between the rate of the new debt and the rate of the previous debt
* @param user the address of the user
* @param amount the amount of debt tokens to mint
* @param rate the rate of the debt being minted.
2020-07-13 08:54:08 +00:00
**/
2020-06-30 12:09:28 +00:00
function mint(
address user,
uint256 amount,
uint256 rate
) external override onlyLendingPool {
MintLocalVars memory vars;
2020-07-07 10:07:31 +00:00
//cumulates the user debt
(
uint256 previousBalance,
uint256 currentBalance,
uint256 balanceIncrease
) = _calculateBalanceIncrease(user);
2020-06-30 12:09:28 +00:00
vars.supplyBeforeMint = _totalSupply.add(balanceIncrease);
vars.supplyAfterMint = vars.supplyBeforeMint.add(amount);
vars.amountInRay = amount.wadToRay();
2020-06-30 12:09:28 +00:00
//calculates the new stable rate for the user
vars.newStableRate = _usersData[user]
2020-06-30 12:09:28 +00:00
.currentRate
.rayMul(currentBalance.wadToRay())
.add(vars.amountInRay.rayMul(rate))
.rayDiv(currentBalance.add(amount).wadToRay());
2020-07-03 21:20:02 +00:00
_usersData[user].currentRate = vars.newStableRate;
//solium-disable-next-line
_usersData[user].lastUpdateTimestamp = uint40(block.timestamp);
2020-06-30 12:09:28 +00:00
//calculates the updated average stable rate
2020-06-30 12:09:28 +00:00
avgStableRate = avgStableRate
.rayMul(vars.supplyBeforeMint.wadToRay())
.add(rate.rayMul(vars.amountInRay))
.rayDiv(vars.supplyAfterMint.wadToRay());
2020-06-30 12:09:28 +00:00
_mint(user, amount.add(balanceIncrease));
2020-06-30 12:09:28 +00:00
2020-08-20 14:26:06 +00:00
emit MintDebt(
user,
amount,
2020-06-30 12:09:28 +00:00
previousBalance,
currentBalance,
balanceIncrease,
vars.newStableRate
2020-06-30 12:09:28 +00:00
);
}
/**
2020-07-13 08:54:08 +00:00
* @dev burns debt of the target user.
* @param user the address of the user
* @param amount the amount of debt tokens to mint
2020-07-13 08:54:08 +00:00
**/
function burn(address user, uint256 amount) external override onlyLendingPool {
(
uint256 previousBalance,
uint256 currentBalance,
uint256 balanceIncrease
) = _calculateBalanceIncrease(user);
2020-06-30 12:09:28 +00:00
uint256 supplyBeforeBurn = _totalSupply.add(balanceIncrease);
uint256 supplyAfterBurn = supplyBeforeBurn.sub(amount);
2020-08-20 14:26:06 +00:00
if (supplyAfterBurn == 0) {
2020-06-30 12:09:28 +00:00
avgStableRate = 0;
} else {
avgStableRate = avgStableRate
.rayMul(supplyBeforeBurn.wadToRay())
.sub(_usersData[user].currentRate.rayMul(amount.wadToRay()))
.rayDiv(supplyAfterBurn.wadToRay());
2020-06-30 12:09:28 +00:00
}
if (amount == currentBalance) {
_usersData[user].currentRate = 0;
_usersData[user].lastUpdateTimestamp = 0;
2020-08-20 15:09:23 +00:00
} else {
//solium-disable-next-line
_usersData[user].lastUpdateTimestamp = uint40(block.timestamp);
2020-07-03 21:20:02 +00:00
}
if (balanceIncrease > amount) {
_mint(user, balanceIncrease.sub(amount));
} else {
_burn(user, amount.sub(balanceIncrease));
}
2020-06-30 12:09:28 +00:00
emit BurnDebt(user, amount, previousBalance, currentBalance, balanceIncrease);
2020-06-30 12:09:28 +00:00
}
}