Skip to content

Instantly share code, notes, and snippets.

@merlox
Created October 16, 2018 22:09
Show Gist options
  • Save merlox/4b04e79c939a86294af0cc8772333ed9 to your computer and use it in GitHub Desktop.
Save merlox/4b04e79c939a86294af0cc8772333ed9 to your computer and use it in GitHub Desktop.
function signMessage(hash) {
return new Promise((resolve, reject) => {
web3.personal.sign(hash, web3.eth.defaultAccount, (err, result) => {
if(err) return reject(err)
resolve(result)
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment