Skip to content

Commit

Permalink
feat(website): Text additions and partial corrections and conversion …
Browse files Browse the repository at this point in the history
…of information (#14441)

Co-authored-by: dave | d1onys1us <13951458+d1onys1us@users.noreply.github.com>
  • Loading branch information
nollie0107 and d1onys1us committed Aug 12, 2023
1 parent db195da commit 55be84a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ sudo docker compose up -d --remove-orphans
For an Eldfell L3 node:

```sh
sudo docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d
sudo docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d --remove-orphans
```

### Verify node is running
Expand Down
26 changes: 13 additions & 13 deletions packages/website/pages/docs/reference/node-troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ Make sure that your RPC is pointing to an Sepolia archive node, and not a full n

#### `error: "initialize rpc clients error"`

The RPC in your config is incorrect. You have to set the ENDPOINT correctly. Please refer to the following page to set the correct RPC: https://taiko.xyz/docs/guides/run-a-node/run-a-taiko-node
The RPC in your config is incorrect. You have to set the ENDPOINT correctly. Please refer to the following page to set the correct RPC: https://taiko.xyz/docs/guides/run-a-node/run-a-taiko-node.

#### `error: "daily request count exceeded, request rate limited"`

Your RPC provider has a limit on the number of requests. You can try using a different provider that offers higher limits.
Your RPC provider has a limit on the number of requests. You can try using an RPC provider with higher limits or [run your own Sepolia node](/docs/guides/run-a-node/run-a-sepolia-node) which has no limit.

#### `error: L1_BLOCK_ID`

Expand Down Expand Up @@ -112,18 +112,18 @@ If you do not want to delete the node folder, please follow one of these steps b

```sh
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down -v
docker compose down -v
docker compose down -v
cd script/l2
dos2unix start-zkevm-chain-rpcd.sh
dos2unix start-zkevm-chain-rpcd.sh
dos2unix start-prover-relayer.sh
dos2unix start-proposer.sh
dos2unix start-driver.sh
cd ../l3
dos2unix start-zkevm-chain-rpcd.sh
dos2unix start-zkevm-chain-rpcd.sh
dos2unix start-prover-relayer.sh
dos2unix start-proposer.sh
dos2unix start-driver.sh
cd ../..
dos2unix start-driver.sh
cd ../..
docker compose up -d
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d

Expand All @@ -143,12 +143,12 @@ If you do not want to delete the node folder, please follow one of these steps b
9. The same goes for files in the l3 folder
10. Then go back to command line and do:

```sh
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down -v
docker compose down -v
docker compose up -d
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d
```
```sh
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down -v
docker compose down -v
docker compose up -d
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d
```

</Tab>
</Tabs>
Expand Down

0 comments on commit 55be84a

Please sign in to comment.