2020-08-20 12:32:20 +00:00
|
|
|
// SPDX-License-Identifier: agpl-3.0
|
|
|
|
pragma solidity ^0.6.8;
|
2020-06-30 12:09:28 +00:00
|
|
|
|
2020-07-09 09:23:30 +00:00
|
|
|
/**
|
2020-07-13 08:54:08 +00:00
|
|
|
* @title interface IStableDebtToken
|
|
|
|
*
|
|
|
|
* @notice defines the interface for the stable debt token
|
|
|
|
*
|
|
|
|
* @dev it does not inherit from IERC20 to save in code size
|
|
|
|
*
|
|
|
|
* @author Aave
|
|
|
|
*
|
|
|
|
**/
|
2020-07-09 09:23:30 +00:00
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
interface IStableDebtToken {
|
2020-08-21 14:03:01 +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
|
|
|
|
**/
|
|
|
|
event MintDebt(
|
|
|
|
address user,
|
|
|
|
uint256 amount,
|
|
|
|
uint256 previousBalance,
|
|
|
|
uint256 currentBalance,
|
|
|
|
uint256 balanceIncrease,
|
|
|
|
uint256 newRate
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
**/
|
|
|
|
event BurnDebt(
|
|
|
|
address user,
|
|
|
|
uint256 amount,
|
|
|
|
uint256 previousBalance,
|
|
|
|
uint256 currentBalance,
|
|
|
|
uint256 balanceIncrease
|
|
|
|
);
|
|
|
|
|
2020-07-09 09:23:30 +00:00
|
|
|
/**
|
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
|
2020-08-21 10:38:08 +00:00
|
|
|
* @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(
|
2020-08-21 10:38:08 +00:00
|
|
|
address user,
|
|
|
|
uint256 amount,
|
|
|
|
uint256 rate
|
2020-08-20 12:32:20 +00:00
|
|
|
) external;
|
2020-06-30 12:09:28 +00:00
|
|
|
|
2020-07-09 09:23:30 +00:00
|
|
|
/**
|
2020-07-13 08:54:08 +00:00
|
|
|
* @dev burns debt of the target user.
|
2020-08-21 10:38:08 +00:00
|
|
|
* @param user the address of the user
|
|
|
|
* @param amount the amount of debt tokens to mint
|
2020-07-13 08:54:08 +00:00
|
|
|
**/
|
2020-08-21 10:38:08 +00:00
|
|
|
function burn(address user, uint256 amount) external;
|
2020-06-30 12:09:28 +00:00
|
|
|
|
2020-07-09 09:23:30 +00:00
|
|
|
/**
|
2020-07-13 08:54:08 +00:00
|
|
|
* @dev returns the average rate of all the stable rate loans.
|
|
|
|
* @return the average stable rate
|
|
|
|
**/
|
2020-08-20 12:32:20 +00:00
|
|
|
function getAverageStableRate() external view returns (uint256);
|
2020-06-30 12:09:28 +00:00
|
|
|
|
2020-07-09 09:23:30 +00:00
|
|
|
/**
|
2020-07-13 08:54:08 +00:00
|
|
|
* @dev returns the stable rate of the user debt
|
|
|
|
* @return the stable rate of the user
|
|
|
|
**/
|
2020-08-21 10:38:08 +00:00
|
|
|
function getUserStableRate(address user) external view returns (uint256);
|
2020-07-03 21:20:02 +00:00
|
|
|
|
2020-07-09 09:23:30 +00:00
|
|
|
/**
|
2020-07-13 08:54:08 +00:00
|
|
|
* @dev returns the timestamp of the last update of the user
|
|
|
|
* @return the timestamp
|
|
|
|
**/
|
2020-08-21 10:38:08 +00:00
|
|
|
function getUserLastUpdated(address user) external view returns (uint40);
|
2020-06-30 12:09:28 +00:00
|
|
|
}
|