Skip to content

Commit d7c398b

Browse files
committed
build: add swarm command to binary packages, update README
1 parent 5f5d0aa commit d7c398b

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ The go-ethereum project comes with several wrappers/executables found in the `cm
3939
| `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 insolated, fine-grained debugging of EVM opcodes (e.g. `evm --code 60ff60ff --debug`). |
4040
| `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. |
4141
| `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`). |
42-
| `bzzd` | swarm daemon. This is the entrypoint for the swarm network. `bzzd --help` for command line options. See https://swarm-guide.readthedocs.io for swarm documentation. |
43-
| `bzzup` | swarm command line file uploader. `bzzup --help` for command line options |
44-
| `bzzhash` | command to calculate the swarm hash of a file or directory. `bzzhash --help` for command line options |
42+
| `swarm` | swarm daemon and tools. This is the entrypoint for the swarm network. `swarm --help` for command line options and subcommands. See https://swarm-guide.readthedocs.io for swarm documentation. |
4543

4644
## Running geth
4745

build/ci.go

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ var (
7272
executablePath("abigen"),
7373
executablePath("evm"),
7474
executablePath("geth"),
75-
executablePath("bzzd"),
76-
executablePath("bzzhash"),
77-
executablePath("bzzup"),
75+
executablePath("swarm"),
7876
executablePath("rlpdump"),
7977
}
8078

@@ -93,16 +91,8 @@ var (
9391
Description: "Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode.",
9492
},
9593
{
96-
Name: "bzzd",
97-
Description: "Ethereum Swarm daemon",
98-
},
99-
{
100-
Name: "bzzup",
101-
Description: "Ethereum Swarm command line file/directory uploader",
102-
},
103-
{
104-
Name: "bzzhash",
105-
Description: "Ethereum Swarm file/directory hash calculator",
94+
Name: "swarm",
95+
Description: "Ethereum Swarm daemon and tools",
10696
},
10797
{
10898
Name: "abigen",

0 commit comments

Comments
 (0)