Skip to content

Commit 7c2ca06

Browse files
authored
Update bug-bounty.tsx
1 parent a36f5d8 commit 7c2ca06

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/pages/bug-bounty.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,12 @@ type Spec = {
328328
link: string
329329
}
330330

331+
type Language = {
332+
title: string
333+
link: string
334+
image: ImageProps["src"]
335+
}
336+
331337
const sortBountyHuntersFn = (a: BountyHuntersArg, b: BountyHuntersArg) => {
332338
if (!a.score || !b.score) return 0
333339
return b.score - a.score
@@ -460,15 +466,15 @@ const BugBountiesPage = () => {
460466
},
461467
]
462468

463-
const languages: Languages[] = [
469+
const languages: Language[] = [
464470
{
465471
title: "Solidity",
466-
link: "https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/beacon-chain.md",
472+
link: "https://soliditylang.org/",
467473
image: solidity,
468474
},
469475
{
470476
title: "Vyper",
471-
link: "https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/fork-choice.md",
477+
link: "https://vyperlang.org/",
472478
image: vyper,
473479
},
474480
]

0 commit comments

Comments
 (0)