Skip to main content

Liquid Proof-of-Stake

In "Blockchain Basics" module, you understood that the main objective of a consensus mechanism is maintaining a common history throughout the whole peer-to-peer network. There are countless consensus algorithms, and they all have their pros and cons. Notably, Bitcoin's Proof-of-Work has two major flaws:

  • Energy consumption
  • Common users are excluded from the mining activity

In this chapter, we will go into more details about the Tezos' "Liquid Proof-of-Stake", created to lift those flaws and the ones from its predecessors: "Proof-of-Stake" and "Delegated Proof-of-Stake".

Let's first review these two.

Proof-of-Stake (PoS) [1][2]

While PoW assures that each network participant has performed a certain amount of work to receive rewards, PoS requires participants to prove that they are willing to guarantee the integrity of the blockchain by sequestering a certain amount of coins.

In Proof-of-Stake, validators replace miners. A validator gathers transactions and creates blocks. Several methods exist to select a validator, which we will review in the following paragraphs. In this consensus mechanism, they have to lock their funds to have a chance to be a validator, which makes it "Sybil resilient". This mechanism represents a low energy cost alternative to PoW. Moreover, a 51% attack would not be profitable as a hacker bets his own money and risks losing it if detected [3] (see also further the Nothing at Stake section). Therefore validators would not benefit from a decision against the general opinion of the network. In addition, holding 51% of the token would demand enormous amounts of liquidity, making this scenario very unlikely.

Removing PoW isn't without consequences. With the Nakamoto consensus, PoW allows for chain selection, maintains regular blocks' issuance, regulates coins' creation, and selects the miner receiving rewards. PoW consumes too much energy. However, this energy connects to the physical world and supports the Mutual-Assured-Destruction (MAD) property (see Main Properties chapter in Blockchain Basics module) in return (miners' investments into machines and electricity). Hence, replacing PoW leads to previous fundamental questions about building a consensus to compensate for the losses.

BFT in DLT

In the "Blockchain Basics" module, we talked about the Byzantine Fault Tolerance and how Bitcoin roughly supports 50% faulty nodes. Three fundamental elements of research let us lay the foundations for a new consensus algorithm: The CAP Theorem; the FLP Impossibility; the Fault Tolerance Bounds.

Let's remind these results:

CAP Theorem [4]

  • Consistency:
    Every read receives the most recent write or an error
  • Availability:
    Every request receives a (non-error) response
  • Partition tolerance:
    The system continues to operate despite an arbitrary number of messages being dropped (or delayed) by the network between nodes

In cases of partitions like connectivity issues, you must exclusively choose between consistency or availability.

FLP Impossibility [5]

The Fisher, Lynch, and Patterson's Impossibility shows that, with no guaranteed bounds on network latency, it is impossible to reach consensus even with a single faulty node. This absence of limits for latency is characteristic of an asynchronous setting.

FT's Bounds from DLS paper [6]

The Dwork, Lynch, and Stockmeyer paper gives us three significant bounds on Fault Tolerance:

  • Consensuses running on a partially synchronous network can tolerate up to one third (13\frac{1}{3}) faulty nodes
  • Deterministic consensuses running on an asynchronous network cannot tolerate faulty nodes (this becomes 13\frac{1}{3} with randomized algorithms)
  • Consensuses running on a synchronous network can tolerate up to 100% faulty nodes (with some restrictions exceeding 50%)

PoW consensus is more reliant on a synchronous model, while PoS is more reliant on a BFT model. In PoW synchronous models, FT decreases with latency (around 13\frac{1}{3} at block time latency). PoS consensuses keep track of validators and validators' set size, thus making them partially synchronous.

Keeping in mind validators' selection and rewards' distributions, we can distinguish two main categories for a PoS consensus:

Chain-based PoS (Synchronous; Availability)BFT PoS (Partially synchronous; Consistency)
Randomly select a validator from a set during a time slot. The validator creates the next valid block. Example: Casper (with as much consistency as possible)Randomly select validators who propose blocks. Then voting rounds elect the next block. There is a chain but blocks are partially independent. Validators have to be honest and online. Example: Tendermint

At this point, we already need to prevent cartels from forming. For comparison with PoW, it is like to impede attacks like "Selfish Mining"[7]. There are other problems and various solutions.

Main potential weaknesses of PoS

In this section, we'll describe the 5 best known problems[1][2] we encounter if we try to construct a Proof-of-Stake algorithm:

"Rich get richer"

To be able to stake, you need a certain holdings' amount. This means that if you are not rich enough, you can't participate to the staking.
Moreover, if rewards chances are proportional to previous holdings, wealth naturally concentrates on the biggest ones. In turn, these holdings grow even bigger with time. A capped supply is an important point here. If it isn't, then creating new tokens allows you to deflect the impact of inflation and to participate in the maintaining of the network. It is problematic: The concentration of power causes a decreasing incentive to participate. However, all users don't want to be staking validators and would make payments.

Nothing at Stake

In chain-based PoS, there weren't penalties and only rewards for producing blocks. Hence, there was no incentive to choose the correct chain. In PoW, the chain with the most accumulated work naturally attracts miners. They invest their electricity and power in the most probable part of the network where the next block should appear. Not doing so would lead to implicit penalties. On the contrary, in PoS, a validator can split his stake on every chain and be assured to stake something on the correct chain. He has nothing to lose. There will never be a consensus in this case. This also makes the "P+ϵ\epsilon attack"[8] possible.

It seems apparent that introducing penalties would instantly solve this problem. The implementations of these penalties aren't that easy.
The first strategy is to punish validators who simultaneously create a block on different chains. To detect this behavior, we need to include a proof of misbehavior. Creating this proof requires correctly identify validators and control the timing of blocks' issuance and penalties. Nodes have to be frequently online.
The second strategy is to punish validators who create a block on the wrong chain as if we were in a PoW system. This strategy requires less timing control but puts validators more at risk. To establish this strategy in this kind of BFT algorithm, we can use the following points:

In BFT PoS (see section BFT in DLT above), we define four criteria with two sets of rules and two properties [1]:

  • Rules

    • Finality conditions: rules that determine when a given block is finalized.
    • Slashing conditions: rules that determine when a given validator can be deemed to have misbehaved.
  • Properties

    • Accountable safety: if conflicting valid blocks are finalized, then at least 13\frac{1}{3} of all validators must have violated some slashing condition.
    • Plausible progression: there exists a set of messages that 23\frac{2}{3} of validators can produce and finalize some value.

Even if we can produce a proof of misbehavior and punish a validator, there is a major problem in the misbehavior qualification. Indeed, in the conflicting chains scenario, there can be false positives. Switching from a chain to another is a medium to establish consensus. Punishing this behavior is counterproductive. There can be no equilibrium between punishments and rewards, so no convergence.

An idea would then be to introduce harder and harder punishments as time goes by. Validators could change their mind while multiple rounds of staking take place. Though, the more they wait, the severer the sanctions.

Stake grinding

PoS randomly selects the blocks' validators from a pool (with stake-proportional probability). The source of randomness must be inside the consensus system. The difficulty is finding the component on which relies the randomness generator. If the blocks are used to generate the entropy, then stakers could try to manipulate the content to attribute themselves some future blocks. Blocks' content manipulations would require computing power and electricity, which is similar to an attack used in PoW systems.

Finding an efficient source of pseudo-randomness and implementing it is a complex matter in blockchain technologies.

Hot wallet attack

To stake, validators need to be online and sign with a private key. This process exposes validators' private keys online for long periods, putting the hardware at risk as if they were using a "hot wallet". Hence more opportunities for hackers. An idea to mitigate the risks is having a dedicated private key for this purpose and for a short period. However, in the case of slashing rules, hackers could trigger punishment anyway and destroy funds. Thus, dedicated hardware for staking would be a better idea than a cold wallet.

Long range attack

Attackers can try to manipulate the history of events going far back in time. At that point, they can buy an old private key that had an ample amount of coins. Then, they build a new history of staking validations and rewards from this key. Since they have a lot of coins from the start, they end up with a chain immensely probable to be selected. As a result, a multi-year reorganization takes place.
The system can use checkpoints to prevent the attack. A stake threshold could trigger a checkpoint. The issue is that it requires nodes to be constantly online. Going offline would then require trusted nodes from which to ask the past history. We can discuss Satoshi Nakamoto's philosophy and wonder if each individual should verify everything from the start. We could make a concession.

As you can see, switching from PoW to PoS in the new generation of blockchains is not an easy task. More tweaked PoS consensuses are necessary to ensure incentives, economic principles, and security.

Delegated Proof-of-Stake (DPoS)

The Delegated Proof-of-Stake (DPoS) consensus was developed by Daniel Larimer in 2014. Because of the "Rich get richer" problem, pure PoS fails in diluting mining activity's centralization. The idea of DPoS is to add a new option to make PoS more inclusive. In DPoS, users act as if they were in a parliamentary democracy. Users delegate or "vote" for validators also called "witnesses" among a set. There is a fixed number of eligible witnesses, usually between 20 and 100. One "votes" by attributing owned coins to a validator, thus gifting him more chances to validate a block and receive rewards. DPoS splits block production rights evenly within the set of active block producers[9]. A winning validator receives rewards and shares them with his electorate. Long-term reputation and efficiency motivate choices in elections.

The idea to decentralize blocks' validation activity with a more democratic approach paradoxically strengthens an oligarchy at the network level. Even worse, DPoS reinforces the scalability, which leads to the professionalization of the activity. Witnesses will organize in validating farms instead of mining farms. Finally, electricity consumption will rise excessively again.

DPoS is then not enough. PoS needs to evolve more. That is why Tezos' community launched the "Liquid Proof-of-Stake" (LPoS) consensus.

Liquid Proof-of-Stake (LPoS)

An evolution from DPoS

Tezos has developed LPoS, an evolution of DPoS idea. The current version, since the Ithaca protocol (April 2022) is "Tenderbake" [10].

In LPoS, a validator is called a "baker". As opposed to DPoS, any user can become a validator if he has enough coins. If he doesn't, then he has the choice to delegate. The idea is to dilute even more the activity and to increase inclusion. The focus is more on governance liquidity rather than the network's scalability.

The needed quantity of tez to bake is a useful parameter. Increase it to discourage Sybil attack or 51% attack, decrease it to coordinate cartels or coalition dissolutions.

A validator needs at least 6,000ꜩ (one "roll") to take part in the consensus. However, as in DPoS, the reward probability is still proportional to the invested amount. The baking time has cycles, and the tokens are still frozen as bonds during this process.

Consensus mechanism

Cycle

One cycle corresponds to 4096 blocks (≈ 2.8 days).

Cycles, rewards and fees

It takes 7 cycles to accumulate rewards. It then takes another 5 cycles before the delegation service receives them and can transfer those rewards. Finally, the tokens are frozen for several weeks. More details in chapter "Economics and Rewards"

Slot selection

At each cycle, a random seed is created. A pseudo-random number generator uses the seed to generate the priority list based on a stake snapshot 2 cycles ago.

Stake snapshots

Every 256 blocks, the system creates snapshots of the stake of active delegates that meet the minimal threshold of 6000ꜩ.

The Seed

A secret number from all active delegates is requested. All secret numbers are gathered and hashed to produce the seed. Since the last owner to reveal his secret already knows the other numbers, a 2-phase process called "Commit & Reveal" is in place. More details about the selection of the baker are available in the "How Baking Works" chapter.

Bakers selection

Given a snapshot, the probability to sample a particular delegate is its stake in the snapshot over the total stake in that snapshot. A list of priorities is generated to solve cases where a baker is offline. The generated list of priorities identifies who bakes a block and who attests it. It is a round-robin process[11] that cycles on the list of priorities until the end of the cycle (4096 blocks).

Security

If a baker tries to build two blocks for the same level (double baking), anyone running the accuser daemon can post a proof that the baker indeed double baked. The baker is then slashed of their security deposit, half burned and half rewarded to the accuser.

LPoS and DPoS comparison

The following table[9] highlights the differences between LPoS and DPoS:

Liquid-proof-of-stakeDelegated-proof-of-stake
Delegation (Purpose)Optional (minimizes dilution of small token holders).Required to elect block producers (enables greater scalability).
Barrier to Entry6000ꜩ, modest computing power and reliable internet connection.Professional operations with significant computing infrastructure. Competition from other delegates.
Validator SetDynamic (size not fixed), limited by total supply of tez.Fixed size. Between 21 (EOS) and 101 (Lisk).
Design PrioritiesDecentralization, accountable governance, and securityScalability and usable consumer applications

What have learned so far?

In this chapter, we detailed the PoS consensus. You are now able to understand its fundamentals. You realize that the benefits of PoS also bring hard-to-solve difficulties. The PoS derivatives propose variations in the consensus to resolve the troubles. While PoS highly reduces the external bound with energy, reliable randomness and decentralization are hardly manageable. DPoS tries to adopt a kind of democratic stance but paradoxically scales back to energy consumption. Finally, LPoS seems to be the best alternative to date, relying more on users' trust, diluting and liquifying the decision-making power. The randomness generation still needs to be observed, and only time will tell if current parameters will keep enough decentralization and security. That's for another chapter where you'll discover the Tezos "Governance on Chain".

In the next chapter, you'll first uncover Tezos "operations" or in blockchain vocabulary: "transactions". Operations are particular messages sent from one address to another.

References

[1] https://vitalik.ca/general/2017/12/31/pos_faq.html

[2] https://blog.bitmex.com/wp-content/uploads/2018/04/2018.04.11-Complete-guide-to-Proof-of-Stake.pdf

[3] https://www.crypto51.app

[4] https://en.wikipedia.org/wiki/CAP_theorem

[5] https://www.the-paper-trail.org/post/2008-08-13-a-brief-tour-of-flp-impossibility/

[6] https://groups.csail.mit.edu/tds/papers/Lynch/jacm88.pdf

[7] https://bitcoinmagazine.com/technical/selfish-mining-a-25-attack-against-the-bitcoin-network-1383578440

[8] https://blog.ethereum.org/2015/01/28/p-epsilon-attack/

[9] https://medium.com/tezos/liquid-proof-of-stake-aec2f7ef1da7

[10] https://research-development.nomadic-labs.com/a-look-ahead-to-tenderbake.html

[11] https://en.wikipedia.org/wiki/Round-robin_scheduling