We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add L1 checks if the pending chain should be pruned when a new pending block is proposed, or a proof of epoch is submitted.
For this, we will need a skeleton Escrow contract with the following interface:
Escrow
interface IEscrow { function deposit(uint256 amount, uint256 deadline) external; function stakeBond(Quote calldata quote) external returns (address); // returns the bond provider function unstakeBond(address bondProvider, uint256 amount) external; function withdraw(uint256 amount) external; }
For the immediate term, these can largely be no-ops.
The purpose of this issue is to ensure that it is impossible to submit a pending block or a proof when there is a pending chain that can be pruned.
The text was updated successfully, but these errors were encountered:
49b17d0
just-mitch
Successfully merging a pull request may close this issue.
Add L1 checks if the pending chain should be pruned when a new pending block is proposed, or a proof of epoch is submitted.
For this, we will need a skeleton
Escrow
contract with the following interface:For the immediate term, these can largely be no-ops.
The purpose of this issue is to ensure that it is impossible to submit a pending block or a proof when there is a pending chain that can be pruned.
The text was updated successfully, but these errors were encountered: