Skip to content

Commit

Permalink
Merge pull request #41 from bgd-labs/chaoslabs/ethereum_caps_increase…
Browse files Browse the repository at this point in the history
…_20231120

Ethereum Caps Increase 20231120
  • Loading branch information
yonikesel authored Nov 20, 2023
2 parents aecd23f + 09196c5 commit a1cf7e3
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## Reserve changes

### Reserves altered

#### wstETH ([0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0](https://etherscan.io/address/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0))

| description | value before | value after |
| --- | --- | --- |
| supplyCap | 850,000 wstETH | 1,100,000 wstETH |


## Raw diff

```json
{
"reserves": {
"0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0": {
"supplyCap": {
"from": 850000,
"to": 1100000
}
}
}
}
```
36 changes: 36 additions & 0 deletions src/MainnetCapsIncrease_20231120.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IAaveV3ConfigEngine} from 'aave-helpers/v3-config-engine/IAaveV3ConfigEngine.sol';
import {EngineFlags} from 'aave-helpers/v3-config-engine/EngineFlags.sol';
import {CapsPlusRiskStewardMainnet} from '../scripts/CapsPlusRiskStewardMainnet.s.sol';
import {AaveV3EthereumAssets} from 'aave-address-book/AaveV3Ethereum.sol';

/**
* @title Increase Caps on Ethereum V3
* @author @ChaosLabsInc
* - Discussion: https://governance.aave.com/t/arfc-chaos-labs-risk-stewards-increase-supply-cap-wsteth-on-v3-ethereum-11-19-2023/15604
*/
contract MainnetCapsIncrease_20231120 is CapsPlusRiskStewardMainnet {
/**
* @return string name identifier used for the diff
*/
function name() internal pure override returns (string memory) {
return 'mainnetCapsIncrease_20231120';
}

/**
* @return IAaveV3ConfigEngine.CapsUpdate[] capUpdates to be performed
*/
function capsUpdates() internal pure override returns (IAaveV3ConfigEngine.CapsUpdate[] memory) {
IAaveV3ConfigEngine.CapsUpdate[] memory capUpdates = new IAaveV3ConfigEngine.CapsUpdate[](1);

capUpdates[0] = IAaveV3ConfigEngine.CapsUpdate(
AaveV3EthereumAssets.wstETH_UNDERLYING,
1_100_000,
EngineFlags.KEEP_CURRENT
);

return capUpdates;
}
}

0 comments on commit a1cf7e3

Please sign in to comment.