You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We presently use 12-word mnemonics in lighthouse account wallet create. For consistency with other source (eth2 deposit CLI and other clients), and for increased entropy, I think it makes sense to use 24-word mnemonics by default.
The text was updated successfully, but these errors were encountered:
…ds. (#1697)
## Issue Addressed
Fixes#1665.
## Proposed Changes
`lighthouse account_manager wallet create` now generates a 24-word
mnemonic. The user can override this by passing `--mnemonic-length 12`
(or another legal bip39 length).
## Additional Info
CLI `--help`:
```
--mnemonic-length <MNEMONIC_LENGTH> The number of words to use for the mnemonic phrase. [default: 24]
```
In case of an invalid argument:
```
% lighthouse account_manager wallet create --mnemonic-length 25
error: Invalid value for '--mnemonic-length <MNEMONIC_LENGTH>': Mnemonic length must be one of 12, 15, 18, 21, 24
```
Description
We presently use 12-word mnemonics in
lighthouse account wallet create
. For consistency with other source (eth2 deposit CLI and other clients), and for increased entropy, I think it makes sense to use 24-word mnemonics by default.The text was updated successfully, but these errors were encountered: