aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/seed-phrase-verifier.js
blob: 7ba712c0da30c2f45713b938da55a934e9091a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const KeyringController = require('eth-keyring-controller')
const log = require('loglevel')

const seedPhraseVerifier = {

  // Verifies if the seed words can restore the accounts.
  //
  // 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.
  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()
        })
    })
  },
}

module.exports = seedPhraseVerifier