diff --git a/src/pages/docs/developers/geth-developer/dns-discovery-setup.md b/src/pages/docs/developers/geth-developer/dns-discovery-setup.md index 685b842886..90f7d78645 100644 --- a/src/pages/docs/developers/geth-developer/dns-discovery-setup.md +++ b/src/pages/docs/developers/geth-developer/dns-discovery-setup.md @@ -57,7 +57,7 @@ devp2p nodeset filter all-nodes.json -eth-network mainnet > mainnet.nodes.exampl The following filter flags are available: -- `-eth-network ( mainnet | ropsten | rinkeby | goerli )` selects an Ethereum network. +- `-eth-network ( mainnet | sepolia | goerli )` selects an Ethereum network. - `-les-server` selects LES server nodes. - `-ip ` restricts nodes to the given IP range. - `-min-age ` restricts the result to nodes which have been live for the diff --git a/src/pages/docs/developers/geth-developer/private-network.md b/src/pages/docs/developers/geth-developer/private-network.md index 560c543930..eade1a89d4 100644 --- a/src/pages/docs/developers/geth-developer/private-network.md +++ b/src/pages/docs/developers/geth-developer/private-network.md @@ -23,7 +23,7 @@ geth --networkid 12345 ### Choosing A Consensus Algorithm -While the main network uses proof-of-work (PoW) to secure the blockchain, Geth also supports the the 'Clique' proof-of-authority (PoA) consensus algorithm as an alternative for private networks. Clique is strongly recommended for private testnets because PoA is far less resource-intensive than PoW. Clique is currently used as the consensus algorithm in public testnets such as [Rinkeby](https://www.rinkeby.io) and [Görli](https://goerli.net). The key differences between the consensus algorithms available in Geth are: +While the main network uses proof-of-work (PoW) to secure the blockchain, Geth also supports the the 'Clique' proof-of-authority (PoA) consensus algorithm as an alternative for private networks. Clique is strongly recommended for private testnets because PoA is far less resource-intensive than PoW. The key differences between the consensus algorithms available in Geth are: #### Ethash diff --git a/src/pages/docs/fundamentals/command-line-options.md b/src/pages/docs/fundamentals/command-line-options.md index 57aed02a1e..5dfbcd54d5 100644 --- a/src/pages/docs/fundamentals/command-line-options.md +++ b/src/pages/docs/fundamentals/command-line-options.md @@ -55,7 +55,7 @@ ETHEREUM OPTIONS: --keystore value Directory for the keystore (default = inside the datadir) --usb Enable monitoring and management of USB hardware wallets --pcscdpath value Path to the smartcard daemon (pcscd) socket file - --networkid value Explicitly set network id (integer)(For testnets: use --ropsten, --rinkeby, --goerli instead) (default: 1) + --networkid value Explicitly set network id (integer)(For testnets: use --sepolia, --goerli instead) (default: 1) --syncmode value Blockchain sync mode ("snap", "full" or "light") (default: snap) --exitwhensynced Exits after block synchronisation completes --gcmode value Blockchain garbage collection mode ("full", "archive") (default: "full") @@ -65,11 +65,8 @@ ETHEREUM OPTIONS: --lightkdf Reduce key-derivation RAM & CPU usage at some expense of KDF strength --eth.requiredblocks value Comma separated block number-to-hash mappings to require for peering (=) --mainnet Ethereum mainnet - --ropsten Ropsten network: pre-configured proof-of-stake test network - --rinkeby Rinkeby network: pre-configured proof-of-authority test network --goerli Görli network: pre-configured proof-of-authority test network --sepolia Sepolia network: pre-configured proof-of-work test network - --kiln Kiln network: pre-configured proof-of-work to proof-of-stake test network --datadir value Data directory for the databases and keystore (default: "~/.ethereum") --datadir.ancient value Data directory for ancient chain segments (default = inside chaindata) --remotedb value URL for remote database diff --git a/src/pages/docs/interacting-with-geth/rpc/ns-eth.md b/src/pages/docs/interacting-with-geth/rpc/ns-eth.md index b610e41afb..75446346f0 100644 --- a/src/pages/docs/interacting-with-geth/rpc/ns-eth.md +++ b/src/pages/docs/interacting-with-geth/rpc/ns-eth.md @@ -64,6 +64,7 @@ Example: The method returns a single `Binary` consisting the return value of the executed contract call. #### Simple example +**note that this example uses the Rinkeby network, which is now deprecated** With a synced Rinkeby node with RPC exposed on localhost (`geth --rinkeby --http`) we can make a call against the [CheckpointOracle](https://rinkeby.etherscan.io/address/0xebe8efa441b9302a0d7eaecc277c09d20d684540) to retrieve the list of administrators: diff --git a/src/pages/docs/tools/devp2p.md b/src/pages/docs/tools/devp2p.md index 05623e76fa..f22fa0366d 100644 --- a/src/pages/docs/tools/devp2p.md +++ b/src/pages/docs/tools/devp2p.md @@ -62,7 +62,7 @@ Run `devp2p nodeset filter ` to write a new, filte - `-limit ` limits the output set to N entries, taking the top N nodes by score - `-ip ` filters nodes by IP subnet - `-min-age ` filters nodes by 'first seen' time -- `-eth-network ` filters nodes by "eth" ENR entry +- `-eth-network ` filters nodes by "eth" ENR entry - `-les-server` filters nodes by LES server support - `-snap` filters nodes by snap protocol support