Skip to content

Commit f4a2945

Browse files
committed
feat(addresses): add Aave v4 Security Audit address to Ethereum
1 parent c415ac2 commit f4a2945

File tree

10 files changed

+64
-18
lines changed

10 files changed

+64
-18
lines changed

safe.csv

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,6 +1256,7 @@ address,name,chainId
12561256
0xa88c6D90eAe942291325f9ae3c66f3563B93FE10,MiscEthereum AAVE_MERKLE_DISTRIBUTOR,1
12571257
0x1C2BA5b8ab8e795fF44387ba6d251fa65AD20b36,MiscEthereum AAVE_POL_ETH_BRIDGE,1
12581258
0x3ea64b1C0194524b48F9118462C8E9cd61a243c7,MiscEthereum AAVE_SWAPPER,1
1259+
0xAAf400e4Bbc38B5E2136C1a36946Bf841A357307,MiscEthereum AAVE_V4_SECURITY_AUDIT,1
12591260
0xaa7A1910BA79B6A2E385ebA26185aA2dCB9B8eAd,MiscEthereum AFC_CEX_EARN_INCENTIVE_SAFE,1
12601261
0xAA12BAd4a501d45A5b771e49C2Fd415BA8BFc79d,MiscEthereum AFC_CEX_EARN_SAFE,1
12611262
0x22740deBa78d5a0c24C58C740e3715ec29de1bFa,MiscEthereum AFC_SAFE,1
@@ -2184,6 +2185,7 @@ address,name,chainId
21842185
0x56076f960980d453b5B749CB6A1c4D2E4e138B1A,AaveV3Polygon ASSETS USDT0 INTEREST_RATE_STRATEGY,137
21852186
0x01Aba1Fe7D72a3490bEef7CD0C09e1Ba2dD88D83,AaveV3Polygon ASSETS USDT0 ORACLE,137
21862187
0x87A1fdc4C726c459f597282be639a045062c0E46,AaveV3Polygon ASSETS USDT0 STATIC_A_TOKEN,137
2188+
0x2eaD203C5C1C00612B1DdbBb20e4180dA822d6ff,AaveV3Polygon ASSETS USDT0 STATA_TOKEN,137
21872189
0xD6DF932A45C0f255f85145f286eA0b292B21C90B,AaveV3Polygon ASSETS AAVE UNDERLYING,137
21882190
0xf329e36C7bF6E5E86ce2150875a84Ce77f477375,AaveV3Polygon ASSETS AAVE A_TOKEN,137
21892191
0xE80761Ea617F66F96274eA5e8c37f03960ecC679,AaveV3Polygon ASSETS AAVE V_TOKEN,137

src/AaveV3Base.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ library AaveV3BaseEModes {
448448
uint8 internal constant wstETH__WETH = 8;
449449

450450
uint8 internal constant cbETH__WETH = 9;
451+
452+
uint8 internal constant cbBTC__USDC_GHO = 10;
451453
}
452454
library AaveV3BaseExternalLibraries {
453455
// https://basescan.org/address/0x5e84CEe2afb7B37d2AB14722C39A7c1C26F5B0BB

src/AaveV3Polygon.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,9 @@ library AaveV3PolygonAssets {
238238
// https://polygonscan.com/address/0x87A1fdc4C726c459f597282be639a045062c0E46
239239
address internal constant USDT0_STATIC_A_TOKEN = 0x87A1fdc4C726c459f597282be639a045062c0E46;
240240

241+
// https://polygonscan.com/address/0x2eaD203C5C1C00612B1DdbBb20e4180dA822d6ff
242+
address internal constant USDT0_STATA_TOKEN = 0x2eaD203C5C1C00612B1DdbBb20e4180dA822d6ff;
243+
241244
// https://polygonscan.com/address/0xD6DF932A45C0f255f85145f286eA0b292B21C90B
242245
address internal constant AAVE_UNDERLYING = 0xD6DF932A45C0f255f85145f286eA0b292B21C90B;
243246

src/MiscEthereum.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,7 @@ library MiscEthereum {
9999

100100
// https://etherscan.io/address/0x2C7f01A1322ce99EEB331d6Eb73Aff400f11C5CB
101101
address internal constant REWARD_STEWARD = 0x2C7f01A1322ce99EEB331d6Eb73Aff400f11C5CB;
102+
103+
// https://etherscan.io/address/0xAAf400e4Bbc38B5E2136C1a36946Bf841A357307
104+
address internal constant AAVE_V4_SECURITY_AUDIT = 0xAAf400e4Bbc38B5E2136C1a36946Bf841A357307;
102105
}

src/ts/AaveV3Base.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,19 @@ export const E_MODES = {
350350
liquidationThreshold: 9500,
351351
liquidationBonus: 10200,
352352
},
353+
'10': {
354+
label: 'cbBTC / USDC,GHO',
355+
collateralBitmap: '64',
356+
collateralAssets: ['0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf'],
357+
borrowableBitmap: '272',
358+
borrowableAssets: [
359+
'0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
360+
'0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee',
361+
],
362+
ltv: 8000,
363+
liquidationThreshold: 8300,
364+
liquidationBonus: 10400,
365+
},
353366
} as const;
354367
export const EXTERNAL_LIBRARIES = {
355368
FLASHLOAN_LOGIC: '0x5e84CEe2afb7B37d2AB14722C39A7c1C26F5B0BB',

src/ts/AaveV3Ethereum.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,8 +1057,8 @@ export const E_MODES = {
10571057
],
10581058
borrowableBitmap: '1073741824',
10591059
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
1060-
ltv: 9360,
1061-
liquidationThreshold: 9560,
1060+
ltv: 9400,
1061+
liquidationThreshold: 9600,
10621062
liquidationBonus: 10200,
10631063
},
10641064
} as const;

src/ts/AaveV3Plasma.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -244,19 +244,19 @@ export const E_MODES = {
244244
'0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb',
245245
'0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34',
246246
],
247-
ltv: 8640,
248-
liquidationThreshold: 8840,
249-
liquidationBonus: 10460,
247+
ltv: 8740,
248+
liquidationThreshold: 8940,
249+
liquidationBonus: 10430,
250250
},
251251
'6': {
252252
label: 'PT_USDe_15JAN2026 / USDe',
253253
collateralBitmap: '64',
254254
collateralAssets: ['0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a'],
255255
borrowableBitmap: '2',
256256
borrowableAssets: ['0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34'],
257-
ltv: 8720,
258-
liquidationThreshold: 8920,
259-
liquidationBonus: 10360,
257+
ltv: 8820,
258+
liquidationThreshold: 9020,
259+
liquidationBonus: 10330,
260260
},
261261
'7': {
262262
label: 'PT_sUSDE_15JAN2026 / USDT0,USDe',
@@ -267,19 +267,19 @@ export const E_MODES = {
267267
'0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb',
268268
'0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34',
269269
],
270-
ltv: 8490,
271-
liquidationThreshold: 8690,
272-
liquidationBonus: 10600,
270+
ltv: 8590,
271+
liquidationThreshold: 8790,
272+
liquidationBonus: 10570,
273273
},
274274
'8': {
275275
label: 'PT_sUSDE_15JAN2026 / USDe',
276276
collateralBitmap: '128',
277277
collateralAssets: ['0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8'],
278278
borrowableBitmap: '2',
279279
borrowableAssets: ['0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34'],
280-
ltv: 8550,
281-
liquidationThreshold: 8750,
282-
liquidationBonus: 10490,
280+
ltv: 8650,
281+
liquidationThreshold: 8850,
282+
liquidationBonus: 10450,
283283
},
284284
'9': {
285285
label: 'wrsETH / WETH,wstETH',

src/ts/AaveV3Polygon.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ export const ASSETS = {
159159
INTEREST_RATE_STRATEGY: '0x56076f960980d453b5B749CB6A1c4D2E4e138B1A',
160160
ORACLE: '0x01Aba1Fe7D72a3490bEef7CD0C09e1Ba2dD88D83',
161161
STATIC_A_TOKEN: '0x87A1fdc4C726c459f597282be639a045062c0E46',
162+
STATA_TOKEN: '0x2eaD203C5C1C00612B1DdbBb20e4180dA822d6ff',
162163
},
163164
AAVE: {
164165
decimals: 18,

src/ts/MiscEthereum.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,7 @@ export const AFC_CEX_EARN_INCENTIVE_SAFE = '0xaa7A1910BA79B6A2E385ebA26185aA2dCB
9292
// https://etherscan.io/address/0x2C7f01A1322ce99EEB331d6Eb73Aff400f11C5CB
9393
export const REWARD_STEWARD = '0x2C7f01A1322ce99EEB331d6Eb73Aff400f11C5CB';
9494

95+
// https://etherscan.io/address/0xAAf400e4Bbc38B5E2136C1a36946Bf841A357307
96+
export const AAVE_V4_SECURITY_AUDIT = '0xAAf400e4Bbc38B5E2136C1a36946Bf841A357307';
97+
9598
export const CHAIN_ID = 1;

tokenlist.json

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3552,6 +3552,20 @@
35523552
"underlyingAToken": "0x6ab707Aca953eDAeFBc4fD23bA73294241490620"
35533553
}
35543554
},
3555+
{
3556+
"chainId": 137,
3557+
"address": "0x2eaD203C5C1C00612B1DdbBb20e4180dA822d6ff",
3558+
"name": "Wrapped Aave Polygon USDT",
3559+
"decimals": 6,
3560+
"symbol": "waPolUSDT",
3561+
"tags": ["aaveV3", "stataToken"],
3562+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/statausdt0.svg",
3563+
"extensions": {
3564+
"pool": "0x794a61358D6845594F94dc1DB02A252b5b4814aD",
3565+
"underlying": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
3566+
"underlyingAToken": "0x6ab707Aca953eDAeFBc4fD23bA73294241490620"
3567+
}
3568+
},
35553569
{
35563570
"chainId": 137,
35573571
"address": "0xf329e36C7bF6E5E86ce2150875a84Ce77f477375",
@@ -8842,7 +8856,8 @@
88428856
"name": "Kraken Wrapped Bitcoin",
88438857
"decimals": 8,
88448858
"symbol": "kBTC",
8845-
"tags": ["underlying"]
8859+
"tags": ["underlying"],
8860+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/kbtc.svg"
88468861
},
88478862
{
88488863
"chainId": 57073,
@@ -8851,6 +8866,7 @@
88518866
"decimals": 8,
88528867
"symbol": "aInkWlKBTC",
88538868
"tags": ["aTokenV3", "aaveV3"],
8869+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/akbtc.svg",
88548870
"extensions": {
88558871
"pool": "0x2816cf15F6d2A220E789aA011D5EE4eB6c47FEbA",
88568872
"underlying": "0x73E0C0d45E048D25Fc26Fa3159b0aA04BfA4Db98"
@@ -9034,7 +9050,8 @@
90349050
"name": "XAUt0",
90359051
"decimals": 6,
90369052
"symbol": "XAUt0",
9037-
"tags": ["underlying"]
9053+
"tags": ["underlying"],
9054+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/xaut0.svg"
90389055
},
90399056
{
90409057
"chainId": 9745,
@@ -9043,6 +9060,7 @@
90439060
"decimals": 6,
90449061
"symbol": "aPlaXAUt0",
90459062
"tags": ["aTokenV3", "aaveV3"],
9063+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/axaut0.svg",
90469064
"extensions": {
90479065
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
90489066
"underlying": "0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193"
@@ -9055,6 +9073,7 @@
90559073
"decimals": 6,
90569074
"symbol": "waPlaXAUt0",
90579075
"tags": ["aaveV3", "stataToken"],
9076+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/stataxaut0.svg",
90589077
"extensions": {
90599078
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
90609079
"underlying": "0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193",
@@ -9290,6 +9309,6 @@
92909309
}
92919310
}
92929311
],
9293-
"version": { "major": 3, "minor": 0, "patch": 143 },
9294-
"timestamp": "2025-10-27T13:51:27.646Z"
9312+
"version": { "major": 3, "minor": 0, "patch": 144 },
9313+
"timestamp": "2025-11-04T04:10:07.164Z"
92959314
}

0 commit comments

Comments
 (0)