@ -304,86 +304,79 @@ export function importNewAccount (strategy, args) {
export function addNewAccount ( ) {
export function addNewAccount ( ) {
log . debug ( ` background.addNewAccount ` )
log . debug ( ` background.addNewAccount ` )
return ( dispatch , getState ) => {
return async ( dispatch , getState ) => {
const oldIdentities = getState ( ) . metamask . identities
const oldIdentities = getState ( ) . metamask . identities
dispatch ( showLoadingIndication ( ) )
dispatch ( showLoadingIndication ( ) )
return new Promise ( ( resolve , reject ) => {
background . addNewAccount ( ( err , { identities : newIdentities } ) => {
if ( err ) {
dispatch ( displayWarning ( err . message ) )
return reject ( err )
}
const newAccountAddress = Object . keys ( newIdentities ) . find ( ( address ) => ! oldIdentities [ address ] )
dispatch ( hideLoadingIndication ( ) )
forceUpdateMetamaskState ( dispatch )
let newIdentities
return resolve ( newAccountAddress )
try {
} )
const { identities } = await promisifiedBackground . addNewAccount ( )
} )
newIdentities = identities
} catch ( error ) {
dispatch ( displayWarning ( error . message ) )
throw error
}
const newAccountAddress = Object . keys ( newIdentities ) . find ( ( address ) => ! oldIdentities [ address ] )
dispatch ( hideLoadingIndication ( ) )
forceUpdateMetamaskState ( dispatch )
return newAccountAddress
}
}
}
}
export function checkHardwareStatus ( deviceName , hdPath ) {
export function checkHardwareStatus ( deviceName , hdPath ) {
log . debug ( ` background.checkHardwareStatus ` , deviceName , hdPath )
log . debug ( ` background.checkHardwareStatus ` , deviceName , hdPath )
return ( dispatch ) => {
return async ( dispatch ) => {
dispatch ( showLoadingIndication ( ) )
dispatch ( showLoadingIndication ( ) )
return new Promise ( ( resolve , reject ) => {
background . checkHardwareStatus ( deviceName , hdPath , ( err , unlocked ) => {
if ( err ) {
log . error ( err )
dispatch ( displayWarning ( err . message ) )
return reject ( err )
}
dispatch ( hideLoadingIndication ( ) )
let unlocked
try {
unlocked = await promisifiedBackground . checkHardwareStatus ( deviceName , hdPath )
} catch ( error ) {
log . error ( error )
dispatch ( displayWarning ( error . message ) )
throw error
}
forceUpdateMetamaskState ( dispatch )
dispatch ( hideLoadingIndication ( ) )
return resolve ( unlocked )
forceUpdateMetamaskState ( dispatch )
} )
return unlocked
} )
}
}
}
}
export function forgetDevice ( deviceName ) {
export function forgetDevice ( deviceName ) {
log . debug ( ` background.forgetDevice ` , deviceName )
log . debug ( ` background.forgetDevice ` , deviceName )
return ( dispatch ) => {
return async ( dispatch ) => {
dispatch ( showLoadingIndication ( ) )
dispatch ( showLoadingIndication ( ) )
return new Promise ( ( resolve , reject ) => {
try {
background . forgetDevice ( deviceName , ( err ) => {
await promisifiedBackground . forgetDevice ( deviceName )
if ( err ) {
} catch ( error ) {
log . error ( err )
log . error ( error )
dispatch ( displayWarning ( err . message ) )
dispatch ( displayWarning ( error . message ) )
return reject ( err )
throw error
}
}
dispatch ( hideLoadingIndication ( ) )
forceUpdateMetamaskState ( dispatch )
dispatch ( hideLoadingIndication ( ) )
return resolve ( )
forceUpdateMetamaskState ( dispatch )
} )
} )
}
}
}
}
export function connectHardware ( deviceName , page , hdPath ) {
export function connectHardware ( deviceName , page , hdPath ) {
log . debug ( ` background.connectHardware ` , deviceName , page , hdPath )
log . debug ( ` background.connectHardware ` , deviceName , page , hdPath )
return ( dispatch ) => {
return async ( dispatch ) => {
dispatch ( showLoadingIndication ( ) )
dispatch ( showLoadingIndication ( ) )
return new Promise ( ( resolve , reject ) => {
background . connectHardware ( deviceName , page , hdPath , ( err , accounts ) => {
if ( err ) {
log . error ( err )
dispatch ( displayWarning ( err . message ) )
return reject ( err )
}
dispatch ( hideLoadingIndication ( ) )
let accounts
try {
accounts = await promisifiedBackground . connectHardware ( deviceName , page , hdPath )
} catch ( error ) {
log . error ( error )
dispatch ( displayWarning ( error . message ) )
throw error
}
dispatch ( hideLoadingIndication ( ) )
forceUpdateMetamaskState ( dispatch )
forceUpdateMetamaskState ( dispatch )
return accounts
return resolve ( accounts )
} )
} )
}
}
}
}