Skip to content

Commit 9792d8f

Browse files
authored
chore: fix broken links (#328)
1 parent d2f0d4f commit 9792d8f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

book/advanced/proposer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Proposer
22

33
The `op-succinct` service consists of two containers:
4-
- `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.
4+
- `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.
55
- `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.
66

77
We've packaged the `op-succinct` service in a docker compose file to make it easier to run.
@@ -43,7 +43,7 @@ Before starting the proposer, the following environment variables should be in y
4343
| `L2_RPC` | L2 Execution Node (`op-geth`). |
4444
| `L2_NODE_RPC` | L2 Rollup Node (`op-node`). |
4545
| `NETWORK_RPC_URL` | RPC URL for the Succinct Prover Network. |
46-
| `NETWORK_PRIVATE_KEY` | Key for the Succinct Prover Network. Get access [here](https://docs.succinct.xyz/generating-proofs/prover-network). |
46+
| `NETWORK_PRIVATE_KEY` | Key for the Succinct Prover Network. Get access [here](https://docs.succinct.xyz/docs/generating-proofs/prover-network). |
4747
| `SP1_PROVER` | Default: `network`. Set to `network` to use the Succinct Prover Network. |
4848
| `PRIVATE_KEY` | Private key for the account that will be deploying the contract and posting output roots to L1. |
4949
| `L2OO_ADDRESS` | Address of the `OPSuccinctL2OutputOracle` contract. |

book/advanced/verify-binaries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Recall there are two programs used in OP Succinct:
1010

1111
## Prerequisites
1212

13-
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.
13+
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.
1414

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

book/quick-start/full.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Running OP Succinct in full mode will generate proofs of valid OP Stack L2 outpu
44

55
## Prerequisites
66

7-
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.
7+
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.
88

99
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.
1010

scripts/utils/bin/fetch_rollup_config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ async fn update_l2oo_config() -> Result<()> {
6969
// Set the verifier address
7070
let verifier = env::var("VERIFIER_ADDRESS").unwrap_or_else(|_| {
7171
// Default to Groth16 VerifierGateway contract address
72-
// Source: https://docs.succinct.xyz/verification/onchain/contract-addresses
72+
// Source: https://docs.succinct.xyz/docs/verification/onchain/contract-addresses
7373
"0x397A5f7f3dBd538f23DE225B51f532c34448dA9B".to_string()
7474
});
7575

0 commit comments

Comments
 (0)