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

docs: tweaked books #110

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions book/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ Here is a high-level overview of the new components that are introduced in OP Su
- **Aggregation Program.** Aggregates proofs of span programs to reduce on-chain verification cost. This program is also written in Rust and designed to be executed inside the zkVM.
- **OP Succinct L2 Output Oracle.** A solidity smart contract that contains an array of L2 state outputs, where each output is a commit to the state of the L2 chain. This [contract](https://github.com/ethereum-optimism/optimism/blob/3e68cf018d8b9b474e918def32a56d1dbf028d83/packages/contracts-bedrock/src/L1/L2OutputOracle.sol) already exists in Optimism's original system but is modified to verify proofs as the authentication mechanism.
- **OP Succinct Proposer.** Observes the posted batches on L1 and controls the proving of the span and aggregation programs.
![OP Succinct Architecture](./assets/op-succinct-proposer-architecture.jpg)
Binary file added book/assets/getting_started.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion book/getting-started/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ In this section, we'll guide you through upgrading an existing OP Stack chain to
The steps are the following:
1) **Deploy the OP Succinct L2 Output Oracle Contract.** This contract is a modified version of the existing `L2OutputOracle` contract that uses SP1 to verify the execution and derivation of the L2 state transitions.
2) **Start the OP Succinct Proposer.** This service is modified verison of the existing `op-proposer` service. It posts output roots to the L2 Output Oracle contract at regular intervals by orcheastrating the generation and aggregation of proofs.
3) **Update your OP Stack Chain Configuration.** You will need to update your configuration to update the `L2OutputOracle` contract to the new implementation using your `ADMIN` key.
3) **Update your OP Stack Chain Configuration.** You will need to update your configuration to update the `L2OutputOracle` contract to the new implementation using your `ADMIN` key.

![Getting Started](../assets/getting_started.jpg)
Loading