Staking glossary



Archival node

  • Stores everything kept in a full node and builds an archive of historical states.

  • Archive nodes are required if you want to query something like an account balance at a particular block.

  • This data represents units of terabytes (more than 20TB for Geth), which makes archive nodes less attractive for most users but can be handy for services like block explorers, wallet vendors, and chain analytics.

Syncing clients in any mode other than archive will result in pruned blockchain data. This means, there is no archive of all historical states but the full node is able to build them on demand.

Archive nodes aren't required to participate in block validation and can theoretically be built from scratch by simply replaying the blocks from genesis.

Source โ†—

Attestation

Votes by validators which confirm the validity of a block. At designated times, each validator is responsible for publishing different attestations that formally declare a validator's current view of the chain, including the last finalized checkpoint and the current head of the chain.

Every active validator creates one attestation per epoch (~6.5 minutes), consisting of the following components:

ComponentDescription

Committee

A bitlist of validators where the position maps to the validator index in their committee. The value (0/1) indicates whether the validator signed the data (i.e. whether they are active and agree with the block proposer).

Slot

The slot number that the attestation references.

Index

A number that identifies which committee the validator belongs to in a given slot.

Chain head vote

(beacon_block_root)

The root hash of the block the validator sees at the head of the chain (the result of applying the fork-choice algorithm).

Source

Part of the finality vote indicating what the validators see as the most recently justified block.

Target

Part of the finality vote indicating what the validators see as the first block in the current epoch.

Signature

A BLS signature that aggregates the signatures of individual validators.

An important component related to effectiveness is the chain head vote. This is a vote the validator makes about what it believes is the latest valid block in the chain at the time of attesting. The structure of a chain head vote consists of the following components:

  • Slot - Defines where the validator believes the current chain head to be.

  • Hash - Defines what the validator believes the current chain head to be to be.

The combination uniquely defines a point on the blockchain. By combining enough of these chain head votes the Ethereum network reaches consensus about the state of the chain.

Source (ethereum.org) โ†— Source (Attestant) โ†—

Attestation aggregator

Although the data in each attestation is relatively small, it mounts up quickly with tens of thousands of validators. As this data will be stored forever on the blockchain, minimizing it is important, and this is done through a process known as attestation aggregation.

Aggregation takes multiple attestations that have all chosen to vote with the same committee, chain head vote, and finality vote, and merges them together into a single aggregate attestation.

An aggregate attestation differs in two ways from a simple attestation. First, there are multiple validators listed. Second, the signature is an aggregate signature made from the signatures of the matching simple attestations. Aggregate attestations are very efficient to store, but introduce additional communications and computational burdens.

If every validator was required to aggregate all attestations it would quickly overload the network with the number of communications required to pass every attestation to every validator. Equally, if aggregating were purely optional then validators will not bother to waste their own resources doing so. Instead, a subset of validators is chosen by the network to carry out aggregation duties1. It is in their interest to do a good job, as aggregate attestations with higher numbers of validators are more likely to be included in the blockchain so the validator is more likely to be rewarded.

Validators that carry out this aggregation process are known as aggregators.

Source โ†—

Beacon chain

A major part of the work of the beacon chain is storing and managing the registry of validators โ€“ the set of participants are responsible for running the Ethereum Proof of Stake (PoS) system.

This registry is used to:

  • Assigns validators their duties.

  • Finalizes checkpoints.

  • Perform a protocol level random number generation (RNG).

  • Progress the beacon chain.

  • Vote on the head of the chain for the fork choice.

Source โ†—

Block

A block is a bundled unit of information that include an ordered list of transactions and consensus-related information. Blocks are proposed by Proof of Stake (PoS) validators, at which point they are shared across the entire peer-to-peer network, where they can easily be independently verified by all other nodes. Consensus rules govern what contents of a block are considered valid, and any invalid blocks are disregarded by the network. The ordering of these blocks and the transactions therein create a deterministic chain of events with the end representing the current state of the network.

Block proposer

A chosen validator by the Beacon Chain to propose the next block. There can only be one valid block per slot.

Block status

Proposed

The block was proposed by a validator.

Scheduled

Validators are currently submitting data.

Missed/skipped

The proposer didnโ€™t propose the block within the given time frame, so the block was missed/skipped.

Orphaned

In order to understand this, let us look at the diagram below "1, 2, 3, ... ,9" represent the slots.

  1. Validator at slot 1 proposes the block โ€œaโ€.

  2. Validator at slot 2 proposes โ€œbโ€.

  3. Slot 4 is being skipped because the validator didnโ€™t propose a block (e.g.: offline).

  4. At slot 5/6 a fork occurs: Validator(5) proposes a block, but validator(6) doesnโ€™t receive this data (e.g.: the block didnโ€™t reach them fast enough). Therefore Validator(6) proposes its block with the most recent information it sees from validator(3).

  5. The fork choice rule โ†— is the key here - It decides which of the available chains is the canonical one.

Canonical chain

The canonical chain is the chain which is agreed to be the 'main' chain and not a fork.

Chain head

The latest block received by a validator. This does not necessarily mean it is the head of the canonical chain.

Checkpoints

The Beacon Chain has a tempo divided into slots (12 seconds) and epochs (32 slots). The first slot in each epoch is a checkpoint. When a supermajority of validators attests to the link between two checkpoints, they can be justified and then when another checkpoint is justified on top, they can be finalized.

Client

An implementation of Ethereum software that verifies transactions in a block. These can be consensus layer clients or execution layer clients. Each validator needs both an execution layer client and a consensus layer client.

Committees

A group of at least 128 validators is assigned to validate blocks in each slot. One of the validators in the committee is the aggregator, responsible for aggregating the signatures of all other validators in the committee that agree on an attestation. Not to be confused with sync committees.

Consensus layer

Ethereum's consensus layer is the network of consensus clients.

Deposit contract

The Deposit contract is the gateway to Ethereum Proof of Stake (PoS) and is managed through a smart contract on Ethereum. The smart contract accepts any transaction with a minimum amount of 1 ETH and valid input data. Ethereum beacon nodes listen to the deposit contract and use the input data to credit each validator.

More info on the deposit contract

Effectiveness

The average time it takes for a validator's attestations to be included in the chain.

Check out our page explaining validator effectiveness in more detail

Epoch

1 Epoch = 32 Slots Represents the number of 32 slots (12 seconds) and takes approximately 6.4 minutes. Epochs play an important role when it comes to the validator queue and finality.

Execution layer

Ethereum's execution layer is the network of execution clients.

Finalization

In Ethereum Proof of Stake (PoS) at least two third of the validators have to be honest, therefore if there are two competing epochs and one third of the validators decide to be malicious, they will receive a penalty. Honest validators will be rewarded.

In order to determine if an epoch has been finalized, validators have to agree on the latest two epochs in a row, then all previous Epochs can be considered as finalized.

Finality issues

If there are less than 66.6% of the total possible votes (the participation rate) in a specific epoch, the epoch cannot be justified. As mentioned in "Finalization", three justified epochs in a row are required to reach finality. As long as the chain cannot reach this state it has finality issues.

During finality issues, the validator entry queue will be halted and new validators will not be able to join the network, however, inactive validators with less than 16 ETH balance will be exited from the network. This leads to more stability in the network and a higher participation rate, allowing the chain to eventually finalize.

Fork

A change in protocol causing the creation of an alternative chain or a temporal divergence into two potential block paths. Also see hard fork

Full node

Stores and maintains the full blockchain data on disk. It serves blockchain data upon request and helps support the network by participating in block validation and by verifying all blocks and states. All states can be derived from a Full node.

Source โ†—

Genesis block

The first block in a blockchain, used to initialize a particular network and its cryptocurrency.

Hard fork

A hard fork occurs when an update is being pushed to the Ethereum network and the new version of the software forks from the old version. Usually requires operators to update their validator software to stay on the correct side of the fork. Also see fork

Head vote

The validator has made a timely vote for the correct head block.

Inactivity leak

If the Beacon Chain has gone more than four epochs without finalizing, an emergency protocol called the "inactivity leak" is activated. The ultimate aim of the inactivity leak is to create the conditions required for the chain to recover finality. Finality requires a 2/3 majority of the total staked ether to agree on source and target checkpoints. If validators representing more than 1/3 of the total validators go offline or fail to submit correct attestations then it is not possible for a 2/3 supermajority to finalize checkpoints. The inactivity leak lets the stake belonging to the inactive validators gradually bleed away until they control less than 1/3 of the total stake, allowing the remaining active validators finalize the chain. However large the pool of inactive validators, the remaining active validators will eventually control >2/3 of the stake. The loss of stake is a strong incentive for inactive validators to reactivate as soon as possible!

Inclusion distance

The inclusion distance of a slot is the difference between the slot in which an attestation is made and the lowest slot number of the block in which the attestation is included. For example, an attestation made in slot s and included in the block at slot s + 1 has an inclusion distance of 1. If instead the attestation was included in the block at slot s + 5 the inclusion distance would be 5.

The value of an attestation to the Ethereum network is dependent on its inclusion distance, with a low inclusion distance being preferable. This is because the sooner the information is presented to the network, the more useful it is.

To reflect the relative value of an attestation, the reward given to a validator for attesting is scaled according to the inclusion distance. Specifically, the reward is multiplied by 1/d, where d is the inclusion distance.

Input data

The Input data, also called the deposit data, is a user generated, 842 long sequence of characters. It represents the validator public key and the withdrawal public key, which were signed with by the validator private key. The input data needs to be added to the transaction to the deposit contract in order to get identified by the beacon-chain.

More info about the deposit process

Justification

66.6% of the total validators need to attest in favour of a block's inclusion in the canonical chain. This condition upgrades the block to "justified". Justified blocks are unlikely to be reverted, but they can be under certain conditions.

When another block is justified on top of a justified block, it is upgraded to "finalized". Finalizing a block is a commitment to include the block in the canonical chain.

More info on justification โ†—

Light clients

An Ethereum client that does not store a local copy of the blockchain, or validate blocks and transactions. It offers the functions of a wallet and can create and broadcast transactions.

MEV

MEV or "maximal extractable value", is a controversial topic. Node operators can extract MEV by accepting blocks built by "searchers", via a small side program called "mev-boost โ†—" by Flashbots. In this case, the Consensus Layer client such as Nimbus, Teku, etc. will, when asked to procure a block to propose, get blocks from MEV relays via mev-boost and from the Execution Layer client such as Besu, Geth, etc. and then choose whichever block from the relay pays best. The local Execution Layer client will only build a block when no block is offered by the relay (e.g the relay is down) or the min-bid offered is lower than the locally set value. If a blinded block from a relay has already been signed, then a local block will not be built so double signing does not occur. For this reason, when a validator signs a block from the relay, it is trusting that the relay will submit that signed block to the network.

Rewards from MEV are paid to the same suggested fee recipient address as priority fees.

Source โ†—

Mempool

When an Ethereum node receives a transaction, it is not instantly added to a block. The transaction is held in a waiting area or a buffer zone.

The transaction goes from a number of levels of verification such as it checks whether the output is greater than the input, whether the signature is valid or not, etc., and then only it is added to a block. The transaction is not added to a block if it fails any of these validations. The role of a mempool comes while a transaction is going through these checks. It is simply kept in this waiting area or a mempool. As soon as the transaction confirms, it is removed from the mempool and added to a block. Mempool is not a master reference shared universally by all nodes. Thereโ€™s no โ€œoneโ€ mempool. This means each node configures its own rules for the nodeโ€™s mempool. In fact, a node can be the first to receive a transaction but it is possible that it might not have propagated the transaction to the rest of the network.

Source โ†—

Node

Any instance of Ethereum client software that is connected to other computers also running Ethereum software, forming a network. A node doesnโ€™t necessarily need a validator but a validator requires a node. Running a node by itself does not generate any revenue but does contribute to the robustness of the network.

Operator

A person who maintains a validator

Participation rate

The participation rate is the percentage of validators that are online and performing their duties.

If the validator set is 1,000 validators, and 250 validators are offline or rarely making proposals or attestations, then it could be estimated that the participation rate is 75%.

Source โ†—

Peers

Other nodes running Ethereum clients that connect to each other over a peer-to-peer network. Communication between peers is how the Ethereum network remains decentralized as there is no single point of failure.

Priority fees

Almost all transaction on Ethereum set a priority fee โ†— to incentivize block proposers to include the transaction as a higher priority than others. The higher the fee relative to other transactions currently waiting in the mempool This fee is paid to the block proposer. All of the priority fees in a block are aggregated and paid in a single state change directly to the suggested fee recipient set by the block proposer. This address could be a hardware wallet, a software wallet, or even a multi-sig contract.

Private key

A secret number that allows Ethereum users to prove ownership of an account or contracts, by producing a digital signature.

Proof of stake (PoS)

A method by which a cryptocurrency blockchain protocol aims to achieve distributed consensus. PoS asks users to prove ownership of a certain amount of cryptocurrency (their "stake" in the network) in order to be able to participate in the validation of transactions.

Public key

A number, derived via a one-way function from a private key, which can be shared publicly and used by anyone to verify a digital signature made with the corresponding private key.

Signing

Demonstrating cryptographically that a message or transaction was approved by the holder of a specific private key).

Slashable offenses

If your validator commits a slashable offense it will be force exited from the validator pool and will have ETH deducted depending on the circumstances of the event. Typically, this will be 1-2 ETH but could be significantly more โ†—.

This is not something to be overly worried about, there are simple steps you can take to make sure that you don't invoke a slashing event.

There are three ways a validator can be slashed, all of which amount to the dishonest proposal or attestation of blocks.

Attestation violation

  • Double voting: Signing two different attestations in one epoch.

  • Surround votes: Attesting to a block that "surrounds" another one (effectively changing history).

Proposer violation

Slasher node

The slasher is its own entity but requires a beacon-node to receive attestations. To find malicious activity by validators, the slashers iterate through all received attestations until a slashable offense has been found. Found slashings are broadcasted to the network and the next block proposer adds the proof to the block. The block proposer receives a reward for slashing the malicious validator. However, the whistleblower (Slasher) does not receive a reward.

Slot

32 Slots = 1 Epoch A time period of 12 seconds in which a randomly chosen validator has time to propose a block. The total number of validators is split up in committees and one or more individual committees are responsible to attest to each slot. One validator from the committee will be chosen to be the aggregator, while the other 127 validators are attesting. After each Epoch, the validators are mixed and merged to new committees. Each slot may or may not have a block in it as a validatory could miss their proposal (e.g. they may be offline or submit their block too late). There is a minimum of 128 validators per committee.

Solo staker

An operator who runs a validator on the Ethereum network without a protocol between their validator and the Beaconchain

Source vote

The validator has made a timely vote for the correct source checkpoint.

Staker

Someone who has deposited ETH into a validator to secure the network. This can be someone who runs a validator (an operator) or someone who deposited their ETH into a pool, where someone else is the operator of the validator.

Staking deposit CLI

A command-line tool used to generate validator keys and deposit data files.

Suggested fee recipient

The fee recipient is an Ethereum address nominated by a Beacon Chain validator to receive tips from user transactions and MEV.

Sync committee

A sync committee is a randomly selected group of validators that refresh every ~27 hours. Their purpose is to add their signatures to valid block headers. Sync committees allow light clients to keep track of the head of the blockchain without needing to access the entire validator set. Occurs every 2 years on average, however, there can be "dry spells" multiple times longer than the average without being given one. So if your validator is selected... congratulations! ๐Ÿฅณ

Target vote

The validator has made a timely vote for the correct target checkpoint.

Validator

A node in a Proof of Stake (Pos) system responsible for storing data, processing transactions, and adding new blocks to the blockchain. To activate validator software, you need to be able to stake 32 ETH. A validator's job is to propose blocks and sign attestations. It has to be online for at least 50% of the time in order to have positive returns. A validator is run by an operator (a human), on hardware (a computer) and is paired with a node (many thousand validators can run on one node).

Eligible for activation & Estimated activation

Refers to pending validators. The deposit has been recognized by the Beacon Chain at the timestamp of โ€œEligible for activationโ€. If there is a queue of pending validators โ†—, an estimated timestamp for activation is calculated.

Unique index

Every validator receives a unique index based on when they are added from the validator queue.

Current balance & Effective balance

The current balance is the amount of ETH held by the validator as of now. The effective Balance represents a value calculated by the current balance. It is used to determine the size of a reward or penalty a validator receives. The effective balance can never be higher than 32 ETH.

In order to increase the effective balance, the validator requires โ€œeffective balance + 1.25 ETHโ€. In other words, if the effective balance is 20 ETH, a current balance of 21.25 ETH is required in order to have an effective balance of 21 ETH. The effective balance will adjust once it drops by 0.25 below the threshold as seen in the examples above.

Here are examples of how the effective balance changes:

  • If the Current balance is 32.00 ETH โ€“ the Effective balance is 32.00 ETH.

  • If the Current balance dropped from 22 ETH to 21.76 ETH โ€“ Effective balance will be 22.00 ETH.

  • If the Current balance increases to 22.25 and the effective balance is 21 ETH, the effective balance will increase to 22 ETH.

Validator lifecycle

1. Deposited

32 ETH has been deposited to the ETH1 deposit-contract and this state will be kept for around 7 hours. This offers security in case the Ethereum chain gets attacked.

2. Pending

Waiting for activation on the Beacon Chain.

Before validators enter the validator queue, they need to be voted in by other active validators. This occurs every 4 hours.

3. Active validator

Currently attesting and proposing blocks.

The validator will stay active until:

  • Its balance drops below 16 ETH (ejected).

  • Voluntary exit.

  • It gets slashed.

4. Slashing validator

The Validator has been malicious and will be slashed and kicked out of the system.

A Penalty is a negative reward (e.g. for going offline). A Slashing is a large penalty (โ‰ฅ 1/32 of balance at stake) and a forceful exit ... . - Justin Drake

5. Exiting validator

  • Ejected: The validator balance fell below a threshold and was kicked out by the network.

  • Exited: Voluntary exit, the withdrawal key holder has the ability to withdraw the current balance of the corresponding validator balance.

Validator pool

The number of currently active validators securing the Ethereum network. The current validator pool can be seen here โ†—.

Validator queue

The validator queue is a first-in-first-out queue for activating and exiting validators on the Beacon Chain.

  • Until 327680 active validators in the network, 4 validators can be activated per epoch. For every (4 * 16384) = 65536 active validators, the validator activation rate goes up by one.

  • 5 validators per epoch requires 327680 active validators, allowing 1125 validators per day.

  • 6 validators per epoch requires 393216 active validators, allowing 1350 validators per day.

  • 7 validators per epoch requires 458752 active validators, allowing 1575 validators per day.

  • 8 validators per epoch requires 524288 active validators, allowing 1800 validators per day.

  • 9 validators per epoch requires 589824 active validators, allowing 2025 validators per day.

  • 10 validators per epoch requires 655360 active validators, allowing 2200 validators per day.

  • Amount of activations scales with the amount of active validators and the limit is the active validator set divided by 64.

Exiting validators works in the same way, with the amount of validators that can exit the Beacon Chain per day rate limited to preserve the stability of the network.

Validator seed phrase / mnemonic

The Seed Phrase or Mnemonic is a set of words (usually 12, 18 or 24 words long) used to generate your validator keys. Your mnemonic is the backup for your validator keys and is the ONLY way to withdraw your ETH, and no one can help you recover your mnemonic if you lose it.

Withdrawal address

An address that can be optionally set when creating a validator key that will be used to withdraw staked ETH. If this address is not set at the time of key creation it can be set at the time of withdrawal instead. For more information about setting the withdrawal address on key creation, see our FAQ answer.

Last updated