Crypto

What miners and validators actually do

Miners and validators add new blocks and keep a blockchain in agreement. They do the same job but earn the right differently: computing power versus staked funds.

What miners and validators actually do

Quick answer

Miners and validators collect transactions, check them, assemble blocks and extend the chain. Miners earn the right to add a block by solving a computational puzzle (proof of work); validators earn it by staking the network's currency (proof of stake). Both are rewarded for honesty and penalised for cheating.

Key points

  • Both collect, verify and batch transactions into blocks
  • Miners earn block rights by solving a computational puzzle
  • Validators earn block rights by staking the network's currency
  • Both are paid in block rewards plus transaction fees
  • Neither can forge transactions or silently rewrite history

Miners and validators are the participants who add new blocks to a blockchain and keep the network’s copies in agreement. They do the same core job — proposing and confirming batches of transactions — but they earn the right to do it in different ways. Miners spend computing power; validators lock up funds as a stake.

The job they share

Every blockchain needs some way to decide who gets to write the next page of the ledger and how everyone agrees on it. Miners and validators are the answer. Regardless of the mechanism, their shared responsibilities are:

  • Collecting transactions from the pool of pending, unconfirmed transactions circulating on the network.
  • Checking validity — confirming each transaction is properly signed and that the sender is not spending funds they do not have or have already spent.
  • Assembling a block of valid transactions and proposing it to the rest of the network.
  • Extending the chain by building on the blocks other participants have produced, which is how the network converges on one shared history.

That last point is central. These participants are not just adding data; they are continuously voting, with either work or stake, on which version of history is the real one. How that agreed history becomes settled is covered in how a crypto transaction gets confirmed.

What miners do

Miners operate on proof-of-work networks, of which Bitcoin is the best-known. To earn the right to add a block, a miner must find a solution to a computational puzzle. The puzzle involves repeatedly running the block’s data through a hashing function while changing a small value, searching for an output that meets a difficulty target. There is no clever shortcut; it is essentially trial and error at enormous scale, which is why miners run specialised hardware performing trillions of attempts per second.

The first miner to find a valid solution broadcasts the block, and other participants can verify the solution instantly even though finding it was hard. This asymmetry — hard to produce, easy to check — is what makes the system work. The winning miner receives a reward, and the network’s total computing power (its hash rate) is what secures it: rewriting history would mean out-computing everyone else combined.

The network automatically adjusts the puzzle’s difficulty so that blocks arrive at a roughly steady pace regardless of how much mining power joins or leaves. More miners does not mean faster blocks; it means a harder puzzle.

What validators do

Validators operate on proof-of-stake networks, such as Ethereum after its 2022 transition to proof of stake. Instead of racing to solve a puzzle, a validator puts up a deposit of the network’s own currency — a stake — as a bond. The protocol then selects validators to propose and attest to blocks, with selection weighted so that having more at stake means being chosen more often.

The stake is what keeps validators honest. If a validator behaves correctly, it earns rewards. If it tries to cheat — for example, by proposing conflicting blocks — the protocol can destroy part or all of its stake, a penalty called slashing. So the security model swaps “you must spend real resources to attack” for “you must risk losing your deposit to attack.” No large-scale hardware race is required; the economic bond does the work.

Because validators verify rather than compute, running one demands far less energy than mining. The trade-off is that it requires capital locked up as stake, and often a minimum amount to participate directly.

Miners versus validators at a glance

Miners (proof of work) Validators (proof of stake)
Earn the right to add a block by Solving a computational puzzle Staking the network’s currency
Main cost Hardware and electricity Capital locked as stake
Dishonesty is deterred by Wasted energy and lost reward Slashing of the staked deposit
Energy use High Comparatively low

The deeper mechanical comparison, including how each resists attack, is the subject of proof of work vs proof of stake, mechanically.

How they get paid

In both systems the participant who adds a block is compensated, and the reward typically has two parts. The first is a block reward — newly issued coins created by the protocol as an incentive. The second is the transaction fees attached to the transactions in that block, paid by users to have their transactions included. As some networks reduce or eliminate new issuance over time, fees are designed to make up a larger share of the reward. The fee side is explained in what gas fees actually pay for.

This reward structure is the engine of the whole arrangement. It makes honest participation profitable and, in a well-designed system, makes attacking the network more expensive than it could ever be worth.

Pools: why participants combine forces

In both systems, acting alone can be impractical for smaller participants, so people often pool their resources. In proof of work, a single miner might wait an extremely long time to ever win a block on their own, because the puzzle is a probabilistic race dominated by huge operations. A mining pool lets many miners combine their computing power and share the rewards in proportion to the work each contributed, turning rare, lumpy payouts into a steadier income. Proof of stake has an analogous idea in staking pools, which let people who cannot meet a network’s minimum stake, or who do not want to run their own validator, combine funds and share the rewards.

Pools are convenient, but they raise a genuine concern: concentration. If a small number of pools come to control a large share of a network’s mining power or stake, the system’s practical decentralisation weakens, even though anyone is still free to join. The security assumption behind both mechanisms is that no single party controls too much of the resource, so the distribution of pools is something observers watch. It is a reminder that decentralisation is a matter of degree and can drift over time, not a fixed guarantee baked in once and forgotten.

What miners and validators do not do

It is easy to overstate their power, so a few clarifications help:

  • They cannot forge transactions. They can choose which valid transactions to include and in what order, but they cannot spend funds they do not control, because every transaction must carry a valid signature.
  • They cannot silently rewrite history. Altering a past block would require redoing all the work or re-staking for every block since, faster than the rest of the network moves — which is precisely what the system is built to make impractical.
  • They do not judge whether a transaction is “good.” Their role is to enforce the protocol’s rules, not to police intent. A validly signed transaction is includable regardless of purpose.

In other words, their authority is bounded by the rules. They keep the ledger consistent; they are not its owners.

What this means

Miners and validators are two answers to the same question: on a network with no central authority, who writes the next block, and why should anyone trust them? Miners answer with expended computation; validators answer with money placed at risk. Both are rewarded for honesty and both would lose more than they could gain by cheating. Understanding the distinction demystifies a lot of crypto vocabulary — mining rigs, staking, slashing, hash rate — and shows that behind the jargon sits a simple idea: make honest block production the most profitable strategy. For the ledger they are collectively maintaining, see what a blockchain actually is.

Sources

  1. Bitcoin white paper (Nakamoto, 2008)
  2. Ethereum proof-of-stake docs

Frequently asked questions

What is the difference between a miner and a validator?

They do the same job of adding blocks, but a miner earns the right by solving a computational puzzle (proof of work), while a validator earns it by staking the network's currency as a bond (proof of stake).

Can a miner or validator steal my funds?

No. They can choose which transactions to include and in what order, but every transaction needs a valid signature, so they cannot spend funds they do not control.

How do miners and validators get paid?

They receive a block reward of newly issued coins plus the transaction fees attached to the transactions they include in their block.

Last reviewed: 26 Aug 2026 Next review: 26 Feb 2027 Section: Crypto
Liam Chen
Protocol & security writer · Blockchain mechanics, wallet security, cryptography

Liam Chen writes about how crypto works at the protocol level — consensus, cryptography, wallets and security. He explains mechanisms plainly and cites primary sources.

More by Liam Chen

Related

Crypto

What gas fees actually pay for

Gas fees pay for the computation your transaction needs and ration limited block space. Here is what they actually fund…

Liam Chen · Aug 26, 2026 · 6 min