Skip to content

Commit 575e492

Browse files
authored
Merge pull request #101 from lidofinance/chore/migration-banner-text
Migration banner text
2 parents d10d3cd + 4215596 commit 575e492

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

shared/components/banner/banner.tsx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
1+
import Link from 'next/link';
12
import { BannerWrapper, TextWhite } from './styles';
23

4+
const DISABLE_DATE = new Date('2025-07-09T00:00:00Z');
5+
36
export const MigrationBannerTestnetV2 = () => {
7+
if (new Date() > DISABLE_DATE) return null;
48
return (
59
<BannerWrapper>
610
<TextWhite>
7-
All Testnet data will not be available via Web UI on 25 Jun 2025 as part
8-
of migration to the stVaults Testnet-2 contracts. Back up anything
9-
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+
.
1020
</TextWhite>
1121
</BannerWrapper>
1222
);

0 commit comments

Comments
 (0)