Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GHO token address to Aave V3 Sepolia and Arbitrum Pool #326

Merged
merged 16 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/configs/pools/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ export const sepoliaProtoV3: PoolConfig = {
WALLET_BALANCE_PROVIDER: '0xCD4e0d6D2b1252E2A709B8aE97DBA31164C5a709',
WETH_GATEWAY: '0x387d311e47e80b498169e6fb51d3193167d89F7D',
STATIC_A_TOKEN_FACTORY: '0xd210dFB43B694430B8d31762B5199e30c31266C8',
UI_GHO_DATA_PROVIDER: '0x69B9843A16a6E9933125EBD97659BA3CCbE2Ef8A',
GHO_TOKEN: '0xc4bF5CbDaBE595361438F8c6a187bDc330539c60',
},
};

Expand Down
7 changes: 7 additions & 0 deletions src/AaveV3ArbitrumSepolia.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0;

library AaveV3ArbitrumSepolia {
// https://sepolia.arbiscan.io/address/0xb13cfa6f8b2eed2c37fb00ff0c1a59807c585810
address internal constant GHO_TOKEN = 0xb13Cfa6f8B2Eed2C37fB00fF0c1A59807C585810;
}
3 changes: 3 additions & 0 deletions src/AaveV3Sepolia.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ library AaveV3Sepolia {

// https://sepolia.etherscan.io/address/0xd210dFB43B694430B8d31762B5199e30c31266C8
address internal constant STATIC_A_TOKEN_FACTORY = 0xd210dFB43B694430B8d31762B5199e30c31266C8;

// https://sepolia.etherscan.io/address/0xc4bF5CbDaBE595361438F8c6a187bDc330539c60
address internal constant GHO_TOKEN = 0xc4bF5CbDaBE595361438F8c6a187bDc330539c60;
}

library AaveV3SepoliaAssets {
Expand Down