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 typos and improve documentation across several files #1381

Merged
merged 5 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cmd/clef/intapi_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Additional labels for pre-release and build metadata are available as extensions

Added `clef_New` to the internal API callable from a UI.

> `New` creates a new password protected Account. The private key is protected with
> `New` creates a new password-protected Account. The private key is protected with
> the given password. Users are responsible to backup the private key that is stored
> in the keystore location that was specified when this API was created.
> This method is the same as New on the external API, the difference being that
Expand Down
8 changes: 4 additions & 4 deletions docs/cli/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The ```bor server``` command runs the Bor client.

- ```eth.requiredblocks```: Comma separated block number-to-hash mappings to require for peering (<number>=<hash>)

- ```ethstats```: Reporting URL of a ethstats service (nodename:secret@host:port)
- ```ethstats```: Reporting URL of an ethstats service (nodename:secret@host:port)

- ```gcmode```: Blockchain garbage collection mode ("full", "archive") (default: full)

Expand Down Expand Up @@ -148,7 +148,7 @@ The ```bor server``` command runs the Bor client.

- ```graphql```: Enable GraphQL on the HTTP-RPC server. Note that GraphQL can only be started if an HTTP server is started as well. (default: false)

- ```graphql.corsdomain```: Comma separated list of domains from which to accept cross origin requests (browser enforced) (default: localhost)
- ```graphql.corsdomain```: Comma separated list of domains from which to accept cross-origin requests (browser enforced) (default: localhost)

- ```graphql.vhosts```: Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard. (default: localhost)

Expand All @@ -158,7 +158,7 @@ The ```bor server``` command runs the Bor client.

- ```http.api```: API's offered over the HTTP-RPC interface (default: eth,net,web3,txpool,bor)

- ```http.corsdomain```: Comma separated list of domains from which to accept cross origin requests (browser enforced) (default: localhost)
- ```http.corsdomain```: Comma separated list of domains from which to accept cross-origin requests (browser enforced) (default: localhost)

- ```http.ep-requesttimeout```: Request Timeout for rpc execution pool for HTTP requests (default: 0s)

Expand Down Expand Up @@ -310,4 +310,4 @@ The ```bor server``` command runs the Bor client.

- ```txpool.pricelimit```: Minimum gas price limit to enforce for acceptance into the pool (default: 25000000000)

- ```txpool.rejournal```: Time interval to regenerate the local transaction journal (default: 1h0m0s)
- ```txpool.rejournal```: Time interval to regenerate the local transaction journal (default: 1h0m0s)
2 changes: 1 addition & 1 deletion p2p/simulations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ the expectation and what network events were emitted during the step run.

## HTTP API

The simulation framework includes a HTTP API that can be used to control the
The simulation framework includes an HTTP API that can be used to control the
simulation.

The API is initialised with a particular node adapter and has the following
Expand Down
Loading