Skip to content

Commit 829dbd3

Browse files
committed
fix issue where wallet mnemonics were not normalised to NFKD
1 parent f0ad104 commit 829dbd3

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Development:
2+
- fix issue where wallet mnemonics were not normalised to NFKD
23
- "block info" supports fetching the gensis block (--slot=0)
34
- "attester inclusion" command finds the inclusion slot for a validator's attestation
45
- "account info" with verbose option now displays participants for distributed accounts

cmd/walletcreate.go

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import (
2828
keystorev4 "github.com/wealdtech/go-eth2-wallet-encryptor-keystorev4"
2929
hd "github.com/wealdtech/go-eth2-wallet-hd/v2"
3030
nd "github.com/wealdtech/go-eth2-wallet-nd/v2"
31+
"golang.org/x/text/unicode/norm"
3132
)
3233

3334
var walletCreateCmd = &cobra.Command{
@@ -106,6 +107,9 @@ func walletCreateHD(ctx context.Context, name string, passphrase string, mnemoni
106107
mnemonicPassphrase = strings.Join(mnemonicParts[24:], " ")
107108
}
108109
}
110+
// Normalise the input.
111+
mnemonic = string(norm.NFKD.Bytes([]byte(mnemonic)))
112+
mnemonicPassphrase = string(norm.NFKD.Bytes([]byte(mnemonicPassphrase)))
109113

110114
// Ensure the mnemonic is valid
111115
if !bip39.IsMnemonicValid(mnemonic) {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ require (
4444
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
4545
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
4646
golang.org/x/sys v0.0.0-20200821140526-fda516888d29 // indirect
47-
golang.org/x/text v0.3.3 // indirect
47+
golang.org/x/text v0.3.3
4848
google.golang.org/genproto v0.0.0-20200815001618-f69a88009b70 // indirect
4949
google.golang.org/grpc v1.31.0
5050
gopkg.in/ini.v1 v1.60.1 // indirect

0 commit comments

Comments
 (0)