You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ archives are published at https://geth.ethereum.org/downloads/.
14
14
15
15
## Building the source
16
16
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).
18
18
19
19
Building `geth` requires both a Go (version 1.13 or later) and a C compiler. You can install
20
20
them using your favourite package manager. Once the dependencies are installed, run
|**`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. |
41
41
|`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. |
42
42
|`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`). |
45
45
|`puppeth`| a CLI wizard that aids in creating a new Ethereum network. |
46
46
47
47
## Running `geth`
48
48
49
49
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)),
51
51
but we've enumerated a few common parameter combos to get you up to speed quickly
52
52
on how you can run your own `geth` instance.
53
53
@@ -66,9 +66,9 @@ This command will:
66
66
* Start `geth` in fast sync mode (default, can be changed with the `--syncmode` flag),
67
67
causing it to download more data in exchange for avoiding processing the entire history
68
68
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).
72
72
This tool is optional and if you leave it out you can always attach to an already running
73
73
`geth` instance with `geth attach`.
74
74
@@ -170,8 +170,8 @@ accessible from the outside.
170
170
171
171
As a developer, sooner rather than later you'll want to start interacting with `geth` and the
172
172
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)).
175
175
These can be exposed via HTTP, WebSockets and IPC (UNIX sockets on UNIX based
176
176
platforms, and named pipes on Windows).
177
177
@@ -277,7 +277,7 @@ $ bootnode --genkey=boot.key
277
277
$ bootnode --nodekey=boot.key
278
278
```
279
279
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)
281
281
that other nodes can use to connect to it and exchange peer information. Make sure to
282
282
replace the displayed IP address information (most probably `[::]`) with your externally
283
283
accessible IP to get the actual `enode` URL.
@@ -344,7 +344,7 @@ Please make sure your contributions adhere to our coding guidelines:
344
344
* Commit messages should be prefixed with the package(s) they modify.
345
345
* E.g. "eth, rpc: make trace configs optional"
346
346
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)
348
348
for more details on configuring your environment, managing project dependencies, and
0 commit comments