Skip to content

Commit

Permalink
Fix: typos (#1567)
Browse files Browse the repository at this point in the history
* Fix: typo

Fix: typo

* Fix: typo

Fix: typo

* Fix: typo

Fix: typo

* Fix: typo

Fix: typo

* Fix: typo

Fix: typo

* Fix: typo

Fix: typo

* Fix: typo

Fix: typo
  • Loading branch information
omahs authored Jan 20, 2023
1 parent 40f340b commit c8091e1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ It's recommended to use `make` for building, and testing the code, ... Run `make

## Running the node

- [Running localy](docs/running_local.md)
- [Running locally](docs/running_local.md)
- [Running on production](docs/production-setup.md)

### Requirements
Expand Down
4 changes: 2 additions & 2 deletions docs/components/aggregator.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To orchestrate multiple deployments of the different ZKEVM Node components, a `d
- "/app/zkevm-node run --genesis /app/genesis.json --cfg /app/config.toml --components aggregator"
```
The container alone needs some parameters configured, access to certain configuration files and the appropiate ports exposed.
The container alone needs some parameters configured, access to certain configuration files and the appropriate ports exposed.
- volumes:
- `your Account Keystore file`: /pk/keystore (note, this `/pk/keystore` value is the default path that's written in the Public Configuration files on this repo, meant to expedite deployments, it can be superseded via an env flag `ZKEVM_NODE_ETHERMAN_PRIVATEKEYPATH`.)
Expand All @@ -44,4 +44,4 @@ The container alone needs some parameters configured, access to certain configur

Since the Aggregator will send transactions to L1 you'll need to generate an account keystore:

[Generate an Account Keystore file](./account_keystore.md)
[Generate an Account Keystore file](./account_keystore.md)
4 changes: 2 additions & 2 deletions docs/components/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Configuring each DB is trivial if done with an orchestration tool such as Docker

The following are examples on how one would provision each DB to serve along the components (rpc, aggregator, sequencer...)

Note the `enviroment` values will change per DB.
Note the `environment` values will change per DB.

- **StateDB**:

Expand Down Expand Up @@ -54,4 +54,4 @@ zkevm-state-db:
- POSTGRES_PASSWORD=pool_password
- POSTGRES_DB=pool_db
command: ["postgres", "-N", "500"]
```
```
4 changes: 2 additions & 2 deletions docs/components/rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ To orchestrate multiple deployments of the different ZKEVM Node components, a `d
- "/app/zkevm-node run --genesis /app/genesis.json --cfg /app/config.toml --components rpc"
```
The container alone needs some parameters configured, access to certain configuration files and the appropiate ports exposed.
The container alone needs some parameters configured, access to certain configuration files and the appropriate ports exposed.
- ports:
- `8545:8545`: RPC Port
- `9091:9091`: Neded if Prometheus metrics are enabled
- `9091:9091`: Needed if Prometheus metrics are enabled
- environment: Env variables that supersede the config file
- `ZKEVM_NODE_STATEDB_HOST`: Name of StateDB Database Host
- `ZKEVM_NODE_POOL_HOST`: Name of PoolDB Database Host
Expand Down
4 changes: 2 additions & 2 deletions docs/components/sequencer.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To orchestrate multiple deployments of the different ZKEVM Node components, a `d
- "/app/zkevm-node run --genesis /app/genesis.json --cfg /app/config.toml --components sequencer"
```
The container alone needs some parameters configured, access to certain configuration files and the appropiate ports exposed.
The container alone needs some parameters configured, access to certain configuration files and the appropriate ports exposed.
- environment: Env variables that supersede the config file
- `ZKEVM_NODE_POOLDB_HOST`: Name of PoolDB Database Host
Expand All @@ -34,4 +34,4 @@ The container alone needs some parameters configured, access to certain configur
- `your config.toml file`: /app/config.toml
- `your genesis.json file`: /app/genesis.json

[How to generate an account keystore](./account_keystore.md)
[How to generate an account keystore](./account_keystore.md)
2 changes: 1 addition & 1 deletion docs/components/synchronizer.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To orchestrate multiple deployments of the different ZKEVM Node components, a `d
- "/app/zkevm-node run --genesis /app/genesis.json --cfg /app/config.toml --components synchronizer"
```
The container alone needs some parameters configured, access to certain configuration files and the appropiate ports exposed.
The container alone needs some parameters configured, access to certain configuration files and the appropriate ports exposed.
- environment: Env variables that supersede the config file
- `ZKEVM_NODE_STATEDB_HOST`: Name of StateDB Database Host
Expand Down
2 changes: 1 addition & 1 deletion docs/running_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This documentation will help you running the following components:

## Requirements

The current version of the environment requires `go`, `docker` and `docker-compose` to be previously installed, check the links bellow to understand how to install them:
The current version of the environment requires `go`, `docker` and `docker-compose` to be previously installed, check the links below to understand how to install them:

- <https://go.dev/doc/install>
- <https://www.docker.com/get-started>
Expand Down

0 comments on commit c8091e1

Please sign in to comment.