From 82e9d85102929e78daafaec1863be9a46f33b06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20L=C3=B3pez=20Le=C3=B3n?= Date: Thu, 31 Aug 2023 12:44:52 -0300 Subject: [PATCH] Remove deprecated networks (#1391) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Remove Astor network Removed in [Besu#4869](https://github.com/hyperledger/besu/pull/4869) Signed-off-by: Diego López León * Remove Kotti network Removed in [Besu#5816](https://github.com/hyperledger/besu/pull/5816) Signed-off-by: Diego López León --------- Signed-off-by: Diego López León --- docs/assets/postman/postman_collection.json | 2 +- docs/public-networks/concepts/network-and-chain-id.md | 2 -- docs/public-networks/reference/api/index.md | 2 -- docs/public-networks/reference/cli/options.md | 2 -- 4 files changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/assets/postman/postman_collection.json b/docs/assets/postman/postman_collection.json index 55bfdfcf814..e86cdb37f98 100644 --- a/docs/assets/postman/postman_collection.json +++ b/docs/assets/postman/postman_collection.json @@ -3868,7 +3868,7 @@ "host": ["{{rpc-http-host}}"], "port": "{{rpc-http-port}}" }, - "description": "Returns the [network ID](https://besu.hyperledger.org/en/stable/Concepts/NetworkID-And-ChainID).\n\n#### Parameters\n\nNone\n\n#### Returns\n\n`result` : *string* - Current network ID.\n\n| Network ID | Chain | Network | Description\n|------------|-------|---------|-------------------------------|\n| `1` | ETH | Mainnet | Main Ethereum network |\n| `3` | ETH | Ropsten | PoW test network |\n| `4` | ETH | Rinkeby | PoA test network using Clique |\n| `5` | ETH | Goerli | PoA test network using Clique |\n| `2018` | ETH | Dev | PoW development network |\n| `1` | ETC | Classic | Main Ethereum Classic network |\n| `6` | ETC | Kotti | PoA test network using Clique |\n| `7` | ETC | Mordor | PoW test network |\n\n> **note**\n>\n> For almost all networks network ID and chain ID are the same.\nThe only networks in the table above with different network and chain IDs are\nClassic with a chain ID of `61` and Mordor with a chain ID of `63`." + "description": "Returns the [network ID](https://besu.hyperledger.org/en/stable/Concepts/NetworkID-And-ChainID).\n\n#### Parameters\n\nNone\n\n#### Returns\n\n`result` : *string* - Current network ID.\n\n| Network ID | Chain | Network | Description\n|------------|-------|---------|-------------------------------|\n| `1` | ETH | Mainnet | Main Ethereum network |\n| `3` | ETH | Ropsten | PoW test network |\n| `4` | ETH | Rinkeby | PoA test network using Clique |\n| `5` | ETH | Goerli | PoA test network using Clique |\n| `2018` | ETH | Dev | PoW development network |\n| `1` | ETC | Classic | Main Ethereum Classic network |\n| `7` | ETC | Mordor | PoW test network |\n\n> **note**\n>\n> For almost all networks network ID and chain ID are the same.\nThe only networks in the table above with different network and chain IDs are\nClassic with a chain ID of `61` and Mordor with a chain ID of `63`." }, "response": [ { diff --git a/docs/public-networks/concepts/network-and-chain-id.md b/docs/public-networks/concepts/network-and-chain-id.md index 85db0c4b7da..a72133d3a5e 100644 --- a/docs/public-networks/concepts/network-and-chain-id.md +++ b/docs/public-networks/concepts/network-and-chain-id.md @@ -42,8 +42,6 @@ Besu sets the chain ID (and by default the network ID) automatically, using eith | `dev` | ETH | 2018 | 2018 | Development | | `classic` | ETC | 61 | 1 | Production | | `mordor` | ETC | 63 | 7 | Test | -| `kotti` | ETC | 6 | 6 | Test | -| `astor` | ETC | 212 | 212 | Test | :::info diff --git a/docs/public-networks/reference/api/index.md b/docs/public-networks/reference/api/index.md index 370b6ebd45a..5c6301f89e7 100644 --- a/docs/public-networks/reference/api/index.md +++ b/docs/public-networks/reference/api/index.md @@ -5528,8 +5528,6 @@ None | `2018` | ETH | Dev | PoW development network | | `1` | ETC | Classic | Main Ethereum Classic network | | `7` | ETC | Mordor | PoW test network | -| `6` | ETC | Kotti | PoA test network using Clique | -| `212` | ETC | Astor | PoW test network | :::note diff --git a/docs/public-networks/reference/cli/options.md b/docs/public-networks/reference/cli/options.md index fb37c0e1244..332c0a7d749 100644 --- a/docs/public-networks/reference/cli/options.md +++ b/docs/public-networks/reference/cli/options.md @@ -1900,8 +1900,6 @@ Possible values are: | `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 | -| `kotti` | ETC | Test | [FAST](#sync-mode) | A PoA network using Clique | -| `astor` | ETC | Test | [FAST](#sync-mode) | A PoW network | :::tip