AAVE

    Proposal overview

    Upgrade the safety module to v1.5 PART 1

    Executed

    Executed on 

    May 19, 2023

    Summary

    This AIP presents the community with the opportunity to upgrade the safety module to v1.5 which introduces:

    • a new slashing mechanism
    • new cooldown mechanism
    • a transfer hook to be used by GHO

    The new version also adds some convenience features like permit support or the ability to claim and stake in a single transaction.

    Motivation

    On September 2020, the Aave Safety Module was introduced into the ecosystem, to improve the protection of the liquidity protocol, adding an extra utility for the AAVE token: AAVE or AAVE/WETH BPT holders stake their assets to act as a defensive layer in front of any shortfall event.

    Since then, apart from really minor upgrades, the contracts have remained the same and in parallel, the system has been adopted by other communities.

    As part of our engagement with Aave, we identified that the Safety Module is a clear area of improvement in the ecosystem, from 2 different standpoints:

    • Technical. Improving the basic existing mechanisms of the contracts, but without disrupting radically the current design of the SM.
    • Conceptual. Making more efficient the SM dynamics (e.g. slashing, rewards distribution rules, etc), by modifying the whole design.

    New slashing mechanism

    On the running SM v1, in order to slash, an ad-hoc governance proposal is required, involving important development overhead, which is not ideal.

    The new SM v1.5 adds an enhanced mechanism to facilitate slashing of the underlying by tracking an exchange rate between the staked AAVE and the stkAAVE received by stakers. The mechanism is simple: when somebody stakes AAVE, they receive a certain amount of stkAAVE, which no longer is 1:1 equivalent, as it keeps track of slashing (meaning with the same stkAAVE, stakers are able to claim less AAVE).

    New cooldown mechanism

    The current cooldown on SM v1 consists of a time delay of 10 days to be respected whenever anybody wants to redeem the staked AAVE. At the moment, this cooldown is affected by in/outflows of stkAAVE, both via transfer() and stake()/redeem(), in order to protect the system from being gamed. Even with this protection mechanism the mechanism is currently gamable, by staking aave within the active cooldown window to extend the window.

    This mechanism is not really optimal and adds important complexity, so on v1.5 has been changed to the following: after activation of cooldown, a staker will be able to redeem the minimum balance he will hold between cooldown activation and redeem window. Apart from the user-level cooldown new mechanics, we also propose to increase the cooldown period from 10 days to 20 days.

    GHO Transfer hook

    The Aave community has already approved the deployment and activation of the GHO stablecoin and the first facilitator will be the Aave v3 Ethereum pool.

    In order to enable the discount mechanism by holding stkAAVE described on the GHO proposal, the design of Aave Companies requires to introduce of a piece of logic on the stkAAVE transfer(), in order to “notify” the GHO facilitator system of stakers’ balances.

    We have evaluated this and we think it is acceptable, so it will be included in this upgrade. From a technical perspective, stkAAVE includes logic protections to remain unaffected if anything would go wrong with the GHO facilitator, which at the same time should be considered a trustable entity, as it will be controlled by the Aave governance.

    Misc

    The upgrade also allowed us to add some smaller ux improvements:

    • a new stakeWithPermit() is introduced on stkAAVE

    • convenience methods to batch claiming and staking/redeeming into a single transaction have been added as claimRewardsAndRedeem and claimRewardsAndStake have been added to stkAAVE

    • preview*() methods have been added to follow the 4626 standard more closely, even if there's no objective to be compliant

    Specification PART 1

    The proposal is split in two parts, as currently the stkAAVE is controlled by the LONG_EXECUTOR where stkABPT is controlled by the SHORT_EXECUTOR. As there's a single executor per proposal Part 1 upgrades the stkAAVE implementation and targets the LONG_EXECUTOR. Part 2 upgrades the stkABPT implementation and targets the SHORT_EXECUTOR.

    The proposal will:

    • transfer ownership of stkAAVE to a ProxyAdmin controlled by the LONG_EXECUTOR. This is done for consistency reasons with stkABPT as the SHORT_EXECUTOR cannot be the SLASHING_ADMIN and PROXY_ADMIN at the same time.
    IInitializableAdminUpgradeabilityProxy(STK_AAVE).changeAdmin(
      address(AaveMisc.PROXY_ADMIN_ETHEREUM_LONG)
    );
    
    • deploy the new implementation while maintaining the current values:
    StakedAaveV3 newImpl = new StakedAaveV3(
      IERC20(AaveV2EthereumAssets.AAVE_UNDERLYING),
      IERC20(AaveV2EthereumAssets.AAVE_UNDERLYING),
      GenericProposal.UNSTAKE_WINDOW,
      GenericProposal.REWARDS_VAULT,
      GenericProposal.EMISSION_MANAGER,
      GenericProposal.DISTRIBUTION_DURATION
    );
    
    • upgrade stkAAVE implementation. The SLASHING_ADMIN, COOLDOWN_ADMIN and CLAIM_HELPER are all initialized as the SHORT_EXECUTOR. MAX_SLASHING is set to 30%, COOLDOWN_SECONDS is increased to 20 days:
    ProxyAdmin(AaveMisc.PROXY_ADMIN_ETHEREUM_LONG).upgradeAndCall(
      TransparentUpgradeableProxy(payable(STK_AAVE)),
      address(newImpl),
      abi.encodeWithSignature(
        'initialize(address,address,address,uint256,uint256)',
        GenericProposal.SLASHING_ADMIN,
        GenericProposal.COOLDOWN_ADMIN,
        GenericProposal.CLAIM_HELPER,
        GenericProposal.MAX_SLASHING,
        GenericProposal.COOLDOWN_SECONDS
      )
    );
    

    References

    A list of relevant links like for this proposal:

    Copyright

    Copyright and related rights waived via CC0.

    Your voting info

    Voting results

    YAE

    1,074,883

    AAVE

    100.00%

    NAY

    0

    AAVE

    0%

    Top 10 addresses

    Votes

    State
    Executed

    Executed on 

    May 19, 2023
    Quorum
    Reached
    Current votes

    Required

    1.07M

    1.04M

    Differential
    Reached
    Current differential

    Required

    1.07M

    1.04M

    Total voting power

    16,000,000

    Proposal details

    Created

    Block

    2 May 2023, 01:00 UTC +00:00

    17169695

    Started

    Block

    3 May 2023, 01:18 UTC +00:00

    17176895

    Ended

    Block

    11 May 2023, 22:38 UTC +00:00

    17240895

    Executed

    19 May 2023, 01:30 UTC +00:00

    Author

    BGD labs

    We may employ on-the-spot tracking techniques during your browsing session to collect data on your interactions, preferences, and behaviour. This data helps us personalise your experience and improve our services. See our Privacy Policy.