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.