mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
14 lines
245 B
Go
14 lines
245 B
Go
|
package testnet
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var Commands = []*cli.Command{
|
||
|
{
|
||
|
Name: "testnet",
|
||
|
Usage: "commands for dealing with Ethereum beacon chain testnets",
|
||
|
Subcommands: []*cli.Command{
|
||
|
generateGenesisStateCmd,
|
||
|
},
|
||
|
},
|
||
|
}
|