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

Add holesky network. #1396

Merged
merged 5 commits into from
Sep 5, 2023
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
16 changes: 16 additions & 0 deletions docs/public-networks/get-started/connect/testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,22 @@ besu \
--engine-jwt-secret=<path to jwtsecret.hex>
```

# Holesky

```bash
besu \
--network=holesky \
--rpc-http-enabled=true \
--rpc-http-host=0.0.0.0 \
--rpc-http-cors-origins="*" \
--rpc-ws-enabled=true \
--rpc-ws-host=0.0.0.0 \
--host-allowlist="*" \
--engine-host-allowlist="*" \
--engine-rpc-enabled \
--engine-jwt-secret=<path to jwtsecret.hex>
```

# Sepolia

```bash
Expand Down
12 changes: 12 additions & 0 deletions docs/public-networks/get-started/start-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,18 @@ Where `<path>` and `<goerlidata-path>` are the path and directory to save the Go

See the [guide on connecting to a testnet](connect/testnet.md) for more information.

## Run a node on Holesky testnet

To run a node on [Holesky](https://github.com/eth-clients/holesky) specifying a data directory:

```bash
besu --network=holesky --data-path=<path>/<holeskydata-path>
```

Where `<path>` and `<holeskydata-path>` are the path and directory to save the Holesky chain data to.

See the [guide on connecting to a testnet](connect/testnet.md) for more information.

## Run a node on Sepolia testnet

To run a node on [Sepolia](https://github.com/goerli/sepolia) specifying a data directory:
Expand Down
17 changes: 9 additions & 8 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -1892,14 +1892,15 @@ The predefined network configuration. The default is `mainnet`.

Possible values are:

| Network | Chain | Type | Default Sync Mode | Description |
| :-- | :-- | :-- | :-- | :-- |
| `mainnet` | ETH | Production | [FAST](#sync-mode) | The main network |
| `goerli` | ETH | Test | [FAST](#sync-mode) | A PoA network using Clique |
| `sepolia` | ETH | Test | [FAST](#sync-mode) | A PoW network |
| `dev` | ETH | Development | [FULL](#sync-mode) | A PoW network with a low difficulty to enable local CPU mining |
| `classic` | ETC | Production | [FAST](#sync-mode) | The main Ethereum Classic network |
| `mordor ` | ETC | Test | [FAST](#sync-mode) | A PoW network |
| Network | Chain | Type | Default Sync Mode | Description |
| :-------- | :---- | :-----------| :----------------- | :------------------------------------------------------------- |
| `mainnet` | ETH | Production | [FAST](#sync-mode) | The main network |
| `goerli` | ETH | Test | [FAST](#sync-mode) | A PoS network |
| `holesky` | ETH | Test | [FAST](#sync-mode) | A PoS network |
| `sepolia` | ETH | Test | [FAST](#sync-mode) | A PoS network |
| `dev` | ETH | Development | [FULL](#sync-mode) | A PoW network with a low difficulty to enable local CPU mining |
| `classic` | ETC | Production | [FAST](#sync-mode) | The main Ethereum Classic network |
| `mordor ` | ETC | Test | [FAST](#sync-mode) | A PoW network |

:::tip

Expand Down
Loading