UNPKG

efx-api-node

Version:

<img src="https://avatars3.githubusercontent.com/u/33315316?s=200&v=4" align="right" />

13 lines (11 loc) 250 B
/** * Unlocks an account for given duration **/ module.exports = (efx, password, duration = 60) => { const {web3} = efx // TODO: can we improve this somehow? return web3.eth.personal.unlockAccount( efx.get('account'), password ) }