Created
July 7, 2020 21:40
-
-
Save ajb413/e43cf9f245d712b549ac08a1a5911791 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const sig = signature.value; | |
const r = '0x' + sig.substring(2).substring(0, 64); | |
const s = '0x' + sig.substring(2).substring(64, 128); | |
const v = '0x' + sig.substring(2).substring(128, 130); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment