AZIP-25: Activity Score for Full Epoch Proofs - #65
Open
aminsammara wants to merge 1 commit into
Open
Conversation
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.
Adds
AZIPs/azip-25-full-epoch-proof-activity-score.md(category: Core, status: Draft).Restricts the prover activity score increment to proofs that cover a complete epoch. Today
RewardLib.handleRewardsAndFeescallsupdateAndGetSharesfor every accepted proof, the increment does not depend on proof length, and the protocol accepts a proof of a single checkpoint. A prover that cannot keep up with a congested epoch can therefore hold its score by proving one checkpoint, then collect a full reward share on a later, cheaper epoch. This AZIP gates the increment on a full epoch proof — the same condition that already gates reward eligibility. Fees, reward totals, and proof validity rules are unchanged.Notes for review:
EpochProofLibandRewardLibare internal libraries inlined into the Rollup bytecode; this cannot ship as a config change.proofSubmissionEpochs > 0constructor requirement. Without it no full epoch proof can exist and the mechanism becomes dead code with no error; the reference PR notes the hazard in a comment but does not yet enforce it.discussions-toisN/A, matching prior AZIPs (e.g. AZIP-23, AZIP-16).