2022-03-22 14:55:14 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
2021-10-04 19:41:53 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
|
|
|
|
interface AaveIncentivesInterface {
|
|
|
|
function claimRewards(
|
|
|
|
address[] calldata assets,
|
|
|
|
uint256 amount,
|
|
|
|
address to
|
|
|
|
) external returns (uint256);
|
|
|
|
}
|