Skip to content

Commit

Permalink
chore: pr updates
Browse files Browse the repository at this point in the history
  • Loading branch information
efecarranza committed Jul 19, 2024
1 parent 51abc3b commit 6e6fb30
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
pragma solidity ^0.8.0;

import {AaveV3ArbitrumAssets} from 'aave-address-book/AaveV3Arbitrum.sol';
import {MiscArbitrum} from 'aave-address-book/MiscArbitrum.sol';
import {IGhoToken} from 'gho-core/gho/interfaces/IGhoToken.sol';
import {IProposalGenericExecutor} from 'aave-helpers/interfaces/IProposalGenericExecutor.sol';

Expand All @@ -12,12 +13,11 @@ import {IProposalGenericExecutor} from 'aave-helpers/interfaces/IProposalGeneric
* - Discussion: https://governance.aave.com/t/arfc-gho-arb-increase-ccip-facilitator-capacity/18169
*/
contract AaveV3Arbitrum_IncreaseCCIPFacilitatorCapacity_20240707 is IProposalGenericExecutor {
address public constant FACILITATOR = 0xF168B83598516A532a85995b52504a2Fa058C068;
uint128 public constant NEW_LIMIT = 2_500_000 ether;

function execute() external {
IGhoToken(AaveV3ArbitrumAssets.GHO_UNDERLYING).setFacilitatorBucketCapacity(
FACILITATOR,
MiscArbitrum.GHO_CCIP_TOKEN_POOL,
NEW_LIMIT
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
pragma solidity ^0.8.0;

import {AaveV3ArbitrumAssets} from 'aave-address-book/AaveV3Arbitrum.sol';
import {MiscArbitrum} from 'aave-address-book/MiscArbitrum.sol';
import {IGhoToken} from 'gho-core/gho/interfaces/IGhoToken.sol';
import {ProtocolV3TestBase} from 'aave-helpers/ProtocolV3TestBase.sol';

Expand All @@ -24,13 +25,13 @@ contract AaveV3Arbitrum_IncreaseCCIPFacilitatorCapacity_20240707_Test is Protoco
*/
function test_newLimitIsSet() public {
IGhoToken.Facilitator memory prevFacilitator = IGhoToken(AaveV3ArbitrumAssets.GHO_UNDERLYING)
.getFacilitator(proposal.FACILITATOR());
.getFacilitator(MiscArbitrum.GHO_CCIP_TOKEN_POOL);
assertEq(prevFacilitator.bucketCapacity, 1_000_000 ether);

executePayload(vm, address(proposal));

IGhoToken.Facilitator memory facilitator = IGhoToken(AaveV3ArbitrumAssets.GHO_UNDERLYING)
.getFacilitator(proposal.FACILITATOR());
.getFacilitator(MiscArbitrum.GHO_CCIP_TOKEN_POOL);

assertEq(facilitator.bucketCapacity, proposal.NEW_LIMIT());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This publication proposes increasing the CCIP Facilitator Capacity on Arbitrum f

## Motivation

GHO was successfully launched on Arbitrum and the CCIP GHO Facilitator Bucket Capacity is 65% utilized. With $3.41M of liquidity and a solid peg during launch, there is sufficient depth to facilitate increasing the CCIP GHO Facilitator Bucket Capacity from 1M to 2.5M in line with the initial risk parameters proposed prior to launch.
GHO was successfully launched on Arbitrum and the CCIP GHO Facilitator Bucket Capacity is 100% utilized. With $3.41M of liquidity and a solid peg during launch, there is sufficient depth to facilitate increasing the CCIP GHO Facilitator Bucket Capacity from 1M to 2.5M in line with the initial risk parameters proposed prior to launch.

## Specification

Expand All @@ -22,7 +22,7 @@ The equivalent bridgeLimit is also being increased on Ethereum Mainnet to 2.5M u

- Implementation: [AaveV3Ethereum](https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20240707_AaveV3Ethereum_IncreaseCCIPFacilitatorCapacity/AaveV3Ethereum_IncreaseCCIPFacilitatorCapacity_20240707.sol)
- Tests: [AaveV3Ethereum](https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20240707_AaveV3Ethereum_IncreaseCCIPFacilitatorCapacity/AaveV3Ethereum_IncreaseCCIPFacilitatorCapacity_20240707.t.sol)
- [Snapshot](Direct-to-AIP)
- Snapshot: Direct-to-AIP
- [Discussion](https://governance.aave.com/t/arfc-gho-arb-increase-ccip-facilitator-capacity/18169)

## Copyright
Expand Down

0 comments on commit 6e6fb30

Please sign in to comment.