Live prices are currently unavailable — the exchange feed could not be reached and no recent cached reading is held.

Comparisons

Proof of work and proof of stake, compared on their own terms

Both mechanisms exist to make rewriting history expensive. They differ in what the expense is made of: work that has already been performed and cannot be recovered, or capital that is posted and can be taken away.

What each mechanism makes expensive

A consensus mechanism has one job: to make it costly to produce a competing history. Proof of work does this by requiring a miner to spend electricity and hardware on a hash puzzle before a block can be proposed, so an attacker who wants to rewrite a stretch of chain must redo the work for every block they wish to replace, and must do it faster than the honest network extends the chain. The cost is sunk the moment it is spent, and it is paid in a commodity that can be bought by anyone with access to power and equipment.

Proof of stake replaces the external expenditure with a bond held inside the protocol. Ethereum's consensus specification describes a validator as an entity that posts ether as collateral and verifies and attests to the validity of blocks, and it draws the parallel explicitly: this is similar to proof-of-work networks in which miners provide collateral in the form of hardware and hash power. The bond is not consumed by participating; it is forfeited only if the validator breaks the rules. The specification defines two such offences, proposing two conflicting blocks in the same slot and signing two conflicting attestations, and calls the penalty for either slashing: the burning of some amount of the validator's funds and immediate ejection from the active validator set.

The distinction that matters is between a cost that is paid whether or not you attack, and a cost that is paid only if you do. A miner pays for every block it attempts, honest or not. A validator pays nothing beyond the opportunity cost of the bond until it misbehaves, at which point the penalty is applied by the protocol itself rather than by the market.

Energy, hardware and who can participate

The energy question follows directly from the cost model. Proof of work converts electricity into security, and the security budget is therefore tied to the price of power and the price of the asset: a miner will keep hashing while the expected reward exceeds the cost of the electricity. This is why the mechanism is often described as anchoring the chain to a physical input, and why its critics treat the same property as waste. The honest framing is that proof of work buys a specific kind of assurance, and the electricity is what it costs.

Proof of stake removes the external expenditure and replaces it with a capital requirement. Participation is gated by how much of the asset a validator is willing to lock, not by access to cheap power or specialised machines. That lowers the barrier in one direction and raises it in another: a validator needs to acquire the asset rather than a machine, and the return on the bond competes with every other use of that capital. Ethereum's documentation notes that issuance is divided among validators and that the total depends on how much ether is staked, so the yield falls as more capital joins.

The two designs also differ in what an attacker must acquire. To attack a proof-of-work chain profitably, an adversary needs a majority of hash rate, which is hardware and energy that can be rented or bought on a market. To attack a proof-of-stake chain, an adversary needs a majority of the staked asset, which is a position that must be accumulated in public markets and that loses value if the attack succeeds. Neither requirement is trivially satisfiable, and the two are not directly comparable in cost.

Settlement, finality and the validator economy

The mechanisms produce different settlement behaviour. Bitcoin's chain is extended by whichever miner finds the next valid block, and a transaction is considered settled as it accumulates confirmations; the assurance is probabilistic and grows with depth. Ethereum's proof-of-stake chain reaches finality through attestations, in which validators vote on checkpoints and a supermajority of the staked weight finalises them. The specification's attestation machinery, including committees, aggregation and the slashing conditions that punish conflicting votes, exists to make that finality enforceable.

The validator economy is where the two systems diverge most sharply in practice. A miner's revenue is the block subsidy plus fees, and it is spent on hardware and power that has a resale value and an alternative use. A validator's revenue is issuance plus priority fees, and its costs are the opportunity cost of the bond, the infrastructure to run a node, and the risk of penalties for being offline or for misbehaving. Ethereum's documentation records that validators can be penalised for going offline and slashed for breaking the rules, with the penalty removed from circulation rather than paid to anyone.

Neither mechanism is a free lunch, and neither is a settled scientific question. Proof of work has the longer operating record and a security argument that rests on physics and markets. Proof of stake has a far smaller energy footprint and a penalty mechanism that acts inside the protocol, and it depends on the assumption that the staked asset retains value and that the validator set remains sufficiently distributed. A reader weighing them should ask which assumption they find more credible, because that is where the real disagreement lies.

Sources and references

The mechanism descriptions above are taken from each network's own specification. No figure is stated that the cited source does not carry.

  • Validators, collateral and slashing. Ethereum Consensus Specs, Phase 0 — Honest Validator: a validator posts ether as collateral, and slashing burns funds and ejects the validator from the active set.
  • The beacon chain and attestations. Ethereum Consensus Specs, Phase 0 — The Beacon Chain: the beacon chain stores and manages the validator registry, and attestations are the primary source of load.
  • Issuance to validators and penalties. ethereum.org, How the Merge impacted ETH supply: stakers are issued ether, and offline or slashed validators lose balance that is not paid to any other account.
  • Bitcoin's block subsidy and block reward. Bitcoin Developer Reference, Block Chain: the block subsidy plus transaction fees form the block reward paid to the miner.