Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MINT-930 Fix mnemonic to private key computations for NEM #460

Merged
merged 1 commit into from
Dec 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/login/network/NemWallet.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import bip39 from 'bip39'
import xor from 'buffer-xor'
import { KeyPair, Address } from './nem/index'

export default class NemWallet {
Expand All @@ -16,6 +17,10 @@ export default class NemWallet {
}

static fromMnemonic (mnemonic, network) {
return new NemWallet(KeyPair.create(bip39.mnemonicToSeed(mnemonic).toString('hex')), network)
const original = bip39.mnemonicToSeedHex(mnemonic)
const part1 = Buffer.from(original.substr(0, 64), 'hex')
const part2 = Buffer.from(original.substr(64, 64), 'hex')
const hex = xor(part1, part2).toString('hex')
return new NemWallet(KeyPair.create(hex), network)
}
}