Skip to content

Commit 6e9e12a

Browse files
fix(cache): automated cache update - updated addresses (#623)
Co-authored-by: Cache-bot <[email protected]>
1 parent 6d627b0 commit 6e9e12a

File tree

5 files changed

+66
-4
lines changed

5 files changed

+66
-4
lines changed

safe.csv

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,12 @@ address,name,chainId
796796
0x2D9fe18b6c35FE439cC15D932cc5C943bf2d901E,AaveV3EthereumLido ASSETS USDS V_TOKEN,1
797797
0x6642dcAaBc80807DD083c66a301d308568CBcA3D,AaveV3EthereumLido ASSETS USDS INTEREST_RATE_STRATEGY,1
798798
0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6,AaveV3EthereumLido ASSETS USDS ORACLE,1
799+
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,AaveV3EthereumLido ASSETS USDC UNDERLYING,1
800+
0x2A1FBcb52Ed4d9b23daD17E1E8Aed4BB0E6079b8,AaveV3EthereumLido ASSETS USDC A_TOKEN,1
801+
0x1bd1FaAA75030f63d523450e68F233fd0a25eC2e,AaveV3EthereumLido ASSETS USDC S_TOKEN,1
802+
0xeD90dE2D824Ee766c6Fd22E90b12e598f681dc9F,AaveV3EthereumLido ASSETS USDC V_TOKEN,1
803+
0x6642dcAaBc80807DD083c66a301d308568CBcA3D,AaveV3EthereumLido ASSETS USDC INTEREST_RATE_STRATEGY,1
804+
0x736bF902680e68989886e9807CD7Db4B3E015d3C,AaveV3EthereumLido ASSETS USDC ORACLE,1
799805
0x3843b29118fFC18d5d12EE079d0324E1bF115e69,AaveV3EthereumLido CAPS_PLUS_RISK_STEWARD,1
800806
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c,AaveV3EthereumLido COLLECTOR,1
801807
0xC80f057d40Fc7f0A01ad4a634f35520Df8079707,AaveV3EthereumLido CONFIG_ENGINE,1

src/AaveV3EthereumLido.sol

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,27 @@ library AaveV3EthereumLidoAssets {
157157
// https://etherscan.io/address/0x6642dcAaBc80807DD083c66a301d308568CBcA3D
158158
address internal constant USDS_INTEREST_RATE_STRATEGY =
159159
0x6642dcAaBc80807DD083c66a301d308568CBcA3D;
160+
161+
// https://etherscan.io/address/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
162+
address internal constant USDC_UNDERLYING = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
163+
164+
uint8 internal constant USDC_DECIMALS = 6;
165+
166+
// https://etherscan.io/address/0x2A1FBcb52Ed4d9b23daD17E1E8Aed4BB0E6079b8
167+
address internal constant USDC_A_TOKEN = 0x2A1FBcb52Ed4d9b23daD17E1E8Aed4BB0E6079b8;
168+
169+
// https://etherscan.io/address/0xeD90dE2D824Ee766c6Fd22E90b12e598f681dc9F
170+
address internal constant USDC_V_TOKEN = 0xeD90dE2D824Ee766c6Fd22E90b12e598f681dc9F;
171+
172+
// https://etherscan.io/address/0x1bd1FaAA75030f63d523450e68F233fd0a25eC2e
173+
address internal constant USDC_S_TOKEN = 0x1bd1FaAA75030f63d523450e68F233fd0a25eC2e;
174+
175+
// https://etherscan.io/address/0x736bF902680e68989886e9807CD7Db4B3E015d3C
176+
address internal constant USDC_ORACLE = 0x736bF902680e68989886e9807CD7Db4B3E015d3C;
177+
178+
// https://etherscan.io/address/0x6642dcAaBc80807DD083c66a301d308568CBcA3D
179+
address internal constant USDC_INTEREST_RATE_STRATEGY =
180+
0x6642dcAaBc80807DD083c66a301d308568CBcA3D;
160181
}
161182

162183
library AaveV3EthereumLidoEModes {

src/ts/AaveV3EthereumLido.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,15 @@ export const ASSETS = {
106106
INTEREST_RATE_STRATEGY: '0x6642dcAaBc80807DD083c66a301d308568CBcA3D',
107107
ORACLE: '0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6',
108108
},
109+
USDC: {
110+
decimals: 6,
111+
UNDERLYING: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
112+
A_TOKEN: '0x2A1FBcb52Ed4d9b23daD17E1E8Aed4BB0E6079b8',
113+
S_TOKEN: '0x1bd1FaAA75030f63d523450e68F233fd0a25eC2e',
114+
V_TOKEN: '0xeD90dE2D824Ee766c6Fd22E90b12e598f681dc9F',
115+
INTEREST_RATE_STRATEGY: '0x6642dcAaBc80807DD083c66a301d308568CBcA3D',
116+
ORACLE: '0x736bF902680e68989886e9807CD7Db4B3E015d3C',
117+
},
109118
} as const;
110119
export const E_MODES = {
111120
NONE: 0,

src/ts/tokenlist.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6603,6 +6603,19 @@ export const tokenlist = {
66036603
underlying: '0xdC035D45d973E3EC169d2276DDab16f1e407384F',
66046604
},
66056605
},
6606+
{
6607+
chainId: 1,
6608+
address: '0x2A1FBcb52Ed4d9b23daD17E1E8Aed4BB0E6079b8',
6609+
name: 'Aave Ethereum Lido USDC',
6610+
decimals: 6,
6611+
symbol: 'aEthLidoUSDC',
6612+
tags: ['aTokenV3', 'aaveV3'],
6613+
logoURI: 'https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/ausdc.svg',
6614+
extensions: {
6615+
pool: '0x4e033931ad43597d96D6bcc25c280717730B58B1',
6616+
underlying: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
6617+
},
6618+
},
66066619
{
66076620
chainId: 1,
66086621
address: '0xbe1F842e7e0afd2c2322aae5d34bA899544b29db',
@@ -6656,6 +6669,6 @@ export const tokenlist = {
66566669
},
66576670
},
66586671
],
6659-
version: {major: 3, minor: 0, patch: 44},
6660-
timestamp: '2024-10-03T00:13:07.347Z',
6672+
version: {major: 3, minor: 0, patch: 45},
6673+
timestamp: '2024-10-08T00:12:40.399Z',
66616674
};

tokenlist.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6512,6 +6512,19 @@
65126512
"underlying": "0xdC035D45d973E3EC169d2276DDab16f1e407384F"
65136513
}
65146514
},
6515+
{
6516+
"chainId": 1,
6517+
"address": "0x2A1FBcb52Ed4d9b23daD17E1E8Aed4BB0E6079b8",
6518+
"name": "Aave Ethereum Lido USDC",
6519+
"decimals": 6,
6520+
"symbol": "aEthLidoUSDC",
6521+
"tags": ["aTokenV3", "aaveV3"],
6522+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/ausdc.svg",
6523+
"extensions": {
6524+
"pool": "0x4e033931ad43597d96D6bcc25c280717730B58B1",
6525+
"underlying": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
6526+
}
6527+
},
65156528
{
65166529
"chainId": 1,
65176530
"address": "0xbe1F842e7e0afd2c2322aae5d34bA899544b29db",
@@ -6565,6 +6578,6 @@
65656578
}
65666579
}
65676580
],
6568-
"version": { "major": 3, "minor": 0, "patch": 44 },
6569-
"timestamp": "2024-10-03T00:13:07.347Z"
6581+
"version": { "major": 3, "minor": 0, "patch": 45 },
6582+
"timestamp": "2024-10-08T00:12:40.399Z"
65706583
}

0 commit comments

Comments
 (0)