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

14 lines
328 B
Solidity
Raw Normal View History

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