File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -328,6 +328,12 @@ type Spec = {
328
328
link : string
329
329
}
330
330
331
+ type Language = {
332
+ title : string
333
+ link : string
334
+ image : ImageProps [ "src" ]
335
+ }
336
+
331
337
const sortBountyHuntersFn = ( a : BountyHuntersArg , b : BountyHuntersArg ) => {
332
338
if ( ! a . score || ! b . score ) return 0
333
339
return b . score - a . score
@@ -460,15 +466,15 @@ const BugBountiesPage = () => {
460
466
} ,
461
467
]
462
468
463
- const languages : Languages [ ] = [
469
+ const languages : Language [ ] = [
464
470
{
465
471
title : "Solidity" ,
466
- link : "https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/beacon-chain.md " ,
472
+ link : "https://soliditylang.org/ " ,
467
473
image : solidity ,
468
474
} ,
469
475
{
470
476
title : "Vyper" ,
471
- link : "https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/fork-choice.md " ,
477
+ link : "https://vyperlang.org/ " ,
472
478
image : vyper ,
473
479
} ,
474
480
]
You can’t perform that action at this time.
0 commit comments