all files / contracts/interfaces/aave/ IAaveIncentivesController.sol

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16                               
// SPDX-License-Identifier: BUSL-1.1
 
pragma solidity ^0.8.3;
 
interface IAaveIncentivesController {
  event RewardsClaimed(address indexed user, address indexed to, uint256 amount);
 
  function claimRewards(
    address[] calldata assets,
    uint256 amount,
    address to
  ) external returns (uint256);
 
  function getUserUnclaimedRewards(address user) external view returns (uint256);
}