From 503bf9a996852abec7ca86aa3331f086a8a6faa8 Mon Sep 17 00:00:00 2001 From: Chris Berry Date: Fri, 21 Feb 2025 14:46:36 +0000 Subject: [PATCH] Update help text to match args --- cmd/depositverify.go | 2 +- cmd/validatordepositdata.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/depositverify.go b/cmd/depositverify.go index 7d138c4..7637c07 100644 --- a/cmd/depositverify.go +++ b/cmd/depositverify.go @@ -45,7 +45,7 @@ var depositVerifyCmd = &cobra.Command{ Short: "Verify deposit data matches the provided data", Long: `Verify deposit data matches the provided input data. For example: - ethdo deposit verify --data=depositdata.json --withdrawalaccount=primary/current --value="32 Ether" + ethdo deposit verify --data=depositdata.json --withdrawalaccount=primary/current --depositvalue="32 Ether" The deposit data is compared to the supplied withdrawal account/public key, validator public key, and value to ensure they match. diff --git a/cmd/validatordepositdata.go b/cmd/validatordepositdata.go index 584c174..556c679 100644 --- a/cmd/validatordepositdata.go +++ b/cmd/validatordepositdata.go @@ -26,7 +26,7 @@ var validatorDepositDataCmd = &cobra.Command{ Short: "Generate deposit data for one or more validators", Long: `Generate data for deposits to the Ethereum 1 validator contract. For example: - ethdo validator depositdata --validatoraccount=primary/validator --withdrawalaccount=primary/current --value="32 Ether" + ethdo validator depositdata --validatoraccount=primary/validator --withdrawalaccount=primary/current --depositvalue="32 Ether" If validatoraccount is provided with an account path it will generate deposit data for all matching accounts.