dsa-connectors/contracts/polygon/connectors/aave/aave-v3-rewards/helpers.sol

15 lines
430 B
Solidity
Raw Normal View History

2023-05-17 21:23:54 +00:00
//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import { DSMath } from "../../../common/math.sol";
import { Basic } from "../../../common/basic.sol";
import { AaveIncentivesInterface } from "./interface.sol";
abstract contract Helpers is DSMath, Basic {
/**
* @dev Aave v3 Incentives
*/
AaveIncentivesInterface internal constant incentives =
2023-05-17 21:46:49 +00:00
AaveIncentivesInterface(0x929EC64c34a17401F460460D4B9390518E5B473e);
2023-05-17 21:23:54 +00:00
}