Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 281 Bytes

File metadata and controls

20 lines (16 loc) · 281 Bytes

aave

{% tabs %} {% tab title="LendingPoolCore.sol" %}

// Solidity Interface

interface LendingPoolCore  {
  function getReserveCurrentLiquidityRate(address _reserve)
  external
  view
  returns (
      uint256 liquidityRate
  );
}

{% endtab %} {% endtabs %}