Skip to content

Commit

Permalink
Add holesky network. (#1396)
Browse files Browse the repository at this point in the history
* Add holesky network.

Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>

* Revert updates to stylelint version.

Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>

* Add holesky to the dictionary.

Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>

* Revert yarn.lock updates.

Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>

* Minor update.

Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>

---------

Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>
  • Loading branch information
bgravenorst committed Sep 5, 2023
1 parent 82e9d85 commit f85e4c7
Show file tree
Hide file tree
Showing 6 changed files with 26,057 additions and 10 deletions.
16 changes: 16 additions & 0 deletions docs/public-networks/get-started/connect/testnet.md
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
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
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

0 comments on commit f85e4c7

Please sign in to comment.