feat(epochs): display proposal participation in epochs page#583
Merged
barnabasbusa merged 2 commits intomasterfrom Feb 17, 2026
Merged
feat(epochs): display proposal participation in epochs page#583barnabasbusa merged 2 commits intomasterfrom
barnabasbusa merged 2 commits intomasterfrom
Conversation
This change introduces the display of proposal participation for each epoch in the epochs page. It involves: 1. Fetching chain specifications to get `slots_per_epoch`. 2. Calculating `proposal_participation` in the backend logic using block counts and slots per epoch. 3. Adding a new column and rendering the proposal participation information in the frontend template. 4. Updating the `EpochsPageDataEpoch` struct to include `slots_per_epoch` and `proposal_participation`. 5. Refactoring the display format for vote participation percentages to be more concise, removing the Gwei conversion for participation values as they are already percentages.
pk910
requested changes
Feb 17, 2026
…och details table Reorganize how participation metrics are displayed in the epochs table to show the most important percentage value first, followed by the related absolute values (counts or ETH amounts) in a muted smaller font for better context and visual hierarchy.
pk910
approved these changes
Feb 17, 2026
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
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.
This change introduces the display of proposal participation for each epoch in the epochs page.
It involves:
slots_per_epoch.proposal_participationin the backend logic using block counts and slots per epoch.EpochsPageDataEpochstruct to includeslots_per_epochandproposal_participation.