File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ import reth from "@/public/images/upgrades/reth.png"
51
51
import tekuDark from "@/public/images/upgrades/teku-dark.png"
52
52
import tekuLight from "@/public/images/upgrades/teku-light.png"
53
53
54
+ import solidity from "@/public/images/upgrades/solidity.png"
55
+ import vyper from "@/public/images/upgrades/vyper.png"
56
+
54
57
const Page = ( props : ChildOnlyProp ) => (
55
58
< Box
56
59
as = { MainArticle }
@@ -457,6 +460,19 @@ const BugBountiesPage = () => {
457
460
} ,
458
461
]
459
462
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
+
460
476
const iconImageProps = {
461
477
width : 60 ,
462
478
}
@@ -662,9 +678,7 @@ const BugBountiesPage = () => {
662
678
>
663
679
{ t ( "page-upgrades-bug-bounty-help-links" ) }
664
680
</ OldHeading >
665
- < InlineLink href = "https://github.com/ethereum/solidity/blob/develop/SECURITY.md" >
666
- SECURITY.md
667
- </ InlineLink >
681
+ < CardList items = { languages } />
668
682
</ Box >
669
683
</ StyledCard >
670
684
< StyledCard
You can’t perform that action at this time.
0 commit comments