Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolved the numbering in the last topic "PoS vs PoW" #740

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -205,26 +205,8 @@ So, while a 51% attack is theoretically possible, the immense cost, risk, and po
| Aspect | Proof of Work (PoW) | Proof of Stake (PoS) |
| --- | --- | --- |
| Consensus Mechanism | Miners compete to solve complex cryptographic puzzles to validate transactions and create new blocks. | Validators are randomly selected based on the amount of cryptocurrency they hold and are willing to "stake." |
| Energy Consumption | 1. Extremely energy-intensive due to the need
for large amounts of computational power to
solve cryptographic puzzles.
2. Bitcoin alone uses more energy than some
countries. | 1. Significantly lower energy consumption as no
extensive computations are needed to
validate blocks.
2. Environmentally sustainable compared to
PoW. |
| Hardware Requirements | 1. Requires specialized and expensive
hardware (e.g., ASICs for Bitcoin) to mine
profitably.
2. Leads to centralization of mining power in
large mining pools or farms with access to
these high-end hardware setups. | 1. Validators only require standard server-grade
hardware, making it more accessible to a
larger audience.
2. No need for specialized hardware (e.g.,
ASICs), which are expensive and create
centralization risks. |
| Energy Consumption | <ol><li>Extremely energy-intensive due to the need for large amounts of computational power to solve cryptographic puzzles.</li><li>Bitcoin alone uses more energy than some countries.</li></ol> | <ol><li>Significantly lower energy consumption as no extensive computations are needed to validate blocks.</li><li>Environmentally sustainable compared to PoW.</li></ol> |
| Hardware Requirements | <ol><li>Requires specialized and expensive hardware (e.g., ASICs for Bitcoin) to mine profitably.</li><li>Leads to centralization of mining power in large mining pools or farms with access to these high-end hardware setups.</li></ol> | <ol><li>Validators only require standard server-grade hardware, making it more accessible to a larger audience.</li><li>No need for specialized hardware (e.g., ASICs), which are expensive and create centralization risks.</li></ol> |
| Rewards Distribution | The first miner to solve the cryptographic puzzle receives block rewards and transaction fees. | Validators earn transaction fees as rewards for validating blocks, and their income is proportional to the amount staked. |
| 51% Attack Vulnerability | A malicious actor needs to control 51% of the network's mining power to execute an attack, which requires significant investment in hardware. | An attacker would need to own 51% of the total cryptocurrency supply to execute a successful attack, making it extremely costly. |
| Transaction Speed | Transactions can be slower due to the time taken to solve puzzles, leading to congestion during peak times. | Generally offers faster transaction processing times since block creation is based on stake rather than competition. |
Expand Down