diff options
author | Matthew Leon <ml@matthewleon.com> | 2019-12-19 15:36:44 -0500 |
---|---|---|
committer | Matthew Leon Grinshpun <matt@nydig.com> | 2019-12-19 15:37:08 -0500 |
commit | 4dfc681f71bc6d1181d24a3bd0d462bbd6b60beb (patch) | |
tree | 36f40be3a5886de01fdf57a9751de46d89ceddb4 /src | |
parent | dfb4fd1be5343674f4ca2222d685a9f8b83c34d9 (diff) | |
download | BIP39-4dfc681f71bc6d1181d24a3bd0d462bbd6b60beb.tar.gz BIP39-4dfc681f71bc6d1181d24a3bd0d462bbd6b60beb.tar.zst BIP39-4dfc681f71bc6d1181d24a3bd0d462bbd6b60beb.zip |
fix Ethereum xpub derivation
Diffstat (limited to 'src')
-rw-r--r-- | src/js/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js/index.js b/src/js/index.js index d843ee1..92772f6 100644 --- a/src/js/index.js +++ b/src/js/index.js | |||
@@ -1128,9 +1128,9 @@ | |||
1128 | } | 1128 | } |
1129 | // Ethereum values are different | 1129 | // Ethereum values are different |
1130 | if (networkIsEthereum()) { | 1130 | if (networkIsEthereum()) { |
1131 | var privKeyBuffer = keyPair.d.toBuffer(32); | 1131 | var pubkeyBuffer = keyPair.getPublicKeyBuffer(); |
1132 | privkey = privKeyBuffer.toString('hex'); | 1132 | var ethPubkey = libs.ethUtil.importPublic(pubkeyBuffer); |
1133 | var addressBuffer = libs.ethUtil.privateToAddress(privKeyBuffer); | 1133 | var addressBuffer = libs.ethUtil.publicToAddress(ethPubkey); |
1134 | var hexAddress = addressBuffer.toString('hex'); | 1134 | var hexAddress = addressBuffer.toString('hex'); |
1135 | var checksumAddress = libs.ethUtil.toChecksumAddress(hexAddress); | 1135 | var checksumAddress = libs.ethUtil.toChecksumAddress(hexAddress); |
1136 | address = libs.ethUtil.addHexPrefix(checksumAddress); | 1136 | address = libs.ethUtil.addHexPrefix(checksumAddress); |