Skip to content

Commit 4da9121

Browse files
fix(cache): automated cache update - updated addresses (#613)
Co-authored-by: Cache-bot <[email protected]>
1 parent a98db81 commit 4da9121

File tree

7 files changed

+140
-4
lines changed

7 files changed

+140
-4
lines changed

safe.csv

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,12 @@ address,name,chainId
675675
0xeB284A70557EFe3591b9e6D9D720040E02c54a4d,AaveV3Ethereum ASSETS cbBTC V_TOKEN,1
676676
0x847A3364Cc5fE389283bD821cfC8A477288D9e82,AaveV3Ethereum ASSETS cbBTC INTEREST_RATE_STRATEGY,1
677677
0xF4030086522a5bEEa4988F8cA5B36dbC97BeE88c,AaveV3Ethereum ASSETS cbBTC ORACLE,1
678+
0xdC035D45d973E3EC169d2276DDab16f1e407384F,AaveV3Ethereum ASSETS USDS UNDERLYING,1
679+
0x32a6268f9Ba3642Dda7892aDd74f1D34469A4259,AaveV3Ethereum ASSETS USDS A_TOKEN,1
680+
0x21A7BD33410cb836d99efEA1f1bFE72E3094024b,AaveV3Ethereum ASSETS USDS S_TOKEN,1
681+
0x490E0E6255bF65b43E2e02F7acB783c5e04572Ff,AaveV3Ethereum ASSETS USDS V_TOKEN,1
682+
0x847A3364Cc5fE389283bD821cfC8A477288D9e82,AaveV3Ethereum ASSETS USDS INTEREST_RATE_STRATEGY,1
683+
0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6,AaveV3Ethereum ASSETS USDS ORACLE,1
678684
0x82dcCF206Ae2Ab46E2099e663F70DeE77caE7778,AaveV3Ethereum CAPS_PLUS_RISK_STEWARD,1
679685
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c,AaveV3Ethereum COLLECTOR,1
680686
0x8689b8aDD004A9fD2320031b7d3f5aF1f7F41e17,AaveV3Ethereum CONFIG_ENGINE,1
@@ -784,6 +790,12 @@ address,name,chainId
784790
0x91b7d78BF92db564221f6B5AeE744D1727d1Dd1e,AaveV3EthereumLido ASSETS WETH V_TOKEN,1
785791
0x6642dcAaBc80807DD083c66a301d308568CBcA3D,AaveV3EthereumLido ASSETS WETH INTEREST_RATE_STRATEGY,1
786792
0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419,AaveV3EthereumLido ASSETS WETH ORACLE,1
793+
0xdC035D45d973E3EC169d2276DDab16f1e407384F,AaveV3EthereumLido ASSETS USDS UNDERLYING,1
794+
0x09AA30b182488f769a9824F15E6Ce58591Da4781,AaveV3EthereumLido ASSETS USDS A_TOKEN,1
795+
0x779dB175167C60c2B2193Be6B8d8B3602435e89E,AaveV3EthereumLido ASSETS USDS S_TOKEN,1
796+
0x2D9fe18b6c35FE439cC15D932cc5C943bf2d901E,AaveV3EthereumLido ASSETS USDS V_TOKEN,1
797+
0x6642dcAaBc80807DD083c66a301d308568CBcA3D,AaveV3EthereumLido ASSETS USDS INTEREST_RATE_STRATEGY,1
798+
0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6,AaveV3EthereumLido ASSETS USDS ORACLE,1
787799
0x3843b29118fFC18d5d12EE079d0324E1bF115e69,AaveV3EthereumLido CAPS_PLUS_RISK_STEWARD,1
788800
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c,AaveV3EthereumLido COLLECTOR,1
789801
0xC80f057d40Fc7f0A01ad4a634f35520Df8079707,AaveV3EthereumLido CONFIG_ENGINE,1

src/AaveV3Ethereum.sol

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,27 @@ library AaveV3EthereumAssets {
916916
// https://etherscan.io/address/0x847A3364Cc5fE389283bD821cfC8A477288D9e82
917917
address internal constant cbBTC_INTEREST_RATE_STRATEGY =
918918
0x847A3364Cc5fE389283bD821cfC8A477288D9e82;
919+
920+
// https://etherscan.io/address/0xdC035D45d973E3EC169d2276DDab16f1e407384F
921+
address internal constant USDS_UNDERLYING = 0xdC035D45d973E3EC169d2276DDab16f1e407384F;
922+
923+
uint8 internal constant USDS_DECIMALS = 18;
924+
925+
// https://etherscan.io/address/0x32a6268f9Ba3642Dda7892aDd74f1D34469A4259
926+
address internal constant USDS_A_TOKEN = 0x32a6268f9Ba3642Dda7892aDd74f1D34469A4259;
927+
928+
// https://etherscan.io/address/0x490E0E6255bF65b43E2e02F7acB783c5e04572Ff
929+
address internal constant USDS_V_TOKEN = 0x490E0E6255bF65b43E2e02F7acB783c5e04572Ff;
930+
931+
// https://etherscan.io/address/0x21A7BD33410cb836d99efEA1f1bFE72E3094024b
932+
address internal constant USDS_S_TOKEN = 0x21A7BD33410cb836d99efEA1f1bFE72E3094024b;
933+
934+
// https://etherscan.io/address/0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6
935+
address internal constant USDS_ORACLE = 0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6;
936+
937+
// https://etherscan.io/address/0x847A3364Cc5fE389283bD821cfC8A477288D9e82
938+
address internal constant USDS_INTEREST_RATE_STRATEGY =
939+
0x847A3364Cc5fE389283bD821cfC8A477288D9e82;
919940
}
920941

921942
library AaveV3EthereumEModes {

src/AaveV3EthereumLido.sol

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,27 @@ library AaveV3EthereumLidoAssets {
136136
// https://etherscan.io/address/0x6642dcAaBc80807DD083c66a301d308568CBcA3D
137137
address internal constant WETH_INTEREST_RATE_STRATEGY =
138138
0x6642dcAaBc80807DD083c66a301d308568CBcA3D;
139+
140+
// https://etherscan.io/address/0xdC035D45d973E3EC169d2276DDab16f1e407384F
141+
address internal constant USDS_UNDERLYING = 0xdC035D45d973E3EC169d2276DDab16f1e407384F;
142+
143+
uint8 internal constant USDS_DECIMALS = 18;
144+
145+
// https://etherscan.io/address/0x09AA30b182488f769a9824F15E6Ce58591Da4781
146+
address internal constant USDS_A_TOKEN = 0x09AA30b182488f769a9824F15E6Ce58591Da4781;
147+
148+
// https://etherscan.io/address/0x2D9fe18b6c35FE439cC15D932cc5C943bf2d901E
149+
address internal constant USDS_V_TOKEN = 0x2D9fe18b6c35FE439cC15D932cc5C943bf2d901E;
150+
151+
// https://etherscan.io/address/0x779dB175167C60c2B2193Be6B8d8B3602435e89E
152+
address internal constant USDS_S_TOKEN = 0x779dB175167C60c2B2193Be6B8d8B3602435e89E;
153+
154+
// https://etherscan.io/address/0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6
155+
address internal constant USDS_ORACLE = 0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6;
156+
157+
// https://etherscan.io/address/0x6642dcAaBc80807DD083c66a301d308568CBcA3D
158+
address internal constant USDS_INTEREST_RATE_STRATEGY =
159+
0x6642dcAaBc80807DD083c66a301d308568CBcA3D;
139160
}
140161

141162
library AaveV3EthereumLidoEModes {

src/ts/AaveV3Ethereum.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,15 @@ export const ASSETS = {
439439
INTEREST_RATE_STRATEGY: '0x847A3364Cc5fE389283bD821cfC8A477288D9e82',
440440
ORACLE: '0xF4030086522a5bEEa4988F8cA5B36dbC97BeE88c',
441441
},
442+
USDS: {
443+
decimals: 18,
444+
UNDERLYING: '0xdC035D45d973E3EC169d2276DDab16f1e407384F',
445+
A_TOKEN: '0x32a6268f9Ba3642Dda7892aDd74f1D34469A4259',
446+
S_TOKEN: '0x21A7BD33410cb836d99efEA1f1bFE72E3094024b',
447+
V_TOKEN: '0x490E0E6255bF65b43E2e02F7acB783c5e04572Ff',
448+
INTEREST_RATE_STRATEGY: '0x847A3364Cc5fE389283bD821cfC8A477288D9e82',
449+
ORACLE: '0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6',
450+
},
442451
} as const;
443452
export const E_MODES = {
444453
NONE: 0,

src/ts/AaveV3EthereumLido.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,15 @@ export const ASSETS = {
9797
INTEREST_RATE_STRATEGY: '0x6642dcAaBc80807DD083c66a301d308568CBcA3D',
9898
ORACLE: '0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419',
9999
},
100+
USDS: {
101+
decimals: 18,
102+
UNDERLYING: '0xdC035D45d973E3EC169d2276DDab16f1e407384F',
103+
A_TOKEN: '0x09AA30b182488f769a9824F15E6Ce58591Da4781',
104+
S_TOKEN: '0x779dB175167C60c2B2193Be6B8d8B3602435e89E',
105+
V_TOKEN: '0x2D9fe18b6c35FE439cC15D932cc5C943bf2d901E',
106+
INTEREST_RATE_STRATEGY: '0x6642dcAaBc80807DD083c66a301d308568CBcA3D',
107+
ORACLE: '0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6',
108+
},
100109
} as const;
101110
export const E_MODES = {
102111
NONE: 0,

src/ts/tokenlist.ts

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2755,6 +2755,26 @@ export const tokenlist = {
27552755
underlying: '0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf',
27562756
},
27572757
},
2758+
{
2759+
chainId: 1,
2760+
address: '0xdC035D45d973E3EC169d2276DDab16f1e407384F',
2761+
name: 'USDS Stablecoin',
2762+
decimals: 18,
2763+
symbol: 'USDS',
2764+
tags: ['underlying'],
2765+
},
2766+
{
2767+
chainId: 1,
2768+
address: '0x32a6268f9Ba3642Dda7892aDd74f1D34469A4259',
2769+
name: 'Aave Ethereum USDS',
2770+
decimals: 18,
2771+
symbol: 'aEthUSDS',
2772+
tags: ['aTokenV3', 'aaveV3'],
2773+
extensions: {
2774+
pool: '0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2',
2775+
underlying: '0xdC035D45d973E3EC169d2276DDab16f1e407384F',
2776+
},
2777+
},
27582778
{
27592779
chainId: 137,
27602780
address: '0x82E64f49Ed5EC1bC6e43DAD4FC8Af9bb3A2312EE',
@@ -6571,6 +6591,18 @@ export const tokenlist = {
65716591
underlying: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
65726592
},
65736593
},
6594+
{
6595+
chainId: 1,
6596+
address: '0x09AA30b182488f769a9824F15E6Ce58591Da4781',
6597+
name: 'Aave Ethereum Lido USDS',
6598+
decimals: 18,
6599+
symbol: 'aEthLidoUSDS',
6600+
tags: ['aTokenV3', 'aaveV3'],
6601+
extensions: {
6602+
pool: '0x4e033931ad43597d96D6bcc25c280717730B58B1',
6603+
underlying: '0xdC035D45d973E3EC169d2276DDab16f1e407384F',
6604+
},
6605+
},
65746606
{
65756607
chainId: 1,
65766608
address: '0xbe1F842e7e0afd2c2322aae5d34bA899544b29db',
@@ -6624,6 +6656,6 @@ export const tokenlist = {
66246656
},
66256657
},
66266658
],
6627-
version: {major: 3, minor: 0, patch: 43},
6628-
timestamp: '2024-09-26T01:02:45.302Z',
6659+
version: {major: 3, minor: 0, patch: 44},
6660+
timestamp: '2024-10-03T00:13:07.347Z',
66296661
};

tokenlist.json

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2736,6 +2736,26 @@
27362736
"underlying": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf"
27372737
}
27382738
},
2739+
{
2740+
"chainId": 1,
2741+
"address": "0xdC035D45d973E3EC169d2276DDab16f1e407384F",
2742+
"name": "USDS Stablecoin",
2743+
"decimals": 18,
2744+
"symbol": "USDS",
2745+
"tags": ["underlying"]
2746+
},
2747+
{
2748+
"chainId": 1,
2749+
"address": "0x32a6268f9Ba3642Dda7892aDd74f1D34469A4259",
2750+
"name": "Aave Ethereum USDS",
2751+
"decimals": 18,
2752+
"symbol": "aEthUSDS",
2753+
"tags": ["aTokenV3", "aaveV3"],
2754+
"extensions": {
2755+
"pool": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
2756+
"underlying": "0xdC035D45d973E3EC169d2276DDab16f1e407384F"
2757+
}
2758+
},
27392759
{
27402760
"chainId": 137,
27412761
"address": "0x82E64f49Ed5EC1bC6e43DAD4FC8Af9bb3A2312EE",
@@ -6480,6 +6500,18 @@
64806500
"underlying": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
64816501
}
64826502
},
6503+
{
6504+
"chainId": 1,
6505+
"address": "0x09AA30b182488f769a9824F15E6Ce58591Da4781",
6506+
"name": "Aave Ethereum Lido USDS",
6507+
"decimals": 18,
6508+
"symbol": "aEthLidoUSDS",
6509+
"tags": ["aTokenV3", "aaveV3"],
6510+
"extensions": {
6511+
"pool": "0x4e033931ad43597d96D6bcc25c280717730B58B1",
6512+
"underlying": "0xdC035D45d973E3EC169d2276DDab16f1e407384F"
6513+
}
6514+
},
64836515
{
64846516
"chainId": 1,
64856517
"address": "0xbe1F842e7e0afd2c2322aae5d34bA899544b29db",
@@ -6533,6 +6565,6 @@
65336565
}
65346566
}
65356567
],
6536-
"version": { "major": 3, "minor": 0, "patch": 43 },
6537-
"timestamp": "2024-09-26T01:02:45.302Z"
6568+
"version": { "major": 3, "minor": 0, "patch": 44 },
6569+
"timestamp": "2024-10-03T00:13:07.347Z"
65386570
}

0 commit comments

Comments
 (0)