2021-04-02 15:28:00 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
|
|
|
|
import { DSMath } from "../../common/math.sol";
|
2021-04-07 23:45:00 +00:00
|
|
|
import { Stores } from "../../common/stores-mainnet.sol";
|
2021-04-02 15:28:00 +00:00
|
|
|
import { AaveLendingPoolProviderInterface, AaveDataProviderInterface, AaveMigratorInterface } from "./interfaces.sol";
|
|
|
|
|
|
|
|
abstract contract Helpers is DSMath, Stores {
|
|
|
|
|
2021-04-16 18:59:01 +00:00
|
|
|
AaveMigratorInterface constant internal migrator = AaveMigratorInterface(address(0xA0557234eB7b3c503388202D3768Cfa2f1AE9Dc2));
|
2021-04-02 15:28:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Aave Data Provider
|
|
|
|
*/
|
|
|
|
AaveDataProviderInterface constant internal aaveData = AaveDataProviderInterface(0x057835Ad21a177dbdd3090bB1CAE03EaCF78Fc6d);
|
|
|
|
}
|