Skip to content

Commit 706a1e5

Browse files
karalabefjl
authored andcommitted
cmd/puppeth: your Ethereum private network manager (ethereum#13854)
1 parent 18bbe12 commit 706a1e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+21105
-11
lines changed

build/ci.go

+16-11
Original file line numberDiff line numberDiff line change
@@ -74,35 +74,40 @@ var (
7474
executablePath("bootnode"),
7575
executablePath("evm"),
7676
executablePath("geth"),
77-
executablePath("swarm"),
77+
executablePath("puppeth"),
7878
executablePath("rlpdump"),
79+
executablePath("swarm"),
7980
}
8081

8182
// A debian package is created for all executables listed here.
8283
debExecutables = []debExecutable{
8384
{
84-
Name: "geth",
85-
Description: "Ethereum CLI client.",
85+
Name: "abigen",
86+
Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
8687
},
8788
{
8889
Name: "bootnode",
8990
Description: "Ethereum bootnode.",
9091
},
91-
{
92-
Name: "rlpdump",
93-
Description: "Developer utility tool that prints RLP structures.",
94-
},
9592
{
9693
Name: "evm",
9794
Description: "Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode.",
9895
},
9996
{
100-
Name: "swarm",
101-
Description: "Ethereum Swarm daemon and tools",
97+
Name: "geth",
98+
Description: "Ethereum CLI client.",
10299
},
103100
{
104-
Name: "abigen",
105-
Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
101+
Name: "puppeth",
102+
Description: "Ethereum private network manager.",
103+
},
104+
{
105+
Name: "rlpdump",
106+
Description: "Developer utility tool that prints RLP structures.",
107+
},
108+
{
109+
Name: "swarm",
110+
Description: "Ethereum Swarm daemon and tools",
106111
},
107112
}
108113

0 commit comments

Comments
 (0)