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

chore: fix prover README typos #6426

Merged
merged 4 commits into from
Feb 16, 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
9 changes: 4 additions & 5 deletions packages/prover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

> This package is part of [ChainSafe's Lodestar](https://lodestar.chainsafe.io) project

Typescript REST client for the [Ethereum Consensus API spec](https://github.com/ethereum/beacon-apis)
jeluard marked this conversation as resolved.
Show resolved Hide resolved
A set of tools allowing to verify EL client JSON-RPC calls.

## Usage

Expand Down Expand Up @@ -37,13 +37,12 @@ console.log({balance, address});
You can also invoke the package as binary.

```bash
npm -i g @lodestar/prover
npm i -g @lodestar/prover
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch


lodestar-prover start \
--network sepolia \
--execution-rpc https://lodestar-sepoliarpc.chainsafe.io \
--mode rest \
--beacon-rpc https://lodestar-sepolia.chainsafe.io \
--executionRpcUrl https://lodestar-sepoliarpc.chainsafe.io \
--beaconUrls https://lodestar-sepolia.chainsafe.io \
--port 8080
```

Expand Down
2 changes: 1 addition & 1 deletion packages/prover/src/cli/cmds/start/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const startOptions: CliCommandOptions<StartArgs> = {
},

beaconUrls: {
description: "The beacon node PRC urls for 'rest' mode.",
description: "Urls of the beacon nodes to connect to.",
type: "string",
array: true,
conflicts: ["beaconBootnodes"],
Expand Down
Loading