Skip to content

Instantly share code, notes, and snippets.

@PhABC
Created March 7, 2018 16:36
Show Gist options
  • Save PhABC/22187921e62db0bdc274e45e0341680a to your computer and use it in GitHub Desktop.
Save PhABC/22187921e62db0bdc274e45e0341680a to your computer and use it in GitHub Desktop.
//Extracting ECDSA variables
var r = sign.substr(0, 66);
var s = '0x' + sign.substr(66, 64);
var v = '0x' + sign.substr(130,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment