Skip to content

Commit

Permalink
basic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
luigy committed Mar 14, 2024
1 parent b579c26 commit fb272d7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,17 @@ Create an allowance of 500k GHO to ALC SAFE.

ALC SAFE: `0x205e795336610f5131Be52F09218AF19f0f3eC60`

# Disclosure
## References

TokenLogic and karpatkey receive no payment for this proposal. TokenLogic and karpatkey are both delegates within the Aave community.
- Implementation: [AaveV3Ethereum](https://github.com/bgd-labs/aave-proposals-v3/blob/1c642cb090ba92717b6e99442b6904b6945b6993/src/20240304_AaveV2Ethereum_EthereumV2ReserveFactorAdjustment/AaveV2Ethereum_EthereumV2ReserveFactorAdjustment_20240304.sol)
- Tests: [AaveV3Ethereum]()
- [Snapshot](https://snapshot.org/#/aave.eth/proposal/0xd6229e068e755336339bd8a314136e18ef00b22a95430476b6fa3665e9300548)
- [Discussion](https://governance.aave.com/t/arfc-aave-liquidity-committee-funding/16793)

# Next Steps
# Disclosure

1. Gather feedback from the community.
1. If consensus is reached on this ARFC, escalate this proposal to the Snapshot stage.
1. If Snapshot outcome is YAE, escalate this proposal to AIP stage
TokenLogic and karpatkey receive no payment for this proposal. TokenLogic and karpatkey are both delegates within the Aave community.

# Copyright

Copyright and related rights waived via [CC0](https://creativecommons.org/publicdomain/zero/1.0/).
Copyright and related rights waived via [CC0](https://creativecommons.org/publicdomain/zero/1.0/).
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ contract CreateProposal is EthereumScript {
payloads,
GovV3Helpers.ipfsHashFile(
vm,
'src/20240306_AaveV3Ethereum_AaveLiquidityCommiteeFunding/FundingUpdate.md'
'src/20240306_AaveV3Ethereum_AaveLiquidityCommiteeFunding/AaaveLiquidityCommunityFunding.md'
)
);
}
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {console2} from 'forge-std/Test.sol';

import {IERC20} from 'solidity-utils/contracts/oz-common/interfaces/IERC20.sol';
import {SafeERC20} from 'solidity-utils/contracts/oz-common/SafeERC20.sol';
import {MiscEthereum} from 'aave-address-book/MiscEthereum.sol';
Expand Down Expand Up @@ -64,7 +62,7 @@ contract AaveV3Ethereum_AaveLiquidityCommiteeFunding_20240306 is IProposalGeneri
AaveV3EthereumAssets.USDC_ORACLE,
GHO_USD_FEED,
address(AaveV3Ethereum.COLLECTOR),
USDC_V2_TO_SWAP,
IERC20(AaveV2EthereumAssets.USDC_UNDERLYING).balanceOf(address(SWAPPER)),
100
);

Expand All @@ -90,8 +88,8 @@ contract AaveV3Ethereum_AaveLiquidityCommiteeFunding_20240306 is IProposalGeneri
AaveV3EthereumAssets.USDT_ORACLE,
GHO_USD_FEED,
address(AaveV3Ethereum.COLLECTOR),
USDT_V2_TO_SWAP,
IERC20(AaveV2EthereumAssets.USDT_UNDERLYING).balanceOf(address(SWAPPER)),
100
);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ contract AaveV3Ethereum_AaveLiquidityCommiteeFunding_20240306_Test is ProtocolV3
address swapper;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('mainnet'), 19392386);
vm.createSelectFork(vm.rpcUrl('mainnet'), 19432086);
proposal = new AaveV3Ethereum_AaveLiquidityCommiteeFunding_20240306();
swapper = address(proposal.SWAPPER());
}
Expand Down Expand Up @@ -130,4 +130,4 @@ contract AaveV3Ethereum_AaveLiquidityCommiteeFunding_20240306_Test is ProtocolV3
100
);
}
}
}

0 comments on commit fb272d7

Please sign in to comment.