We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d10d3cd + 4215596 commit 575e492Copy full SHA for 575e492
1 file changed
shared/components/banner/banner.tsx
@@ -1,12 +1,22 @@
1
+import Link from 'next/link';
2
import { BannerWrapper, TextWhite } from './styles';
3
4
+const DISABLE_DATE = new Date('2025-07-09T00:00:00Z');
5
+
6
export const MigrationBannerTestnetV2 = () => {
7
+ if (new Date() > DISABLE_DATE) return null;
8
return (
9
<BannerWrapper>
10
<TextWhite>
- All Testnet data will not be available via Web UI on 25 Jun 2025 as part
- of migration to the stVaults Testnet-2 contracts. Back up anything
- important.
11
+ ✅ stVaults Testnet-2 is live! The Web UI is now connected to the new
12
+ contracts. Happy testing!{' '}
13
+ <Link
14
+ target="_blank"
15
+ href="https://docs.lido.fi/deployed-contracts/hoodi-lidov3/"
16
+ >
17
+ Deployed contracts
18
+ </Link>
19
+ .
20
</TextWhite>
21
</BannerWrapper>
22
);
0 commit comments