Skip to content

Commit 29ae383

Browse files
authored
Merge pull request #13700 from fredriksvantes/fredriksvantes-bounty-update
Adding Vyper to Bug Bounty Program
2 parents 9e4a8c9 + 15d77f6 commit 29ae383

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

public/images/upgrades/solidity.png

7.6 KB
Loading

public/images/upgrades/vyper.png

5.76 KB
Loading

src/intl/en/page-bug-bounty.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"page-upgrades-bug-bounty-clients-type-1": "Spec non-compliance issues",
99
"page-upgrades-bug-bounty-clients-type-2": "Unexpected crashes, RCE or denial of service (DOS) vulnerabilities",
1010
"page-upgrades-bug-bounty-clients-type-3": "Any issues causing irreparable consensus splits from the rest of the network",
11-
"page-upgrades-bug-bounty-misc-bugs": "Solidity bugs",
12-
"page-upgrades-bug-bounty-misc-bugs-desc": "See the Solidity SECURITY.MD for more details about what is included in this scope.",
13-
"page-upgrades-bug-bounty-misc-bugs-desc-2": "Solidity does not hold security guarantees regarding compilation of untrusted input – and we do not issue rewards for crashes of the solc compiler on maliciously generated data.",
11+
"page-upgrades-bug-bounty-misc-bugs": "Language compiler bugs",
12+
"page-upgrades-bug-bounty-misc-bugs-desc": "The Solidity and Vyper compilers are in scope of the bug bounty program. Please include all details necessary to reproduce the vulnerability such as: Input program that triggers the bug, Compiler version affected, Target EVM version, Framework/IDE if applicable, EVM execution environment/client if applicable and Operating system, Please include steps to reproduce the bug you have found in as much detail as possible.",
13+
"page-upgrades-bug-bounty-misc-bugs-desc-2": "Solidity and Vyper does not hold security guarantees regarding compilation of untrusted input – and we do not issue rewards for crashes of the compiler on maliciously generated data.",
1414
"page-upgrades-bug-bounty-deposit-bugs": "Deposit Contract bugs",
1515
"page-upgrades-bug-bounty-deposit-bugs-desc": "The specifications and source code of the Beacon Chain Deposit Contract is part of the bug bounty program.",
1616
"page-upgrades-bug-bounty-dependency-bugs": "Dependency bugs",
@@ -59,7 +59,7 @@
5959
"page-upgrades-bug-bounty-specs-docs": "Specification documents",
6060
"page-upgrades-bug-bounty-submit": "Submit a bug",
6161
"page-upgrades-bug-bounty-submit-desc": "For each valid bug you find you’ll earn rewards. The quantity of rewards awarded will vary depending on Severity. The severity is calculated according to the OWASP risk rating model based on Impact on the Ethereum Network and Likelihood.",
62-
"page-upgrades-bug-bounty-subtitle": "Earn up to 250,000 USD and a place on the leaderboard by finding protocol, client and Solidity bugs affecting the Ethereum network.",
62+
"page-upgrades-bug-bounty-subtitle": "Earn up to 250,000 USD and a place on the leaderboard by finding protocol, client and language compiler bugs affecting the Ethereum network.",
6363
"page-upgrades-bug-bounty-title": "Open for submissions",
6464
"page-upgrades-bug-bounty-title-1": "Beacon Chain",
6565
"page-upgrades-bug-bounty-title-2": "Fork choice",

src/pages/bug-bounty.tsx

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ import nethermind from "@/public/images/upgrades/nethermind.png"
4848
import nimbus from "@/public/images/upgrades/nimbus-cloud.png"
4949
import prysm from "@/public/images/upgrades/prysm.png"
5050
import reth from "@/public/images/upgrades/reth.png"
51+
import solidity from "@/public/images/upgrades/solidity.png"
5152
import tekuDark from "@/public/images/upgrades/teku-dark.png"
5253
import tekuLight from "@/public/images/upgrades/teku-light.png"
54+
import vyper from "@/public/images/upgrades/vyper.png"
5355

5456
const Page = (props: ChildOnlyProp) => (
5557
<Box
@@ -325,6 +327,12 @@ type Spec = {
325327
link: string
326328
}
327329

330+
type Language = {
331+
title: string
332+
link: string
333+
image: ImageProps["src"]
334+
}
335+
328336
const sortBountyHuntersFn = (a: BountyHuntersArg, b: BountyHuntersArg) => {
329337
if (!a.score || !b.score) return 0
330338
return b.score - a.score
@@ -457,6 +465,19 @@ const BugBountiesPage = () => {
457465
},
458466
]
459467

468+
const languages: Language[] = [
469+
{
470+
title: "Solidity",
471+
link: "https://soliditylang.org/",
472+
image: solidity,
473+
},
474+
{
475+
title: "Vyper",
476+
link: "https://vyperlang.org/",
477+
image: vyper,
478+
},
479+
]
480+
460481
const iconImageProps = {
461482
width: 60,
462483
}
@@ -662,9 +683,7 @@ const BugBountiesPage = () => {
662683
>
663684
{t("page-upgrades-bug-bounty-help-links")}
664685
</OldHeading>
665-
<InlineLink href="https://github.com/ethereum/solidity/blob/develop/SECURITY.md">
666-
SECURITY.md
667-
</InlineLink>
686+
<CardList items={languages} />
668687
</Box>
669688
</StyledCard>
670689
<StyledCard

0 commit comments

Comments
 (0)