Skip to content

Commit

Permalink
cmd/puppeth: your Ethereum private network manager
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Apr 10, 2017
1 parent feeccdf commit 1481af1
Show file tree
Hide file tree
Showing 70 changed files with 21,105 additions and 11 deletions.
27 changes: 16 additions & 11 deletions build/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,35 +74,40 @@ var (
executablePath("bootnode"),
executablePath("evm"),
executablePath("geth"),
executablePath("swarm"),
executablePath("puppeth"),
executablePath("rlpdump"),
executablePath("swarm"),
}

// A debian package is created for all executables listed here.
debExecutables = []debExecutable{
{
Name: "geth",
Description: "Ethereum CLI client.",
Name: "abigen",
Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
},
{
Name: "bootnode",
Description: "Ethereum bootnode.",
},
{
Name: "rlpdump",
Description: "Developer utility tool that prints RLP structures.",
},
{
Name: "evm",
Description: "Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode.",
},
{
Name: "swarm",
Description: "Ethereum Swarm daemon and tools",
Name: "geth",
Description: "Ethereum CLI client.",
},
{
Name: "abigen",
Description: "Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages.",
Name: "puppeth",
Description: "Ethereum private network manager.",
},
{
Name: "rlpdump",
Description: "Developer utility tool that prints RLP structures.",
},
{
Name: "swarm",
Description: "Ethereum Swarm daemon and tools",
},
}

Expand Down

0 comments on commit 1481af1

Please sign in to comment.