aave-protocol-v2/contracts/interfaces/ITokenConfiguration.sol

15 lines
368 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.6.12;
2020-10-19 16:29:32 +00:00
/**
* @title ITokenConfiguration
* @author Aave
* @dev Common interface between aTokens and debt tokens to fetch the
2020-10-19 16:29:32 +00:00
* token configuration
**/
interface ITokenConfiguration {
function UNDERLYING_ASSET_ADDRESS() external view returns (address);
function POOL() external view returns (address);
}