Skip to content

Commit f1c3ac9

Browse files
authored
deprecates holesky, mordor, classic & rmvs ref to previously deprecat… (#1868)
* deprecates holesky, mordor, classic & rmvs ref to previously deprecated networks/testnets Signed-off-by: m4sterbunny <harrie.bickle@consensys.net> * Update docs/public-networks/concepts/node-sync.md Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com> Signed-off-by: m4sterbunny <harrie.bickle-ext@consensys.net> Signed-off-by: m4sterbunny <harrie.bickle@consensys.net> editing signoff to flag free email * Update docs/public-networks/reference/evm-tool.md Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com> Signed-off-by: m4sterbunny <harrie.bickle-ext@consensys.net> Signed-off-by: m4sterbunny <harrie.bickle@consensys.net> Adding flag-free email for commit sign off * Update docs/public-networks/tutorials/besu-teku-testnet.md Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com> Signed-off-by: m4sterbunny <harrie.bickle-ext@consensys.net> Signed-off-by: m4sterbunny <harrie.bickle@consensys.net> Adds flag-free email for signoff --------- Signed-off-by: m4sterbunny <harrie.bickle@consensys.net>
1 parent 81d22b3 commit f1c3ac9

File tree

18 files changed

+37
-141
lines changed

18 files changed

+37
-141
lines changed

docs/private-networks/get-started/install/run-docker-image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ When running in a Docker container, [`--nat-method`](../../../public-networks/ho
7070
You can specify [Besu environment variables](../../../public-networks/reference/cli/options.md#specify-options) with the Docker image instead of the command line options.
7171

7272
<Tabs>
73-
<TabItem value="Holesky" label="Holesky">
73+
<TabItem value="Sepolia" label="Sepolia">
7474

7575
```bash
76-
docker run -p 30303:30303 -p 8545:8545 -e BESU_RPC_HTTP_ENABLED=true -e BESU_NETWORK=holesky hyperledger/besu:latest
76+
docker run -p 30303:30303 -p 8545:8545 -e BESU_RPC_HTTP_ENABLED=true -e BESU_NETWORK=sepolia hyperledger/besu:latest
7777
```
7878
</TabItem>
7979

docs/private-networks/how-to/configure/bootnodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To find peers, configure one or more bootnodes. To configure a specific set of p
2727

2828
:::note Mainnet and public testnets
2929

30-
For Mainnet and the Sepolia, Ephemery and Holesky testnets, Besu has an internal list of enode URLs and uses this list automatically when you specify the [`--network`](../../../public-networks/reference/cli/options.md#network) option.
30+
For Mainnet and the Sepolia and Ephemery testnets, Besu has an internal list of enode URLs and uses this list automatically when you specify the [`--network`](../../../public-networks/reference/cli/options.md#network) option.
3131

3232
:::
3333

docs/public-networks/concepts/genesis-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tags:
1111

1212
The genesis file defines the first block in the chain, and the first block defines which chain you want to join.
1313

14-
For Ethereum Mainnet and public testnets (for example, Holesky) the genesis configuration definition is in Besu and used when specifying a public network using the [`--network`](../reference/cli/options.md#network) command line option.
14+
For Ethereum Mainnet and public testnets (for example, Sepolia) the genesis configuration definition is in Besu and used when specifying a public network using the [`--network`](../reference/cli/options.md#network) command line option.
1515

1616
For private networks, [create a JSON genesis file](https://consensys.net/blog/quorum/hyperledger-besu-how-to-create-an-ethereum-genesis-file/), then specify the genesis file using the [`--genesis-file`](../reference/cli/options.md#genesis-file) command line option.
1717

docs/public-networks/concepts/network-and-chain-id.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,14 @@ Besu sets the chain ID (and by default the network ID) automatically, using eith
3737
| Network | Chain | Chain ID | Network ID | Type |
3838
| --------- | ----- | -------- | ---------- | ----------- |
3939
| `mainnet` | ETH | 1 | 1 | Production |
40-
| `holesky` | ETH | 17000 | 17000 | Test |
40+
| `hoodi` | ETH | 560048 | 560048 | Test |
4141
| `sepolia` | ETH | 11155111 | 11155111 | Test |
4242
| `dev` | ETH | 2018 | 2018 | Development |
43-
| `classic` | ETC | 61 | 1 | Production |
44-
| `mordor` | ETC | 63 | 7 | Test |
4543
| `ephemery`| ETH | [dynamic](https://github.com/ephemery-testnet/ephemery-genesis/releases) | [dynamic](https://github.com/ephemery-testnet/ephemery-genesis/releases) | Test |
4644

4745
:::info
4846

49-
The Ropsten, Rinkeby, and Kiln testnets are deprecated.
47+
The following networks and testnets are deprecated: ETC Classic, Holesky, and Mordor.
5048

5149
:::
5250

docs/public-networks/concepts/node-sync.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ You need Besu version 22.4.3 or later to use checkpoint sync.
127127
Checkpoint sync behaves like [snap sync](#snap-synchronization), but instead of syncing from the
128128
genesis block, it syncs from a specific checkpoint block configured in the [Besu genesis file](genesis-file.md).
129129

130-
Ethereum Mainnet, Holesky, and Ephemery testnet configurations already define default checkpoints, so you
130+
Ethereum Mainnet, Sepolia and Ephemery testnet configurations already define default checkpoints, so you
131131
don't have to add this yourself.
132132

133133
For other networks, you can configure a checkpoint in the genesis file by specifying the block hash,

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

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import TabItem from '@theme/TabItem';
1111

1212
# Connect to a testnet
1313

14-
Run Besu as an [execution client](../../concepts/node-clients.md#execution-clients) with any consensus client on the [Holesky](https://github.com/eth-clients/holesky), [Hoodi](https://github.com/eth-clients/hoodi), [Sepolia](https://github.com/eth-clients/sepolia), and [Ephemery](https://github.com/ephemery-testnet/ephemery-resources) testnets.
14+
Run Besu as an [execution client](../../concepts/node-clients.md#execution-clients) with any consensus client on the [Hoodi](https://github.com/eth-clients/hoodi), [Sepolia](https://github.com/eth-clients/sepolia), or [Ephemery](https://github.com/ephemery-testnet/ephemery-resources) testnet.
1515

1616
If you're using [Teku](https://docs.teku.consensys.net/en/latest/) as a consensus client, you can follow the [Besu and Teku testnet tutorial](../../tutorials/besu-teku-testnet.md).
1717

@@ -63,7 +63,7 @@ If you can't get testnet ETH using the faucet, you can ask for help on the [EthS
6363

6464
:::
6565

66-
Generate validator keys for one or more validators using the [Holesky Staking Launchpad](https://holesky.launchpad.ethereum.org/), [Hoodi Staking Launchpad](https://hoodi.launchpad.ethereum.org/), [Ephemery Staking Launchpad](https://launchpad.ephemery.dev/), or [request to become validator on Sepolia](https://notes.ethereum.org/zvkfSmYnT0-uxwwEegbCqg).
66+
Generate validator keys for one or more validators using the [Hoodi Staking Launchpad](https://hoodi.launchpad.ethereum.org/), [Ephemery Staking Launchpad](https://launchpad.ephemery.dev/), or [request to become validator on Sepolia](https://notes.ethereum.org/zvkfSmYnT0-uxwwEegbCqg).
6767

6868
:::info
6969

@@ -77,24 +77,6 @@ Run the following command or specify the options in a [configuration file](../..
7777

7878
<Tabs>
7979

80-
<TabItem value="Holesky" label="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-
96-
</TabItem>
97-
9880
<TabItem value="Hoodi" label="Hoodi">
9981

10082
```bash

docs/public-networks/get-started/install/run-docker-image.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ When running in a Docker container, [`--nat-method`](../../how-to/connect/specif
8585
You can specify [Besu environment variables](../../reference/cli/options.md#specify-options) with the Docker image instead of the command line options.
8686

8787
```bash title="Example"
88-
docker run -p 30303:30303 -p 8545:8545 -e BESU_RPC_HTTP_ENABLED=true -e BESU_NETWORK=holesky hyperledger/besu:latest
88+
docker run -p 30303:30303 -p 8545:8545 -e BESU_RPC_HTTP_ENABLED=true -e BESU_NETWORK=sepolia hyperledger/besu:latest
8989
```
9090

9191
:::caution Unsupported address type exception
@@ -110,12 +110,12 @@ To run a node that mines blocks at a rate suitable for testing purposes with Web
110110
docker run -p 8546:8546 --mount type=bind,source=/<myvolume/besu/testnode>,target=/var/lib/besu hyperledger/besu:latest --miner-enabled --miner-coinbase fe3b557e8fb62b89f4916b721be55ceb828dbd73 --rpc-ws-enabled --network=dev --data-path=/var/lib/besu
111111
```
112112

113-
### Run a node on Holesky testnet
113+
### Run a node on Sepolia testnet
114114

115-
To run a node on Holesky:
115+
To run a node on Sepolia:
116116

117117
```bash
118-
docker run -p 30303:30303 --mount type=bind,source=/<myvolume/besu/holesky>,target=/var/lib/besu hyperledger/besu:latest --network=holesky --data-path=/var/lib/besu
118+
docker run -p 30303:30303 --mount type=bind,source=/<myvolume/besu/sepolia>,target=/var/lib/besu hyperledger/besu:latest --network=sepolia --data-path=/var/lib/besu
119119
```
120120

121121
### Run a node on Ethereum Mainnet

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

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ To delete the local block data, delete the `database` directory in the `besu/bui
2424

2525
## Genesis configuration
2626

27-
Besu specifies the genesis configuration, and sets the network ID and bootnodes when connecting to [Holesky](#run-a-node-on-holesky-testnet), [Sepolia](#run-a-node-on-sepolia-testnet), [Ephemery](#run-a-node-on-ephemery-testnet) and [Mainnet](#run-a-node-on-ethereum-mainnet).
27+
Besu specifies the genesis configuration, and sets the network ID and bootnodes when connecting to [Hoodi](#run-a-node-on-hoodi-testnet), [Sepolia](#run-a-node-on-sepolia-testnet), [Ephemery](#run-a-node-on-ephemery-testnet), and [Mainnet](#run-a-node-on-ethereum-mainnet).
2828

2929
:::info
3030

31-
The Ropsten, Rinkeby, and Kiln testnets are deprecated.
31+
The following networks and testnets are deprecated: ETC Classic, Holesky, and Mordor.
3232

3333
:::
3434

@@ -80,18 +80,6 @@ The following settings are a security risk in production environments:
8080

8181
:::
8282

83-
## Run a node on Holesky testnet
84-
85-
To run a node on [Holesky](https://github.com/eth-clients/holesky) specifying a data directory:
86-
87-
```bash
88-
besu --network=holesky --data-path=<path>/<holeskydata-path>
89-
```
90-
91-
Where `<path>` and `<holeskydata-path>` are the path and directory to save the Holesky chain data to.
92-
93-
See the [guide on connecting to a testnet](connect/testnet.md) for more information.
94-
9583
## Run a node on Hoodi testnet
9684

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

docs/public-networks/how-to/bonsai-limit-trie-logs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,5 +216,5 @@ Check if you are running the command for a network other than Mainnet.
216216
To specify a network, run a command that looks similar to the following:
217217
218218
```bash
219-
sudo /usr/local/bin/besu/bin/besu --network=holesky --sync-mode=SNAP --data-storage-format=BONSAI --data-path=/var/lib/besu storage trie-log prune
219+
sudo /usr/local/bin/besu/bin/besu --network=sepolia --sync-mode=SNAP --data-storage-format=BONSAI --data-path=/var/lib/besu storage trie-log prune
220220
```

docs/public-networks/how-to/configure-java/pass-jvm-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ For Bash-based executions, you can set the variable for only the scope of the pr
1717

1818
```bash
1919
BESU_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 \
20-
besu --network=holesky
20+
besu --network=sepolia
2121
```

0 commit comments

Comments
 (0)