You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
import KeyringController from 'eth-keyring-controller'
|
|
import log from 'loglevel'
|
|
|
|
const seedPhraseVerifier = {
|
|
|
|
/**
|
|
* Verifies if the seed words can restore the accounts.
|
|
*
|
|
* Key notes:
|
|
* - The seed words can recreate the primary keyring and the accounts belonging to it.
|
|
* - The created accounts in the primary keyring are always the same.
|
|
* - The keyring always creates the accounts in the same sequence.
|
|
*
|
|
* @param {array} createdAccounts - The accounts to restore
|
|
* @param {string} seedWords - The seed words to verify
|
|
* @returns {Promise<void>} - Promises undefined
|
|
*
|
|
*/
|
|
verifyAccounts (createdAccounts, seedWords) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (!createdAccounts || createdAccounts.length < 1) {
|
|
return reject(new Error('No created accounts defined.'))
|
|
}
|
|
|
|
const keyringController = new KeyringController({})
|
|
const Keyring = keyringController.getKeyringClassForType('HD Key Tree')
|
|
const opts = {
|
|
mnemonic: seedWords,
|
|
numberOfAccounts: createdAccounts.length,
|
|
}
|
|
|
|
const keyring = new Keyring(opts)
|
|
keyring.getAccounts()
|
|
.then((restoredAccounts) => {
|
|
|
|
log.debug('Created accounts: ' + JSON.stringify(createdAccounts))
|
|
log.debug('Restored accounts: ' + JSON.stringify(restoredAccounts))
|
|
|
|
if (restoredAccounts.length !== createdAccounts.length) {
|
|
// this should not happen...
|
|
return reject(new Error('Wrong number of accounts'))
|
|
}
|
|
|
|
for (let i = 0; i < restoredAccounts.length; i++) {
|
|
if (restoredAccounts[i].toLowerCase() !== createdAccounts[i].toLowerCase()) {
|
|
return reject(new Error('Not identical accounts! Original: ' + createdAccounts[i] + ', Restored: ' + restoredAccounts[i]))
|
|
}
|
|
}
|
|
return resolve()
|
|
})
|
|
})
|
|
},
|
|
}
|
|
|
|
export default seedPhraseVerifier
|
|
|