mirror of
				https://github.com/Instadapp/aave-protocol-v2.git
				synced 2024-07-29 21:47:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			563 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			563 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
// SPDX-License-Identifier: agpl-3.0
 | 
						|
pragma solidity 0.6.12;
 | 
						|
pragma experimental ABIEncoderV2;
 | 
						|
 | 
						|
import {SafeMath} from '../../dependencies/openzeppelin/contracts/SafeMath.sol';
 | 
						|
import {VersionedInitializable} from '../libraries/aave-upgradeability/VersionedInitializable.sol';
 | 
						|
import {
 | 
						|
  InitializableImmutableAdminUpgradeabilityProxy
 | 
						|
} from '../libraries/aave-upgradeability/InitializableImmutableAdminUpgradeabilityProxy.sol';
 | 
						|
import {ReserveConfiguration} from '../libraries/configuration/ReserveConfiguration.sol';
 | 
						|
import {ILendingPoolAddressesProvider} from '../../interfaces/ILendingPoolAddressesProvider.sol';
 | 
						|
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
 | 
						|
import {ITokenConfiguration} from '../../interfaces/ITokenConfiguration.sol';
 | 
						|
import {IERC20Detailed} from '../../dependencies/openzeppelin/contracts/IERC20Detailed.sol';
 | 
						|
import {Errors} from '../libraries/helpers/Errors.sol';
 | 
						|
import {PercentageMath} from '../libraries/math/PercentageMath.sol';
 | 
						|
import {DataTypes} from '../libraries/types/DataTypes.sol';
 | 
						|
 | 
						|
/**
 | 
						|
 * @title LendingPoolConfigurator contract
 | 
						|
 * @author Aave
 | 
						|
 * @dev Implements the configuration methods for the Aave protocol
 | 
						|
 **/
 | 
						|
 | 
						|
contract LendingPoolConfigurator is VersionedInitializable {
 | 
						|
  using SafeMath for uint256;
 | 
						|
  using PercentageMath for uint256;
 | 
						|
  using ReserveConfiguration for DataTypes.ReserveConfigurationMap;
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve is initialized.
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param aToken The address of the associated aToken contract
 | 
						|
   * @param stableDebtToken The address of the associated stable rate debt token
 | 
						|
   * @param variableDebtToken The address of the associated variable rate debt token
 | 
						|
   * @param interestRateStrategyAddress The address of the interest rate strategy for the reserve
 | 
						|
   **/
 | 
						|
  event ReserveInitialized(
 | 
						|
    address indexed asset,
 | 
						|
    address indexed aToken,
 | 
						|
    address stableDebtToken,
 | 
						|
    address variableDebtToken,
 | 
						|
    address interestRateStrategyAddress
 | 
						|
  );
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when borrowing is enabled on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param stableRateEnabled True if stable rate borrowing is enabled, false otherwise
 | 
						|
   **/
 | 
						|
  event BorrowingEnabledOnReserve(address indexed asset, bool stableRateEnabled);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when borrowing is disabled on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event BorrowingDisabledOnReserve(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when the collateralization risk parameters for the specified asset are updated.
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param ltv The loan to value of the asset when used as collateral
 | 
						|
   * @param liquidationThreshold The threshold at which loans using this asset as collateral will be considered undercollateralized
 | 
						|
   * @param liquidationBonus The bonus liquidators receive to liquidate this asset
 | 
						|
   **/
 | 
						|
  event CollateralConfigurationChanged(
 | 
						|
    address indexed asset,
 | 
						|
    uint256 ltv,
 | 
						|
    uint256 liquidationThreshold,
 | 
						|
    uint256 liquidationBonus
 | 
						|
  );
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when stable rate borrowing is enabled on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event StableRateEnabledOnReserve(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when stable rate borrowing is disabled on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event StableRateDisabledOnReserve(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve is activated
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event ReserveActivated(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve is deactivated
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event ReserveDeactivated(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve is frozen
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event ReserveFrozen(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve is unfrozen
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  event ReserveUnfrozen(address indexed asset);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve factor is updated
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param factor The new reserve factor
 | 
						|
   **/
 | 
						|
  event ReserveFactorChanged(address indexed asset, uint256 factor);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when the reserve decimals are updated
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param decimals The new decimals
 | 
						|
   **/
 | 
						|
  event ReserveDecimalsChanged(address indexed asset, uint256 decimals);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when a reserve interest strategy contract is updated
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param strategy The new address of the interest strategy contract
 | 
						|
   **/
 | 
						|
  event ReserveInterestRateStrategyChanged(address indexed asset, address strategy);
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when an aToken implementation is upgraded
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param proxy The aToken proxy address
 | 
						|
   * @param implementation The new aToken implementation
 | 
						|
   **/
 | 
						|
  event ATokenUpgraded(
 | 
						|
    address indexed asset,
 | 
						|
    address indexed proxy,
 | 
						|
    address indexed implementation
 | 
						|
  );
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when the implementation of a stable debt token is upgraded
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param proxy The stable debt token proxy address
 | 
						|
   * @param implementation The new aToken implementation
 | 
						|
   **/
 | 
						|
  event StableDebtTokenUpgraded(
 | 
						|
    address indexed asset,
 | 
						|
    address indexed proxy,
 | 
						|
    address indexed implementation
 | 
						|
  );
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Emitted when the implementation of a variable debt token is upgraded
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param proxy The variable debt token proxy address
 | 
						|
   * @param implementation The new aToken implementation
 | 
						|
   **/
 | 
						|
  event VariableDebtTokenUpgraded(
 | 
						|
    address indexed asset,
 | 
						|
    address indexed proxy,
 | 
						|
    address indexed implementation
 | 
						|
  );
 | 
						|
 | 
						|
  ILendingPoolAddressesProvider internal addressesProvider;
 | 
						|
  ILendingPool internal pool;
 | 
						|
 | 
						|
  modifier onlyPoolAdmin {
 | 
						|
    require(addressesProvider.getPoolAdmin() == msg.sender, Errors.CALLER_NOT_POOL_ADMIN);
 | 
						|
    _;
 | 
						|
  }
 | 
						|
 | 
						|
  modifier onlyEmergencyAdmin {
 | 
						|
    require(
 | 
						|
      addressesProvider.getEmergencyAdmin() == msg.sender,
 | 
						|
      Errors.LPC_CALLER_NOT_EMERGENCY_ADMIN
 | 
						|
    );
 | 
						|
    _;
 | 
						|
  }
 | 
						|
 | 
						|
  uint256 internal constant CONFIGURATOR_REVISION = 0x1;
 | 
						|
 | 
						|
  function getRevision() internal pure override returns (uint256) {
 | 
						|
    return CONFIGURATOR_REVISION;
 | 
						|
  }
 | 
						|
 | 
						|
  function initialize(ILendingPoolAddressesProvider provider) public initializer {
 | 
						|
    addressesProvider = provider;
 | 
						|
    pool = ILendingPool(addressesProvider.getLendingPool());
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Initializes a reserve
 | 
						|
   * @param aTokenImpl  The address of the aToken contract implementation
 | 
						|
   * @param stableDebtTokenImpl The address of the stable debt token contract
 | 
						|
   * @param variableDebtTokenImpl The address of the variable debt token contract
 | 
						|
   * @param underlyingAssetDecimals The decimals of the reserve underlying asset
 | 
						|
   * @param interestRateStrategyAddress The address of the interest rate strategy contract for this reserve
 | 
						|
   **/
 | 
						|
  function initReserve(
 | 
						|
    address aTokenImpl,
 | 
						|
    address stableDebtTokenImpl,
 | 
						|
    address variableDebtTokenImpl,
 | 
						|
    uint8 underlyingAssetDecimals,
 | 
						|
    address interestRateStrategyAddress
 | 
						|
  ) public onlyPoolAdmin {
 | 
						|
    address asset = ITokenConfiguration(aTokenImpl).UNDERLYING_ASSET_ADDRESS();
 | 
						|
 | 
						|
    require(
 | 
						|
      address(pool) == ITokenConfiguration(aTokenImpl).POOL(),
 | 
						|
      Errors.LPC_INVALID_ATOKEN_POOL_ADDRESS
 | 
						|
    );
 | 
						|
    require(
 | 
						|
      address(pool) == ITokenConfiguration(stableDebtTokenImpl).POOL(),
 | 
						|
      Errors.LPC_INVALID_STABLE_DEBT_TOKEN_POOL_ADDRESS
 | 
						|
    );
 | 
						|
    require(
 | 
						|
      address(pool) == ITokenConfiguration(variableDebtTokenImpl).POOL(),
 | 
						|
      Errors.LPC_INVALID_VARIABLE_DEBT_TOKEN_POOL_ADDRESS
 | 
						|
    );
 | 
						|
    require(
 | 
						|
      asset == ITokenConfiguration(stableDebtTokenImpl).UNDERLYING_ASSET_ADDRESS(),
 | 
						|
      Errors.LPC_INVALID_STABLE_DEBT_TOKEN_UNDERLYING_ADDRESS
 | 
						|
    );
 | 
						|
    require(
 | 
						|
      asset == ITokenConfiguration(variableDebtTokenImpl).UNDERLYING_ASSET_ADDRESS(),
 | 
						|
      Errors.LPC_INVALID_VARIABLE_DEBT_TOKEN_UNDERLYING_ADDRESS
 | 
						|
    );
 | 
						|
 | 
						|
    address aTokenProxyAddress = _initTokenWithProxy(aTokenImpl, underlyingAssetDecimals);
 | 
						|
 | 
						|
    address stableDebtTokenProxyAddress =
 | 
						|
      _initTokenWithProxy(stableDebtTokenImpl, underlyingAssetDecimals);
 | 
						|
 | 
						|
    address variableDebtTokenProxyAddress =
 | 
						|
      _initTokenWithProxy(variableDebtTokenImpl, underlyingAssetDecimals);
 | 
						|
 | 
						|
    pool.initReserve(
 | 
						|
      asset,
 | 
						|
      aTokenProxyAddress,
 | 
						|
      stableDebtTokenProxyAddress,
 | 
						|
      variableDebtTokenProxyAddress,
 | 
						|
      interestRateStrategyAddress
 | 
						|
    );
 | 
						|
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setDecimals(underlyingAssetDecimals);
 | 
						|
 | 
						|
    currentConfig.setActive(true);
 | 
						|
    currentConfig.setFrozen(false);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit ReserveInitialized(
 | 
						|
      asset,
 | 
						|
      aTokenProxyAddress,
 | 
						|
      stableDebtTokenProxyAddress,
 | 
						|
      variableDebtTokenProxyAddress,
 | 
						|
      interestRateStrategyAddress
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Updates the aToken implementation for the reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve to be updated
 | 
						|
   * @param implementation The address of the new aToken implementation
 | 
						|
   **/
 | 
						|
  function updateAToken(address asset, address implementation) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveData memory reserveData = pool.getReserveData(asset);
 | 
						|
 | 
						|
    _upgradeTokenImplementation(asset, reserveData.aTokenAddress, implementation);
 | 
						|
 | 
						|
    emit ATokenUpgraded(asset, reserveData.aTokenAddress, implementation);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Updates the stable debt token implementation for the reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve to be updated
 | 
						|
   * @param implementation The address of the new aToken implementation
 | 
						|
   **/
 | 
						|
  function updateStableDebtToken(address asset, address implementation) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveData memory reserveData = pool.getReserveData(asset);
 | 
						|
 | 
						|
    _upgradeTokenImplementation(asset, reserveData.stableDebtTokenAddress, implementation);
 | 
						|
 | 
						|
    emit StableDebtTokenUpgraded(asset, reserveData.stableDebtTokenAddress, implementation);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Updates the variable debt token implementation for the asset
 | 
						|
   * @param asset The address of the underlying asset of the reserve to be updated
 | 
						|
   * @param implementation The address of the new aToken implementation
 | 
						|
   **/
 | 
						|
  function updateVariableDebtToken(address asset, address implementation) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveData memory reserveData = pool.getReserveData(asset);
 | 
						|
 | 
						|
    _upgradeTokenImplementation(asset, reserveData.variableDebtTokenAddress, implementation);
 | 
						|
 | 
						|
    emit VariableDebtTokenUpgraded(asset, reserveData.variableDebtTokenAddress, implementation);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Enables borrowing on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param stableBorrowRateEnabled True if stable borrow rate needs to be enabled by default on this reserve
 | 
						|
   **/
 | 
						|
  function enableBorrowingOnReserve(address asset, bool stableBorrowRateEnabled)
 | 
						|
    external
 | 
						|
    onlyPoolAdmin
 | 
						|
  {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setBorrowingEnabled(true);
 | 
						|
    currentConfig.setStableRateBorrowingEnabled(stableBorrowRateEnabled);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit BorrowingEnabledOnReserve(asset, stableBorrowRateEnabled);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Disables borrowing on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function disableBorrowingOnReserve(address asset) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setBorrowingEnabled(false);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
    emit BorrowingDisabledOnReserve(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Configures the reserve collateralization parameters
 | 
						|
   * all the values are expressed in percentages with two decimals of precision. A valid value is 10000, which means 100.00%
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param ltv The loan to value of the asset when used as collateral
 | 
						|
   * @param liquidationThreshold The threshold at which loans using this asset as collateral will be considered undercollateralized
 | 
						|
   * @param liquidationBonus The bonus liquidators receive to liquidate this asset. The values is always above 100%. A value of 105%
 | 
						|
   * means the liquidator will receive a 5% bonus
 | 
						|
   **/
 | 
						|
  function configureReserveAsCollateral(
 | 
						|
    address asset,
 | 
						|
    uint256 ltv,
 | 
						|
    uint256 liquidationThreshold,
 | 
						|
    uint256 liquidationBonus
 | 
						|
  ) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    //validation of the parameters: the LTV can
 | 
						|
    //only be lower or equal than the liquidation threshold
 | 
						|
    //(otherwise a loan against the asset would cause instantaneous liquidation)
 | 
						|
    require(ltv <= liquidationThreshold, Errors.LPC_INVALID_CONFIGURATION);
 | 
						|
 | 
						|
    if (liquidationThreshold != 0) {
 | 
						|
      //liquidation bonus must be bigger than 100.00%, otherwise the liquidator would receive less
 | 
						|
      //collateral than needed to cover the debt
 | 
						|
      require(
 | 
						|
        liquidationBonus > PercentageMath.PERCENTAGE_FACTOR,
 | 
						|
        Errors.LPC_INVALID_CONFIGURATION
 | 
						|
      );
 | 
						|
 | 
						|
      //if threshold * bonus is less than PERCENTAGE_FACTOR, it's guaranteed that at the moment
 | 
						|
      //a loan is taken there is enough collateral available to cover the liquidation bonus
 | 
						|
      require(
 | 
						|
        liquidationThreshold.percentMul(liquidationBonus) <= PercentageMath.PERCENTAGE_FACTOR,
 | 
						|
        Errors.LPC_INVALID_CONFIGURATION
 | 
						|
      );
 | 
						|
    } else {
 | 
						|
      require(liquidationBonus == 0, Errors.LPC_INVALID_CONFIGURATION);
 | 
						|
      //if the liquidation threshold is being set to 0,
 | 
						|
      // the reserve is being disabled as collateral. To do so,
 | 
						|
      //we need to ensure no liquidity is deposited
 | 
						|
      _checkNoLiquidity(asset);
 | 
						|
    }
 | 
						|
 | 
						|
    currentConfig.setLtv(ltv);
 | 
						|
    currentConfig.setLiquidationThreshold(liquidationThreshold);
 | 
						|
    currentConfig.setLiquidationBonus(liquidationBonus);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit CollateralConfigurationChanged(asset, ltv, liquidationThreshold, liquidationBonus);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Enable stable rate borrowing on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function enableReserveStableRate(address asset) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setStableRateBorrowingEnabled(true);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit StableRateEnabledOnReserve(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Disable stable rate borrowing on a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function disableReserveStableRate(address asset) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setStableRateBorrowingEnabled(false);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit StableRateDisabledOnReserve(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Activates a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function activateReserve(address asset) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setActive(true);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit ReserveActivated(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Deactivates a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function deactivateReserve(address asset) external onlyPoolAdmin {
 | 
						|
    _checkNoLiquidity(asset);
 | 
						|
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setActive(false);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit ReserveDeactivated(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Freezes a reserve. A frozen reserve doesn't allow any new deposit, borrow or rate swap
 | 
						|
   *  but allows repayments, liquidations, rate rebalances and withdrawals
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function freezeReserve(address asset) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setFrozen(true);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit ReserveFrozen(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Unfreezes a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   **/
 | 
						|
  function unfreezeReserve(address asset) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setFrozen(false);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit ReserveUnfrozen(asset);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Updates the reserve factor of a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param reserveFactor The new reserve factor of the reserve
 | 
						|
   **/
 | 
						|
  function setReserveFactor(address asset, uint256 reserveFactor) external onlyPoolAdmin {
 | 
						|
    DataTypes.ReserveConfigurationMap memory currentConfig = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    currentConfig.setReserveFactor(reserveFactor);
 | 
						|
 | 
						|
    pool.setConfiguration(asset, currentConfig.data);
 | 
						|
 | 
						|
    emit ReserveFactorChanged(asset, reserveFactor);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev Sets the interest rate strategy of a reserve
 | 
						|
   * @param asset The address of the underlying asset of the reserve
 | 
						|
   * @param rateStrategyAddress The new address of the interest strategy contract
 | 
						|
   **/
 | 
						|
  function setReserveInterestRateStrategyAddress(address asset, address rateStrategyAddress)
 | 
						|
    external
 | 
						|
    onlyPoolAdmin
 | 
						|
  {
 | 
						|
    pool.setReserveInterestRateStrategyAddress(asset, rateStrategyAddress);
 | 
						|
    emit ReserveInterestRateStrategyChanged(asset, rateStrategyAddress);
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * @dev pauses or unpauses all the actions of the protocol, including aToken transfers
 | 
						|
   * @param val true if protocol needs to be paused, false otherwise
 | 
						|
   **/
 | 
						|
  function setPoolPause(bool val) external onlyEmergencyAdmin {
 | 
						|
    pool.setPause(val);
 | 
						|
  }
 | 
						|
 | 
						|
  function _initTokenWithProxy(address implementation, uint8 decimals) internal returns (address) {
 | 
						|
    InitializableImmutableAdminUpgradeabilityProxy proxy =
 | 
						|
      new InitializableImmutableAdminUpgradeabilityProxy(address(this));
 | 
						|
 | 
						|
    bytes memory params =
 | 
						|
      abi.encodeWithSignature(
 | 
						|
        'initialize(uint8,string,string)',
 | 
						|
        decimals,
 | 
						|
        IERC20Detailed(implementation).name(),
 | 
						|
        IERC20Detailed(implementation).symbol()
 | 
						|
      );
 | 
						|
 | 
						|
    proxy.initialize(implementation, params);
 | 
						|
 | 
						|
    return address(proxy);
 | 
						|
  }
 | 
						|
 | 
						|
  function _upgradeTokenImplementation(
 | 
						|
    address asset,
 | 
						|
    address proxyAddress,
 | 
						|
    address implementation
 | 
						|
  ) internal {
 | 
						|
    InitializableImmutableAdminUpgradeabilityProxy proxy =
 | 
						|
      InitializableImmutableAdminUpgradeabilityProxy(payable(proxyAddress));
 | 
						|
 | 
						|
    DataTypes.ReserveConfigurationMap memory configuration = pool.getConfiguration(asset);
 | 
						|
 | 
						|
    (, , , uint256 decimals, ) = configuration.getParamsMemory();
 | 
						|
 | 
						|
    bytes memory params =
 | 
						|
      abi.encodeWithSignature(
 | 
						|
        'initialize(uint8,string,string)',
 | 
						|
        uint8(decimals),
 | 
						|
        IERC20Detailed(implementation).name(),
 | 
						|
        IERC20Detailed(implementation).symbol()
 | 
						|
      );
 | 
						|
 | 
						|
    proxy.upgradeToAndCall(implementation, params);
 | 
						|
  }
 | 
						|
 | 
						|
  function _checkNoLiquidity(address asset) internal view {
 | 
						|
    DataTypes.ReserveData memory reserveData = pool.getReserveData(asset);
 | 
						|
 | 
						|
    uint256 availableLiquidity = IERC20Detailed(asset).balanceOf(reserveData.aTokenAddress);
 | 
						|
 | 
						|
    require(
 | 
						|
      availableLiquidity == 0 && reserveData.currentLiquidityRate == 0,
 | 
						|
      Errors.LPC_RESERVE_LIQUIDITY_NOT_0
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |