aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorligi <ligi@ligi.de>2018-08-05 21:37:26 +0800
committerligi <ligi@ligi.de>2018-08-05 21:40:22 +0800
commit2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff (patch)
tree8752cf082d16e8371d3aeb10238880ee2a501762 /README.md
parent35fcd2f42388d10c2c638dd3e2b4bd4306b07c19 (diff)
downloadgo-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.tar
go-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.tar.gz
go-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.tar.bz2
go-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.tar.lz
go-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.tar.xz
go-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.tar.zst
go-tangerine-2901b8b2d23e1dc62c26ad2d9a2234bf96c1b3ff.zip
README: Fix punctuation - closes #17317
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2fabcdd79..86fcdeee4 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ The go-ethereum project comes with several wrappers/executables found in the `cm
| Command | Description |
|:----------:|-------------|
-| **`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. |
+| **`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. |
| `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. |
| `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. |
| `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`). |