File tree Expand file tree Collapse file tree 6 files changed +26057
-10
lines changed Expand file tree Collapse file tree 6 files changed +26057
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -92,6 +92,18 @@ Where `<path>` and `<goerlidata-path>` are the path and directory to save the Go
9292
9393See 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
97109To run a node on [ Sepolia] ( https://github.com/goerli/sepolia ) specifying a data directory:
Original file line number Diff line number Diff line change @@ -1892,14 +1892,15 @@ The predefined network configuration. The default is `mainnet`.
18921892
18931893Possible 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
You can’t perform that action at this time.
0 commit comments