Skip to content

Commit

Permalink
fix: Replace address of SDAI token wrapper (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf authored Dec 20, 2023
1 parent d9836d6 commit f99d1dc
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/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ export const mainnetProtoV3Pool: PoolConfig = {
WALLET_BALANCE_PROVIDER: '0xC7be5307ba715ce89b152f3Df0658295b3dbA8E2',
WETH_GATEWAY: '0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C',
WITHDRAW_SWAP_ADAPTER: '0x78F8Bd884C3D738B74B420540659c82f392820e0',
SAVINGS_DAI_TOKEN_WRAPPER: '0x5d4D4007A4c6336550DdAa2a7c0d5e7972eebd16',
SAVINGS_DAI_TOKEN_WRAPPER: '0xE28E2c8d240dd5eBd0adcab86fbD79df7a052034',
},
};
4 changes: 2 additions & 2 deletions src/AaveV3Ethereum.sol
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ library AaveV3Ethereum {
// https://etherscan.io/address/0x78F8Bd884C3D738B74B420540659c82f392820e0
address internal constant WITHDRAW_SWAP_ADAPTER = 0x78F8Bd884C3D738B74B420540659c82f392820e0;

// https://etherscan.io/address/0x5d4D4007A4c6336550DdAa2a7c0d5e7972eebd16
address internal constant SAVINGS_DAI_TOKEN_WRAPPER = 0x5d4D4007A4c6336550DdAa2a7c0d5e7972eebd16;
// https://etherscan.io/address/0xE28E2c8d240dd5eBd0adcab86fbD79df7a052034
address internal constant SAVINGS_DAI_TOKEN_WRAPPER = 0xE28E2c8d240dd5eBd0adcab86fbD79df7a052034;
}

library AaveV3EthereumAssets {
Expand Down
4 changes: 2 additions & 2 deletions src/ts/AaveV3Ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export const WETH_GATEWAY = '0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C';
// https://etherscan.io/address/0x78F8Bd884C3D738B74B420540659c82f392820e0
export const WITHDRAW_SWAP_ADAPTER = '0x78F8Bd884C3D738B74B420540659c82f392820e0';

// https://etherscan.io/address/0x5d4D4007A4c6336550DdAa2a7c0d5e7972eebd16
export const SAVINGS_DAI_TOKEN_WRAPPER = '0x5d4D4007A4c6336550DdAa2a7c0d5e7972eebd16';
// https://etherscan.io/address/0xE28E2c8d240dd5eBd0adcab86fbD79df7a052034
export const SAVINGS_DAI_TOKEN_WRAPPER = '0xE28E2c8d240dd5eBd0adcab86fbD79df7a052034';

export const CHAIN_ID = 1;
export const ASSETS = {
Expand Down

0 comments on commit f99d1dc

Please sign in to comment.