Skip to content

Commit

Permalink
chore: fix broken links (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
fakedev9999 authored Jan 16, 2025
1 parent d2f0d4f commit 9792d8f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions book/advanced/proposer.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Proposer

The `op-succinct` service consists of two containers:
- `op-succinct-server`: Receives proof requests from the `op-succinct-proposer`, generates the witness for the proof, and submits the proof to the Succinct Prover Network. Handles the communication with the [Succinct's Prover Network](https://docs.succinct.xyz/generating-proofs/prover-network) to fetch the proof status and completed proof data.
- `op-succinct-server`: Receives proof requests from the `op-succinct-proposer`, generates the witness for the proof, and submits the proof to the Succinct Prover Network. Handles the communication with the [Succinct's Prover Network](https://docs.succinct.xyz/docs/generating-proofs/prover-network) to fetch the proof status and completed proof data.
- `op-succinct-proposer`: Monitors L1 state to determine when to request a proof. Sends proof requests to the `op-succinct-server`. Once proofs have been generated for a sufficiently large range, aggregates range proofs into an aggregation proof. Submits the aggregation proof to the `OPSuccinctL2OutputOracle` contract which includes the L2 state outputs.

We've packaged the `op-succinct` service in a docker compose file to make it easier to run.
Expand Down Expand Up @@ -43,7 +43,7 @@ Before starting the proposer, the following environment variables should be in y
| `L2_RPC` | L2 Execution Node (`op-geth`). |
| `L2_NODE_RPC` | L2 Rollup Node (`op-node`). |
| `NETWORK_RPC_URL` | RPC URL for the Succinct Prover Network. |
| `NETWORK_PRIVATE_KEY` | Key for the Succinct Prover Network. Get access [here](https://docs.succinct.xyz/generating-proofs/prover-network). |
| `NETWORK_PRIVATE_KEY` | Key for the Succinct Prover Network. Get access [here](https://docs.succinct.xyz/docs/generating-proofs/prover-network). |
| `SP1_PROVER` | Default: `network`. Set to `network` to use the Succinct Prover Network. |
| `PRIVATE_KEY` | Private key for the account that will be deploying the contract and posting output roots to L1. |
| `L2OO_ADDRESS` | Address of the `OPSuccinctL2OutputOracle` contract. |
Expand Down
2 changes: 1 addition & 1 deletion book/advanced/verify-binaries.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Recall there are two programs used in OP Succinct:

## Prerequisites

To reproduce the OP Succinct program binaries, you first need to install the [cargo prove](https://docs.succinct.xyz/getting-started/install.html#option-1-prebuilt-binaries-recommended) toolchain.
To reproduce the OP Succinct program binaries, you first need to install the [cargo prove](https://docs.succinct.xyz/docs/getting-started/install.html#option-1-prebuilt-binaries-recommended) toolchain.

Ensure that you have the latest version of the toolchain by running:

Expand Down
2 changes: 1 addition & 1 deletion book/quick-start/full.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Running OP Succinct in full mode will generate proofs of valid OP Stack L2 outpu

## Prerequisites

You will need a whitelisted key on the Succinct Prover Network. Follow the instructions [here](https://docs.succinct.xyz/generating-proofs/prover-network) to get your key whitelisted.
You will need a whitelisted key on the Succinct Prover Network. Follow the instructions [here](https://docs.succinct.xyz/docs/generating-proofs/prover-network) to get your key whitelisted.

To get access to the Succinct Prover Network for OP Succinct, fill out this [form](https://docs.google.com/forms/d/e/1FAIpQLSd2Yil8TrU54cIuohH1WvDvbxTusyqh5rsDmMAtGC85-Arshg/viewform?ref=https://succinctlabs.github.io/op-succinct/). The Succinct team will reach out to you with an RPC endpoint you can use.

Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/bin/fetch_rollup_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async fn update_l2oo_config() -> Result<()> {
// Set the verifier address
let verifier = env::var("VERIFIER_ADDRESS").unwrap_or_else(|_| {
// Default to Groth16 VerifierGateway contract address
// Source: https://docs.succinct.xyz/verification/onchain/contract-addresses
// Source: https://docs.succinct.xyz/docs/verification/onchain/contract-addresses
"0x397A5f7f3dBd538f23DE225B51f532c34448dA9B".to_string()
});

Expand Down

0 comments on commit 9792d8f

Please sign in to comment.