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(website): proposer add multiple endpoints for flag PROVER_ENDPOINTS #14902

Merged
merged 1 commit into from
Oct 5, 2023
Merged
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
5 changes: 5 additions & 0 deletions packages/website/pages/docs/guides/enable-a-proposer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ If you are not running a local prover, then you can specify a prover from the [p

- `PROVER_ENDPOINTS`

To select multiple prover endpoints at the same time
```shell
PROVER_ENDPOINTS=<PROVER_ENDPOINT_1>,<PROVER_ENDPOINT_2>,<PROVER_ENDPOINT_3>
```

### Check proposer status logs

To see if your proposer is running correctly or has errors run:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ This block has been proven by someone else, but it's not verified yet, you can i
#### `error: "failed to propose transactions: unable to find prover"`

The proposer is not able to connect with a prover. By default, the prover endpoint is local so check your local prover first.
If you are not running a local prover, select another prover from the [prover market](/docs/reference/prover-market-page). Note: you may need to switch provers if
your selected prover hits its max capacity.
If you are not running a local prover, select another prover from the [prover market](/docs/reference/prover-market-page).
You can connect to multiple provers at the same time in case a selected prover hits its max capacity.
Note: you may need to switch provers if your selected prover hits its max capacity.

#### `Fatal: Failed to register the Ethereum service: database contains incompatible genesis`

Expand Down Expand Up @@ -180,7 +181,7 @@ You can safely ignore this "warn" level message, it simply means you just ignore
A flag might not be set in your .env file.
Copy the default .env file, then reset your RPC node and proposer with the updated flag values.

#### `info: Skip an invalid proposed transaction reason="nonce too low`
#### `info: Skip an invalid proposed transaction reason="nonce too low"`

Scenario when the mempool is small and proposers are trying to propose the same transactions within an L1 block.
The first proposer included on chain will successfully propose these transactions.
Expand Down
Loading