Skip to content

Commit 90fe063

Browse files
authored
Merge pull request #15449 from ethereum/roadmapapge-update
remove innacurated content from the roadmap page
2 parents 0f38080 + 78f9456 commit 90fe063

File tree

1 file changed

+1
-25
lines changed

1 file changed

+1
-25
lines changed

app/[locale]/roadmap/_components/roadmap.tsx

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@ import {
1010
DankshardingIcon,
1111
ExtraSecurityIcon,
1212
FutureProofingIcon,
13-
ProposerBuilderSeparationIcon,
14-
SecretLeaderElectionIcon,
1513
SingleSlotFinalityIcon,
1614
StatelessnessIcon,
17-
VerkleTreesIcon,
1815
} from "@/components/icons/roadmap"
1916
import { Image } from "@/components/Image"
2017
import MainArticle from "@/components/MainArticle"
@@ -98,34 +95,13 @@ const RoadmapPage = () => {
9895
"Instead of waiting for fifteen minutes, blocks could get proposed and finalized in the same slot. This is more convenient for apps and difficult to attack.",
9996
href: "/roadmap/single-slot-finality",
10097
},
101-
{
102-
icon: <ProposerBuilderSeparationIcon className="size-7" />,
103-
title: "Proposer-builder separation",
104-
description:
105-
"Splitting the block building and block proposal tasks across separate validators creates a fairer, more censorship resistant and efficient way for Ethereum to come to consensus.",
106-
href: "/roadmap/pbs",
107-
},
108-
{
109-
icon: <SecretLeaderElectionIcon className="size-7" />,
110-
title: "Secret leader election",
111-
description:
112-
"Clever cryptography can be used to ensure that the identity of the current block proposer is not made public, protecting them from certain types of attack.",
113-
href: "/roadmap/secret-leader-election",
114-
},
11598
{
11699
icon: <AccountAbstractionIcon className="size-7" />,
117100
title: "Account abstraction",
118101
description:
119102
"Account abstraction is a class of upgrades that support smart contract wallets natively on Ethereum, rather than having to use complex middleware.",
120103
href: "/roadmap/account-abstraction",
121104
},
122-
{
123-
icon: <VerkleTreesIcon className="size-7" />,
124-
title: "Verkle trees",
125-
description:
126-
"Verkle trees are a data structure that can be used to enable stateless clients on Ethereum. These clients will require a small amount of storage space but will still be able to verify new blocks.",
127-
href: "/roadmap/verkle-trees",
128-
},
129105
{
130106
icon: <StatelessnessIcon className="size-7" />,
131107
title: "Statelessness",
@@ -238,7 +214,7 @@ const RoadmapPage = () => {
238214
<h2 className="text-center">
239215
What technical upgrades are coming to Ethereum?
240216
</h2>
241-
<div className="grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3">
217+
<div className="grid grid-cols-1 gap-6 md:grid-cols-2">
242218
{technicalUpgradesItems.map((item) => (
243219
<LinkBox
244220
key={item.title}

0 commit comments

Comments
 (0)