AAVE

    Proposal overview

    Upgrade the safety module to v1.5 PART 2

    Executed

    Executed on 

    May 14, 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

    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.

    Misc

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

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

    Specification PART 2

    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 stkABPT to a ProxyAdmin controlled by the SHORT_EXECUTOR.
    IInitializableAdminUpgradeabilityProxy(STK_ABPT).changeAdmin(
      address(AaveMisc.PROXY_ADMIN_ETHEREUM)
    );
    
    • deploy the new implementation while maintaining the current values:
    StakedAaveV3 newImpl =new StakedTokenV3(
      IERC20(ABPT),
      IERC20(AaveV2EthereumAssets.AAVE_UNDERLYING),
      GenericProposal.UNSTAKE_WINDOW,
      GenericProposal.REWARDS_VAULT,
      GenericProposal.EMISSION_MANAGER,
      GenericProposal.DISTRIBUTION_DURATION
    );
    
    • upgrade stkABPT 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).upgradeAndCall(
      TransparentUpgradeableProxy(payable(STK_ABPT)),
      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

    478,206

    AAVE

    100.00%

    NAY

    0

    AAVE

    0%

    Addresses

    Votes

    State
    Executed

    Executed on 

    May 14, 2023
    Quorum
    Reached
    Current votes

    Required

    478.20K

    320.00K

    Differential
    Reached
    Current differential

    Required

    478.20K

    80,000.00

    Total voting power

    16,000,000

    Proposal details

    Created

    Block

    9 May 2023, 19:59 UTC +00:00

    17225113

    Started

    Block

    10 May 2023, 20:17 UTC +00:00

    17232313

    Ended

    Block

    13 May 2023, 12:17 UTC +00:00

    17251513

    Executed

    14 May 2023, 14:02 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.