mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
034a28710e
* Add Prater config * Register flag everywhere * gofmt * Apply suggestions from code review Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Update shared/params/testnet_prater_config.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
61 lines
1.9 KiB
Go
61 lines
1.9 KiB
Go
package slashing_protection
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/cmd/validator/flags"
|
|
"github.com/prysmaticlabs/prysm/shared/cmd"
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
"github.com/prysmaticlabs/prysm/shared/tos"
|
|
slashingprotection "github.com/prysmaticlabs/prysm/validator/slashing-protection"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Commands for slashing protection.
|
|
var Commands = &cli.Command{
|
|
Name: "slashing-protection",
|
|
Category: "slashing-protection",
|
|
Usage: "defines commands for interacting your validator's slashing protection history",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "export",
|
|
Description: `exports your validator slashing protection history into an EIP-3076 compliant JSON`,
|
|
Flags: cmd.WrapFlags([]cli.Flag{
|
|
cmd.DataDirFlag,
|
|
flags.SlashingProtectionExportDirFlag,
|
|
}),
|
|
Before: func(cliCtx *cli.Context) error {
|
|
if err := cmd.LoadFlagsFromConfig(cliCtx, cliCtx.Command.Flags); err != nil {
|
|
return err
|
|
}
|
|
return tos.VerifyTosAcceptedOrPrompt(cliCtx)
|
|
},
|
|
Action: func(cliCtx *cli.Context) error {
|
|
featureconfig.ConfigureValidator(cliCtx)
|
|
return slashingprotection.ExportSlashingProtectionJSONCli(cliCtx)
|
|
},
|
|
},
|
|
{
|
|
Name: "import",
|
|
Description: `imports a selected EIP-3076 compliant slashing protection JSON to the validator database`,
|
|
Flags: cmd.WrapFlags([]cli.Flag{
|
|
cmd.DataDirFlag,
|
|
flags.SlashingProtectionJSONFileFlag,
|
|
featureconfig.Mainnet,
|
|
featureconfig.PyrmontTestnet,
|
|
featureconfig.ToledoTestnet,
|
|
featureconfig.PraterTestnet,
|
|
cmd.AcceptTosFlag,
|
|
}),
|
|
Before: func(cliCtx *cli.Context) error {
|
|
if err := cmd.LoadFlagsFromConfig(cliCtx, cliCtx.Command.Flags); err != nil {
|
|
return err
|
|
}
|
|
return tos.VerifyTosAcceptedOrPrompt(cliCtx)
|
|
},
|
|
Action: func(cliCtx *cli.Context) error {
|
|
featureconfig.ConfigureValidator(cliCtx)
|
|
return slashingprotection.ImportSlashingProtectionCLI(cliCtx)
|
|
},
|
|
},
|
|
},
|
|
}
|