Skip to content

Commit c17a773

Browse files
authored
docs: replace wiki links with new doc pages in readme.md (#22065) (#22066)
1 parent 653e8b9 commit c17a773

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ archives are published at https://geth.ethereum.org/downloads/.
1414

1515
## Building the source
1616

17-
For prerequisites and detailed build instructions please read the [Installation Instructions](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum) on the wiki.
17+
For prerequisites and detailed build instructions please read the [Installation Instructions](https://geth.ethereum.org/docs/install-and-build/installing-geth).
1818

1919
Building `geth` requires both a Go (version 1.13 or later) and a C compiler. You can install
2020
them using your favourite package manager. Once the dependencies are installed, run
@@ -36,18 +36,18 @@ directory.
3636

3737
| Command | Description |
3838
| :-----------: | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
39-
| **`geth`** | Our main Ethereum CLI client. It is the entry point into the Ethereum network (main-, test- or private net), capable of running as a full node (default), archive node (retaining all historical state) or a light node (retrieving data live). It can be used by other processes as a gateway into the Ethereum network via JSON RPC endpoints exposed on top of HTTP, WebSocket and/or IPC transports. `geth --help` and the [CLI Wiki page](https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options) for command line options. |
40-
| `abigen` | Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages. It operates on plain [Ethereum contract ABIs](https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI) with expanded functionality if the contract bytecode is also available. However, it also accepts Solidity source files, making development much more streamlined. Please see our [Native DApps](https://github.com/ethereum/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts) wiki page for details. |
39+
| **`geth`** | Our main Ethereum CLI client. It is the entry point into the Ethereum network (main-, test- or private net), capable of running as a full node (default), archive node (retaining all historical state) or a light node (retrieving data live). It can be used by other processes as a gateway into the Ethereum network via JSON RPC endpoints exposed on top of HTTP, WebSocket and/or IPC transports. `geth --help` and the [CLI page](https://geth.ethereum.org/docs/interface/command-line-options) for command line options. |
40+
| `abigen` | Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages. It operates on plain [Ethereum contract ABIs](https://docs.soliditylang.org/en/develop/abi-spec.html) with expanded functionality if the contract bytecode is also available. However, it also accepts Solidity source files, making development much more streamlined. Please see our [Native DApps](https://geth.ethereum.org/docs/dapp/native-bindings) page for details. |
4141
| `bootnode` | Stripped down version of our Ethereum client implementation that only takes part in the network node discovery protocol, but does not run any of the higher level application protocols. It can be used as a lightweight bootstrap node to aid in finding peers in private networks. |
4242
| `evm` | Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode. Its purpose is to allow isolated, fine-grained debugging of EVM opcodes (e.g. `evm --code 60ff60ff --debug run`). |
43-
| `gethrpctest` | Developer utility tool to support our [ethereum/rpc-test](https://github.com/ethereum/rpc-tests) test suite which validates baseline conformity to the [Ethereum JSON RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC) specs. Please see the [test suite's readme](https://github.com/ethereum/rpc-tests/blob/master/README.md) for details. |
44-
| `rlpdump` | Developer utility tool to convert binary RLP ([Recursive Length Prefix](https://github.com/ethereum/wiki/wiki/RLP)) dumps (data encoding used by the Ethereum protocol both network as well as consensus wise) to user-friendlier hierarchical representation (e.g. `rlpdump --hex CE0183FFFFFFC4C304050583616263`). |
43+
| `gethrpctest` | Developer utility tool to support our [ethereum/rpc-test](https://github.com/ethereum/rpc-tests) test suite which validates baseline conformity to the [Ethereum JSON RPC](https://eth.wiki/json-rpc/API) specs. Please see the [test suite's readme](https://github.com/ethereum/rpc-tests/blob/master/README.md) for details. |
44+
| `rlpdump` | Developer utility tool to convert binary RLP ([Recursive Length Prefix](https://eth.wiki/en/fundamentals/rlp)) dumps (data encoding used by the Ethereum protocol both network as well as consensus wise) to user-friendlier hierarchical representation (e.g. `rlpdump --hex CE0183FFFFFFC4C304050583616263`). |
4545
| `puppeth` | a CLI wizard that aids in creating a new Ethereum network. |
4646

4747
## Running `geth`
4848

4949
Going through all the possible command line flags is out of scope here (please consult our
50-
[CLI Wiki page](https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options)),
50+
[CLI Wiki page](https://geth.ethereum.org/docs/interface/command-line-options)),
5151
but we've enumerated a few common parameter combos to get you up to speed quickly
5252
on how you can run your own `geth` instance.
5353

@@ -66,9 +66,9 @@ This command will:
6666
* Start `geth` in fast sync mode (default, can be changed with the `--syncmode` flag),
6767
causing it to download more data in exchange for avoiding processing the entire history
6868
of the Ethereum network, which is very CPU intensive.
69-
* Start up `geth`'s built-in interactive [JavaScript console](https://github.com/ethereum/go-ethereum/wiki/JavaScript-Console),
70-
(via the trailing `console` subcommand) through which you can invoke all official [`web3` methods](https://github.com/ethereum/wiki/wiki/JavaScript-API)
71-
as well as `geth`'s own [management APIs](https://github.com/ethereum/go-ethereum/wiki/Management-APIs).
69+
* Start up `geth`'s built-in interactive [JavaScript console](https://geth.ethereum.org/docs/interface/javascript-console),
70+
(via the trailing `console` subcommand) through which you can invoke all official [`web3` methods](https://web3js.readthedocs.io/en/)
71+
as well as `geth`'s own [management APIs](https://geth.ethereum.org/docs/rpc/server).
7272
This tool is optional and if you leave it out you can always attach to an already running
7373
`geth` instance with `geth attach`.
7474

@@ -170,8 +170,8 @@ accessible from the outside.
170170

171171
As a developer, sooner rather than later you'll want to start interacting with `geth` and the
172172
Ethereum network via your own programs and not manually through the console. To aid
173-
this, `geth` has built-in support for a JSON-RPC based APIs ([standard APIs](https://github.com/ethereum/wiki/wiki/JSON-RPC)
174-
and [`geth` specific APIs](https://github.com/ethereum/go-ethereum/wiki/Management-APIs)).
173+
this, `geth` has built-in support for a JSON-RPC based APIs ([standard APIs](https://eth.wiki/json-rpc/API)
174+
and [`geth` specific APIs](https://geth.ethereum.org/docs/rpc/server)).
175175
These can be exposed via HTTP, WebSockets and IPC (UNIX sockets on UNIX based
176176
platforms, and named pipes on Windows).
177177

@@ -277,7 +277,7 @@ $ bootnode --genkey=boot.key
277277
$ bootnode --nodekey=boot.key
278278
```
279279

280-
With the bootnode online, it will display an [`enode` URL](https://github.com/ethereum/wiki/wiki/enode-url-format)
280+
With the bootnode online, it will display an [`enode` URL](https://eth.wiki/en/fundamentals/enode-url-format)
281281
that other nodes can use to connect to it and exchange peer information. Make sure to
282282
replace the displayed IP address information (most probably `[::]`) with your externally
283283
accessible IP to get the actual `enode` URL.
@@ -344,7 +344,7 @@ Please make sure your contributions adhere to our coding guidelines:
344344
* Commit messages should be prefixed with the package(s) they modify.
345345
* E.g. "eth, rpc: make trace configs optional"
346346

347-
Please see the [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide)
347+
Please see the [Developers' Guide](https://geth.ethereum.org/docs/developers/devguide)
348348
for more details on configuring your environment, managing project dependencies, and
349349
testing procedures.
350350

0 commit comments

Comments
 (0)