From 34a8866a795b00e6e8a1c25d0e0985a3a82c53ee Mon Sep 17 00:00:00 2001 From: ayush-tm Date: Mon, 8 Apr 2024 20:08:15 +0530 Subject: [PATCH] Updated Index Contract Address on Arbitrum --- projects/astra-dao/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/astra-dao/index.js b/projects/astra-dao/index.js index 4eb365bb0b1c..165a0b75d05f 100644 --- a/projects/astra-dao/index.js +++ b/projects/astra-dao/index.js @@ -6,7 +6,7 @@ const ASTRA_STAKING_CONTRACT_ARBITRUM = '0x6fE79b531b2b1d5378631B3Ab33B0994E2973 async function tvl(api) { const chain = api.chain let gotError = false; - const indexAddr = chain === 'ethereum' ? '0x17b9B197E422820b3e28629a2BB101949EE7D12B' : '0x8e265fF847CC660Cd89786D4308076a9f921428f'; + const indexAddr = chain === 'ethereum' ? '0x17b9B197E422820b3e28629a2BB101949EE7D12B' : '0xFa3e6EC87941d4e29b1738F8F7f5C27B23Eb3f94'; const stableCoin = await api.call({ abi: 'address:baseStableCoin', target: indexAddr }); let i = 0; const tokens = [stableCoin]; @@ -36,5 +36,7 @@ module.exports = { hallmarks: [ [Math.floor(new Date('2023-09-14') / 1e3), 'Security Incident'], [Math.floor(new Date('2024-01-04') / 1e3), 'Arbitrum Launch'], + [Math.floor(new Date('2024-03-29') / 1e3), 'Shutdown Indices and Distributed User Funds'], + [Math.floor(new Date('2024-04-05') / 1e3), 'Launched New Indices'], ], };