dsa-resolvers-deprecated/contracts/powerResolver/aave.sol
2021-03-02 15:51:27 +05:30

214 lines
6.6 KiB
Solidity

pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
interface AaveInterface {
function getUserReserveData(address _reserve, address _user) external view returns (
uint256 currentATokenBalance,
uint256 currentBorrowBalance,
uint256 principalBorrowBalance,
uint256 borrowRateMode,
uint256 borrowRate,
uint256 liquidityRate,
uint256 originationFee,
uint256 variableBorrowIndex,
uint256 lastUpdateTimestamp,
bool usageAsCollateralEnabled
);
function getUserAccountData(address user) external view returns (
uint256 totalLiquidityETH,
uint256 totalCollateralETH,
uint256 totalBorrowsETH,
uint256 totalFeesETH,
uint256 availableBorrowsETH,
uint256 currentLiquidationThreshold,
uint256 ltv,
uint256 healthFactor
);
}
interface AaveProviderInterface {
function getLendingPool() external view returns (address);
function getLendingPoolCore() external view returns (address);
function getPriceOracle() external view returns (address);
}
interface AaveCoreInterface {
function getReserveATokenAddress(address _reserve) external view returns (address);
function getUserBorrowBalances(address _reserve, address _user) external view returns (uint256, uint256, uint256);
}
interface ChainLinkInterface {
function latestAnswer() external view returns (int256);
function decimals() external view returns (uint256);
}
interface ATokenInterface {
function balanceOf(address _user) external view returns(uint256);
}
interface AavePriceInterface {
function getAssetPrice(address _asset) external view returns (uint256);
function getAssetsPrices(address[] calldata _assets) external view returns(uint256[] memory);
function getSourceOfAsset(address _asset) external view returns(address);
function getFallbackOracle() external view returns(address);
}
contract DSMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x, "math-not-safe");
}
function sub(uint x, uint y) internal pure returns (uint z) {
z = x - y <= x ? x - y : 0;
}
function mul(uint x, uint y) internal pure returns (uint z) {
require(y == 0 || (z = x * y) / y == x, "math-not-safe");
}
uint constant WAD = 10 ** 18;
uint constant RAY = 10 ** 27;
function rmul(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, y), RAY / 2) / RAY;
}
function wmul(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, y), WAD / 2) / WAD;
}
function rdiv(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, RAY), y / 2) / y;
}
function wdiv(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, WAD), y / 2) / y;
}
}
contract Helpers is DSMath {
struct AaveData {
uint collateral;
uint debt;
}
struct data {
address user;
AaveData[] tokensData;
}
struct datas {
AaveData[] tokensData;
}
/**
* @dev get Aave Provider Address
*/
function getAaveProviderAddress() internal pure returns (address) {
return 0x24a42fD28C976A61Df5D00D0599C34c4f90748c8; //mainnet
// return 0x506B0B2CF20FAA8f38a4E2B524EE43e1f4458Cc5; //kovan
}
/**
* @dev get Chainlink ETH price feed Address
*/
function getChainlinkEthFeed() internal pure returns (address) {
return 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419; //mainnet
// return 0x9326BFA02ADD2366b30bacB125260Af641031331; //kovan
}
struct TokenPrice {
uint priceInEth;
uint priceInUsd;
}
}
contract InstaAaveV1PowerResolver is Helpers {
function getEthPrice() public view returns (uint ethPrice) {
ethPrice = uint(ChainLinkInterface(getChainlinkEthFeed()).latestAnswer());
}
function getTokensPrices(address[] memory tokens)
public view returns(TokenPrice[] memory tokenPrices, uint ethPrice) {
AaveProviderInterface AaveProvider = AaveProviderInterface(getAaveProviderAddress());
uint[] memory _tokenPrices = AavePriceInterface(AaveProvider.getPriceOracle()).getAssetsPrices(tokens);
ethPrice = uint(ChainLinkInterface(getChainlinkEthFeed()).latestAnswer());
tokenPrices = new TokenPrice[](_tokenPrices.length);
for (uint i = 0; i < _tokenPrices.length; i++) {
tokenPrices[i] = TokenPrice(
_tokenPrices[i],
wmul(_tokenPrices[i], uint(ethPrice) * 10 ** 10)
);
}
}
function getAaveDataByReserve(address[] memory owners, address reserve, address atoken, AaveCoreInterface aaveCore) public view returns (AaveData[] memory) {
AaveData[] memory tokensData = new AaveData[](owners.length);
ATokenInterface atokenContract = ATokenInterface(atoken);
for (uint i = 0; i < owners.length; i++) {
(,uint debt,) = aaveCore.getUserBorrowBalances(reserve, owners[i]);
tokensData[i] = AaveData(
atokenContract.balanceOf(owners[i]),
debt
);
}
return tokensData;
}
function getPositionByReserves(
address[] calldata owners,
address[] calldata reserves,
address[] calldata atokens
)
external
view
returns (datas[] memory)
{
AaveProviderInterface AaveProvider = AaveProviderInterface(getAaveProviderAddress());
AaveCoreInterface aaveCore = AaveCoreInterface(AaveProvider.getLendingPoolCore());
// AaveInterface aave = AaveInterface(AaveProvider.getLendingPool());
datas[] memory _data = new datas[](reserves.length);
for (uint i = 0; i < reserves.length; i++) {
_data[i] = datas(
getAaveDataByReserve(owners, reserves[i], atokens[i], aaveCore)
);
}
return _data;
}
function getPositionByAddress(
address[] memory owners
)
public
view
returns (AaveData[] memory)
{
AaveProviderInterface AaveProvider = AaveProviderInterface(getAaveProviderAddress());
AaveInterface aave = AaveInterface(AaveProvider.getLendingPool());
AaveData[] memory tokensData = new AaveData[](owners.length);
for (uint i = 0; i < owners.length; i++) {
(
,
uint totalCollateralETH,
uint totalBorrowsETH,
,,,,) = aave.getUserAccountData(owners[i]);
tokensData[i] = AaveData(
totalCollateralETH,
totalBorrowsETH
);
}
return tokensData;
}
}