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); } |