Skip to content

Commit

Permalink
fix: add weth gateway address to base (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
rustboyar authored Aug 18, 2023
1 parent 3522e00 commit b37eb99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,7 @@ export const pools = [
UI_INCENTIVE_DATA_PROVIDER: '0xEdD3b4737C1a0011626631a977b91Cf3E944982d',
UI_POOL_DATA_PROVIDER: '0x174446a6741300cD2E7C1b1A636Fee99c8F83502',
WALLET_BALANCE_PROVIDER: '0x5779b29B0a34577d927E8D511B595ef9abbFAE82',
WETH_GATEWAY: '0x18CD499E3d7ed42FEbA981ac9236A278E4Cdc2ee',
},
initial: {
COLLECTOR: '0xBA9424d650A4F5c80a0dA641254d1AcCE2A37057',
Expand Down
2 changes: 2 additions & 0 deletions src/AaveV3Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,6 @@ library AaveV3Base {
address internal constant UI_POOL_DATA_PROVIDER = 0x174446a6741300cD2E7C1b1A636Fee99c8F83502;

address internal constant WALLET_BALANCE_PROVIDER = 0x5779b29B0a34577d927E8D511B595ef9abbFAE82;

address internal constant WETH_GATEWAY = 0x18CD499E3d7ed42FEbA981ac9236A278E4Cdc2ee;
}
1 change: 1 addition & 0 deletions src/ts/AaveV3Base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ export const POOL_ADDRESSES_PROVIDER_REGISTRY = '0x2f6571d3Eb9a4e350C68C36bCD2af
export const UI_INCENTIVE_DATA_PROVIDER = '0xEdD3b4737C1a0011626631a977b91Cf3E944982d';
export const UI_POOL_DATA_PROVIDER = '0x174446a6741300cD2E7C1b1A636Fee99c8F83502';
export const WALLET_BALANCE_PROVIDER = '0x5779b29B0a34577d927E8D511B595ef9abbFAE82';
export const WETH_GATEWAY = '0x18CD499E3d7ed42FEbA981ac9236A278E4Cdc2ee';

0 comments on commit b37eb99

Please sign in to comment.