2020-07-13 08:54:08 +00:00
|
|
|
import {LendingPool} from '../../../types/LendingPool';
|
|
|
|
import {ReserveData, UserReserveData} from './interfaces';
|
2020-06-12 20:12:53 +00:00
|
|
|
import {
|
|
|
|
getLendingRateOracle,
|
|
|
|
getIErc20Detailed,
|
|
|
|
getMintableErc20,
|
|
|
|
getAToken,
|
2020-07-13 08:54:08 +00:00
|
|
|
} from '../../../helpers/contracts-helpers';
|
2020-08-13 11:06:23 +00:00
|
|
|
import {ZERO_ADDRESS} from '../../../helpers/constants';
|
2020-07-13 08:54:08 +00:00
|
|
|
import {tEthereumAddress} from '../../../helpers/types';
|
|
|
|
import BigNumber from 'bignumber.js';
|
|
|
|
import {getDb, BRE} from '../../../helpers/misc-utils';
|
2020-06-12 20:12:53 +00:00
|
|
|
|
|
|
|
export const getReserveData = async (
|
|
|
|
pool: LendingPool,
|
|
|
|
reserve: tEthereumAddress
|
|
|
|
): Promise<ReserveData> => {
|
2020-08-19 12:23:41 +00:00
|
|
|
const data = await pool.getReserveData(reserve);
|
|
|
|
const tokenAddresses = await pool.getReserveTokensAddresses(reserve);
|
2020-06-12 20:12:53 +00:00
|
|
|
const rateOracle = await getLendingRateOracle();
|
|
|
|
|
|
|
|
const rate = (await rateOracle.getMarketBorrowRate(reserve)).toString();
|
|
|
|
|
2020-08-13 11:06:23 +00:00
|
|
|
const token = await getIErc20Detailed(reserve);
|
|
|
|
const symbol = await token.symbol();
|
|
|
|
const decimals = new BigNumber(await token.decimals());
|
2020-06-26 14:58:52 +00:00
|
|
|
|
2020-08-19 12:23:41 +00:00
|
|
|
const totalLiquidity = new BigNumber(data.availableLiquidity.toString())
|
|
|
|
.plus(data.totalBorrowsStable.toString())
|
|
|
|
.plus(data.totalBorrowsVariable.toString());
|
2020-07-13 08:54:08 +00:00
|
|
|
|
|
|
|
const utilizationRate = new BigNumber(
|
|
|
|
totalLiquidity.eq(0)
|
|
|
|
? 0
|
2020-08-19 12:23:41 +00:00
|
|
|
: new BigNumber(data.totalBorrowsStable.toString())
|
|
|
|
.plus(data.totalBorrowsVariable.toString())
|
2020-07-13 08:54:08 +00:00
|
|
|
.rayDiv(totalLiquidity)
|
|
|
|
);
|
2020-06-26 14:58:52 +00:00
|
|
|
|
2020-06-12 20:12:53 +00:00
|
|
|
return {
|
2020-06-26 14:58:52 +00:00
|
|
|
totalLiquidity,
|
|
|
|
utilizationRate,
|
2020-08-19 12:23:41 +00:00
|
|
|
availableLiquidity: new BigNumber(data.availableLiquidity.toString()),
|
|
|
|
totalBorrowsStable: new BigNumber(data.totalBorrowsStable.toString()),
|
|
|
|
totalBorrowsVariable: new BigNumber(data.totalBorrowsVariable.toString()),
|
|
|
|
liquidityRate: new BigNumber(data.liquidityRate.toString()),
|
|
|
|
variableBorrowRate: new BigNumber(data.variableBorrowRate.toString()),
|
|
|
|
stableBorrowRate: new BigNumber(data.stableBorrowRate.toString()),
|
|
|
|
averageStableBorrowRate: new BigNumber(data.averageStableBorrowRate.toString()),
|
|
|
|
liquidityIndex: new BigNumber(data.liquidityIndex.toString()),
|
|
|
|
variableBorrowIndex: new BigNumber(data.variableBorrowIndex.toString()),
|
2020-06-12 20:12:53 +00:00
|
|
|
lastUpdateTimestamp: new BigNumber(data.lastUpdateTimestamp),
|
|
|
|
address: reserve,
|
2020-07-09 14:27:19 +00:00
|
|
|
aTokenAddress: tokenAddresses.aTokenAddress,
|
2020-06-12 20:12:53 +00:00
|
|
|
symbol,
|
|
|
|
decimals,
|
|
|
|
marketStableRate: new BigNumber(rate),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getUserData = async (
|
|
|
|
pool: LendingPool,
|
|
|
|
reserve: string,
|
2020-09-09 10:47:27 +00:00
|
|
|
user: tEthereumAddress,
|
|
|
|
sender?: tEthereumAddress
|
2020-06-12 20:12:53 +00:00
|
|
|
): Promise<UserReserveData> => {
|
2020-09-09 19:16:39 +00:00
|
|
|
const [userData, scaledATokenBalance] = await Promise.all([
|
2020-06-12 20:12:53 +00:00
|
|
|
pool.getUserReserveData(reserve, user),
|
2020-06-20 23:40:03 +00:00
|
|
|
getATokenUserData(reserve, user, pool),
|
2020-06-12 20:12:53 +00:00
|
|
|
]);
|
|
|
|
|
2020-09-09 19:16:39 +00:00
|
|
|
|
2020-08-13 11:06:23 +00:00
|
|
|
const token = await getMintableErc20(reserve);
|
2020-09-09 10:47:27 +00:00
|
|
|
const walletBalance = new BigNumber((await token.balanceOf(sender || user)).toString());
|
2020-06-12 20:12:53 +00:00
|
|
|
|
|
|
|
return {
|
2020-09-08 11:45:24 +00:00
|
|
|
scaledATokenBalance: new BigNumber(scaledATokenBalance),
|
2020-06-30 12:09:28 +00:00
|
|
|
currentATokenBalance: new BigNumber(userData.currentATokenBalance.toString()),
|
2020-07-07 15:14:44 +00:00
|
|
|
currentStableDebt: new BigNumber(userData.currentStableDebt.toString()),
|
|
|
|
currentVariableDebt: new BigNumber(userData.currentVariableDebt.toString()),
|
|
|
|
principalStableDebt: new BigNumber(userData.principalStableDebt.toString()),
|
|
|
|
principalVariableDebt: new BigNumber(userData.principalVariableDebt.toString()),
|
2020-06-30 12:09:28 +00:00
|
|
|
variableBorrowIndex: new BigNumber(userData.variableBorrowIndex.toString()),
|
|
|
|
stableBorrowRate: new BigNumber(userData.stableBorrowRate.toString()),
|
|
|
|
liquidityRate: new BigNumber(userData.liquidityRate.toString()),
|
2020-06-12 20:12:53 +00:00
|
|
|
usageAsCollateralEnabled: userData.usageAsCollateralEnabled,
|
2020-07-03 21:20:02 +00:00
|
|
|
stableRateLastUpdated: new BigNumber(userData.stableRateLastUpdated.toString()),
|
2020-06-12 20:12:53 +00:00
|
|
|
walletBalance,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getReserveAddressFromSymbol = async (symbol: string) => {
|
|
|
|
const token = await getMintableErc20(
|
|
|
|
(await getDb().get(`${symbol}.${BRE.network.name}`).value()).address
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!token) {
|
|
|
|
throw `Could not find instance for contract ${symbol}`;
|
|
|
|
}
|
|
|
|
return token.address;
|
|
|
|
};
|
|
|
|
|
2020-07-13 08:54:08 +00:00
|
|
|
const getATokenUserData = async (reserve: string, user: string, pool: LendingPool) => {
|
2020-07-09 14:27:19 +00:00
|
|
|
const aTokenAddress: string = (await pool.getReserveTokensAddresses(reserve)).aTokenAddress;
|
2020-06-12 20:12:53 +00:00
|
|
|
|
|
|
|
const aToken = await getAToken(aTokenAddress);
|
|
|
|
|
2020-09-09 19:16:39 +00:00
|
|
|
const scaledBalance = await aToken.scaledBalanceOf(user);
|
|
|
|
return scaledBalance.toString();
|
2020-06-12 20:12:53 +00:00
|
|
|
|
|
|
|
};
|