Skip to content

Commit a8d5730

Browse files
authored
Update bug-bounty.tsx
added images for solidity and vyper
1 parent 94bc418 commit a8d5730

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

src/pages/bug-bounty.tsx

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ import reth from "@/public/images/upgrades/reth.png"
5151
import tekuDark from "@/public/images/upgrades/teku-dark.png"
5252
import tekuLight from "@/public/images/upgrades/teku-light.png"
5353

54+
import solidity from "@/public/images/upgrades/solidity.png"
55+
import vyper from "@/public/images/upgrades/vyper.png"
56+
5457
const Page = (props: ChildOnlyProp) => (
5558
<Box
5659
as={MainArticle}
@@ -457,6 +460,19 @@ const BugBountiesPage = () => {
457460
},
458461
]
459462

463+
const languages: Languages[] = [
464+
{
465+
title: "Solidity",
466+
link: "https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/beacon-chain.md",
467+
image: solidity,
468+
},
469+
{
470+
title: "Vyper",
471+
link: "https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/fork-choice.md",
472+
image: vyper,
473+
},
474+
]
475+
460476
const iconImageProps = {
461477
width: 60,
462478
}
@@ -662,9 +678,7 @@ const BugBountiesPage = () => {
662678
>
663679
{t("page-upgrades-bug-bounty-help-links")}
664680
</OldHeading>
665-
<InlineLink href="https://github.com/ethereum/solidity/blob/develop/SECURITY.md">
666-
SECURITY.md
667-
</InlineLink>
681+
<CardList items={languages} />
668682
</Box>
669683
</StyledCard>
670684
<StyledCard

0 commit comments

Comments
 (0)