Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions app/[locale]/10years/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import MainArticle from "@/components/MainArticle"
import Translation from "@/components/Translation"
import { ButtonLink } from "@/components/ui/buttons/Button"
import { LinkBox, LinkOverlay } from "@/components/ui/link-box"
import InlineLink from "@/components/ui/Link"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import YouTube from "@/components/YouTube"

Expand Down Expand Up @@ -406,6 +407,12 @@ const Page = async ({ params }: { params: PageParams }) => {
<Stories stories={stories} />
</I18nProvider>
</div>

<div className="w-full px-8 py-4 text-center text-sm text-body-medium">
<InlineLink href="/10years/terms-and-conditions">
{t("page-10-year-terms-and-conditions")}
</InlineLink>
</div>
</MainArticle>
</>
)
Expand Down
2 changes: 1 addition & 1 deletion public/content/roadmap/pectra/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Precompiles are a special set of smart contracts built directly into the Ethereu

[EIP-2537](https://eips.ethereum.org/EIPS/eip-2537) adds new precompiles for curve operations over [BLS12-381](https://hackmd.io/@benjaminion/bls12-381). This elliptic curve became widely used in cryptocurrency ecosystems thanks to its practical properties. More specifically, it's been adopted by Ethereum's consensus layer, where it's used by validators.

The new precompile adds the ability for every developer to easily, efficiently, and securely perform cryptographic operations using this curve, for example, verifying signatures. Onchain applications that depend on this curve can become more gas efficient and secure relying on a precompile instead of some custom contract. This mainly applies to applications that want to reason about validators inside the EVM, e.g., staking pools, restaking, light clients, bridges but also zero-knowledge.
The new precompile adds the ability for every developer to easily, efficiently, and securely perform cryptographic operations using this curve, for example, verifying signatures. Onchain applications that depend on this curve can become more gas efficient and secure relying on a precompile instead of some custom contract. This mainly applies to applications that want to reason about validators inside the EVM, e.g., staking pools, [restaking](/restaking/), light clients, bridges but also zero-knowledge.

### Serve historical block hashes from state {#2935}

Expand Down
2 changes: 1 addition & 1 deletion public/content/web3/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Although Web3's killer features aren't isolated and don't fit into neat categori

Web3 gives you ownership of your digital assets in an unprecedented way. For example, say you're playing a web2 game. If you purchase an in-game item, it is tied directly to your account. If the game creators delete your account, you will lose these items. Or, if you stop playing the game, you lose the value you invested into your in-game items.

Web3 allows for direct ownership through [non-fungible tokens (NFTs)](/glossary/#nft). No one, not even the game's creators, has the power to take away your ownership. And, if you stop playing, you can sell or trade your in-game items on open markets and recoup their value.
Web3 allows for direct ownership through [non-fungible tokens (NFTs)](/glossary/#nft). No one, not even the game's creators, has the power to take away your ownership. And, if you stop playing, you can sell or trade your in-game items on open markets and recoup their value. Explore [onchain gaming](/gaming/) to see this in action.

<Alert variant="update">
<AlertEmoji text=":eyes:"/>
Expand Down
2 changes: 1 addition & 1 deletion public/content/zero-knowledge-proofs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ There are specific “privacy coins” designed for completely anonymous transac

By baking in zero-knowledge technology into the protocol, privacy-focused [blockchain](/glossary/#blockchain) networks allow [nodes](/glossary/#node) to validate transactions without needing to access transaction data. [EIP-7503](https://eips.ethereum.org/EIPS/eip-7503) is an example of a proposed design that will enable native private transfers of value on the Ethereum blockchain. Such proposals are, however, difficult to implement due to a mixture of security, regulatory, and UX concerns.

**Zero-knowledge proofs are also being applied to anonymizing transactions on public blockchains**. An example is Tornado Cash, a decentralized, non-custodial service that allows users to conduct private transactions on Ethereum. Tornado Cash uses zero-knowledge proofs to obfuscate transaction details and guarantee financial privacy. Unfortunately, because these are "opt-in" privacy tools they are associated with illicit activity. To overcome this, privacy has to eventually become the default on public blockchains.
**Zero-knowledge proofs are also being applied to anonymizing transactions on public blockchains**. An example is Tornado Cash, a decentralized, non-custodial service that allows users to conduct private transactions on Ethereum. Tornado Cash uses zero-knowledge proofs to obfuscate transaction details and guarantee financial privacy. Unfortunately, because these are "opt-in" privacy tools they are associated with illicit activity. To overcome this, privacy has to eventually become the default on public blockchains. Learn more about [privacy on Ethereum](/privacy/).

### Identity protection {#identity-protection}

Expand Down
3 changes: 2 additions & 1 deletion src/intl/en/page-10-year-anniversary.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,6 @@
"page-10-year-mint-card-ended-title": "The claim period has ended",
"page-10-year-mint-card-ended-description": "Thank you all for joining the celebration",
"page-10-year-video-aria-label": "10th anniversary video",
"page-10-year-nft-link-label": "View Ten Years Of Ethereum NFT on OpenSea"
"page-10-year-nft-link-label": "View Ten Years Of Ethereum NFT on OpenSea",
"page-10-year-terms-and-conditions": "Terms and conditions"
}