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

15 lines
365 B
Solidity

// SPDX-License-Identifier: agpl-3.0
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);
}