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
{{ message }}
This repository was archived by the owner on May 21, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ on how you can run your own `geth` instance.
66
66
By far the most common scenario is people wanting to simply interact with the Ethereum
67
67
network: create accounts; transfer funds; deploy and interact with contracts. For this
68
68
particular use-case the user doesn't care about years-old historical data, so we can
69
-
fast-sync quickly to the current state of the network. To do so:
69
+
sync quickly to the current state of the network. To do so:
70
70
71
71
```shell
72
72
$ geth console
@@ -77,7 +77,7 @@ This command will:
77
77
causing it to download more data in exchange for avoiding processing the entire history
78
78
of the Ethereum network, which is very CPU intensive.
79
79
* Start up `geth`'s built-in interactive [JavaScript console](https://geth.ethereum.org/docs/interface/javascript-console),
80
-
(via the trailing `console` subcommand) through which you can interact using [`web3` methods](https://web3js.readthedocs.io/)
80
+
(via the trailing `console` subcommand) through which you can interact using [`web3` methods](https://github.com/ChainSafe/web3.js/blob/0.20.7/DOCUMENTATION.md)
81
81
(note: the `web3` version bundled within `geth` is very old, and not up to date with official docs),
82
82
as well as `geth`'s own [management APIs](https://geth.ethereum.org/docs/rpc/server).
83
83
This tool is optional and if you leave it out you can always attach to an already running
0 commit comments