Skip to content

Commit

Permalink
Merge pull request #18 from webb-tools/fix-typos-v3
Browse files Browse the repository at this point in the history
fix: more docs fixes
  • Loading branch information
drewstone authored Jan 22, 2024
2 parents 1385351 + b710203 commit de74dd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pages/docs/node/docker-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ should paste your SURI when the command asks for it.
**Account Keys**

```sh filename="Acco" copy
# it will ask for your suri, enter it.

docker run --rm -it --platform linux/amd64 --network="host" -v "/var/lib/data" \
ghcr.io/webb-tools/tangle/tangle:main \
key insert --base-path /var/lib/tangle/ \
Expand Down Expand Up @@ -139,7 +139,7 @@ ghcr.io/webb-tools/tangle/tangle:main \
To ensure you have successfully generated the keys correctly run:

```sh filename="ls" copy
ls ~/webb/tangle/chains/*/keystore
ls ~/data/validator/<USERNAME>/chains/tangle-testnet/keystore/
# You should see a some file(s) there, these are the keys.
```

Expand Down
12 changes: 6 additions & 6 deletions pages/docs/node/systemd.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
**Account Keys**
```sh filename="Acco" copy
# it will ask for your suri, enter it.
./target/release/tangle key insert --base-path <BASE_PATH> \
--chain tangle-testnet \
--scheme Sr25519 \
Expand All @@ -159,7 +159,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
**Babe Keys**
```sh filename="Babe" copy
# it will ask for your suri, enter it.
./target/release/tangle key insert --base-path <BASE_PATH> \
--chain tangle-testnet \
--scheme Sr25519 \
Expand All @@ -170,7 +170,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
**Im-online Keys** - **these keys are optional**
```sh filename="Imonline" copy
# it will ask for your suri, enter it.
./target/release/tangle key insert --base-path <BASE_PATH> \
--chain tangle-testnet \
--scheme Sr25519 \
Expand All @@ -181,7 +181,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
**Role Keys**
```sh filename="Role" copy
# it will ask for your suri, enter it.
./target/release/tangle key insert --base-path <BASE_PATH> \
--chain tangle-testnet \
--scheme Ecdsa \
Expand All @@ -192,7 +192,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
**Grandpa Keys**
```sh filename="Grandpa" copy
# it will ask for your suri, enter it.
./target/release/tangle key insert --base-path /data/validator/<USERNAME> \
--chain tangle-testnet \
--scheme Ed25519 \
Expand All @@ -203,7 +203,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
To ensure you have successfully generated the keys correctly run:
```sh filename="ls" copy
ls ~/data/validator/<USERNAME>/keystore
ls ~/data/validator/<USERNAME>/chains/tangle-testnet/keystore/
# You should see a some file(s) there, these are the keys.
```
Expand Down

0 comments on commit de74dd5

Please sign in to comment.