Consensus: Authoring
Consensus is...
...a decision making process that strives to achieve acceptance of a decision by all participants.
Blockchain Consensus is...
...a decentralized consensus system to reach agreement over a shared history of a state machine.
Blockspace
Blockchain consensus systems produce a resource called blockspace.
Strong incentive alignments and strong guarantees make for high quality blockspace.
Forks Review
There are going to be forks. We need to decide which one is the real one.
We can rule some forks out to reduce the problem space. Then we are left to decide which is canonical.
Five Aspects of Consensus
- State machine validity
- Arbitrary / Political validity
- Authorship throttling
- Fork choice heuristic
- Finality
State Machine Validity
Some forks can be ruled out simply because they contain invalid state transitions.
Arbitrary / Political Validity
Similar to state machine validity.
Examples:
- Blocks that are too big
- Blocks that have "hack" transactions
- Empty blocks
- Block with Even state roots
Authorship Throttling
Real-world blockchains impose additional restrictions on who can author blocks. Why?
Leader Election
We need to elect a small set (or ideally a single) entity who are allowed to author next.
In pre-blockchain consensus this was called the "leader", and still often is.
Liveness
The ability of the system to keep authoring new blocks
Proof of Work
Satoshi's Big invention.
Solve a Pre-image search - earn the right to author.
Proof of Work: Pros
- Permissionless (or so we thought)
- Requires an external scarce resource: Energy
- Blind: Nobody knows the next author until the moment they publish their block
- Expensive to author competing forks - Clear incentive
Proof of Work: Cons
- Energy Intensive
- Irregular block time
- Not so permissionless
Why Author at All?
- Altruism - You feel good about making the world a better place
- Your Transitions - Because you want to get your own transitions in
- Explicit incentives - Eg block reward
Proof of Authority
Traditional class of solutions.
Divide time into slots.
Certain identities are allowed to author in each slot.
Prove your identity with a signature.
Proof of Authority: Pros
- Low energy consumption
- Stable block time
Proof of Authority: Cons
- Permissioned
- No external resource to aid valuation
- Incentives for honesty are not always clear
Some PoA Schemes
Reminder: PoA is a family of leader election schemes
Aura
The simple one.
Everyone takes turns in order.
authority(slot) = authorities[slot % authorities.len()];
Babe
Blind Assignment for Blockchain Extension
- In each slot, compute a VRF output.
- If it is below a threshold, you are eligible to author.
- If eligible, author a block showing VRF proof
- If NOT eligible, do nothing
Sassafras

Single blind VRF-based leader election
🙈TBH, IDK how it works internally.
But Jeff does!
Sassafras Analogy

Sassafras is kinda cards against humanity
Sassafras Analogy



Sassafras Analogy

Ring VRF outputs are "cards". You anonymously "play" the best aka smallest cards in your hand.
Those cards are sorted, not by funniness since they're just numbers, but by the number.
The order in which they wind up is the block production order.
You claim the ones that're yours by doing a non-ring VRF with identical outputs.
Proof of Stake
It's just PoA in disguise 🤯
Uses an economic staking game to select the authorities.
Restores the permissionlessness to at least PoW levels.
Restores clear economic incentives
💒 Consensus 🪢 State Machine
- Loose coupling between consensus and state machine is common
- Eg Block rewards, slashing, authority election
- In PoW there is a difficulty adjustment algorithm
In Substrate there is a concept of a Runtime API - Consensus can read information from state machine.
Fork Choice Heuristics
Each node's preference for which fork is best
- Longest chain rule
- Most accumulated work
- Most blocks authored by Alice
- Most total transactions (or most gas)
Reorganizations
Dropped transactions re-enter tx pool and re-appear in new blocks shortly
Double Spends
Double Spends
Five Aspects of Consensus
- State machine validity
- Arbitrary / Political validity
- Authorship throttling
- Fork choice heuristic
- Finality