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

fix(website): remove duplicate and miswording on run a taiko node docs #14791

Merged
merged 3 commits into from
Sep 25, 2023
Merged
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
23 changes: 9 additions & 14 deletions packages/website/pages/docs/guides/run-a-taiko-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,15 @@ sudo docker compose up -d

A node dashboard will be running on `localhost` on the `GRAFANA_PORT` you set in your `.env` file, which defaults to `3001`: [http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview](http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview).

You can verify that your node is syncing by checking the **chain head** on the dashboard and seeing that it is increasing. Once the chain head matches what's on the block explorer, you are fully synced.
<br />
<Image
src="/images/guides/node-dashboard.png"
alt="taiko node dashboard"
width={2539}
height={1106}
/>

You can verify that your node is syncing by checking that the **chain head** on the dashboard (see above) is increasing. Once the chain head matches what's on the block explorer, you are fully synced.

#### Check with curl commands

Expand Down Expand Up @@ -188,19 +196,6 @@ curl http://localhost:8547 \
sudo docker compose logs -f
```

If you find an error, check the [Node troubleshooting](/docs/reference/node-troubleshooting) page.

<br />

<Image
src="/images/guides/node-dashboard.png"
alt="taiko node dashboard"
width={2539}
height={1106}
/>

If you find an error, check the [Node troubleshooting](/docs/reference/node-troubleshooting) page.

### Operate the node

You can find all node operations (eg. stop node, update node, remove node, view logs) in the [Node runner manual](/docs/manuals/node-runner-manual).
Expand Down