Skip to content

Commit

Permalink
fix: add poly v3 as i forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Dec 11, 2023
1 parent f08ed77 commit 8c6846a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/configs/pools/polygon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const polygonProtoV3: PoolConfig = {
UI_INCENTIVE_DATA_PROVIDER: '0x874313A46e4957D29FAAC43BF5Eb2B144894f557',
UI_POOL_DATA_PROVIDER: '0xC69728f11E9E6127733751c8410432913123acf1',
WALLET_BALANCE_PROVIDER: '0xBc790382B3686abffE4be14A030A96aC6154023a',
WETH_GATEWAY: '0x1e4b7A6b903680eab0c5dAbcb8fD429cD2a9598c',
WETH_GATEWAY: '0x467527837e1C30c9884184B0BB600cBAC6ba8a94',
WITHDRAW_SWAP_ADAPTER: '0x78F8Bd884C3D738B74B420540659c82f392820e0',
},
};
4 changes: 2 additions & 2 deletions src/AaveV3Polygon.sol
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ library AaveV3Polygon {
// https://polygonscan.com/address/0xBc790382B3686abffE4be14A030A96aC6154023a
address internal constant WALLET_BALANCE_PROVIDER = 0xBc790382B3686abffE4be14A030A96aC6154023a;

// https://polygonscan.com/address/0x1e4b7A6b903680eab0c5dAbcb8fD429cD2a9598c
address internal constant WETH_GATEWAY = 0x1e4b7A6b903680eab0c5dAbcb8fD429cD2a9598c;
// https://polygonscan.com/address/0x467527837e1C30c9884184B0BB600cBAC6ba8a94
address internal constant WETH_GATEWAY = 0x467527837e1C30c9884184B0BB600cBAC6ba8a94;

// https://polygonscan.com/address/0x78F8Bd884C3D738B74B420540659c82f392820e0
address internal constant WITHDRAW_SWAP_ADAPTER = 0x78F8Bd884C3D738B74B420540659c82f392820e0;
Expand Down
4 changes: 2 additions & 2 deletions src/ts/AaveV3Polygon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ export const UI_POOL_DATA_PROVIDER = '0xC69728f11E9E6127733751c8410432913123acf1
// https://polygonscan.com/address/0xBc790382B3686abffE4be14A030A96aC6154023a
export const WALLET_BALANCE_PROVIDER = '0xBc790382B3686abffE4be14A030A96aC6154023a';

// https://polygonscan.com/address/0x1e4b7A6b903680eab0c5dAbcb8fD429cD2a9598c
export const WETH_GATEWAY = '0x1e4b7A6b903680eab0c5dAbcb8fD429cD2a9598c';
// https://polygonscan.com/address/0x467527837e1C30c9884184B0BB600cBAC6ba8a94
export const WETH_GATEWAY = '0x467527837e1C30c9884184B0BB600cBAC6ba8a94';

// https://polygonscan.com/address/0x78F8Bd884C3D738B74B420540659c82f392820e0
export const WITHDRAW_SWAP_ADAPTER = '0x78F8Bd884C3D738B74B420540659c82f392820e0';
Expand Down

0 comments on commit 8c6846a

Please sign in to comment.