Incentive Programs

Aave reserves may offer additional incentives beyond base lending rates.

Incentive Types

  • Supply Incentives: Extra APR for supplying assets to reserves

  • Borrow Incentives: APR discounts for borrowing from reserves

  • Conditional Incentives: Bonus rewards requiring specific supply + borrow combinations

Each reserve's incentives array contains all active incentive programs. The incentive data includes:

  • APR bonuses/discounts with formatted percentages

  • Reward token information (for Aave governance incentives)

  • Claim links (for Merit programs)

  • Conditional requirements (for complex incentives)

You can find the incentives associated with a reserve in the incentives array of the Reserve object.

interface Reserve {  // …  incentives: ReserveIncentive[];}

These incentives come from two main sources:

Merit Programs

Third-party programs that provide extra APR rewards for specific lending activities. These require separate claiming through external platforms.

Merit programs are third-party initiatives. Aave Labs does not guarantee these programs and accepts no liability for third-party rewards.

interface MeritSupplyIncentive {  __typename: "MeritSupplyIncentive";  extraSupplyApr: PercentValue;  claimLink: string;}

Where:

  • MeritSupplyIncentive: Extra APR for supplying assets to reserves

  • MeritBorrowIncentive: APR discounts for borrowing from reserves

  • MeritBorrowAndSupplyIncentiveCondition: Extra APR for supplying and borrowing the specified pair of assets

For each of these types, a claim link to the ACI Merit UI is provided.

Aave Governance Rewards

Incentives set by Aave governance through the RewardsController, typically distributed in AAVE tokens or other approved reward tokens.

interface AaveSupplyIncentive {  __typename: "AaveSupplyIncentive";  extraSupplyApr: PercentValue;  rewardTokenAddress: EvmAddress;  rewardTokenSymbol: string;}

Where:

  • AaveSupplyIncentive: Extra APR for supplying assets to reserves

  • AaveBorrowIncentive: APR discounts for borrowing from reserves

In both cases, the reward token address and symbol are provided.