From deda1d540ed7c9663f492bf4de9310b9d4dfe20a Mon Sep 17 00:00:00 2001 From: sanghunka Date: Sat, 29 Aug 2026 23:37:46 +0900 Subject: [PATCH 1/2] fix proof-of-work copy spacing --- src/pages/consensus/ConsensusProofOfWorkPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/consensus/ConsensusProofOfWorkPage.tsx b/src/pages/consensus/ConsensusProofOfWorkPage.tsx index a1237a8..d0c149e 100644 --- a/src/pages/consensus/ConsensusProofOfWorkPage.tsx +++ b/src/pages/consensus/ConsensusProofOfWorkPage.tsx @@ -43,7 +43,7 @@ export function ConsensusProofOfWorkPage() {

- Proof of Work solves this by forcing nodes to solve a cryptographic puzzle + Proof of Work solves this by forcing nodes to solve a cryptographic puzzle{' '} before proposing a block. The puzzle draws on an older idea used to reduce spam: require significant computational work. To produce a block, a node must find a nonce{" "} (a number) such that when the block data (including the nonce) is hashed, the output From 87c4918f5e962ed741c2c683904ecfb479ac1728 Mon Sep 17 00:00:00 2001 From: sanghunka Date: Sun, 30 Aug 2026 01:46:00 +0900 Subject: [PATCH 2/2] fix proof-of-stake copy spacing --- src/pages/consensus/ConsensusProofOfStakePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/consensus/ConsensusProofOfStakePage.tsx b/src/pages/consensus/ConsensusProofOfStakePage.tsx index bfcfdcc..bd85884 100644 --- a/src/pages/consensus/ConsensusProofOfStakePage.tsx +++ b/src/pages/consensus/ConsensusProofOfStakePage.tsx @@ -83,7 +83,7 @@ export function ConsensusProofOfStakePage() {

Economic finality means blocks are considered final once a supermajority - of validators (2/3+1) has voted on them. Before PoS, systems relied on + of validators (2/3+1) has voted on them. Before PoS, systems relied on{' '} probabilistic finality: treating a block as final after a certain number of confirmations. Remnants remain. For Ethereum: 1 epoch is the "safe" block (probabilistic), and 2 epochs is economic finality.