mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
add account working
This commit is contained in:
parent
f5f66f59d7
commit
f6b27fa9eb
@ -8,7 +8,7 @@ const keyringType = 'Trezor Hardware'
|
||||
const TrezorConnect = require('./trezor-connect.js')
|
||||
const HDKey = require('hdkey')
|
||||
const TREZOR_FIRMWARE_VERSION = '1.4.0'
|
||||
const log = require('loglevel')
|
||||
//const log = require('loglevel')
|
||||
|
||||
class TrezorKeyring extends EventEmitter {
|
||||
constructor (opts = {}) {
|
||||
@ -19,6 +19,7 @@ class TrezorKeyring extends EventEmitter {
|
||||
this.deserialize(opts)
|
||||
this.page = 0
|
||||
this.perPage = 5
|
||||
this.accountToUnlock = 0
|
||||
}
|
||||
|
||||
serialize () {
|
||||
@ -44,8 +45,6 @@ class TrezorKeyring extends EventEmitter {
|
||||
TrezorConnect.getXPubKey(
|
||||
this.hdPath,
|
||||
response => {
|
||||
log.debug('TREZOR CONNECT RESPONSE: ')
|
||||
log.debug(response)
|
||||
if (response.success) {
|
||||
this.hdk.publicKey = new Buffer(response.publicKey, 'hex')
|
||||
this.hdk.chainCode = new Buffer(response.chainCode, 'hex')
|
||||
@ -59,14 +58,18 @@ class TrezorKeyring extends EventEmitter {
|
||||
})
|
||||
}
|
||||
|
||||
setAccountToUnlock (index) {
|
||||
this.accountToUnlock = parseInt(index, 10)
|
||||
}
|
||||
|
||||
addAccounts (n = 1) {
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
return this.unlock()
|
||||
.then(_ => {
|
||||
const pathBase = 'm'
|
||||
const from = n
|
||||
const to = n + 1
|
||||
const from = this.accountToUnlock
|
||||
const to = from + 1
|
||||
|
||||
this.accounts = []
|
||||
|
||||
|
@ -569,6 +569,8 @@ module.exports = class MetamaskController extends EventEmitter {
|
||||
throw new Error('MetamaskController - No Trezor Hardware Keyring found')
|
||||
}
|
||||
|
||||
keyring.setAccountToUnlock(index)
|
||||
|
||||
const oldAccounts = await keyringController.getAccounts()
|
||||
const keyState = await keyringController.addNewAccount(keyring)
|
||||
const newAccounts = await keyringController.getAccounts()
|
||||
|
Loading…
Reference in New Issue
Block a user