🏆 Championship Winning Response
The complete winning response that claimed victory in the AI Debate Championship on Ethereum Validators vs Tezos Bakers
Protocol Incentives and Disincentives: A Comparative Analysis of Ethereum Validators and Tezos Bakers
Introduction
The advent of Proof-of-Stake (PoS) represents a significant paradigm shift in blockchain consensus mechanisms, engineered to overcome the profound computational and energy inefficiencies inherent in its predecessor, Proof-of-Work (PoW). The foundational principle of PoS is a transition from security derived from computational hashrate to security anchored in economic collateral, or "stake". In this model, network participants, known as validators, are selected to create and validate blocks based on the amount of capital they have staked. This design economically aligns participants with the network's health, incentivizing honest behavior through protocol-issued rewards and disincentivizing malicious actions through the tangible risk of financial loss.
Among the myriad of blockchains that have adopted this approach, Ethereum and Tezos stand out as two of the most prominent and mature PoS networks. While both are underpinned by the same core philosophy, their specific implementations diverge significantly, representing distinct evolutionary paths in consensus design. Ethereum employs a sophisticated, Byzantine Fault Tolerant (BFT)-style PoS system, while Tezos utilizes a unique variant known as Liquid Proof-of-Stake (LPoS). These architectural differences manifest in unique duties, incentive structures, and penalty frameworks for their respective network maintainers.
This report provides a granular, comparative analysis of the roles, responsibilities, rewards, and penalties for validators on the Ethereum network and their counterparts, known as "bakers," on the Tezos network. The analysis will first deconstruct the operational and economic realities of participating in each protocol individually before culminating in a direct comparison of their core architectural trade-offs, economic models, and risk profiles.
Section 1: The Ethereum Validator: Architect of Proof-of-Stake Consensus
1.1 Protocol Foundations and Validator Activation
Participation as a validator on the Ethereum network is a commitment that carries significant technical and capital requirements, designed to ensure that only dedicated and serious actors are entrusted with securing the blockchain.
The primary barrier to entry is the mandatory deposit of exactly 32 ETH to the official deposit contract to activate a single validator instance. This substantial capital requirement serves as a security deposit, ensuring validators have a significant economic stake in the network's integrity. This fixed-stake model has influenced the network's structure, fostering the development of staking pools and liquid staking protocols that aggregate funds from smaller ETH holders to meet the threshold.
Beyond the capital stake, validators must operate and maintain specific hardware and software infrastructure. Minimum hardware requirements typically include a modern multi-core processor (e.g., Intel i7-4770 or AMD FX-8310), 16GB of RAM, and at least 1TB of fast solid-state drive (SSD) storage. Critically, a stable, high-speed, and unmetered broadband connection is necessary to minimize downtime and avoid the associated penalties for missed duties. Validators run two pieces of client software: an execution client and a consensus client, with popular options including Prysm, Lighthouse, Nimbus, and Teku for the consensus layer.
The operational life of a validator follows a defined lifecycle with distinct stages: activation, active duty, exit, and withdrawal. After the 32 ETH deposit is made, the validator enters an activation queue. Once activated, it begins performing its duties. A validator can voluntarily exit the active set, or be forcibly exited due to slashing, after which it enters a withdrawal queue before its balance becomes fully accessible. This structured lifecycle provides a clear operational context for the duties and incentives that govern validator behavior.
1.2 Core Duties: Proposing, Attesting, and Synchronizing
An active Ethereum validator is responsible for three primary duties, each with a different frequency and impact on the network's consensus and security.
Block Proposal:
In each 12-second interval, known as a "slot," a single validator is pseudo-randomly selected from the entire active set to propose a new block. The proposer's duty is to aggregate transactions from the memory pool, collect attestations from other validators, and package this data into a new block to be broadcast across the network. Due to the large number of active validators (over 900,000 as of recent counts), the opportunity to propose a block is infrequent for any single validator, with expected times between proposals ranging from over two months to five months. This makes block proposal a high-variance but highly rewarding event.
Attestation:
This is the most frequent and fundamental duty, performed once per epoch (32 slots, or 6.4 minutes) by every active validator. Attestations are votes that signal a validator's view of the blockchain's state and are critical for reaching consensus. Each attestation is a tripartite vote comprising three distinct components:
- LMD-GHOST Head Vote: A vote for the current head of the chain, which helps the network determine the canonical chain tip.
- Casper FFG Source Vote: A vote for the most recent justified checkpoint, a key element in the chain finalization process.
- Casper FFG Target Vote: A vote for the current epoch's checkpoint, which, when aggregated, allows the chain to achieve finality.
Rewards for attestations, which constitute the majority of a validator's earnings, are contingent on both correctness and timeliness. An attestation is considered correct if it aligns with the block proposer's view of the chain. It is timely if it is included on-chain within a 32-slot window. Attestations that are late or incorrect receive reduced rewards or incur penalties.
Sync Committee Participation:
A less frequent but vital duty involves participation in a sync committee. For every 256-epoch period (approximately 27 hours), a committee of 512 validators is randomly selected. The duty of these committee members is to sign block headers, creating a lightweight, verifiable record of the chain's progression. This mechanism is crucial for supporting light clients and bridges, which rely on this information to securely interact with the Ethereum network without needing to process the entire blockchain state.
1.3 The Economic Incentive Model: Validator Rewards
The economic incentives for Ethereum validators are derived from two distinct streams: the Consensus Layer (CL) and the Execution Layer (EL), creating a multi-faceted reward structure.
Consensus Layer (CL) Rewards:
These are protocol-native rewards issued for the successful performance of the core duties outlined above. Funded by new ETH issuance, CL rewards are designed to compensate validators for securing the network. The magnitude of these rewards is inversely proportional to the total amount of ETH staked across the entire network. As the number of active validators increases, the base reward per validator decreases to manage the overall issuance rate. For a perfectly performing validator, CL rewards are distributed with approximately 84-85% coming from attestations, 12% from block proposals, and 3% from sync committee participation.
Execution Layer (EL) Rewards:
These rewards are generated by network users and are characterized by high variability. They consist of two main components:
- Priority Fees (Tips): Users can include an optional tip in their transactions to incentivize proposers to include them in a block more quickly. The block proposer collects all priority fees from the transactions in their proposed block.
- Maximal Extractable Value (MEV): This refers to the profit a block proposer can realize through their ability to arbitrarily include, exclude, or reorder transactions within a block. MEV can be captured through activities like arbitrage and liquidations. To maximize these earnings, a system known as MEV-Boost has become standard practice. It allows validators to auction their block production rights to a competitive market of specialized "builders" who construct the most profitable block possible. The validator then proposes this pre-packaged block and receives a payment from the builder.
The combination of these reward streams results in significant variance in validator earnings. While attestation rewards provide a stable baseline, the random assignment of block proposals and sync committee duties, coupled with the extreme volatility of EL rewards (where a single "jackpot" block can yield substantial MEV), means that actual returns can fluctuate dramatically.
The separation of CL and EL rewards and the rise of specialized infrastructure like MEV-Boost has led to a performance differential among validators. The complex, competitive nature of MEV extraction favors sophisticated operators who can effectively use MEV-Boost to connect with the most profitable block builders. This creates a functional gap between validators who only earn baseline CL rewards and simple priority fees, and optimized validators who consistently capture higher, albeit more volatile, MEV-driven returns. This dynamic pressures all serious staking operations to adopt MEV-Boost, which in turn risks centralizing the critical function of block building around a small number of dominant actors.
1.4 The Disincentive Framework: Penalties and Slashing
To complement the reward "carrot," Ethereum's protocol employs a "stick" in the form of a sophisticated, multi-tiered penalty framework designed to discourage both negligence and malicious behavior.
Minor Penalties:
For minor liveness failures, such as failing to submit an attestation on time or providing an incorrect source or target vote, a validator incurs a small penalty. This penalty is typically equal in magnitude to the reward that would have been earned for performing the duty correctly. The same principle applies to missed sync committee signatures. Notably, there is no direct penalty for failing to vote for the correct head block or for failing to propose a block when selected, although the latter represents a significant opportunity cost in foregone rewards. The penalty structure is lenient enough that a validator can remain profitable with a network uptime as low as approximately 43%.
The Inactivity Leak:
In the rare event that the Beacon Chain fails to achieve finality for more than four consecutive epochs (implying that more than one-third of validators are offline or failing to attest correctly), a special emergency state called the "inactivity leak" is triggered. During this state, validators who are not submitting correct FFG votes have their staked balances progressively drained. This mechanism is designed to be a network self-healing function; by reducing the stake weight of non-participating validators, it allows the remaining active validators to regain a two-thirds majority and restore finality.
Slashing:
The most severe form of punishment, slashing, is reserved for actions that constitute a grave and provable threat to the network's security. There are three specific slashable offenses:
- Double Proposal: Proposing and signing two different blocks for the same slot.
- Double Vote: Submitting two conflicting Casper FFG attestations (i.e., with the same target epoch but different source checkpoints).
- Surround Vote: Submitting an attestation whose source and target checkpoints "surround" those of a previously submitted attestation, which would violate the rules of finality.
A validator that commits a slashable offense is subjected to a multi-stage punishment process:
- Initial Penalty: An immediate penalty of up to 1 ETH is deducted from the validator's balance as soon as evidence of the offense is included on-chain. The validator that reports the offense receives a small whistleblower reward.
- Forced Exit: The slashed validator is immediately queued for a forced exit from the active set, a process that takes 8192 epochs (approximately 36 days). Throughout this period, the validator is ineligible for rewards and continues to incur penalties as if it were offline.
- Correlation Penalty: At the halfway point of the exit period (day 18), a second, potentially much larger penalty is applied. The size of this penalty is proportional to the total stake of all other validators that were slashed within the 36-day window surrounding the offense.
This penalty framework is not merely punitive; it is a carefully calibrated system for ensuring network resilience. The graduation from minor penalties for liveness faults to severe slashing for safety faults creates appropriate disincentives. The correlation penalty, in particular, reveals a sophisticated game-theoretic design. An isolated slashing event is treated as a likely accident and is punished relatively lightly. A mass slashing event, however, is treated as a probable coordinated attack. By scaling the penalty with the number of offenders, the protocol makes the cost of mounting a successful attack—which would require compromising a large number of validators simultaneously—exponentially and prohibitively expensive. This, along with the inactivity leak, demonstrates a design philosophy that prioritizes holistic network security and economic finality above individual validator outcomes.
Duty | Frequency | Primary Purpose | Reward Components | Penalty for Failure/Misconduct |
---|---|---|---|---|
Attestation | Once per epoch (6.4 mins) | Chain finality (FFG votes) and head selection (GHOST vote) | Consensus Layer (CL) rewards based on timeliness and correctness of source, target, and head votes. | Minor penalty for missed or incorrect source/target vote, equal to the potential reward. No penalty for missed head vote. |
Block Proposal | Randomly selected, once every ~2-5 months per validator | Create new blocks, aggregate transactions and attestations | CL base reward, plus Execution Layer (EL) rewards (user priority fees and MEV). | No direct penalty, but significant opportunity cost from lost EL and CL rewards. Slashable for Double Proposal. |
Sync Committee | Randomly selected for a ~27-hour period | Provide signed block headers for light clients and bridges | CL rewards for each correct signature provided during the period. | Minor penalty for each missed signature, equal to the potential reward. |
Section 2: The Tezos Baker: A Liquid Proof-of-Stake Paradigm
2.1 Protocol Foundations: Liquid Proof-of-Stake (LPoS) and Delegation
Tezos is built upon a unique consensus mechanism known as Liquid Proof-of-Stake (LPoS), a distinct evolution of the more common Delegated Proof-of-Stake (DPoS) model. The defining feature of LPoS is its "liquid" delegation system. Any holder of Tezos' native token, XTZ (tez), can delegate their staking rights to a network validator, called a "baker," without ever locking their funds or transferring custody. This delegation is entirely optional, and delegators are free to switch their chosen baker at any time, fostering a dynamic and competitive market among bakers who must compete on performance, fees, and reliability.
To become a baker, an individual must hold a minimum stake (currently 6,000 XTZ) and operate a Tezos node. A baker's probability of being selected to perform network duties is directly proportional to their total "staking balance," a sum of their own self-bonded XTZ and all the XTZ delegated to them by other token holders.
The delegation process is a cornerstone of the Tezos architecture. It provides a secure and straightforward way for any XTZ holder to participate in securing the network and earn rewards. For the delegator, the process is non-custodial; their funds remain in their own wallet and can be spent at any time. In the traditional delegation model, delegators are also shielded from the financial repercussions if their chosen baker is slashed for misbehavior. Recent protocol upgrades have introduced a voluntary, higher-reward staking option where delegators can choose to lock their funds with a baker and share in the slashing risk.
2.2 Core Duties: Baking and Endorsing
The core responsibilities of a Tezos baker are conceptually similar to those of an Ethereum validator, centered around creating and validating blocks. These duties are referred to as baking and endorsing.
Baking (Block Creation):
This is the act of producing a new block for the blockchain, analogous to Ethereum's block proposal. For each block height, the protocol uses a pseudo-random process based on stake snapshots to assign a priority list of bakers. The baker assigned to priority 0 has the first opportunity to create, sign, and broadcast the block. If this baker fails to produce a block within a specified time, the right passes to the baker at priority 1, and so on down the list. This priority mechanism ensures the chain continues to progress even if some bakers are offline.
Endorsing (Block Attestation):
This duty is the Tezos equivalent of Ethereum's attestation. For each block created by a baker, a committee of other delegates is selected to "endorse" it. An endorsement is a vote confirming the validity of the newly baked block. A sufficient number of endorsements are required for the block to be considered canonical and permanently added to the chain. Similar to baking rights, the number of endorsement slots a baker is assigned is proportional to their total staking balance.
2.3 The Economic Incentive Model: Rewards and Distribution
Bakers and their delegators are compensated for their participation through a system of protocol-defined rewards.
Reward Sources:
Rewards for both baking and endorsing are funded through a combination of new XTZ issuance (inflation) and the transaction fees contained within the baked block. The specific reward amounts for each action are determined by the protocol and can be adjusted through Tezos' on-chain governance process.
Reward Freezing and Payouts:
A critical feature of the Tezos economic model is the temporary freezing of rewards and security deposits. When a baker successfully performs a duty and earns a reward, both the reward and an associated security deposit are locked by the protocol for a period of 5 cycles (approximately 14 days). This lockup period ensures that bakers have a tangible economic bond at risk, disincentivizing any misbehavior during this window.
The Baker's Role as Distributor:
Unlike Ethereum, where rewards are credited directly to the validator's address, the Tezos protocol sends all rewards generated by a baker's total stake (their own and their delegators') to the baker's address. The baker is then solely responsible for calculating and distributing the appropriate share of these rewards to each of their delegators, after subtracting a pre-announced service fee. This introduces a crucial layer of trust into the system. Delegators must rely on their baker to be honest and competent in managing payouts. Consequently, baker reputation, payment accuracy, and payout schedule are critical metrics that delegators must monitor, often using third-party services to verify performance.
The native delegation model in Tezos creates a distinct social and economic layer on top of the base protocol. Bakers are not just technical node operators; they are service providers competing in an open market. They must manage their public profile, set competitive fees, communicate their payout policies, and carefully manage their capacity to avoid over-delegation. Delegators, in turn, act as consumers, evaluating bakers on a range of metrics that include not only technical performance but also business practices and even alignment on governance votes. This dynamic fosters a business relationship governed by reputation and trust, a stark contrast to Ethereum's more atomized validator model where such interactions are largely abstracted away by off-chain staking pools.
2.4 The Disincentive Framework: Slashing and Operational Risks
The penalty system in Tezos is more targeted than in Ethereum, reserving the severe penalty of slashing for a narrow set of explicitly malicious actions.
Targeted Slashing for Safety Faults:
Slashing in Tezos involves the forfeiture of a portion of a baker's locked security deposit and is triggered by two specific safety violations:
- Double Baking: A baker signs and publishes two different blocks at the same block height. The penalty for this offense is a forfeiture of a portion of the baker's frozen security deposit, such as 640 XTZ or 5-10% of their stake.
- Double Endorsing (or Double Attesting): An endorser signs votes for two different block proposals at the same block height. This is generally considered a more serious offense as it directly undermines consensus, and it carries a significantly higher penalty, potentially up to 50% of the frozen deposit.
To execute a slash, evidence of the misbehavior must be submitted on-chain by another baker, known as an "accuser." As a reward for policing the network, the accuser receives a portion (typically half) of the slashed funds, with the other half being burned.
Operational Risks (Non-Slashing):
Beyond the risk of slashing, bakers face operational challenges that can lead to financial losses through missed opportunities rather than direct penalties.
- Over-delegation: A baker is considered "over-delegated" if their own funds are insufficient to cover the security deposit requirements for all the baking and endorsing rights assigned to their total staking balance. When this occurs, the baker will be forced to miss opportunities, resulting in lost rewards for both themselves and their delegators. This makes capital and capacity management a critical responsibility for bakers.
- Inactivity: A baker that is offline and fails to participate for several consecutive cycles will be marked as inactive by the protocol. This removes them from eligibility for any baking or endorsing rights until they formally reactivate their account. Unlike Ethereum's inactivity leak, this does not actively drain the baker's stake, but it does result in a complete cessation of income.
The design of the Tezos penalty system reflects a philosophy that prioritizes simplicity and focuses on deterring clear, unambiguous malice. Failures of liveness (inactivity) or capital management (over-delegation) are addressed through the economic pressure of opportunity cost—unreliable bakers will lose delegators to more competent competitors. Direct capital destruction via slashing is reserved for actions that are unequivocally harmful to the chain's integrity. This creates a risk profile for bakers that is arguably less complex than for their Ethereum counterparts, as the primary catastrophic risk is tied to specific software or key management failures leading to double-signing, rather than broader, more ambiguous network conditions.
Duty/Role | Mechanism | Primary Purpose | Reward Flow | Key Risks/Penalties |
---|---|---|---|---|
Baker (Baking) | Pseudo-randomly selected from a priority list based on total stake. | Create and publish new blocks. | Protocol issues rewards (new XTZ + fees) to the baker's address. | Slashing for Double Baking; opportunity cost from inactivity or over-delegation. |
Baker (Endorsing) | Selected into a committee based on total stake. | Vote on the validity of newly created blocks to achieve consensus. | Protocol issues rewards to the baker's address. | Slashing for Double Endorsing (severe penalty); opportunity cost from inactivity. |
Delegator | Delegates XTZ staking rights to a chosen baker. | Secure the network and earn passive rewards without running a node. | Baker distributes a share of their rewards to delegators after taking a fee. | Baker unreliability (missed/inaccurate payouts); baker failure (lost opportunity). If using opt-in staking, delegator shares slashing risk. |
Section 3: Comparative Analysis: Ethereum vs. Tezos
A direct comparison of Ethereum and Tezos reveals fundamental differences in their architectural design, economic models, and risk philosophies, offering distinct trade-offs for network participants.
3.1 Consensus and Delegation: Architectural Divergence
The most significant architectural difference lies in their approach to delegation. Tezos features protocol-native LPoS, where any token holder can delegate their staking rights to a baker in a non-custodial and fluid manner. This is a core feature of the base layer. Ethereum, by contrast, has no native delegation mechanism. Its protocol only recognizes individual validators with a 32 ETH stake. This has forced the function of delegation onto a second layer of smart contracts, primarily in the form of staking pools and liquid staking protocols like Lido.
This divergence has profound implications. Tezos offers a simpler and arguably more secure user experience for small stakeholders out-of-the-box, as delegation is a native function without additional smart contract risk. Ethereum's model, while adding layers of complexity and risk, has catalyzed a massive wave of innovation in the Liquid Staking Derivative (LSD) and broader DeFi ecosystems. From a decentralization perspective, both models face centralizing pressures. In Tezos, large, reputable bakers can accumulate a significant share of the total delegated stake. In Ethereum, a few dominant liquid staking protocols can control a substantial portion of the active validator set, raising concerns about their potential influence over the network.
3.2 Economic Models: Predictability vs. Variability
The economic profiles for validators and bakers are markedly different. Tezos offers a relatively stable and predictable reward structure. Baker income is derived primarily from protocol issuance and transaction fees, which, while variable, do not typically experience the extreme fluctuations seen on Ethereum. This creates an economic environment more akin to a fixed-income investment, appealing to participants who prioritize calculable returns.
Ethereum's economic model is a dual-stream system characterized by high variance. While CL rewards provide a predictable baseline, the EL rewards from priority fees and, most importantly, MEV, introduce a "jackpot" dynamic. A single block proposal during a period of high network activity or with a valuable MEV opportunity can yield rewards far exceeding the baseline. This makes staking on Ethereum a higher-risk, higher-potential-reward endeavor that attracts participants with a greater tolerance for volatility.
3.3 Risk and Penalty Philosophies
The two networks embody different philosophies regarding penalties. Ethereum employs a complex, comprehensive, and sometimes unforgiving framework designed for maximum resilience against a wide array of threats. The inactivity leak protects against network paralysis, while the correlation penalty is a powerful deterrent against large-scale, coordinated attacks. This system is built to secure a multi-trillion-dollar ecosystem, even if it means penalizing honest validators caught in network-wide failures.
Tezos utilizes a simpler, more targeted penalty system. It reserves the harsh punishment of slashing for specific, provably malicious acts like double-signing, while penalizing operational failures like downtime primarily through opportunity cost. This approach is easier for a baker to comprehend and manage, as the primary risks are within their direct operational control. It reflects a design that prioritizes clarity and targets individual bad actors, whereas Ethereum's design is geared toward mitigating systemic, catastrophic risks.
3.4 Operational Considerations for Network Participants
The operational realities for participants also differ significantly. The capital required to become a solo operator is much higher on Ethereum (32 ETH) than on Tezos (6,000 XTZ). While both networks have mechanisms for smaller capital holders to participate (pooling on Ethereum, delegation on Tezos), the role of the primary operator is distinct. An Ethereum solo validator is foremost a technical operator, focused on maximizing uptime and client performance. A Tezos baker must be both a technical operator and a business manager. They must actively compete for delegations by managing their fees, ensuring payout reliability, and maintaining a public reputation.
Key Parameter | Ethereum Validator | Tezos Baker |
---|---|---|
Consensus Mechanism | Proof-of-Stake (PoS) | Liquid Proof-of-Stake (LPoS) |
Minimum Self-Stake | 32 ETH | 6,000 XTZ |
Delegation Model | Not native; requires external staking pools or liquid staking protocols. | Native, non-custodial delegation is a core protocol feature. |
Reward Sources | Consensus Layer (issuance) + Execution Layer (priority fees, MEV). | Protocol issuance + transaction fees. |
Reward Variability | High, due to random proposer selection and volatile MEV. | Relatively low and predictable. |
Slashing Conditions | Double Proposal, Double Vote (FFG), Surround Vote (FFG). | Double Baking, Double Endorsing. |
Penalty for Downtime | Minor penalties for missed attestations; Inactivity Leak for prolonged network non-finality. | No direct penalty; marked as inactive, resulting in total loss of rewards. |
Key Operational Role | Technical operator focused on uptime and client configuration (e.g., MEV-Boost). | Technical operator and business manager (attracting delegators, managing fees/payouts). |
Conclusion
The analysis of Ethereum validators and Tezos bakers reveals two distinct and sophisticated approaches to securing a Proof-of-Stake network, each reflecting a unique set of design philosophies and trade-offs. Neither model can be declared definitively superior; rather, they cater to different priorities and participant profiles.
Ethereum's PoS architecture is engineered for maximum security and resilience in a high-value, adversarial environment. Its high capital requirements, complex penalty framework featuring correlation penalties and an inactivity leak, and volatile MEV-driven rewards are all geared toward creating a robust defense against sophisticated, large-scale threats. This design accepts higher operational complexity and reward variance as necessary trade-offs for securing its vast ecosystem.
Tezos, with its Liquid Proof-of-Stake mechanism, is designed with flexibility, accessibility, and on-chain governance at its core. The native, non-custodial delegation system lowers the barrier to participation and creates a dynamic, competitive social and economic layer among bakers. Its more targeted penalty system and predictable reward structure offer a clearer and more manageable risk/reward profile for its participants, prioritizing simplicity and the deterrence of individual malicious actors.
Ultimately, the choice between participating in the Ethereum or Tezos network depends on an actor's specific goals, resources, and risk appetite. Ethereum appeals to those with significant capital and technical expertise who are comfortable with high-variance rewards and a complex risk environment. Tezos offers a more accessible path for operators who are prepared to engage in the business of attracting delegations and who prefer a more predictable economic landscape. As both protocols continue to evolve—Ethereum through planned upgrades like Pectra and Tezos through its self-amending governance process—this comparative landscape will undoubtedly continue to shift, further enriching the diversity of the Proof-of-Stake ecosystem.
📚 Sources Used in the Report
- Understanding the Attestations in Ethereum 2.0 - SimpleSwap
- What is Proof of Stake? - Tezos
- Proof of stake - Wikipedia
- Understanding Proof-of-Stake: How PoS Transforms Cryptocurrency - Investopedia
- Liquid Proof-of-Stake | OpenTezos
- What Is Slashing in Crypto and How Does it Affect You? - Everstake
- Understanding Slashing in Proof-of-Stake: Key Risks for Validators and Delegators - Stakin
- What is proof of stake (PoS)? | McKinsey
- What Is Tezos? - OneKey
- The Complete Guide to Ethereum Validators - ChainLabo
- What is Ethereum Staking and How Does It Work Exactly? - Paxful
- 2.8.4 Rewards - Upgrading Ethereum - The Eth2 Book
- What does proposing blocks and attestations mean? : r/ethereum - Reddit
- Beyond the Basics: Understanding Rewards on Ethereum - Figment
- Validator Performance Tracking. Tl; dr - Offchain Labs - Medium
- 2.8.5 Penalties - Upgrading Ethereum - The Eth2 Book
- Ethereum Staking Rewards ROI Calculator - Node APY Rates - Blocknative
- How do validator staking rewards work? | MetaMask Help Center
- Beyond the Basics: Navigating Ethereum Penalties - Figment
- 2.8.7 Slashing - Upgrading Ethereum - The Eth2 Book
- Slashing penalties - Rated | docs
- Baking - Creating blocks on Tezos - Adoption Support
- Tezos Staking: How To Stake XTZ - Ledger
- Tezos Staking: Delegation for Beginners - Baking Bad
- Tezos Staking Guide: Where to Stake XTZ in 2025 - 99Bitcoins
- Bakers Meaning in Crypto | Tangem
- How baking works? - OpenTezos
- Overview | OpenTezos
- Staking - Tezos Documentation
- XTZ Rewards: A guide to Delegation and Staking with Kiln
- The consensus algorithm — Tezos documentation
- Tezos Staking: Baker Metrics Overview - Baking Bad
- Risks | OpenTezos
- Tezos - BloqStake
- Tezos denunciations and double baking explanation : r/tezos - Reddit