-
Notifications
You must be signed in to change notification settings - Fork 2
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
Ahead of time auction for prover incentives #49
Conversation
…n/minimal-rollup into ahead-of-time-prover
…n/minimal-rollup into ahead-of-time-prover
…n/minimal-rollup into ahead-of-time-prover
…l-rollup into ahead-of-time-prover
We no longer process the publication hash directly
This enforces the end is never in the past. I think it also makes the usage semantically clearer.
Reserve "closed period" for periods that have an end timestamp. This makes it clear that _closePeriod and finalizePastPeriod are referring to different conditions
It seems more natural distribute a fraction of the stake when finalising rather than reduce the saved stake during a proof.
This seems a lot cleaner, with one oddity: the new period only takes effect in the next block.
Should we unite
Similarly, is there any reason that Also, there is something a little suspicious about the zero deadline for evicted provers. It does mean that the evicted prover is still responsible for some future publications (up to |
We create a new period in the constructor, and I originally thought that implied we do not need to prove publications in period 0. However, the _claimProvingVacancy call implies any publication created in the deployment block is assigned to period 0. Moreover, under all versions in this PR, any publication that occured before deployment is assigned to period 0. I now think we should account for this because the ProverManager might be deployed on a shared publication feed that pre-exists the CheckpointTracker. I also don't think we should rely on the CheckpointTracker being able to prove things before the prover manager is assigned, since this puts a specific constraint on the deployment mechanism.
Im really of the opinion that exit and succession delay should be merged - #49 (comment) |
I do think there’s some value in keeping the two values separated as explained [here](#49 (comment)), but it is not a strong opinion, so I’m happy to unify them if there’s consensus on it.
Similar to the above, I do see some value but also is not a very strong opinion. Here’s a case for keeping them separated:
Yeah, this is my assumption basically. We would be ok with ending their period immediately, the only reason we don’t do that is to allow for the auction to happen. |
commit 4977428 Author: Leo <[email protected]> Date: Wed Apr 2 05:57:49 2025 +0800 Minimal Delayed Inclusion Store (#74) Co-authored-by: Gustavo Gonzalez <[email protected]> Co-authored-by: Nikesh Nazareth <[email protected]> commit 0614e02 Author: Gustavo Gonzalez <[email protected]> Date: Wed Mar 26 09:13:29 2025 -0400 Ahead of time auction for prover incentives (#49) Co-authored-by: Nikesh Nazareth <[email protected]> Co-authored-by: LeoPatOZ <[email protected]>
commit 4977428 Author: Leo <[email protected]> Date: Wed Apr 2 05:57:49 2025 +0800 Minimal Delayed Inclusion Store (#74) Co-authored-by: Gustavo Gonzalez <[email protected]> Co-authored-by: Nikesh Nazareth <[email protected]> commit 0614e02 Author: Gustavo Gonzalez <[email protected]> Date: Wed Mar 26 09:13:29 2025 -0400 Ahead of time auction for prover incentives (#49) Co-authored-by: Nikesh Nazareth <[email protected]> Co-authored-by: LeoPatOZ <[email protected]>
Fixes #15
This PR includes the design for an implicit ahead of time auction and all the logic and accounting necessary for taking proposers' fees and paying and slashing provers. It implements the design exposed here.
Some design assumptions
ProverManager
contract implements two interfaces, theIProposerFees
and theIProverManager
interfaces. It is called by the Inbox contract to pay the fees for each proposal and calls theCheckPointTracker
when proving publications.What this PR does not include
These is a list of things this PR does not include to keep the scope manageable. These will be submitted as separated PRs or tracked as separate issues.
Period
struct into only two slots yields ~20% gas improvements.livenessWindow
,livenessBond
, etc.)