Skip to content
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

Merged
merged 98 commits into from
Mar 26, 2025
Merged

Conversation

ggonzalez94
Copy link
Collaborator

@ggonzalez94 ggonzalez94 commented Feb 25, 2025

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

  • The ProverManager contract implements two interfaces, the IProposerFees and the IProverManager interfaces. It is called by the Inbox contract to pay the fees for each proposal and calls the CheckPointTracker when proving publications.
  • When deployed an initial prover is set. This simplifies some of the logic, as we can assume there's always an active period(making the implementation more efficient), and proposers can directly submit publications. This shouldn't be an issue, as the rollup operator can set themselves as an initial prover, with a high enough fee so that other participants can outbid them relatively easily.
  • This design assumes only sequential proving is allowed, so Simplify the CheckpointTracker by storing only the latest checkpoint #56 should be implemented. Every proof starts from the latest known checkpoint and advances the chain, there's no need to track transitions. This makes the market design easier since we don't need to keep track of separate proving deadlines, or non consecutive periods.

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.

  • Gas optimizations(will be submitted as a separate PR). Particularly packing the Period struct into only two slots yields ~20% gas improvements.
  • Logic for a permissioned actor(e.g. a DAO) to change some of the parameters(livenessWindow, livenessBond, etc.)
  • How to price delayed publications(since we still need to decide if we will price them differently). The contract has the parameters necessary to deal with delayed publications, but would still need some adjustments. Tracked under Price delayed publications for proving and modify the ProverMarket #68
  • Logic to work with ERC20 tokens. Tracked under Allow using ERC20 tokens in the ahead of time auction #51

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.
@nikeshnazareth
Copy link
Collaborator

Should we unite livenessWindow and provingWindow?

  • I think we want provingWindow to be at least as large as livenessWindow, because otherwise a publication can come in on the end timestamp, and you will only have provingWindow to prove it.
  • On the other hand, there doesn't seem to be a reason for provingWindow to be larger than livenessWindow.

Similarly, is there any reason that exitDelay and successionDelay are different? Both of them are commented saying they allow for enough time for the auction + spin up hardware. Are these supposed to be two different phases of time (i.e. I won't know if I need to spin up my hardware until I know if I won the auction)?

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 exitDelay from now) but are not given any time where they have monopoly proving rights. Perhaps this is okay because they've already failed to prove so maybe losing the stake based on future publications is just one of the costs.

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.
@LeoPatOZ
Copy link
Collaborator

LeoPatOZ commented Mar 24, 2025

Similarly, is there any reason that exitDelay and successionDelay are different? Both of them are commented saying they allow for enough time for the auction + spin up hardware. Are these supposed to be two different phases of time (i.e. I won't know if I need to spin up my hardware until I know if I won the auction)?

Im really of the opinion that exit and succession delay should be merged - #49 (comment)

@ggonzalez94
Copy link
Collaborator Author

@nikeshnazareth @LeoPatOZ

Should we unite livenessWindow and provingWindow?

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.

is there any reason that exitDelay and successionDelay are different?

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:

  • successionDelay might be kept at a higher value, ensuring provers don’t have a very short period if they are quickly outbid for whatever reason. This does not hurt chain liveness since the prover has not shown any liveness failure.
  • exitDelay especially in the case where a prover has shown a liveness issue might be chosen to be relatively short, since the chain cannot finalize until we switch to a new period.

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 exitDelay from now) but are not given any time where they have monopoly proving rights. Perhaps this is okay because they've already failed to prove so maybe losing the stake based on future publications is just one of the costs.

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.

@ggonzalez94 ggonzalez94 merged commit 0614e02 into main Mar 26, 2025
3 checks passed
@ggonzalez94 ggonzalez94 deleted the ahead-of-time-prover branch March 26, 2025 13:13
LeoPatOZ added a commit that referenced this pull request Apr 2, 2025
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]>
LeoPatOZ added a commit that referenced this pull request Apr 2, 2025
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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Incentivize proving and set bonds
6 participants