What Is Attestation in Proof of Stake?

An attestation is a validator's signed vote about which block heads the chain and which checkpoint should be finalized. This explains what's inside an attestation, how votes aggregate, and why attesting — not proposing — is a validator's real job.
Lewis Jackson
CEO and Founder

An attestation is a validator's signed vote about the state of the chain: which block it believes is the current head, and which checkpoints it believes should be locked in as final. In a proof-of-stake network, attestations are how the chain finds out what its validators actually think. Blocks are proposed by one validator at a time, but a block only means something once thousands of other validators have attested to it.

Most explanations of proof of stake focus on the proposer — the validator chosen to build the next block. That's understandable; it's the visible job. But it's also rare. On Ethereum, with well over a million active validators and one proposer per 12-second slot, an individual validator might wait months between proposals. What every validator does constantly, once per epoch, every epoch, is attest. Attesting is the day job. Proposing is the occasional lottery win. If you want to understand what "voting weight" or "two-thirds of stake" actually refers to when people discuss PoS security, the answer is attestations.

What's Inside an Attestation

An Ethereum attestation is compact, but it's carrying three votes in one signature, and the three do different jobs:

  • The head vote names the block the validator sees as the current head of the chain. This feeds LMD-GHOST, the fork choice rule — the algorithm every node runs to decide which branch is canonical when competing blocks exist. Head votes are the slot-by-slot steering.
  • The source vote names the last checkpoint the validator considers justified — the most recent epoch boundary that already gathered a two-thirds supermajority.
  • The target vote names the checkpoint the validator is trying to justify now: the first block of the current epoch.

The source and target votes feed Casper FFG, the finality mechanism. When two-thirds of all staked ETH attests to the same source-target pair, the target checkpoint becomes justified; when the next checkpoint is justified on top of it, the earlier one becomes final — economically irreversible, in the sense that reverting it would require at least a third of all staked ETH to be slashed.

So one small signed message is simultaneously steering the chain's short-term growth and casting a ballot in its long-term finality. That dual role is worth sitting with, because it explains why attestation health is the vital sign of a proof-of-stake network. If attestations stop flowing, the chain doesn't just get slower — it stops finalizing.

How Attestations Actually Move

The obvious design — every validator votes on every block — doesn't survive contact with the numbers. Over a million validators broadcasting a signature every 12 seconds would drown the network in messages before it did anything else. The protocol solves this two ways.

First, it rations the votes. Each validator attests exactly once per epoch, and the validator set is shuffled into committees spread across the epoch's 32 slots. Each slot, that slot's committees vote; by the end of the epoch, every active validator has spoken exactly once. One complete voting round per epoch, paid out in 32 installments.

Second, it compresses them. Attestations use BLS signatures, which have a convenient mathematical property: many signatures over the same message can be merged into a single aggregate signature that verifies as one. Within each slot, designated aggregators collect the individual attestations from their committee and bundle the matching ones. The next block doesn't carry thousands of separate votes — it carries a handful of dense aggregates. Without aggregation, committee-based voting still wouldn't fit; with it, a block can represent the voice of tens of thousands of validators in a few kilobytes.

Timing matters here, and it's tight. Inside the 12-second slot, the block is published in the first four seconds, attestations are cast in the middle four, and aggregation happens in the final four. A validator that attests late — because its node was slow, or the block reached it late — earns less than one that attests on time, and an attestation that arrives too late to be included does nothing at all.

The Incentives, and What Slashing Is Not

Attestation rewards are where a validator makes most of its money. The protocol scores each attestation on whether the source, target, and head votes were correct and timely, and pays accordingly. Miss the attestation entirely and you take a small penalty. Vote for the wrong head because your node was momentarily confused? You just forfeit part of the reward. This is ordinary wear and tear — every validator drops attestations occasionally, and the design tolerates it.

Slashing is a different category, and the distinction gets muddled constantly. Being offline or wrong is penalized lightly. What gets a validator slashed — a forced exit plus a meaningful loss of stake — is equivocation: signing two different attestations for the same target epoch, or signing one attestation that "surrounds" another. Both amount to voting twice, which is the one thing a voting system can't tolerate. An honest validator running one properly configured node essentially can't commit these offenses by accident; the classic way it happens is running the same validator key on two machines for redundancy. The protocol doesn't punish being wrong. It punishes trying to have it both ways.

Where the Constraints Live

The hard constraint is bandwidth arithmetic. Committee scheduling and BLS aggregation exist because a global network physically cannot carry one message per validator per slot at this scale. That constraint shapes everything downstream — including finality taking about two epochs, since a full round of voting takes an epoch to collect.

The soft constraint is the two-thirds participation assumption. Justification needs a supermajority of stake attesting, correctly and on time. The network has run above that line for almost its entire history, but not without incident: in May 2023, Ethereum mainnet briefly lost finality twice when consensus clients choked on an unusual load of old attestations. Blocks kept being produced — the chain kept moving — but checkpoints stopped finalizing for around an hour. It recovered on its own, and it remains the clearest real-world demonstration that block production and finality are separate systems with separate failure modes.

What's Changing

The attestation mechanism ran essentially unchanged from the Beacon Chain's launch in December 2020 until the Pectra upgrade in May 2025, which made two adjustments worth knowing about. One restructured the attestation message itself (EIP-7549) so that identical votes from different committees aggregate together instead of separately — same votes, fewer and denser aggregates. The other raised the maximum effective balance per validator (EIP-7251), letting large operators consolidate many 32-ETH validators into fewer, bigger ones. Fewer validators means fewer attestations for the same stake, which relieves load without changing what an attestation is.

The direction of travel is the interesting part: both changes are about compressing the voting apparatus, and that's exactly the bottleneck single-slot finality has to solve. SSF would ask every validator to vote every slot rather than once per epoch — which is an aggregation problem before it's anything else. As of mid-2026 it remains a research direction with no scheduled fork. If it ships, the once-per-epoch cadence described here gets retired.

What Would Confirm or Break the Picture

Health looks boring: participation comfortably above two-thirds, the large majority of attestations landing on time with correct head votes, checkpoints finalizing on the two-epoch cadence. The stress signals are equally specific — participation sagging toward the threshold, timeliness degrading network-wide, or finality delays recurring beyond the isolated 2023-style incident. A redesign signal is different from a stress signal: SSF or another restructuring of the voting cadence reaching a scheduled hard fork wouldn't mean attestations failed; it would mean the protocol replaced this arrangement deliberately.

Boundary Statement

This describes what an attestation is and the role it plays in Ethereum's consensus. It isn't a validator-operations manual — the exact reward weights, penalty amounts, and slashing math have precise values this post doesn't cover — and it says nothing about the value of ETH or the returns from staking. The specifics are Ethereum's: other proof-of-stake designs vote differently (Tendermint-style chains, for instance, have every validator vote on every block, which is exactly the pattern Ethereum's scale rules out). The mechanism works as described today; how long the once-per-epoch cadence survives is a question the roadmap hasn't settled.

Related Posts

See All
Crypto Research
New XRP-Focused Research Defining the “Velocity Threshold” for Global Settlement and Liquidity
A lot of people looking at my recent research have asked the same question: “Surely Ripple already understands all of this. So what does that mean for XRP?” That question is completely valid — and it turns out it’s the right question to ask. This research breaks down why XRP is unlikely to be the internal settlement asset of CBDC shared ledgers or unified bank platforms, and why that doesn’t mean XRP is irrelevant. Instead, it explains where XRP realistically fits in the system banks are actually building: at the seams, where different rulebooks, platforms, and networks still need to connect. Using liquidity math, system design, and real-world settlement mechanics, this piece explains: why most value settles inside venues, not through bridges why XRP’s role is narrower but more precise than most narratives suggest how velocity (refresh interval) determines whether XRP creates scarcity or just throughput and why Ripple’s strategy makes more sense once you stop assuming XRP must be “the core of everything” This isn’t a bullish or bearish take — it’s a structural one. If you want to understand XRP beyond hype and price targets, this is the question you need to grapple with.
Read Now
Crypto Research
The Jackson Liquidity Framework - Announcement
Lewis Jackson Ventures announces the release of the Jackson Liquidity Framework — the first quantitative, regulator-aligned model for liquidity sizing in AMM-based settlement systems, CBDC corridors, and tokenised financial infrastructures. Developed using advanced stochastic simulations and grounded in Basel III and PFMI principles, the framework provides a missing methodology for determining how much liquidity prefunded AMM pools actually require under real-world flow conditions.
Read Now
Crypto Research
Banks, Stablecoins, and Tokenized Assets
In Episode 011 of The Macro, crypto analyst Lewis Jackson unpacks a pivotal week in global finance — one marked by record growth in tokenized assets, expanding stablecoin adoption across emerging markets, and major institutions deepening their blockchain commitments. This research brief summarises Jackson’s key findings, from tokenized deposits to institutional RWA chains and AI-driven compliance, and explains how these developments signal a maturing, multi-rail settlement architecture spanning Ethereum, XRPL, stablecoin networks, and new interoperability layers.Taken together, this episode marks a structural shift toward programmable finance, instant settlement, and tokenized real-world assets at global scale.
Read Now

Related Posts

See All
No items found.
Lewsletter

Weekly notes on what I’m seeing

A personal letter I send straight to your inbox —reflections on crypto, wealth, time and life.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.