Skip to content

Commit

Permalink
Merge pull request #72 from bgd-labs/chaoslabs/mainnet_gho_borrow_cap…
Browse files Browse the repository at this point in the history
…_increase_20240328

Mainnet GHO borrow cap increase
  • Loading branch information
eyalovadya authored Apr 2, 2024
2 parents bc5318f + 46c76ab commit 14af9d9
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

#### GHO ([0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f](https://etherscan.io/address/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f))

| description | value before | value after |
| --- | --- | --- |
| borrowCap | 40,000,000 GHO | 42,000,000 GHO |


## Raw diff

```json
{
"reserves": {
"0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f": {
"borrowCap": {
"from": 40000000,
"to": 42000000
}
}
}
}
```
36 changes: 36 additions & 0 deletions src/MainnetGHOBorrowCapIncrease_20240328.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 Update GHO Borrow Cap on Mainnet V3
* @author Chaos Labs - eyalovadya
* Discussion: https://governance.aave.com/t/arfc-chaos-labs-risk-steward-increase-gho-minting-cap-03-28-24/17150
*/
contract MainnetGHOBorrowCapIncrease_20240328 is CapsPlusRiskStewardMainnet {
/**
* @return string name identifier used for the diff
*/
function name() internal pure override returns (string memory) {
return 'mainnet_gho_borrow_cap_increase_20240328';
}

/**
* @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.GHO_UNDERLYING,
EngineFlags.KEEP_CURRENT,
42_000_000
);

return capUpdates;
}
}

0 comments on commit 14af9d9

Please sign in to comment.