-
Notifications
You must be signed in to change notification settings - Fork 35
[WIP] Committee aggregation #282
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
Draft
kamilsa
wants to merge
23
commits into
leanEthereum:main
Choose a base branch
from
kamilsa:committee-aggregation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
b5b6d8a
networking: update committee docs
kamilsa 4867d7d
networking: add committee size configuration
kamilsa 7bcedca
store committee attestations
kamilsa 980b5e8
Add aggregation in 2nd interval
kamilsa 60468af
Committee aggregation
kamilsa 213504a
Rename aggregation committee size to count for clarity
kamilsa 4fac983
Remove committee signatures
kamilsa f2651d8
Refactor build_block:
kamilsa cc7548c
Clarify attestation broadcasting and update Devnet reference
kamilsa cb1a21b
remove adding proposer signatures to gossip_signatures
kamilsa e398823
Refactor subnet ID computation and rename committee signatures variable
kamilsa 90fc114
Store proposer signature if same subnet
kamilsa cdae6a4
Update build block with selecting aggregations
kamilsa b24d3ed
Uncomment on_attestation during on_gossip_aggregation
kamilsa 5c952ff
Update gossipsub topic names to reflect devnet3
kamilsa 8a0c121
Rename aggregation committee to attestation committee and update rela…
kamilsa cb952f8
Merge remote-tracking branch 'origin/main' into committee-aggregation
kamilsa 9d721bd
refactor: rename committee aggregation topic to aggregated attestation
kamilsa baddbeb
update validator.md to clarify subnet usage in attestation committees
kamilsa 6556e81
feat: add threshold ratio for committee signature aggregation
kamilsa 3477d6e
feat: replace attestation_subnet_count with attestation_committee_cou…
kamilsa 9174f5b
feat: add committee signature threshold ratio chain config
kamilsa 3115ef5
feat: aggregate on gossip
kamilsa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A validator is assigned to a certain subnet but can they perform an aggregator role in multiple subnets?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question. I think we may add this possibility in future. But lets start with one subnet per aggregator.
I think we may consider similar logic to how validators self-assign themselves for sampling of single or multiple columns data in PeerDAS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds great! We can update this description to a single committee and modify it later once we introduce multiple subnets aggregator.