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

Update aave v3 #336

Merged
merged 5 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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: 1 addition & 1 deletion contracts/arbitrum/connectors/aave/v3/helpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract contract Helpers is DSMath, Basic {
* @dev Aave Pool Data Provider
*/
AaveDataProviderInterface internal constant aaveData =
AaveDataProviderInterface(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654); //Arbitrum address - PoolDataProvider
AaveDataProviderInterface(0x7F23D86Ee20D869112572136221e173428DD740B); //Arbitrum address - PoolDataProvider

/**
* @dev Aave Referral Code
Expand Down
2 changes: 1 addition & 1 deletion contracts/arbitrum/connectors/aave/v3/main.sol
Original file line number Diff line number Diff line change
Expand Up @@ -516,5 +516,5 @@ abstract contract AaveResolver is Events, Helpers {
}

contract ConnectV2AaveV3Arbitrum is AaveResolver {
string public constant name = "AaveV3-v1.2";
string public constant name = "AaveV3-v1.3";
}
2 changes: 1 addition & 1 deletion contracts/avalanche/connectors/aave/v3/helpers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract contract Helpers is DSMath, Basic {
* @dev Aave Pool Data Provider
*/
AaveDataProviderInterface internal constant aaveData =
AaveDataProviderInterface(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654); // Avalanche address - PoolDataProvider
AaveDataProviderInterface(0x7F23D86Ee20D869112572136221e173428DD740B); // Avalanche address - PoolDataProvider

/**
* @dev Aave Referral Code
Expand Down
2 changes: 1 addition & 1 deletion contracts/avalanche/connectors/aave/v3/main.sol
Original file line number Diff line number Diff line change
Expand Up @@ -517,5 +517,5 @@ abstract contract AaveResolver is Events, Helpers {
}

contract ConnectV2AaveV3Avalanche is AaveResolver {
string public constant name = "AaveV3-v1.2";
string public constant name = "AaveV3-v1.3";
}
Loading