Skip to content

Commit

Permalink
refactor: use createNewVaultAndRestore from core kc
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesposito committed Jul 25, 2023
1 parent fdc3558 commit e23ac8a
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions app/scripts/metamask-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ import {
ERC20,
ERC721,
} from '@metamask/controller-utils';
import { wordlist } from '@metamask/scure-bip39/dist/wordlists/english';

///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
import { toChecksumHexAddress } from '../../shared/modules/hexstring-utils';
Expand Down Expand Up @@ -2880,8 +2881,6 @@ export default class MetamaskController extends EventEmitter {

const seedPhraseAsBuffer = Buffer.from(encodedSeedPhrase);

const { keyringController } = this;

// clear known identities
this.preferencesController.setAddresses([]);

Expand All @@ -2905,29 +2904,22 @@ export default class MetamaskController extends EventEmitter {
this.txController.txStateManager.clearUnapprovedTxs();

// create new vault
const vault = await keyringController.createNewVaultAndRestore(
const vault = await this.coreKeyringController.createNewVaultAndRestore(
password,
seedPhraseAsBuffer,
this._bufferToUint8Array(seedPhraseAsBuffer),
);

const ethQuery = new EthQuery(this.provider);
accounts = await keyringController.getAccounts();
accounts = await this.coreKeyringController.getAccounts();
lastBalance = await this.getBalance(
accounts[accounts.length - 1],
ethQuery,
);

const [primaryKeyring] = keyringController.getKeyringsByType(
KeyringType.hdKeyTree,
);
if (!primaryKeyring) {
throw new Error('MetamaskController - No HD Key Tree found');
}

// seek out the first zero balance
while (lastBalance !== '0x0') {
await keyringController.addNewAccount(primaryKeyring);
accounts = await keyringController.getAccounts();
await this.coreKeyringController.addNewAccount(accounts.length);
accounts = await this.coreKeyringController.getAccounts();
lastBalance = await this.getBalance(
accounts[accounts.length - 1],
ethQuery,
Expand All @@ -2937,7 +2929,7 @@ export default class MetamaskController extends EventEmitter {
// remove extra zero balance account potentially created from seeking ahead
if (accounts.length > 1 && lastBalance === '0x0') {
await this.removeAccount(accounts[accounts.length - 1]);
accounts = await keyringController.getAccounts();
accounts = await this.coreKeyringController.getAccounts();
}

// This must be set as soon as possible to communicate to the
Expand All @@ -2948,8 +2940,6 @@ export default class MetamaskController extends EventEmitter {
this.preferencesController.getLedgerTransportPreference();
this.setLedgerTransportPreference(transportPreference);

// set new identities
this.preferencesController.setAddresses(accounts);
this.selectFirstIdentity();

return vault;
Expand All @@ -2958,6 +2948,20 @@ export default class MetamaskController extends EventEmitter {
}
}

/**
* Get a Uint8Array mnemonic from Buffer.
*
* @param {Buffer} mnemonic - The mnemonic phrase as a Buffer
* @returns {Uint8Array} The mnemonic phrase as a Uint8Array
*/
_bufferToUint8Array(mnemonic) {
const indices = mnemonic
.toString()
.split(' ')
.map((word) => wordlist.indexOf(word));
return new Uint8Array(new Uint16Array(indices).buffer);
}

/**
* Get an account balance from the AccountTracker or request it directly from the network.
*
Expand Down

0 comments on commit e23ac8a

Please sign in to comment.