Skip to content

Commit f85e4c7

Browse files
authored
Add holesky network. (#1396)
* Add holesky network. Signed-off-by: bgravenorst <[email protected]> * Revert updates to stylelint version. Signed-off-by: bgravenorst <[email protected]> * Add holesky to the dictionary. Signed-off-by: bgravenorst <[email protected]> * Revert yarn.lock updates. Signed-off-by: bgravenorst <[email protected]> * Minor update. Signed-off-by: bgravenorst <[email protected]> --------- Signed-off-by: bgravenorst <[email protected]>
1 parent 82e9d85 commit f85e4c7

File tree

6 files changed

+26057
-10
lines changed

6 files changed

+26057
-10
lines changed

docs/public-networks/get-started/connect/testnet.md

+16
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,22 @@ besu \
7777
--engine-jwt-secret=<path to jwtsecret.hex>
7878
```
7979

80+
# Holesky
81+
82+
```bash
83+
besu \
84+
--network=holesky \
85+
--rpc-http-enabled=true \
86+
--rpc-http-host=0.0.0.0 \
87+
--rpc-http-cors-origins="*" \
88+
--rpc-ws-enabled=true \
89+
--rpc-ws-host=0.0.0.0 \
90+
--host-allowlist="*" \
91+
--engine-host-allowlist="*" \
92+
--engine-rpc-enabled \
93+
--engine-jwt-secret=<path to jwtsecret.hex>
94+
```
95+
8096
# Sepolia
8197

8298
```bash

docs/public-networks/get-started/start-node.md

+12
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,18 @@ Where `<path>` and `<goerlidata-path>` are the path and directory to save the Go
9292

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

95+
## Run a node on Holesky testnet
96+
97+
To run a node on [Holesky](https://github.com/eth-clients/holesky) specifying a data directory:
98+
99+
```bash
100+
besu --network=holesky --data-path=<path>/<holeskydata-path>
101+
```
102+
103+
Where `<path>` and `<holeskydata-path>` are the path and directory to save the Holesky chain data to.
104+
105+
See the [guide on connecting to a testnet](connect/testnet.md) for more information.
106+
95107
## Run a node on Sepolia testnet
96108

97109
To run a node on [Sepolia](https://github.com/goerli/sepolia) specifying a data directory:

docs/public-networks/reference/cli/options.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -1892,14 +1892,15 @@ The predefined network configuration. The default is `mainnet`.
18921892

18931893
Possible values are:
18941894

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

19041905
:::tip
19051906

0 commit comments

Comments
 (0)