File tree 6 files changed +26057
-10
lines changed
6 files changed +26057
-10
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,22 @@ besu \
77
77
--engine-jwt-secret=< path to jwtsecret.hex>
78
78
```
79
79
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
+
80
96
# Sepolia
81
97
82
98
``` 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
92
92
93
93
See the [ guide on connecting to a testnet] ( connect/testnet.md ) for more information.
94
94
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
+
95
107
## Run a node on Sepolia testnet
96
108
97
109
To 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`.
1892
1892
1893
1893
Possible values are:
1894
1894
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 |
1903
1904
1904
1905
::: tip
1905
1906
You can’t perform that action at this time.
0 commit comments