File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Libraries
2
+ import React from "react"
3
+ import { Center , Text } from "@chakra-ui/react"
4
+
5
+ // Components
6
+ import BannerNotification from "../BannerNotification"
7
+
8
+ const BugBountyBanner : React . FC = ( ) => (
9
+ < BannerNotification shouldShow >
10
+ < Center >
11
+ < Text m = { 0 } p = { 0 } >
12
+ All Dencun-related bounties currently receive a 2x bonus multiplier
13
+ (up to 500,000 USD) up to two weeks before the scheduled mainnet hardfork.
14
+ </ Text >
15
+ </ Center >
16
+ </ BannerNotification >
17
+ )
18
+
19
+ export default BugBountyBanner
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
12
12
13
13
import type { BasePageProps , ChildOnlyProp } from "@/lib/types"
14
14
15
+ import BugBountyBanner from "@/components/Banners/BugBountyBanner"
15
16
import Breadcrumbs from "@/components/Breadcrumbs"
16
17
import BugBountyCards from "@/components/BugBountyCards"
17
18
import ButtonLink from "@/components/Buttons/ButtonLink"
@@ -451,6 +452,8 @@ const BugBountiesPage = () => {
451
452
title = { t ( "page-upgrades-bug-bounty-meta-title" ) }
452
453
description = { t ( "page-upgrades-bug-bounty-meta-description" ) }
453
454
/>
455
+ { /* TODO: Remove two weeks prior to scheduled mainnet Dencun hardfork */ }
456
+ < BugBountyBanner />
454
457
< Content >
455
458
< HeroCard >
456
459
< HeroContainer >
You can’t perform that action at this time.
0 commit comments