Skip to main content

IRewardsController

IRewardsController​

Defines the basic interface for a Rewards Controller.

ClaimerSet​

event ClaimerSet(address user, address claimer)

Emitted when a new address is whitelisted as claimer of rewards on behalf of a user

Parameters​

NameTypeDescription
useraddressThe address of the user
claimeraddressThe address of the claimer

RewardsClaimed​

event RewardsClaimed(address user, address reward, address to, address claimer, uint256 amount)

Emitted when rewards are claimed

Parameters​

NameTypeDescription
useraddressThe address of the user rewards has been claimed on behalf of
rewardaddressThe address of the token reward is claimed
toaddressThe address of the receiver of the rewards
claimeraddressThe address of the claimer
amountuint256The amount of rewards claimed

TransferStrategyInstalled​

event TransferStrategyInstalled(address reward, address transferStrategy)

Emitted when a transfer strategy is installed for the reward distribution

Parameters​

NameTypeDescription
rewardaddressThe address of the token reward
transferStrategyaddressThe address of TransferStrategy contract

RewardOracleUpdated​

event RewardOracleUpdated(address reward, address rewardOracle)

Emitted when the reward oracle is updated

Parameters​

NameTypeDescription
rewardaddressThe address of the token reward
rewardOracleaddressThe address of oracle

setClaimer​

function setClaimer(address user, address claimer) external

Whitelists an address to claim the rewards on behalf of another address

Parameters​

NameTypeDescription
useraddressThe address of the user
claimeraddressThe address of the claimer

setTransferStrategy​

function setTransferStrategy(address reward, contract ITransferStrategyBase transferStrategy) external

Sets a TransferStrategy logic contract that determines the logic of the rewards transfer

Parameters​

NameTypeDescription
rewardaddressThe address of the reward token
transferStrategycontract ITransferStrategyBaseThe address of the TransferStrategy logic contract

setRewardOracle​

function setRewardOracle(address reward, contract IEACAggregatorProxy rewardOracle) external

At the moment of reward configuration, the Incentives Controller performs a check to see if the reward asset oracle is compatible with IEACAggregator proxy. This check is enforced for integrators to be able to show incentives at the current Aave UI without the need to setup an external price registry

Sets an Aave Oracle contract to enforce rewards with a source of value.

Parameters​

NameTypeDescription
rewardaddressThe address of the reward to set the price aggregator
rewardOraclecontract IEACAggregatorProxyThe address of price aggregator that follows IEACAggregatorProxy interface

getRewardOracle​

function getRewardOracle(address reward) external view returns (address)

Get the price aggregator oracle address

Parameters​

NameTypeDescription
rewardaddressThe address of the reward

Return Values​

NameTypeDescription
[0]addressThe price oracle of the reward

getClaimer​

function getClaimer(address user) external view returns (address)

Returns the whitelisted claimer for a certain address (0x0 if not set)

Parameters​

NameTypeDescription
useraddressThe address of the user

Return Values​

NameTypeDescription
[0]addressThe claimer address

getTransferStrategy​

function getTransferStrategy(address reward) external view returns (address)

Returns the Transfer Strategy implementation contract address being used for a reward address

Parameters​

NameTypeDescription
rewardaddressThe address of the reward

Return Values​

NameTypeDescription
[0]addressThe address of the TransferStrategy contract

configureAssets​

function configureAssets(struct RewardsDataTypes.RewardsConfigInput[] config) external

Configure assets to incentivize with an emission of rewards per second until the end of distribution.

Parameters​

NameTypeDescription
configstruct RewardsDataTypes.RewardsConfigInput[]The assets configuration input, the list of structs contains the following fields: uint104 emissionPerSecond: The emission per second following rewards unit decimals. uint256 totalSupply: The total supply of the asset to incentivize uint40 distributionEnd: The end of the distribution of the incentives for an asset address asset: The asset address to incentivize address reward: The reward token address ITransferStrategy transferStrategy: The TransferStrategy address with the install hook and claim logic. IEACAggregatorProxy rewardOracle: The Price Oracle of a reward to visualize the incentives at the UI Frontend. Must follow Chainlink Aggregator IEACAggregatorProxy interface to be compatible.

handleAction​

function handleAction(address user, uint256 totalSupply, uint256 userBalance) external

Called by the corresponding asset on transfer hook in order to update the rewards distribution. The units of totalSupply and userBalance should be the same.

Parameters​

NameTypeDescription
useraddressThe address of the user whose asset balance has changed
totalSupplyuint256The total supply of the asset prior to user balance change
userBalanceuint256The previous user balance prior to balance change

claimRewards​

function claimRewards(address[] assets, uint256 amount, address to, address reward) external returns (uint256)

Claims reward for a user to the desired address, on all the assets of the pool, accumulating the pending rewards

Parameters​

NameTypeDescription
assetsaddress[]List of assets to check eligible distributions before claiming rewards
amountuint256The amount of rewards to claim
toaddressThe address that will be receiving the rewards
rewardaddressThe address of the reward token

Return Values​

NameTypeDescription
[0]uint256The amount of rewards claimed

claimRewardsOnBehalf​

function claimRewardsOnBehalf(address[] assets, uint256 amount, address user, address to, address reward) external returns (uint256)

Claims reward for a user on behalf, on all the assets of the pool, accumulating the pending rewards. The caller must be whitelisted via "allowClaimOnBehalf" function by the RewardsAdmin role manager

Parameters​

NameTypeDescription
assetsaddress[]The list of assets to check eligible distributions before claiming rewards
amountuint256The amount of rewards to claim
useraddressThe address to check and claim rewards
toaddressThe address that will be receiving the rewards
rewardaddressThe address of the reward token

Return Values​

NameTypeDescription
[0]uint256The amount of rewards claimed

claimRewardsToSelf​

function claimRewardsToSelf(address[] assets, uint256 amount, address reward) external returns (uint256)

Claims reward for msg.sender, on all the assets of the pool, accumulating the pending rewards

Parameters​

NameTypeDescription
assetsaddress[]The list of assets to check eligible distributions before claiming rewards
amountuint256The amount of rewards to claim
rewardaddressThe address of the reward token

Return Values​

NameTypeDescription
[0]uint256The amount of rewards claimed

claimAllRewards​

function claimAllRewards(address[] assets, address to) external returns (address[] rewardsList, uint256[] claimedAmounts)

Claims all rewards for a user to the desired address, on all the assets of the pool, accumulating the pending rewards

Parameters​

NameTypeDescription
assetsaddress[]The list of assets to check eligible distributions before claiming rewards
toaddressThe address that will be receiving the rewards

Return Values​

NameTypeDescription
rewardsListaddress[]List of addresses of the reward tokens
claimedAmountsuint256[]List that contains the claimed amount per reward, following same order as "rewardList"

claimAllRewardsOnBehalf​

function claimAllRewardsOnBehalf(address[] assets, address user, address to) external returns (address[] rewardsList, uint256[] claimedAmounts)

Claims all rewards for a user on behalf, on all the assets of the pool, accumulating the pending rewards. The caller must be whitelisted via "allowClaimOnBehalf" function by the RewardsAdmin role manager

Parameters​

NameTypeDescription
assetsaddress[]The list of assets to check eligible distributions before claiming rewards
useraddressThe address to check and claim rewards
toaddressThe address that will be receiving the rewards

Return Values​

NameTypeDescription
rewardsListaddress[]List of addresses of the reward tokens
claimedAmountsuint256[]List that contains the claimed amount per reward, following same order as "rewardsList"

claimAllRewardsToSelf​

function claimAllRewardsToSelf(address[] assets) external returns (address[] rewardsList, uint256[] claimedAmounts)

Claims all reward for msg.sender, on all the assets of the pool, accumulating the pending rewards

Parameters​

NameTypeDescription
assetsaddress[]The list of assets to check eligible distributions before claiming rewards

Return Values​

NameTypeDescription
rewardsListaddress[]List of addresses of the reward tokens
claimedAmountsuint256[]List that contains the claimed amount per reward, following same order as "rewardsList"