Skip to content

Instantly share code, notes, and snippets.

@SpendBCH
Created September 27, 2019 20:10
Show Gist options
  • Save SpendBCH/788bcce8413206ac253f7f6e83889e71 to your computer and use it in GitHub Desktop.
Save SpendBCH/788bcce8413206ac253f7f6e83889e71 to your computer and use it in GitHub Desktop.
compressed wif to cash address with slp-sdk
const SLPSDK = require('slp-sdk')
const SLP = new SLPSDK()
const compressedWif = ''
let ecPair = SLP.ECPair.fromWIF(compressedWif)
let cashAddress = SLP.ECPair.toCashAddress(ecPair)
console.log(cashAddress)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment