-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(website): remove ttko discord and combine node runner manual (#…
- Loading branch information
Showing
31 changed files
with
111 additions
and
2,738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.next | ||
node_modules | ||
# temporarily ignoring auto-generated contract documentation until | ||
# we can separate L2/L3 contracts | ||
contract-documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"contributing-manual": "Contributing manual", | ||
"integration-manual": "Integration manual", | ||
"node-runner-manuals": "Node runner manuals" | ||
"node-runner-manual": "Node runner manual" | ||
} |
104 changes: 103 additions & 1 deletion
104
...manuals/eldfell-l3-node-runner-manual.mdx → ...pages/docs/manuals/node-runner-manual.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,169 @@ | ||
# Eldfell L3 node runner manual | ||
# Node runner manual | ||
|
||
## Start node | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose up -d | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d | ||
``` | ||
|
||
## Stop node | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose down | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down | ||
``` | ||
|
||
## Restart node | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose down && docker compose up -d | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down && docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d | ||
``` | ||
|
||
## Update node | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
git pull origin main && docker compose pull | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
git pull origin main && docker compose -f ./docker-compose.l3.yml --env-file .env.l3 pull | ||
``` | ||
|
||
## Remove node | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose down -v | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down -v | ||
``` | ||
|
||
## View grafana dashboard | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
open http://localhost:3000/d/L2ExecutionEngine/l2-execution-engine-overview | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
open http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview | ||
``` | ||
|
||
## View all logs | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose logs -f | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 logs -f | ||
``` | ||
|
||
## View execution logs | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose logs -f l2_execution_engine | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 logs -f l3_execution_engine | ||
``` | ||
|
||
## View client driver logs | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose logs -f taiko_client_driver | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 logs -f l3_taiko_client_driver | ||
``` | ||
|
||
## View client proposer logs | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose logs -f taiko_client_proposer | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 logs -f l3_taiko_client_proposer | ||
``` | ||
|
||
## View client prover relayer logs | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose logs -f taiko_client_prover_relayer | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 logs -f l3_taiko_client_prover_relayer | ||
``` | ||
|
||
## View zkevm prover logs | ||
|
||
**Grimsvotn L2:** | ||
|
||
```sh | ||
docker compose logs -f zkevm_chain_prover_rpcd | ||
``` | ||
|
||
**Eldfell L3:** | ||
|
||
```sh | ||
docker compose -f ./docker-compose.l3.yml --env-file .env.l3 logs -f l3_zkevm_chain_prover_rpcd | ||
``` |
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
packages/website/pages/docs/manuals/node-runner-manuals/_meta.json
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
...site/pages/docs/manuals/node-runner-manuals/grimsvotn-l2-node-runner-manual.mdx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,8 @@ | |
}, | ||
"rpc-configuration": { | ||
"title": "RPC configuration" | ||
}, | ||
"contract-documentation": { | ||
"display": "hidden" | ||
} | ||
} |
17 changes: 0 additions & 17 deletions
17
packages/website/pages/docs/reference/contract-documentation/L1/TaikoConfig.md
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.