aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorEmin Mahrt <emin@proud.de>2017-07-07 22:41:26 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-07-07 22:41:26 +0800
commit65f0e905ddda9be97368839b67be5754b33a0eea (patch)
tree42a0b8c2e810c16142bfe3c843afa47020d76e0e /README.md
parent4b8860a7b4d409ed74c57a6a423af8103204c482 (diff)
downloaddexon-65f0e905ddda9be97368839b67be5754b33a0eea.tar
dexon-65f0e905ddda9be97368839b67be5754b33a0eea.tar.gz
dexon-65f0e905ddda9be97368839b67be5754b33a0eea.tar.bz2
dexon-65f0e905ddda9be97368839b67be5754b33a0eea.tar.lz
dexon-65f0e905ddda9be97368839b67be5754b33a0eea.tar.xz
dexon-65f0e905ddda9be97368839b67be5754b33a0eea.tar.zst
dexon-65f0e905ddda9be97368839b67be5754b33a0eea.zip
README: add missing full stop (#14766)
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 8d4f37f5e..0ac9fe8fb 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,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. |
| `disasm` | Bytecode disassembler to convert EVM (Ethereum Virtual Machine) bytecode into more user friendly assembly-like opcodes (e.g. `echo "6001" | disasm`). For details on the individual opcodes, please see pages 22-30 of the [Ethereum Yellow Paper](http://gavwood.com/paper.pdf). |