forked from ethereum/consensus-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] move attestation index outside signed message #2
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dapplion
force-pushed
the
attestation-index
branch
from
October 31, 2023 15:49
99a01c8
to
3beaac5
Compare
dapplion
force-pushed
the
attestation-index
branch
6 times, most recently
from
November 1, 2023 08:42
59d1f13
to
bcead2f
Compare
Remove extra tick
Check `assert time >= store.time` in fork-choice tests
Co-authored-by: Mikhail Kalinin <noblesse.knight@gmail.com>
Co-authored-by: Mikhail Kalinin <noblesse.knight@gmail.com>
Co-authored-by: Mikhail Kalinin <noblesse.knight@gmail.com>
Co-authored-by: danny <dannyjryan@gmail.com>
Co-authored-by: danny <dannyjryan@gmail.com>
…ment_merkle_proof Add randomized block `blob_kzg_commitment_merkle_proof` cases
Co-authored-by: Mikhail Kalinin <noblesse.knight@gmail.com>
Co-authored-by: Mikhail Kalinin <noblesse.knight@gmail.com>
Co-authored-by: danny <dannyjryan@gmail.com>
…bility Specify when clients can serve block and sidecars in byRoot RPC methods
bump version to v1.4.0-beta.5
Move `blob_sidecar_{subnet_id}` to `Blob subnets` section
dapplion
force-pushed
the
attestation-index
branch
from
December 5, 2023 12:10
bcead2f
to
68df5cc
Compare
dapplion
pushed a commit
that referenced
this pull request
Dec 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
ZK circuits attempting to proof Casper-FFG on Ethereum today would benefit greatly from having to verify less signatures.
On an optimal case with 100% agreeing participation, in a network with at least 262144 active validators, one needs to verify
32*64 * 2/3 ~ 1365
attestations to reach a 2/3 threshold.Ethereum validators cast two votes at once: LMD GHOST vote and Casper-FFG vote. In the perfect example case above, during a single epoch all Casper-FFG votes are identical, and LMD GHOST votes differ per slot. So the ideal minimum number of vote combinations to verify to reach a 2/3 threshold is
32 * 2/3 ~ 22
.The issue arises from validators actually signing 3 things:
This 3rd signed item, the committee index, causes equal votes to produce different signing roots.