"Casper does not specify details on how blocks are constructed. We merely need that the concepts of blocks and attestations exist, and then LMD GHOST defines an algorithm to find a block given a view."
TLDR:
The main type of message proposes a block
, which is a piece of data, to the network. Other messages
can be:
attestation
β)activation
β)slashing
β)majority trust assumption, less than 1/3 of validators are byzantine - "This constant can be traced
to Practical Byzantine Fault Tolerance (PBFT) from [8], a classic consensus protocol in byzantine tolerance literature; PBFT ensures that the system runs correctly as long as less than 1/3 of the replicas (synonymous with our validators) are byzantine, as proven in [3]. This constant 1/3 tolerance appears frequently in many works based on PBFT (the main idea is that a pigeonhole principle argument needs the 1/3 to work, such as in our proof in Section 5), with Casper FFG [7] being the most directly relevant to our work, which we review in Section 3.1."
re:synchrony - "For us, we make no synchrony assumptions when studying safety and plausible liveness. When studying probabilistic liveness (i.e. trying to quantify liveness under βrealisticβ conditions), we will use the notion (ii) of partial synchrony"
h(t1) = checkpoint height of t1
"All of these slashable behaviours relate to "equivocation", which is when a validator contradicts something it previously advertised to the network.2
The slashing conditions related to Casper FFG underpin Ethereum 2.0's economic finality guarantee. They effectively impose a well-determined price on reverting finality." - source
"Equivocation faults are fundementally enough to cause consensus failure"
Ah the answer is to be tolerant up to some number of equivocations.
Each validator gets 1 attestation per epoch. If you go offline for n Epochs you can store n historical votes bc votes are (epoch, vote) pairs.
If you submit 2 attestations for 1 slot you can get slashed
Question:
who needs randomness?
n
people in one roomxi
XOR(x1, x2, ...)
Problem: Last player can change their value after having seen the other choices, until they get a favourable output (XOR grinding)
n
people in one roomxi
by telling everyone HASH(xi)
XOR(x1, x2, ...)
Problem: Anyone can stop the process by not revealing their preimage xi
ex post reorgs - adversary observes a block that they subsequently attempt to fork out.
ex ante reorgs - adversary attempts to fork out a future block that is unknown to the adversary at the start of the attack.
"In PoS Ethereum ex post reorgs become practically impossible. Why?
π Power π Of π Parallel π Attestations π
Thousands of attesters add weight to blocks in parallel every single slot. The adversary needs to compete with all of them." [source 1]
https://hackmd.io/@0xapriori/SkEUSy1Bo
GASPER appreciation thread by Sreram