diff --git a/book/advanced/proposer.md b/book/advanced/proposer.md index e4b75195..34cd1f67 100644 --- a/book/advanced/proposer.md +++ b/book/advanced/proposer.md @@ -42,8 +42,8 @@ Before starting the proposer, the following environment variables should be in y | `L1_BEACON_RPC` | L1 Consensus (Beacon) Node. | | `L2_RPC` | L2 Execution Node (`op-geth`). | | `L2_NODE_RPC` | L2 Rollup Node (`op-node`). | -| `PROVER_NETWORK_RPC` | Default: `rpc.succinct.xyz`. | -| `SP1_PRIVATE_KEY` | Key for the Succinct Prover Network. Get access [here](https://docs.succinct.xyz/generating-proofs/prover-network). | +| `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). | | `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. | diff --git a/book/quick-start/full.md b/book/quick-start/full.md index 662096cf..3d2f5c01 100644 --- a/book/quick-start/full.md +++ b/book/quick-start/full.md @@ -77,8 +77,8 @@ To start the `op-succinct` service, add the following parameters to the `.env` f | Parameter | Description | |-----------|-------------| | `L2OO_ADDRESS` | The address of the `OPSuccinctL2OutputOracle` contract from the previous step. | -| `SP1_PRIVATE_KEY` | The private key for the account that will be submitting proofs to the L1. | -| `PROVER_NETWORK_RPC` | The RPC endpoint for the Succinct Prover Network. The default endpoint (`https://rpc.succinct.xyz`) is not suitable for use in OP Succinct. Reach out to the Succinct team to get access with OP Succinct. | +| `NETWORK_PRIVATE_KEY` | The private key for the account that will be submitting proofs to the L1. | +| `NETWORK_RPC_URL` | The RPC endpoint for the Succinct Prover Network. The default endpoint (`https://rpc.succinct.xyz`) is not suitable for use in OP Succinct. Reach out to the Succinct team to get access with OP Succinct. | Now, you should have the following in your `.env` file: @@ -91,8 +91,8 @@ Now, you should have the following in your `.env` file: | `PRIVATE_KEY` | Private key for the account that will be deploying the contract and relaying proofs on-chain. | | `ETHERSCAN_API_KEY` | Etherscan API key for verifying the deployed contracts. | | `L2OO_ADDRESS` | The address of the `OPSuccinctL2OutputOracle` contract from the previous step. | -| `SP1_PRIVATE_KEY` | The private key for the account that will be submitting proofs to the L1. | -| `PROVER_NETWORK_RPC` | Reach out to the Succinct team to get access [here](https://docs.google.com/forms/d/e/1FAIpQLSd2Yil8TrU54cIuohH1WvDvbxTusyqh5rsDmMAtGC85-Arshg/viewform?ref=https://succinctlabs.github.io/op-succinct/). The default endpoint (`https://rpc.succinct.xyz`) is not suitable for use in OP Succinct. | +| `NETWORK_PRIVATE_KEY` | The private key for the account that will be submitting proofs to the L1. | +| `NETWORK_RPC_URL` | Reach out to the Succinct team to get access [here](https://docs.google.com/forms/d/e/1FAIpQLSd2Yil8TrU54cIuohH1WvDvbxTusyqh5rsDmMAtGC85-Arshg/viewform?ref=https://succinctlabs.github.io/op-succinct/). The default endpoint (`https://rpc.succinct.xyz`) is not suitable for use in OP Succinct. | ### 4) Start the `op-succinct` service.