feat: added borrowableInIsolation field

This commit is contained in:
sendra 2021-11-17 12:23:10 +01:00
parent 4245bf57d6
commit 2694b0f7f8
2 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,7 @@ interface IUiPoolDataProvider {
uint256 stableRateSlope1; uint256 stableRateSlope1;
uint256 stableRateSlope2; uint256 stableRateSlope2;
// v3 // v3
bool isPaused;
uint128 accruedToTreasury; uint128 accruedToTreasury;
uint128 unbacked; uint128 unbacked;
uint128 isolationModeTotalDebt; uint128 isolationModeTotalDebt;
@ -57,6 +58,7 @@ interface IUiPoolDataProvider {
uint16 eModeLiquidationBonus; uint16 eModeLiquidationBonus;
address eModePriceSource; address eModePriceSource;
string eModeLabel; string eModeLabel;
bool borrowableInIsolation;
} }
struct UserReserveData { struct UserReserveData {

View File

@ -16,7 +16,7 @@ task(`deploy-${eContractid.UiPoolDataProvider}`, `Deploys the UiPoolDataProvider
); );
console.log( console.log(
`\n- UiPoolDataProvider eth/usd price aggregator: ${ `\n- UiPoolDataProvider eth/usd price aggregator: ${
chainlinkAggregatorProxy[localBRE.network.name] chainlinkEthUsdAggregatorProxy[localBRE.network.name]
}` }`
); );
console.log(`\n- UiPoolDataProvider deployment`); console.log(`\n- UiPoolDataProvider deployment`);