diff --git a/public/images/upgrades/solidity.png b/public/images/upgrades/solidity.png new file mode 100644 index 00000000000..c1e3de9e7c4 Binary files /dev/null and b/public/images/upgrades/solidity.png differ diff --git a/public/images/upgrades/vyper.png b/public/images/upgrades/vyper.png new file mode 100644 index 00000000000..2d93c99088b Binary files /dev/null and b/public/images/upgrades/vyper.png differ diff --git a/src/intl/en/page-bug-bounty.json b/src/intl/en/page-bug-bounty.json index a6e0acec39c..120e6dece78 100644 --- a/src/intl/en/page-bug-bounty.json +++ b/src/intl/en/page-bug-bounty.json @@ -8,9 +8,9 @@ "page-upgrades-bug-bounty-clients-type-1": "Spec non-compliance issues", "page-upgrades-bug-bounty-clients-type-2": "Unexpected crashes, RCE or denial of service (DOS) vulnerabilities", "page-upgrades-bug-bounty-clients-type-3": "Any issues causing irreparable consensus splits from the rest of the network", - "page-upgrades-bug-bounty-misc-bugs": "Solidity bugs", - "page-upgrades-bug-bounty-misc-bugs-desc": "See the Solidity SECURITY.MD for more details about what is included in this scope.", - "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.", + "page-upgrades-bug-bounty-misc-bugs": "Language compiler bugs", + "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.", + "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.", "page-upgrades-bug-bounty-deposit-bugs": "Deposit Contract bugs", "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.", "page-upgrades-bug-bounty-dependency-bugs": "Dependency bugs", @@ -59,7 +59,7 @@ "page-upgrades-bug-bounty-specs-docs": "Specification documents", "page-upgrades-bug-bounty-submit": "Submit a bug", "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.", - "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.", + "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.", "page-upgrades-bug-bounty-title": "Open for submissions", "page-upgrades-bug-bounty-title-1": "Beacon Chain", "page-upgrades-bug-bounty-title-2": "Fork choice", diff --git a/src/pages/bug-bounty.tsx b/src/pages/bug-bounty.tsx index 9668949872e..4b87e9ba6f3 100644 --- a/src/pages/bug-bounty.tsx +++ b/src/pages/bug-bounty.tsx @@ -48,8 +48,10 @@ import nethermind from "@/public/images/upgrades/nethermind.png" import nimbus from "@/public/images/upgrades/nimbus-cloud.png" import prysm from "@/public/images/upgrades/prysm.png" import reth from "@/public/images/upgrades/reth.png" +import solidity from "@/public/images/upgrades/solidity.png" import tekuDark from "@/public/images/upgrades/teku-dark.png" import tekuLight from "@/public/images/upgrades/teku-light.png" +import vyper from "@/public/images/upgrades/vyper.png" const Page = (props: ChildOnlyProp) => ( { if (!a.score || !b.score) return 0 return b.score - a.score @@ -457,6 +465,19 @@ const BugBountiesPage = () => { }, ] + const languages: Language[] = [ + { + title: "Solidity", + link: "https://soliditylang.org/", + image: solidity, + }, + { + title: "Vyper", + link: "https://vyperlang.org/", + image: vyper, + }, + ] + const iconImageProps = { width: 60, } @@ -662,9 +683,7 @@ const BugBountiesPage = () => { > {t("page-upgrades-bug-bounty-help-links")} - - SECURITY.md - +