aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorFabio Berger <fabioberger1991@gmail.com>2016-06-21 12:52:38 +0800
committerFabio Berger <fabioberger1991@gmail.com>2016-06-22 00:38:35 +0800
commita3efdb13f281cef2db0e384669f2aa5c8b110416 (patch)
tree5e7dc043505c388ef86faa77adf88477cd80b49b /README.md
parent4f3f6e28d545ffd84a98520347ba6670d80272b5 (diff)
downloadgo-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.gz
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.bz2
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.lz
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.xz
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.zst
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.zip
README, core, rpc: fix various typos
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 1dcfbf97f..95c7a3615 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,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 an gateway into the Ethereum network via JSON RPC endpoints exposed on top of HTTP, WebSocket and/or IPC transports. Please see our [Command Line Options](https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options) wiki page for details. |
+| **`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. Please see our [Command Line Options](https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options) wiki page for details. |
| `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). |