mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
7bcdce3090
- Moved interaces in protocol/tokenization to the general interfaces/ folder.
15 lines
368 B
Solidity
15 lines
368 B
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.12;
|
|
|
|
/**
|
|
* @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);
|
|
}
|