Skip to content

Commit c0af957

Browse files
github-actions[bot]web-flowsakulstra
authored
fix(cache): automated cache update - updated addresses (#1049)
* fix(cache): automated cache update - updated addresses * fix: update verified --------- Co-authored-by: Cache-bot <[email protected]> Co-authored-by: Lukas <[email protected]>
1 parent 61b69c5 commit c0af957

File tree

5 files changed

+65
-2
lines changed

5 files changed

+65
-2
lines changed

safe.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3120,6 +3120,11 @@ address,name,chainId
31203120
0x80cA0d8C38d2e2BcbaB66aA1648Bd1C7160500FE,AaveV3Arbitrum ASSETS rsETH V_TOKEN,42161
31213121
0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F,AaveV3Arbitrum ASSETS rsETH INTEREST_RATE_STRATEGY,42161
31223122
0xb4B0cbcA864c2Eb0C0342608D92490C034aC1089,AaveV3Arbitrum ASSETS rsETH ORACLE,42161
3123+
0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40,AaveV3Arbitrum ASSETS tBTC UNDERLYING,42161
3124+
0x62fC96b27a510cF4977B59FF952Dc32378Cc221d,AaveV3Arbitrum ASSETS tBTC A_TOKEN,42161
3125+
0xB5b46F918C2923fC7f26DB76e8a6A6e9C4347Cf9,AaveV3Arbitrum ASSETS tBTC V_TOKEN,42161
3126+
0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F,AaveV3Arbitrum ASSETS tBTC INTEREST_RATE_STRATEGY,42161
3127+
0x6ce185860a4963106506C203335A2910413708e9,AaveV3Arbitrum ASSETS tBTC ORACLE,42161
31233128
0x7B58055fC6bE4B23cF8c9287b7d3C4adBE919a9c,AaveV3Arbitrum CLINIC_STEWARD,42161
31243129
0x053D55f9B5AF8694c503EB288a1B7E552f590710,AaveV3Arbitrum COLLECTOR,42161
31253130
0xcCeb5996cF9976168fdbE6fF88B1d89e1180A0EA,AaveV3Arbitrum CONFIG_ENGINE,42161

src/AaveV3Arbitrum.sol

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,24 @@ library AaveV3ArbitrumAssets {
550550
// https://arbiscan.io/address/0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F
551551
address internal constant rsETH_INTEREST_RATE_STRATEGY =
552552
0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F;
553+
554+
// https://arbiscan.io/address/0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40
555+
address internal constant tBTC_UNDERLYING = 0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40;
556+
557+
uint8 internal constant tBTC_DECIMALS = 18;
558+
559+
// https://arbiscan.io/address/0x62fC96b27a510cF4977B59FF952Dc32378Cc221d
560+
address internal constant tBTC_A_TOKEN = 0x62fC96b27a510cF4977B59FF952Dc32378Cc221d;
561+
562+
// https://arbiscan.io/address/0xB5b46F918C2923fC7f26DB76e8a6A6e9C4347Cf9
563+
address internal constant tBTC_V_TOKEN = 0xB5b46F918C2923fC7f26DB76e8a6A6e9C4347Cf9;
564+
565+
// https://arbiscan.io/address/0x6ce185860a4963106506C203335A2910413708e9
566+
address internal constant tBTC_ORACLE = 0x6ce185860a4963106506C203335A2910413708e9;
567+
568+
// https://arbiscan.io/address/0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F
569+
address internal constant tBTC_INTEREST_RATE_STRATEGY =
570+
0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F;
553571
}
554572
library AaveV3ArbitrumEModes {
555573
uint8 internal constant NONE = 0;

src/ts/AaveV3Arbitrum.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,15 @@ export const ASSETS = {
312312
INTEREST_RATE_STRATEGY: '0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F',
313313
ORACLE: '0xb4B0cbcA864c2Eb0C0342608D92490C034aC1089',
314314
},
315+
tBTC: {
316+
decimals: 18,
317+
id: 19,
318+
UNDERLYING: '0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40',
319+
A_TOKEN: '0x62fC96b27a510cF4977B59FF952Dc32378Cc221d',
320+
V_TOKEN: '0xB5b46F918C2923fC7f26DB76e8a6A6e9C4347Cf9',
321+
INTEREST_RATE_STRATEGY: '0x429F16dBA3B9e1900087Cbaa7b50D38Bc60fB73F',
322+
ORACLE: '0x6ce185860a4963106506C203335A2910413708e9',
323+
},
315324
} as const;
316325
export const E_MODES = {
317326
'1': {

tests/cache/verified.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11420,6 +11420,15 @@
1142011420
},
1142111421
"0x034Fd14b9Ae6bB066a1F9f85A55e990b0b25c168": {
1142211422
"name": "SupplyLogic"
11423+
},
11424+
"0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40": {
11425+
"name": "TransparentUpgradeableProxy"
11426+
},
11427+
"0x62fC96b27a510cF4977B59FF952Dc32378Cc221d": {
11428+
"name": "InitializableImmutableAdminUpgradeabilityProxy"
11429+
},
11430+
"0xB5b46F918C2923fC7f26DB76e8a6A6e9C4347Cf9": {
11431+
"name": "InitializableImmutableAdminUpgradeabilityProxy"
1142311432
}
1142411433
},
1142511434
"42220": {

tokenlist.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6744,6 +6744,28 @@
67446744
"underlying": "0x4186BFC76E2E237523CBC30FD220FE055156b41F"
67456745
}
67466746
},
6747+
{
6748+
"chainId": 42161,
6749+
"address": "0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40",
6750+
"name": "Arbitrum tBTC v2",
6751+
"decimals": 18,
6752+
"symbol": "tBTC",
6753+
"tags": ["underlying"],
6754+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/tbtc.svg"
6755+
},
6756+
{
6757+
"chainId": 42161,
6758+
"address": "0x62fC96b27a510cF4977B59FF952Dc32378Cc221d",
6759+
"name": "Aave Arbitrum tBTC",
6760+
"decimals": 18,
6761+
"symbol": "aArbtBTC",
6762+
"tags": ["aTokenV3", "aaveV3"],
6763+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/atbtc.svg",
6764+
"extensions": {
6765+
"pool": "0x794a61358D6845594F94dc1DB02A252b5b4814aD",
6766+
"underlying": "0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40"
6767+
}
6768+
},
67476769
{
67486770
"chainId": 10,
67496771
"address": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1",
@@ -8509,6 +8531,6 @@
85098531
}
85108532
}
85118533
],
8512-
"version": { "major": 3, "minor": 0, "patch": 128 },
8513-
"timestamp": "2025-08-25T00:16:14.470Z"
8534+
"version": { "major": 3, "minor": 0, "patch": 129 },
8535+
"timestamp": "2025-08-26T00:15:27.715Z"
85148536
}

0 commit comments

Comments
 (0)